From f347345e778dc40962c7844c2d2d8a1a9b254875 Mon Sep 17 00:00:00 2001 From: ismellike Date: Wed, 18 Sep 2024 11:50:51 -0500 Subject: [PATCH] just gen-schema + callback messages in abc-factory --- contracts/external/cw-abc/schema/cw-abc.json | 2 +- contracts/external/cw-abc/src/contract.rs | 2 ++ .../schema/cw-tokenfactory-issuer.json | 14 ++++++++++++-- .../dao-abc-factory/schema/dao-abc-factory.json | 2 +- contracts/external/dao-abc-factory/src/contract.rs | 7 +++---- .../schema/dao-voting-token-staked.json | 2 +- 6 files changed, 20 insertions(+), 9 deletions(-) diff --git a/contracts/external/cw-abc/schema/cw-abc.json b/contracts/external/cw-abc/schema/cw-abc.json index 999c99579..2b39a107b 100644 --- a/contracts/external/cw-abc/schema/cw-abc.json +++ b/contracts/external/cw-abc/schema/cw-abc.json @@ -224,7 +224,7 @@ "type": "string" }, "exponent": { - "description": "exponent represents power of 10 exponent that one must raise the base_denom to in order to equal the given DenomUnit's denom 1 denom = 1^exponent base_denom (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with exponent = 6, thus: 1 atom = 10^6 uatom).", + "description": "exponent represents power of 10 exponent that one must raise the base_denom to in order to equal the given DenomUnit's denom 1 denom = 10^exponent base_denom (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with exponent = 6, thus: 1 atom = 10^6 uatom).", "type": "integer", "format": "uint32", "minimum": 0.0 diff --git a/contracts/external/cw-abc/src/contract.rs b/contracts/external/cw-abc/src/contract.rs index 9ae0e6a25..5993329de 100644 --- a/contracts/external/cw-abc/src/contract.rs +++ b/contracts/external/cw-abc/src/contract.rs @@ -294,6 +294,8 @@ pub fn reply(deps: DepsMut, env: Env, msg: Reply) -> Result Result