juno-network 0.15.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -4
- package/main/codegen/JunoSwap.client.js +165 -184
- package/main/codegen/amino/amino.js +5 -0
- package/main/codegen/amino/bundle.js +16 -0
- package/main/codegen/binary.js +478 -0
- package/main/codegen/confio/proofs.js +836 -72
- package/main/codegen/contracts.js +8 -4
- package/main/codegen/cosmos/app/v1alpha1/config.js +221 -0
- package/main/codegen/cosmos/app/v1alpha1/module.js +324 -0
- package/main/codegen/cosmos/app/v1alpha1/query.js +149 -0
- package/main/codegen/cosmos/app/v1alpha1/query.rpc.Query.js +45 -0
- package/main/codegen/cosmos/auth/v1beta1/auth.js +382 -0
- package/main/codegen/cosmos/auth/v1beta1/genesis.js +120 -0
- package/main/codegen/cosmos/auth/v1beta1/query.js +1133 -0
- package/main/codegen/cosmos/auth/v1beta1/query.lcd.js +223 -0
- package/main/codegen/cosmos/auth/v1beta1/query.rpc.Query.js +128 -0
- package/main/codegen/cosmos/authz/v1beta1/authz.js +220 -13
- package/main/codegen/cosmos/authz/v1beta1/event.js +101 -8
- package/main/codegen/cosmos/authz/v1beta1/genesis.js +51 -7
- package/main/codegen/cosmos/authz/v1beta1/query.js +311 -21
- package/main/codegen/cosmos/authz/v1beta1/query.lcd.js +65 -69
- package/main/codegen/cosmos/authz/v1beta1/query.rpc.Query.js +5 -7
- package/main/codegen/cosmos/authz/v1beta1/tx.amino.js +25 -0
- package/main/codegen/cosmos/authz/v1beta1/tx.js +312 -18
- package/main/codegen/cosmos/authz/v1beta1/tx.registry.js +83 -0
- package/main/codegen/cosmos/authz/v1beta1/tx.rpc.msg.js +5 -7
- package/main/codegen/cosmos/bank/v1beta1/authz.js +66 -7
- package/main/codegen/cosmos/bank/v1beta1/bank.js +425 -21
- package/main/codegen/cosmos/bank/v1beta1/genesis.js +138 -10
- package/main/codegen/cosmos/bank/v1beta1/query.js +964 -49
- package/main/codegen/cosmos/bank/v1beta1/query.lcd.js +148 -163
- package/main/codegen/cosmos/bank/v1beta1/query.rpc.Query.js +11 -13
- package/main/codegen/cosmos/bank/v1beta1/tx.amino.js +5 -86
- package/main/codegen/cosmos/bank/v1beta1/tx.js +194 -13
- package/main/codegen/cosmos/bank/v1beta1/tx.rpc.msg.js +4 -6
- package/main/codegen/cosmos/base/abci/v1beta1/abci.js +677 -60
- package/main/codegen/cosmos/base/kv/v1beta1/kv.js +197 -0
- package/main/codegen/cosmos/base/query/v1beta1/pagination.js +162 -17
- package/main/codegen/cosmos/base/reflection/v1beta1/reflection.js +362 -0
- package/main/codegen/cosmos/base/reflection/v2alpha1/reflection.js +1230 -57
- package/main/codegen/cosmos/base/snapshots/v1beta1/snapshot.js +916 -0
- package/main/codegen/cosmos/base/store/v1beta1/commit_info.js +326 -0
- package/main/codegen/cosmos/base/store/v1beta1/listening.js +140 -0
- package/main/codegen/cosmos/base/tendermint/v1beta1/query.js +1431 -0
- package/main/codegen/cosmos/base/tendermint/v1beta1/query.lcd.js +202 -0
- package/main/codegen/cosmos/base/tendermint/v1beta1/query.rpc.Service.js +115 -0
- package/main/codegen/cosmos/base/v1beta1/coin.js +207 -12
- package/main/codegen/cosmos/bundle.js +274 -105
- package/main/codegen/cosmos/capability/v1beta1/capability.js +300 -0
- package/main/codegen/cosmos/capability/v1beta1/genesis.js +208 -0
- package/main/codegen/cosmos/client.js +37 -23
- package/main/codegen/cosmos/crisis/v1beta1/genesis.js +85 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.amino.js +15 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.js +173 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.registry.js +47 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.js +33 -0
- package/main/codegen/cosmos/crypto/ed25519/keys.js +113 -8
- package/main/codegen/cosmos/crypto/hd/v1/hd.js +59 -6
- package/main/codegen/cosmos/crypto/keyring/v1/record.js +236 -14
- package/main/codegen/cosmos/crypto/multisig/keys.js +67 -7
- package/main/codegen/cosmos/crypto/multisig/v1beta1/multisig.js +125 -9
- package/main/codegen/cosmos/crypto/secp256k1/keys.js +104 -8
- package/main/codegen/cosmos/crypto/secp256r1/keys.js +86 -8
- package/main/codegen/cosmos/distribution/v1beta1/distribution.js +788 -56
- package/main/codegen/cosmos/distribution/v1beta1/genesis.js +514 -38
- package/main/codegen/cosmos/distribution/v1beta1/query.js +970 -53
- package/main/codegen/cosmos/distribution/v1beta1/query.lcd.js +107 -124
- package/main/codegen/cosmos/distribution/v1beta1/query.rpc.Query.js +11 -13
- package/main/codegen/cosmos/distribution/v1beta1/tx.amino.js +9 -70
- package/main/codegen/cosmos/distribution/v1beta1/tx.js +403 -25
- package/main/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/main/codegen/cosmos/evidence/v1beta1/evidence.js +132 -0
- package/main/codegen/cosmos/evidence/v1beta1/genesis.js +107 -0
- package/main/codegen/cosmos/evidence/v1beta1/query.js +371 -0
- package/main/codegen/cosmos/evidence/v1beta1/query.lcd.js +87 -0
- package/main/codegen/cosmos/evidence/v1beta1/query.rpc.Query.js +60 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.amino.js +15 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.js +186 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.registry.js +47 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.js +33 -0
- package/main/codegen/cosmos/feegrant/v1beta1/feegrant.js +512 -0
- package/main/codegen/cosmos/feegrant/v1beta1/genesis.js +107 -0
- package/main/codegen/cosmos/feegrant/v1beta1/query.js +575 -0
- package/main/codegen/cosmos/feegrant/v1beta1/query.lcd.js +114 -0
- package/main/codegen/cosmos/feegrant/v1beta1/query.rpc.Query.js +70 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.amino.js +20 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.js +337 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.registry.js +65 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.js +43 -0
- package/main/codegen/cosmos/genutil/v1beta1/genesis.js +107 -0
- package/main/codegen/cosmos/gov/v1/genesis.js +90 -11
- package/main/codegen/cosmos/gov/v1/gov.js +497 -58
- package/main/codegen/cosmos/gov/v1/query.js +770 -56
- package/main/codegen/cosmos/gov/v1/query.lcd.js +107 -123
- package/main/codegen/cosmos/gov/v1/query.rpc.Query.js +10 -12
- package/main/codegen/cosmos/gov/v1/tx.amino.js +11 -156
- package/main/codegen/cosmos/gov/v1/tx.js +511 -38
- package/main/codegen/cosmos/gov/v1/tx.rpc.msg.js +7 -9
- package/main/codegen/cosmos/gov/v1beta1/genesis.js +93 -14
- package/main/codegen/cosmos/gov/v1beta1/gov.js +560 -69
- package/main/codegen/cosmos/gov/v1beta1/query.js +777 -63
- package/main/codegen/cosmos/gov/v1beta1/query.lcd.js +107 -123
- package/main/codegen/cosmos/gov/v1beta1/query.rpc.Query.js +10 -12
- package/main/codegen/cosmos/gov/v1beta1/tx.amino.js +9 -118
- package/main/codegen/cosmos/gov/v1beta1/tx.js +424 -34
- package/main/codegen/cosmos/gov/v1beta1/tx.rpc.msg.js +6 -8
- package/main/codegen/cosmos/group/v1/events.js +729 -0
- package/main/codegen/cosmos/group/v1/genesis.js +259 -0
- package/main/codegen/cosmos/group/v1/query.js +2377 -0
- package/main/codegen/cosmos/group/v1/query.lcd.js +398 -0
- package/main/codegen/cosmos/group/v1/query.rpc.Query.js +200 -0
- package/main/codegen/cosmos/group/v1/tx.amino.js +80 -0
- package/main/codegen/cosmos/group/v1/tx.js +2590 -0
- package/main/codegen/cosmos/group/v1/tx.registry.js +281 -0
- package/main/codegen/cosmos/group/v1/tx.rpc.msg.js +163 -0
- package/main/codegen/cosmos/group/v1/types.js +1607 -0
- package/main/codegen/cosmos/lcd.js +255 -128
- package/main/codegen/cosmos/mint/v1beta1/genesis.js +97 -0
- package/main/codegen/cosmos/mint/v1beta1/mint.js +236 -0
- package/main/codegen/cosmos/mint/v1beta1/query.js +461 -0
- package/main/codegen/cosmos/mint/v1beta1/query.lcd.js +108 -0
- package/main/codegen/cosmos/mint/v1beta1/query.rpc.Query.js +73 -0
- package/main/codegen/cosmos/msg/v1/msg.js +5 -0
- package/main/codegen/cosmos/nft/v1beta1/event.js +325 -0
- package/main/codegen/cosmos/nft/v1beta1/genesis.js +244 -0
- package/main/codegen/cosmos/nft/v1beta1/nft.js +284 -0
- package/main/codegen/cosmos/nft/v1beta1/query.js +1219 -0
- package/main/codegen/cosmos/nft/v1beta1/query.lcd.js +226 -0
- package/main/codegen/cosmos/nft/v1beta1/query.rpc.Query.js +125 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.amino.js +15 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.js +185 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.registry.js +47 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.rpc.msg.js +33 -0
- package/main/codegen/cosmos/orm/v1/orm.js +400 -0
- package/main/codegen/cosmos/orm/v1alpha1/schema.js +278 -0
- package/main/codegen/cosmos/params/v1beta1/params.js +241 -0
- package/main/codegen/cosmos/params/v1beta1/query.js +473 -0
- package/main/codegen/cosmos/params/v1beta1/query.lcd.js +87 -0
- package/main/codegen/cosmos/params/v1beta1/query.rpc.Query.js +58 -0
- package/main/codegen/cosmos/rpc.query.js +198 -97
- package/main/codegen/cosmos/rpc.tx.js +178 -96
- package/main/codegen/cosmos/slashing/v1beta1/genesis.js +445 -0
- package/main/codegen/cosmos/slashing/v1beta1/query.js +529 -0
- package/main/codegen/cosmos/slashing/v1beta1/query.lcd.js +115 -0
- package/main/codegen/cosmos/slashing/v1beta1/query.rpc.Query.js +74 -0
- package/main/codegen/cosmos/slashing/v1beta1/slashing.js +283 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.amino.js +15 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.js +149 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.registry.js +47 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.js +33 -0
- package/main/codegen/cosmos/staking/v1beta1/authz.js +120 -26
- package/main/codegen/cosmos/staking/v1beta1/genesis.js +153 -13
- package/main/codegen/cosmos/staking/v1beta1/query.js +1467 -72
- package/main/codegen/cosmos/staking/v1beta1/query.lcd.js +205 -229
- package/main/codegen/cosmos/staking/v1beta1/query.rpc.Query.js +16 -18
- package/main/codegen/cosmos/staking/v1beta1/staking.js +1257 -98
- package/main/codegen/cosmos/staking/v1beta1/tx.amino.js +11 -189
- package/main/codegen/cosmos/staking/v1beta1/tx.js +513 -35
- package/main/codegen/cosmos/staking/v1beta1/tx.rpc.msg.js +7 -9
- package/main/codegen/cosmos/tx/signing/v1beta1/signing.js +273 -43
- package/main/codegen/cosmos/tx/v1beta1/service.js +603 -54
- package/main/codegen/cosmos/tx/v1beta1/service.lcd.js +52 -57
- package/main/codegen/cosmos/tx/v1beta1/service.rpc.Service.js +7 -9
- package/main/codegen/cosmos/tx/v1beta1/tx.js +856 -53
- package/main/codegen/cosmos/upgrade/v1beta1/query.js +523 -31
- package/main/codegen/cosmos/upgrade/v1beta1/query.lcd.js +69 -77
- package/main/codegen/cosmos/upgrade/v1beta1/query.rpc.Query.js +7 -9
- package/main/codegen/cosmos/upgrade/v1beta1/tx.amino.js +5 -47
- package/main/codegen/cosmos/upgrade/v1beta1/tx.js +214 -13
- package/main/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.js +4 -6
- package/main/codegen/cosmos/upgrade/v1beta1/upgrade.js +248 -20
- package/main/codegen/cosmos/vesting/v1beta1/tx.amino.js +25 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.js +636 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.registry.js +83 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.js +53 -0
- package/main/codegen/cosmos/vesting/v1beta1/vesting.js +718 -0
- package/main/codegen/cosmos_proto/bundle.js +6 -6
- package/main/codegen/cosmos_proto/cosmos.js +129 -21
- package/main/codegen/cosmwasm/bundle.js +21 -21
- package/main/codegen/cosmwasm/client.js +21 -23
- package/main/codegen/cosmwasm/lcd.js +272 -145
- package/main/codegen/cosmwasm/rpc.query.js +211 -110
- package/main/codegen/cosmwasm/rpc.tx.js +193 -111
- package/main/codegen/cosmwasm/wasm/v1/authz.js +534 -34
- package/main/codegen/cosmwasm/wasm/v1/genesis.js +320 -24
- package/main/codegen/cosmwasm/wasm/v1/ibc.js +103 -14
- package/main/codegen/cosmwasm/wasm/v1/proposal.js +841 -45
- package/main/codegen/cosmwasm/wasm/v1/query.js +1232 -64
- package/main/codegen/cosmwasm/wasm/v1/query.lcd.js +153 -175
- package/main/codegen/cosmwasm/wasm/v1/query.rpc.Query.js +13 -15
- package/main/codegen/cosmwasm/wasm/v1/tx.amino.js +15 -217
- package/main/codegen/cosmwasm/wasm/v1/tx.js +742 -49
- package/main/codegen/cosmwasm/wasm/v1/tx.rpc.msg.js +9 -11
- package/main/codegen/cosmwasm/wasm/v1/types.js +447 -61
- package/main/codegen/gaia/bundle.js +12 -12
- package/main/codegen/gaia/globalfee/v1beta1/genesis.js +82 -10
- package/main/codegen/gaia/globalfee/v1beta1/query.js +95 -9
- package/main/codegen/gaia/globalfee/v1beta1/query.lcd.js +11 -13
- package/main/codegen/gaia/globalfee/v1beta1/query.rpc.Query.js +3 -5
- package/main/codegen/gaia/lcd.js +272 -145
- package/main/codegen/gaia/rpc.query.js +211 -110
- package/main/codegen/gogoproto/bundle.js +6 -6
- package/main/codegen/google/api/annotations.js +5 -0
- package/main/codegen/google/api/http.js +1216 -0
- package/main/codegen/google/bundle.js +13 -10
- package/main/codegen/google/protobuf/any.js +278 -6
- package/main/codegen/google/protobuf/descriptor.js +1691 -171
- package/main/codegen/google/protobuf/duration.js +215 -10
- package/main/codegen/google/protobuf/empty.js +63 -6
- package/main/codegen/google/protobuf/timestamp.js +283 -9
- package/main/codegen/helpers.js +19 -53
- package/main/codegen/ibc/applications/transfer/v1/genesis.js +60 -8
- package/main/codegen/ibc/applications/transfer/v1/query.js +297 -17
- package/main/codegen/ibc/applications/transfer/v1/query.lcd.js +40 -46
- package/main/codegen/ibc/applications/transfer/v1/query.rpc.Query.js +5 -7
- package/main/codegen/ibc/applications/transfer/v1/transfer.js +117 -8
- package/main/codegen/ibc/applications/transfer/v1/tx.amino.js +3 -50
- package/main/codegen/ibc/applications/transfer/v1/tx.js +122 -14
- package/main/codegen/ibc/applications/transfer/v1/tx.rpc.msg.js +3 -5
- package/main/codegen/ibc/applications/transfer/v2/packet.js +67 -6
- package/main/codegen/ibc/bundle.js +71 -60
- package/main/codegen/ibc/client.js +21 -23
- package/main/codegen/ibc/core/channel/v1/channel.js +438 -57
- package/main/codegen/ibc/core/channel/v1/genesis.js +180 -16
- package/main/codegen/ibc/core/channel/v1/query.js +1604 -97
- package/main/codegen/ibc/core/channel/v1/query.lcd.js +184 -202
- package/main/codegen/ibc/core/channel/v1/query.rpc.Query.js +15 -17
- package/main/codegen/ibc/core/channel/v1/tx.amino.js +21 -470
- package/main/codegen/ibc/core/channel/v1/tx.js +1053 -64
- package/main/codegen/ibc/core/channel/v1/tx.rpc.msg.js +12 -14
- package/main/codegen/ibc/core/client/v1/client.js +438 -28
- package/main/codegen/ibc/core/client/v1/genesis.js +204 -15
- package/main/codegen/ibc/core/client/v1/query.js +874 -45
- package/main/codegen/ibc/core/client/v1/query.lcd.js +110 -124
- package/main/codegen/ibc/core/client/v1/query.rpc.Query.js +10 -12
- package/main/codegen/ibc/core/client/v1/tx.amino.js +9 -128
- package/main/codegen/ibc/core/client/v1/tx.js +402 -20
- package/main/codegen/ibc/core/client/v1/tx.rpc.msg.js +6 -8
- package/main/codegen/ibc/core/commitment/v1/commitment.js +236 -13
- package/main/codegen/ibc/core/connection/v1/connection.js +434 -52
- package/main/codegen/ibc/core/connection/v1/genesis.js +73 -12
- package/main/codegen/ibc/core/connection/v1/query.js +592 -36
- package/main/codegen/ibc/core/connection/v1/query.lcd.js +68 -75
- package/main/codegen/ibc/core/connection/v1/query.rpc.Query.js +7 -9
- package/main/codegen/ibc/core/connection/v1/tx.amino.js +9 -248
- package/main/codegen/ibc/core/connection/v1/tx.js +504 -34
- package/main/codegen/ibc/core/connection/v1/tx.rpc.msg.js +6 -8
- package/main/codegen/ibc/core/port/v1/query.js +224 -0
- package/main/codegen/ibc/core/port/v1/query.rpc.Query.js +44 -0
- package/main/codegen/ibc/core/types/v1/genesis.js +111 -0
- package/main/codegen/ibc/lcd.js +320 -193
- package/main/codegen/ibc/lightclients/localhost/v1/localhost.js +57 -7
- package/main/codegen/ibc/lightclients/solomachine/v1/solomachine.js +933 -91
- package/main/codegen/ibc/lightclients/solomachine/v2/solomachine.js +930 -88
- package/main/codegen/ibc/lightclients/tendermint/v1/tendermint.js +378 -30
- package/main/codegen/ibc/rpc.query.js +257 -146
- package/main/codegen/ibc/rpc.tx.js +235 -153
- package/main/codegen/ics23/bundle.js +6 -6
- package/main/codegen/index.js +74 -41
- package/main/codegen/juno/bundle.js +77 -24
- package/main/codegen/juno/client.js +33 -25
- package/main/codegen/juno/clock/v1/genesis.js +183 -0
- package/main/codegen/juno/clock/v1/query.js +288 -0
- package/main/codegen/juno/clock/v1/query.lcd.js +80 -0
- package/main/codegen/juno/clock/v1/query.rpc.Query.js +59 -0
- package/main/codegen/juno/clock/v1/tx.amino.js +15 -0
- package/main/codegen/juno/clock/v1/tx.js +177 -0
- package/main/codegen/juno/clock/v1/tx.registry.js +47 -0
- package/main/codegen/juno/clock/v1/tx.rpc.msg.js +33 -0
- package/main/codegen/juno/cwhooks/v1/genesis.js +212 -0
- package/main/codegen/juno/cwhooks/v1/query.js +436 -0
- package/main/codegen/juno/cwhooks/v1/query.lcd.js +108 -0
- package/main/codegen/juno/cwhooks/v1/query.rpc.Query.js +73 -0
- package/main/codegen/juno/cwhooks/v1/tx.amino.js +35 -0
- package/main/codegen/juno/cwhooks/v1/tx.js +745 -0
- package/main/codegen/juno/cwhooks/v1/tx.registry.js +119 -0
- package/main/codegen/juno/cwhooks/v1/tx.rpc.msg.js +73 -0
- package/main/codegen/juno/drip/v1/genesis.js +183 -0
- package/main/codegen/juno/drip/v1/query.js +137 -0
- package/main/codegen/juno/drip/v1/query.lcd.js +52 -0
- package/main/codegen/juno/drip/v1/query.rpc.Query.js +45 -0
- package/main/codegen/juno/drip/v1/tx.amino.js +20 -0
- package/main/codegen/juno/drip/v1/tx.js +326 -0
- package/main/codegen/juno/drip/v1/tx.registry.js +65 -0
- package/main/codegen/juno/drip/v1/tx.rpc.msg.js +43 -0
- package/main/codegen/juno/feepay/v1/feepay.js +217 -0
- package/main/codegen/juno/feepay/v1/genesis.js +185 -0
- package/main/codegen/juno/feepay/v1/query.js +769 -0
- package/main/codegen/juno/feepay/v1/query.lcd.js +165 -0
- package/main/codegen/juno/feepay/v1/query.rpc.Query.js +100 -0
- package/main/codegen/juno/feepay/v1/tx.amino.js +35 -0
- package/main/codegen/juno/feepay/v1/tx.js +792 -0
- package/main/codegen/juno/feepay/v1/tx.registry.js +119 -0
- package/main/codegen/juno/feepay/v1/tx.rpc.msg.js +73 -0
- package/main/codegen/juno/feeshare/v1/feeshare.js +54 -6
- package/main/codegen/juno/feeshare/v1/genesis.js +104 -12
- package/main/codegen/juno/feeshare/v1/query.js +446 -27
- package/main/codegen/juno/feeshare/v1/query.lcd.js +78 -86
- package/main/codegen/juno/feeshare/v1/query.rpc.Query.js +7 -9
- package/main/codegen/juno/feeshare/v1/tx.amino.js +12 -56
- package/main/codegen/juno/feeshare/v1/tx.js +406 -18
- package/main/codegen/juno/feeshare/v1/tx.registry.js +19 -1
- package/main/codegen/juno/feeshare/v1/tx.rpc.msg.js +15 -7
- package/main/codegen/juno/lcd.js +339 -156
- package/main/codegen/juno/mint/genesis.js +43 -8
- package/main/codegen/juno/mint/mint.js +117 -24
- package/main/codegen/juno/mint/query.js +384 -19
- package/main/codegen/juno/mint/query.lcd.js +61 -39
- package/main/codegen/juno/mint/query.rpc.Query.js +19 -7
- package/main/codegen/juno/mint/tx.amino.js +15 -0
- package/main/codegen/juno/mint/tx.js +177 -0
- package/main/codegen/juno/mint/tx.registry.js +47 -0
- package/main/codegen/juno/mint/tx.rpc.msg.js +33 -0
- package/main/codegen/juno/rpc.query.js +258 -117
- package/main/codegen/juno/rpc.tx.js +250 -111
- package/main/codegen/osmosis/bundle.js +19 -19
- package/main/codegen/osmosis/client.js +21 -23
- package/main/codegen/osmosis/lcd.js +272 -145
- package/main/codegen/osmosis/rpc.query.js +211 -110
- package/main/codegen/osmosis/rpc.tx.js +193 -111
- package/main/codegen/osmosis/tokenfactory/v1beta1/authorityMetadata.js +55 -6
- package/main/codegen/osmosis/tokenfactory/v1beta1/genesis.js +115 -11
- package/main/codegen/osmosis/tokenfactory/v1beta1/params.js +64 -8
- package/main/codegen/osmosis/tokenfactory/v1beta1/query.js +295 -19
- package/main/codegen/osmosis/tokenfactory/v1beta1/query.lcd.js +37 -41
- package/main/codegen/osmosis/tokenfactory/v1beta1/query.rpc.Query.js +5 -7
- package/main/codegen/osmosis/tokenfactory/v1beta1/tx.amino.js +18 -165
- package/main/codegen/osmosis/tokenfactory/v1beta1/tx.js +785 -34
- package/main/codegen/osmosis/tokenfactory/v1beta1/tx.registry.js +19 -1
- package/main/codegen/osmosis/tokenfactory/v1beta1/tx.rpc.msg.js +18 -10
- package/main/codegen/router/bundle.js +12 -12
- package/main/codegen/router/lcd.js +269 -142
- package/main/codegen/router/rpc.query.js +208 -107
- package/main/codegen/router/v1/genesis.js +221 -24
- package/main/codegen/router/v1/query.js +69 -8
- package/main/codegen/router/v1/query.lcd.js +11 -13
- package/main/codegen/router/v1/query.rpc.Query.js +3 -5
- package/main/codegen/tendermint/abci/types.js +2058 -229
- package/main/codegen/tendermint/bundle.js +21 -21
- package/main/codegen/tendermint/crypto/keys.js +42 -6
- package/main/codegen/tendermint/crypto/proof.js +228 -21
- package/main/codegen/tendermint/libs/bits/types.js +47 -12
- package/main/codegen/tendermint/p2p/types.js +230 -26
- package/main/codegen/tendermint/types/block.js +46 -9
- package/main/codegen/tendermint/types/evidence.js +198 -27
- package/main/codegen/tendermint/types/params.js +316 -47
- package/main/codegen/tendermint/types/types.js +680 -87
- package/main/codegen/tendermint/types/validator.js +136 -24
- package/main/codegen/tendermint/version/types.js +114 -18
- package/main/codegen/utf8.js +129 -0
- package/main/codegen/varint.js +440 -0
- package/module/codegen/amino/amino.js +1 -0
- package/module/codegen/amino/bundle.js +5 -0
- package/module/codegen/binary.js +374 -0
- package/module/codegen/confio/proofs.js +806 -67
- package/module/codegen/contracts.js +2 -2
- package/module/codegen/cosmos/app/v1alpha1/config.js +193 -0
- package/module/codegen/cosmos/app/v1alpha1/module.js +279 -0
- package/module/codegen/cosmos/app/v1alpha1/query.js +139 -0
- package/module/codegen/cosmos/app/v1alpha1/query.rpc.Query.js +27 -0
- package/module/codegen/cosmos/auth/v1beta1/auth.js +352 -0
- package/module/codegen/cosmos/auth/v1beta1/genesis.js +94 -0
- package/module/codegen/cosmos/auth/v1beta1/query.js +1066 -0
- package/module/codegen/cosmos/auth/v1beta1/query.lcd.js +62 -0
- package/module/codegen/cosmos/auth/v1beta1/query.rpc.Query.js +83 -0
- package/module/codegen/cosmos/authz/v1beta1/authz.js +210 -9
- package/module/codegen/cosmos/authz/v1beta1/event.js +101 -5
- package/module/codegen/cosmos/authz/v1beta1/genesis.js +46 -3
- package/module/codegen/cosmos/authz/v1beta1/query.js +298 -17
- package/module/codegen/cosmos/authz/v1beta1/query.lcd.js +0 -3
- package/module/codegen/cosmos/authz/v1beta1/query.rpc.Query.js +4 -4
- package/module/codegen/cosmos/authz/v1beta1/tx.amino.js +18 -0
- package/module/codegen/cosmos/authz/v1beta1/tx.js +303 -14
- package/module/codegen/cosmos/authz/v1beta1/tx.registry.js +69 -0
- package/module/codegen/cosmos/authz/v1beta1/tx.rpc.msg.js +4 -4
- package/module/codegen/cosmos/bank/v1beta1/authz.js +61 -3
- package/module/codegen/cosmos/bank/v1beta1/bank.js +400 -17
- package/module/codegen/cosmos/bank/v1beta1/genesis.js +121 -6
- package/module/codegen/cosmos/bank/v1beta1/query.js +943 -45
- package/module/codegen/cosmos/bank/v1beta1/query.lcd.js +0 -9
- package/module/codegen/cosmos/bank/v1beta1/query.rpc.Query.js +10 -10
- package/module/codegen/cosmos/bank/v1beta1/tx.amino.js +5 -70
- package/module/codegen/cosmos/bank/v1beta1/tx.js +181 -9
- package/module/codegen/cosmos/bank/v1beta1/tx.rpc.msg.js +3 -3
- package/module/codegen/cosmos/base/abci/v1beta1/abci.js +636 -57
- package/module/codegen/cosmos/base/kv/v1beta1/kv.js +169 -0
- package/module/codegen/cosmos/base/query/v1beta1/pagination.js +153 -15
- package/module/codegen/cosmos/base/reflection/v1beta1/reflection.js +315 -0
- package/module/codegen/cosmos/base/reflection/v2alpha1/reflection.js +1197 -53
- package/module/codegen/cosmos/base/snapshots/v1beta1/snapshot.js +859 -0
- package/module/codegen/cosmos/base/store/v1beta1/commit_info.js +296 -0
- package/module/codegen/cosmos/base/store/v1beta1/listening.js +132 -0
- package/module/codegen/cosmos/base/tendermint/v1beta1/query.js +1347 -0
- package/module/codegen/cosmos/base/tendermint/v1beta1/query.lcd.js +60 -0
- package/module/codegen/cosmos/base/tendermint/v1beta1/query.rpc.Service.js +74 -0
- package/module/codegen/cosmos/base/v1beta1/coin.js +207 -9
- package/module/codegen/cosmos/bundle.js +272 -103
- package/module/codegen/cosmos/capability/v1beta1/capability.js +270 -0
- package/module/codegen/cosmos/capability/v1beta1/genesis.js +180 -0
- package/module/codegen/cosmos/client.js +21 -5
- package/module/codegen/cosmos/crisis/v1beta1/genesis.js +77 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.amino.js +8 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.js +163 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.registry.js +33 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.js +17 -0
- package/module/codegen/cosmos/crypto/ed25519/keys.js +113 -5
- package/module/codegen/cosmos/crypto/hd/v1/hd.js +59 -3
- package/module/codegen/cosmos/crypto/keyring/v1/record.js +236 -11
- package/module/codegen/cosmos/crypto/multisig/keys.js +62 -3
- package/module/codegen/cosmos/crypto/multisig/v1beta1/multisig.js +120 -5
- package/module/codegen/cosmos/crypto/secp256k1/keys.js +104 -5
- package/module/codegen/cosmos/crypto/secp256r1/keys.js +86 -5
- package/module/codegen/cosmos/distribution/v1beta1/distribution.js +753 -52
- package/module/codegen/cosmos/distribution/v1beta1/genesis.js +475 -34
- package/module/codegen/cosmos/distribution/v1beta1/query.js +943 -49
- package/module/codegen/cosmos/distribution/v1beta1/query.lcd.js +0 -9
- package/module/codegen/cosmos/distribution/v1beta1/query.rpc.Query.js +10 -10
- package/module/codegen/cosmos/distribution/v1beta1/tx.amino.js +9 -74
- package/module/codegen/cosmos/distribution/v1beta1/tx.js +390 -21
- package/module/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.js +5 -5
- package/module/codegen/cosmos/evidence/v1beta1/evidence.js +124 -0
- package/module/codegen/cosmos/evidence/v1beta1/genesis.js +81 -0
- package/module/codegen/cosmos/evidence/v1beta1/query.js +339 -0
- package/module/codegen/cosmos/evidence/v1beta1/query.lcd.js +30 -0
- package/module/codegen/cosmos/evidence/v1beta1/query.rpc.Query.js +38 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.amino.js +8 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.js +176 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.registry.js +33 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.js +17 -0
- package/module/codegen/cosmos/feegrant/v1beta1/feegrant.js +435 -0
- package/module/codegen/cosmos/feegrant/v1beta1/genesis.js +81 -0
- package/module/codegen/cosmos/feegrant/v1beta1/query.js +524 -0
- package/module/codegen/cosmos/feegrant/v1beta1/query.lcd.js +41 -0
- package/module/codegen/cosmos/feegrant/v1beta1/query.rpc.Query.js +45 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.amino.js +13 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.js +323 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.registry.js +51 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.js +23 -0
- package/module/codegen/cosmos/genutil/v1beta1/genesis.js +81 -0
- package/module/codegen/cosmos/gov/v1/genesis.js +75 -7
- package/module/codegen/cosmos/gov/v1/gov.js +471 -56
- package/module/codegen/cosmos/gov/v1/query.js +756 -53
- package/module/codegen/cosmos/gov/v1/query.lcd.js +0 -8
- package/module/codegen/cosmos/gov/v1/query.rpc.Query.js +9 -9
- package/module/codegen/cosmos/gov/v1/tx.amino.js +11 -150
- package/module/codegen/cosmos/gov/v1/tx.js +490 -35
- package/module/codegen/cosmos/gov/v1/tx.rpc.msg.js +6 -6
- package/module/codegen/cosmos/gov/v1beta1/genesis.js +78 -10
- package/module/codegen/cosmos/gov/v1beta1/gov.js +538 -67
- package/module/codegen/cosmos/gov/v1beta1/query.js +763 -60
- package/module/codegen/cosmos/gov/v1beta1/query.lcd.js +0 -8
- package/module/codegen/cosmos/gov/v1beta1/query.rpc.Query.js +9 -9
- package/module/codegen/cosmos/gov/v1beta1/tx.amino.js +9 -114
- package/module/codegen/cosmos/gov/v1beta1/tx.js +407 -31
- package/module/codegen/cosmos/gov/v1beta1/tx.rpc.msg.js +5 -5
- package/module/codegen/cosmos/group/v1/events.js +705 -0
- package/module/codegen/cosmos/group/v1/genesis.js +173 -0
- package/module/codegen/cosmos/group/v1/query.js +2196 -0
- package/module/codegen/cosmos/group/v1/query.lcd.js +136 -0
- package/module/codegen/cosmos/group/v1/query.rpc.Query.js +135 -0
- package/module/codegen/cosmos/group/v1/tx.amino.js +73 -0
- package/module/codegen/cosmos/group/v1/tx.js +2445 -0
- package/module/codegen/cosmos/group/v1/tx.registry.js +267 -0
- package/module/codegen/cosmos/group/v1/tx.rpc.msg.js +95 -0
- package/module/codegen/cosmos/group/v1/types.js +1511 -0
- package/module/codegen/cosmos/lcd.js +48 -1
- package/module/codegen/cosmos/mint/v1beta1/genesis.js +89 -0
- package/module/codegen/cosmos/mint/v1beta1/mint.js +226 -0
- package/module/codegen/cosmos/mint/v1beta1/query.js +443 -0
- package/module/codegen/cosmos/mint/v1beta1/query.lcd.js +27 -0
- package/module/codegen/cosmos/mint/v1beta1/query.rpc.Query.js +45 -0
- package/module/codegen/cosmos/msg/v1/msg.js +1 -0
- package/module/codegen/cosmos/nft/v1beta1/event.js +313 -0
- package/module/codegen/cosmos/nft/v1beta1/genesis.js +186 -0
- package/module/codegen/cosmos/nft/v1beta1/nft.js +274 -0
- package/module/codegen/cosmos/nft/v1beta1/query.js +1152 -0
- package/module/codegen/cosmos/nft/v1beta1/query.lcd.js +73 -0
- package/module/codegen/cosmos/nft/v1beta1/query.rpc.Query.js +83 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.amino.js +8 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.js +175 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.registry.js +33 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.rpc.msg.js +17 -0
- package/module/codegen/cosmos/orm/v1/orm.js +368 -0
- package/module/codegen/cosmos/orm/v1alpha1/schema.js +245 -0
- package/module/codegen/cosmos/params/v1beta1/params.js +213 -0
- package/module/codegen/cosmos/params/v1beta1/query.js +424 -0
- package/module/codegen/cosmos/params/v1beta1/query.lcd.js +31 -0
- package/module/codegen/cosmos/params/v1beta1/query.rpc.Query.js +36 -0
- package/module/codegen/cosmos/rpc.query.js +32 -0
- package/module/codegen/cosmos/rpc.tx.js +21 -0
- package/module/codegen/cosmos/slashing/v1beta1/genesis.js +383 -0
- package/module/codegen/cosmos/slashing/v1beta1/query.js +493 -0
- package/module/codegen/cosmos/slashing/v1beta1/query.lcd.js +36 -0
- package/module/codegen/cosmos/slashing/v1beta1/query.rpc.Query.js +47 -0
- package/module/codegen/cosmos/slashing/v1beta1/slashing.js +273 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.amino.js +8 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.js +139 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.registry.js +33 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.js +17 -0
- package/module/codegen/cosmos/staking/v1beta1/authz.js +111 -22
- package/module/codegen/cosmos/staking/v1beta1/genesis.js +131 -10
- package/module/codegen/cosmos/staking/v1beta1/query.js +1436 -68
- package/module/codegen/cosmos/staking/v1beta1/query.lcd.js +0 -14
- package/module/codegen/cosmos/staking/v1beta1/query.rpc.Query.js +15 -15
- package/module/codegen/cosmos/staking/v1beta1/staking.js +1225 -95
- package/module/codegen/cosmos/staking/v1beta1/tx.amino.js +11 -199
- package/module/codegen/cosmos/staking/v1beta1/tx.js +511 -32
- package/module/codegen/cosmos/staking/v1beta1/tx.rpc.msg.js +6 -6
- package/module/codegen/cosmos/tx/signing/v1beta1/signing.js +261 -40
- package/module/codegen/cosmos/tx/v1beta1/service.js +581 -52
- package/module/codegen/cosmos/tx/v1beta1/service.lcd.js +0 -3
- package/module/codegen/cosmos/tx/v1beta1/service.rpc.Service.js +6 -6
- package/module/codegen/cosmos/tx/v1beta1/tx.js +818 -50
- package/module/codegen/cosmos/upgrade/v1beta1/query.js +514 -28
- package/module/codegen/cosmos/upgrade/v1beta1/query.lcd.js +0 -5
- package/module/codegen/cosmos/upgrade/v1beta1/query.rpc.Query.js +6 -6
- package/module/codegen/cosmos/upgrade/v1beta1/tx.amino.js +5 -51
- package/module/codegen/cosmos/upgrade/v1beta1/tx.js +214 -10
- package/module/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.js +3 -3
- package/module/codegen/cosmos/upgrade/v1beta1/upgrade.js +247 -18
- package/module/codegen/cosmos/vesting/v1beta1/tx.amino.js +18 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.js +570 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.registry.js +69 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.js +29 -0
- package/module/codegen/cosmos/vesting/v1beta1/vesting.js +622 -0
- package/module/codegen/cosmos_proto/bundle.js +4 -4
- package/module/codegen/cosmos_proto/cosmos.js +121 -15
- package/module/codegen/cosmwasm/bundle.js +19 -19
- package/module/codegen/cosmwasm/client.js +3 -3
- package/module/codegen/cosmwasm/lcd.js +48 -1
- package/module/codegen/cosmwasm/rpc.query.js +32 -0
- package/module/codegen/cosmwasm/rpc.tx.js +21 -0
- package/module/codegen/cosmwasm/wasm/v1/authz.js +504 -30
- package/module/codegen/cosmwasm/wasm/v1/genesis.js +294 -21
- package/module/codegen/cosmwasm/wasm/v1/ibc.js +102 -12
- package/module/codegen/cosmwasm/wasm/v1/proposal.js +815 -42
- package/module/codegen/cosmwasm/wasm/v1/query.js +1203 -61
- package/module/codegen/cosmwasm/wasm/v1/query.lcd.js +0 -11
- package/module/codegen/cosmwasm/wasm/v1/query.rpc.Query.js +12 -12
- package/module/codegen/cosmwasm/wasm/v1/tx.amino.js +15 -219
- package/module/codegen/cosmwasm/wasm/v1/tx.js +728 -46
- package/module/codegen/cosmwasm/wasm/v1/tx.rpc.msg.js +8 -8
- package/module/codegen/cosmwasm/wasm/v1/types.js +437 -59
- package/module/codegen/gaia/bundle.js +10 -10
- package/module/codegen/gaia/globalfee/v1beta1/genesis.js +77 -6
- package/module/codegen/gaia/globalfee/v1beta1/query.js +90 -5
- package/module/codegen/gaia/globalfee/v1beta1/query.lcd.js +0 -1
- package/module/codegen/gaia/globalfee/v1beta1/query.rpc.Query.js +2 -2
- package/module/codegen/gaia/lcd.js +48 -1
- package/module/codegen/gaia/rpc.query.js +32 -0
- package/module/codegen/gogoproto/bundle.js +4 -4
- package/module/codegen/google/api/annotations.js +1 -0
- package/module/codegen/google/api/http.js +1171 -0
- package/module/codegen/google/bundle.js +11 -8
- package/module/codegen/google/protobuf/any.js +278 -3
- package/module/codegen/google/protobuf/descriptor.js +1534 -165
- package/module/codegen/google/protobuf/duration.js +154 -7
- package/module/codegen/google/protobuf/empty.js +63 -3
- package/module/codegen/google/protobuf/timestamp.js +199 -7
- package/module/codegen/helpers.js +19 -46
- package/module/codegen/ibc/applications/transfer/v1/genesis.js +55 -4
- package/module/codegen/ibc/applications/transfer/v1/query.js +292 -13
- package/module/codegen/ibc/applications/transfer/v1/query.lcd.js +0 -3
- package/module/codegen/ibc/applications/transfer/v1/query.rpc.Query.js +4 -4
- package/module/codegen/ibc/applications/transfer/v1/transfer.js +117 -5
- package/module/codegen/ibc/applications/transfer/v1/tx.amino.js +3 -52
- package/module/codegen/ibc/applications/transfer/v1/tx.js +116 -11
- package/module/codegen/ibc/applications/transfer/v1/tx.rpc.msg.js +2 -2
- package/module/codegen/ibc/applications/transfer/v2/packet.js +67 -3
- package/module/codegen/ibc/bundle.js +69 -58
- package/module/codegen/ibc/client.js +3 -3
- package/module/codegen/ibc/core/channel/v1/channel.js +424 -55
- package/module/codegen/ibc/core/channel/v1/genesis.js +149 -12
- package/module/codegen/ibc/core/channel/v1/query.js +1565 -93
- package/module/codegen/ibc/core/channel/v1/query.lcd.js +0 -13
- package/module/codegen/ibc/core/channel/v1/query.rpc.Query.js +14 -14
- package/module/codegen/ibc/core/channel/v1/tx.amino.js +21 -490
- package/module/codegen/ibc/core/channel/v1/tx.js +1049 -62
- package/module/codegen/ibc/core/channel/v1/tx.rpc.msg.js +11 -11
- package/module/codegen/ibc/core/client/v1/client.js +424 -24
- package/module/codegen/ibc/core/client/v1/genesis.js +186 -12
- package/module/codegen/ibc/core/client/v1/query.js +861 -42
- package/module/codegen/ibc/core/client/v1/query.lcd.js +0 -8
- package/module/codegen/ibc/core/client/v1/query.rpc.Query.js +9 -9
- package/module/codegen/ibc/core/client/v1/tx.amino.js +9 -136
- package/module/codegen/ibc/core/client/v1/tx.js +402 -17
- package/module/codegen/ibc/core/client/v1/tx.rpc.msg.js +5 -5
- package/module/codegen/ibc/core/commitment/v1/commitment.js +227 -9
- package/module/codegen/ibc/core/connection/v1/connection.js +409 -48
- package/module/codegen/ibc/core/connection/v1/genesis.js +62 -8
- package/module/codegen/ibc/core/connection/v1/query.js +579 -33
- package/module/codegen/ibc/core/connection/v1/query.lcd.js +0 -5
- package/module/codegen/ibc/core/connection/v1/query.rpc.Query.js +6 -6
- package/module/codegen/ibc/core/connection/v1/tx.amino.js +9 -252
- package/module/codegen/ibc/core/connection/v1/tx.js +495 -31
- package/module/codegen/ibc/core/connection/v1/tx.rpc.msg.js +5 -5
- package/module/codegen/ibc/core/port/v1/query.js +214 -0
- package/module/codegen/ibc/core/port/v1/query.rpc.Query.js +27 -0
- package/module/codegen/ibc/core/types/v1/genesis.js +103 -0
- package/module/codegen/ibc/lcd.js +48 -1
- package/module/codegen/ibc/lightclients/localhost/v1/localhost.js +57 -4
- package/module/codegen/ibc/lightclients/solomachine/v1/solomachine.js +930 -89
- package/module/codegen/ibc/lightclients/solomachine/v2/solomachine.js +927 -86
- package/module/codegen/ibc/lightclients/tendermint/v1/tendermint.js +365 -27
- package/module/codegen/ibc/rpc.query.js +35 -0
- package/module/codegen/ibc/rpc.tx.js +21 -0
- package/module/codegen/ics23/bundle.js +4 -4
- package/module/codegen/index.js +5 -2
- package/module/codegen/juno/bundle.js +75 -22
- package/module/codegen/juno/client.js +15 -5
- package/module/codegen/juno/clock/v1/genesis.js +155 -0
- package/module/codegen/juno/clock/v1/query.js +256 -0
- package/module/codegen/juno/clock/v1/query.lcd.js +21 -0
- package/module/codegen/juno/clock/v1/query.rpc.Query.js +36 -0
- package/module/codegen/juno/clock/v1/tx.amino.js +8 -0
- package/module/codegen/juno/clock/v1/tx.js +167 -0
- package/module/codegen/juno/clock/v1/tx.registry.js +33 -0
- package/module/codegen/juno/clock/v1/tx.rpc.msg.js +17 -0
- package/module/codegen/juno/cwhooks/v1/genesis.js +169 -0
- package/module/codegen/juno/cwhooks/v1/query.js +385 -0
- package/module/codegen/juno/cwhooks/v1/query.lcd.js +27 -0
- package/module/codegen/juno/cwhooks/v1/query.rpc.Query.js +45 -0
- package/module/codegen/juno/cwhooks/v1/tx.amino.js +28 -0
- package/module/codegen/juno/cwhooks/v1/tx.js +719 -0
- package/module/codegen/juno/cwhooks/v1/tx.registry.js +105 -0
- package/module/codegen/juno/cwhooks/v1/tx.rpc.msg.js +41 -0
- package/module/codegen/juno/drip/v1/genesis.js +155 -0
- package/module/codegen/juno/drip/v1/query.js +127 -0
- package/module/codegen/juno/drip/v1/query.lcd.js +15 -0
- package/module/codegen/juno/drip/v1/query.rpc.Query.js +27 -0
- package/module/codegen/juno/drip/v1/tx.amino.js +13 -0
- package/module/codegen/juno/drip/v1/tx.js +294 -0
- package/module/codegen/juno/drip/v1/tx.registry.js +51 -0
- package/module/codegen/juno/drip/v1/tx.rpc.msg.js +23 -0
- package/module/codegen/juno/feepay/v1/feepay.js +207 -0
- package/module/codegen/juno/feepay/v1/genesis.js +157 -0
- package/module/codegen/juno/feepay/v1/query.js +725 -0
- package/module/codegen/juno/feepay/v1/query.lcd.js +48 -0
- package/module/codegen/juno/feepay/v1/query.rpc.Query.js +65 -0
- package/module/codegen/juno/feepay/v1/tx.amino.js +28 -0
- package/module/codegen/juno/feepay/v1/tx.js +748 -0
- package/module/codegen/juno/feepay/v1/tx.registry.js +105 -0
- package/module/codegen/juno/feepay/v1/tx.rpc.msg.js +41 -0
- package/module/codegen/juno/feeshare/v1/feeshare.js +54 -3
- package/module/codegen/juno/feeshare/v1/genesis.js +95 -8
- package/module/codegen/juno/feeshare/v1/query.js +433 -23
- package/module/codegen/juno/feeshare/v1/query.lcd.js +0 -5
- package/module/codegen/juno/feeshare/v1/query.rpc.Query.js +6 -6
- package/module/codegen/juno/feeshare/v1/tx.amino.js +12 -62
- package/module/codegen/juno/feeshare/v1/tx.js +400 -13
- package/module/codegen/juno/feeshare/v1/tx.registry.js +20 -2
- package/module/codegen/juno/feeshare/v1/tx.rpc.msg.js +11 -5
- package/module/codegen/juno/lcd.js +68 -1
- package/module/codegen/juno/mint/genesis.js +43 -5
- package/module/codegen/juno/mint/mint.js +115 -21
- package/module/codegen/juno/mint/query.js +378 -14
- package/module/codegen/juno/mint/query.lcd.js +6 -3
- package/module/codegen/juno/mint/query.rpc.Query.js +14 -5
- package/module/codegen/juno/mint/tx.amino.js +8 -0
- package/module/codegen/juno/mint/tx.js +167 -0
- package/module/codegen/juno/mint/tx.registry.js +33 -0
- package/module/codegen/juno/mint/tx.rpc.msg.js +17 -0
- package/module/codegen/juno/rpc.query.js +44 -0
- package/module/codegen/juno/rpc.tx.js +35 -1
- package/module/codegen/osmosis/bundle.js +17 -17
- package/module/codegen/osmosis/client.js +3 -3
- package/module/codegen/osmosis/lcd.js +48 -1
- package/module/codegen/osmosis/rpc.query.js +32 -0
- package/module/codegen/osmosis/rpc.tx.js +21 -0
- package/module/codegen/osmosis/tokenfactory/v1beta1/authorityMetadata.js +55 -3
- package/module/codegen/osmosis/tokenfactory/v1beta1/genesis.js +110 -7
- package/module/codegen/osmosis/tokenfactory/v1beta1/params.js +59 -4
- package/module/codegen/osmosis/tokenfactory/v1beta1/query.js +290 -15
- package/module/codegen/osmosis/tokenfactory/v1beta1/query.lcd.js +0 -3
- package/module/codegen/osmosis/tokenfactory/v1beta1/query.rpc.Query.js +4 -4
- package/module/codegen/osmosis/tokenfactory/v1beta1/tx.amino.js +18 -173
- package/module/codegen/osmosis/tokenfactory/v1beta1/tx.js +780 -30
- package/module/codegen/osmosis/tokenfactory/v1beta1/tx.registry.js +20 -2
- package/module/codegen/osmosis/tokenfactory/v1beta1/tx.rpc.msg.js +14 -8
- package/module/codegen/router/bundle.js +10 -10
- package/module/codegen/router/lcd.js +48 -1
- package/module/codegen/router/rpc.query.js +32 -0
- package/module/codegen/router/v1/genesis.js +217 -22
- package/module/codegen/router/v1/query.js +69 -5
- package/module/codegen/router/v1/query.lcd.js +0 -1
- package/module/codegen/router/v1/query.rpc.Query.js +2 -2
- package/module/codegen/tendermint/abci/types.js +1996 -220
- package/module/codegen/tendermint/bundle.js +19 -19
- package/module/codegen/tendermint/crypto/keys.js +42 -3
- package/module/codegen/tendermint/crypto/proof.js +221 -18
- package/module/codegen/tendermint/libs/bits/types.js +42 -8
- package/module/codegen/tendermint/p2p/types.js +226 -23
- package/module/codegen/tendermint/types/block.js +46 -6
- package/module/codegen/tendermint/types/evidence.js +191 -24
- package/module/codegen/tendermint/types/params.js +306 -43
- package/module/codegen/tendermint/types/types.js +666 -85
- package/module/codegen/tendermint/types/validator.js +132 -21
- package/module/codegen/tendermint/version/types.js +108 -15
- package/module/codegen/utf8.js +121 -0
- package/module/codegen/varint.js +420 -0
- package/package.json +8 -9
- package/src/codegen/amino/amino.ts +1 -0
- package/src/codegen/amino/bundle.ts +4 -0
- package/src/codegen/binary.ts +534 -0
- package/src/codegen/confio/proofs.ts +828 -387
- package/src/codegen/cosmos/app/v1alpha1/config.ts +255 -0
- package/src/codegen/cosmos/app/v1alpha1/module.ts +454 -0
- package/src/codegen/cosmos/app/v1alpha1/query.rpc.Query.ts +30 -0
- package/src/codegen/cosmos/app/v1alpha1/query.ts +163 -0
- package/src/codegen/cosmos/auth/v1beta1/auth.ts +418 -0
- package/src/codegen/cosmos/auth/v1beta1/genesis.ts +113 -0
- package/src/codegen/cosmos/auth/v1beta1/query.lcd.ts +65 -0
- package/src/codegen/cosmos/auth/v1beta1/query.rpc.Query.ts +102 -0
- package/src/codegen/cosmos/auth/v1beta1/query.ts +1249 -0
- package/src/codegen/cosmos/authz/v1beta1/authz.ts +238 -81
- package/src/codegen/cosmos/authz/v1beta1/event.ts +127 -56
- package/src/codegen/cosmos/authz/v1beta1/genesis.ts +54 -19
- package/src/codegen/cosmos/authz/v1beta1/query.lcd.ts +1 -18
- package/src/codegen/cosmos/authz/v1beta1/query.rpc.Query.ts +4 -15
- package/src/codegen/cosmos/authz/v1beta1/query.ts +359 -140
- package/src/codegen/cosmos/authz/v1beta1/tx.amino.ts +18 -0
- package/src/codegen/cosmos/authz/v1beta1/tx.registry.ts +70 -0
- package/src/codegen/cosmos/authz/v1beta1/tx.rpc.msg.ts +4 -12
- package/src/codegen/cosmos/authz/v1beta1/tx.ts +336 -113
- package/src/codegen/cosmos/bank/v1beta1/authz.ts +59 -19
- package/src/codegen/cosmos/bank/v1beta1/bank.ts +454 -172
- package/src/codegen/cosmos/bank/v1beta1/genesis.ts +142 -60
- package/src/codegen/cosmos/bank/v1beta1/query.lcd.ts +1 -35
- package/src/codegen/cosmos/bank/v1beta1/query.rpc.Query.ts +10 -39
- package/src/codegen/cosmos/bank/v1beta1/query.ts +1075 -385
- package/src/codegen/cosmos/bank/v1beta1/tx.amino.ts +4 -101
- package/src/codegen/cosmos/bank/v1beta1/tx.registry.ts +0 -6
- package/src/codegen/cosmos/bank/v1beta1/tx.rpc.msg.ts +3 -9
- package/src/codegen/cosmos/bank/v1beta1/tx.ts +212 -70
- package/src/codegen/cosmos/base/abci/v1beta1/abci.ts +767 -356
- package/src/codegen/cosmos/base/kv/v1beta1/kv.ts +197 -0
- package/src/codegen/cosmos/base/query/v1beta1/pagination.ts +166 -77
- package/src/codegen/cosmos/base/reflection/v1beta1/reflection.ts +364 -0
- package/src/codegen/cosmos/base/reflection/v2alpha1/reflection.ts +1406 -501
- package/src/codegen/cosmos/base/snapshots/v1beta1/snapshot.ts +1023 -0
- package/src/codegen/cosmos/base/store/v1beta1/commit_info.ts +343 -0
- package/src/codegen/cosmos/base/store/v1beta1/listening.ts +158 -0
- package/src/codegen/cosmos/base/tendermint/v1beta1/query.lcd.ts +63 -0
- package/src/codegen/cosmos/base/tendermint/v1beta1/query.rpc.Service.ts +87 -0
- package/src/codegen/cosmos/base/tendermint/v1beta1/query.ts +1606 -0
- package/src/codegen/cosmos/base/v1beta1/coin.ts +221 -70
- package/src/codegen/cosmos/bundle.ts +439 -157
- package/src/codegen/cosmos/capability/v1beta1/capability.ts +312 -0
- package/src/codegen/cosmos/capability/v1beta1/genesis.ts +226 -0
- package/src/codegen/cosmos/client.ts +31 -5
- package/src/codegen/cosmos/crisis/v1beta1/genesis.ts +99 -0
- package/src/codegen/cosmos/crisis/v1beta1/tx.amino.ts +8 -0
- package/src/codegen/cosmos/crisis/v1beta1/tx.registry.ts +34 -0
- package/src/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.ts +20 -0
- package/src/codegen/cosmos/crisis/v1beta1/tx.ts +190 -0
- package/src/codegen/cosmos/crypto/ed25519/keys.ts +111 -34
- package/src/codegen/cosmos/crypto/hd/v1/hd.ts +76 -39
- package/src/codegen/cosmos/crypto/keyring/v1/record.ts +280 -108
- package/src/codegen/cosmos/crypto/multisig/keys.ts +63 -21
- package/src/codegen/cosmos/crypto/multisig/v1beta1/multisig.ts +118 -36
- package/src/codegen/cosmos/crypto/secp256k1/keys.ts +108 -34
- package/src/codegen/cosmos/crypto/secp256r1/keys.ts +104 -36
- package/src/codegen/cosmos/distribution/v1beta1/distribution.ts +778 -261
- package/src/codegen/cosmos/distribution/v1beta1/genesis.ts +591 -274
- package/src/codegen/cosmos/distribution/v1beta1/query.lcd.ts +1 -25
- package/src/codegen/cosmos/distribution/v1beta1/query.rpc.Query.ts +10 -39
- package/src/codegen/cosmos/distribution/v1beta1/query.ts +1022 -353
- package/src/codegen/cosmos/distribution/v1beta1/tx.amino.ts +8 -105
- package/src/codegen/cosmos/distribution/v1beta1/tx.registry.ts +0 -12
- package/src/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.ts +5 -15
- package/src/codegen/cosmos/distribution/v1beta1/tx.ts +423 -133
- package/src/codegen/cosmos/evidence/v1beta1/evidence.ts +146 -0
- package/src/codegen/cosmos/evidence/v1beta1/genesis.ts +95 -0
- package/src/codegen/cosmos/evidence/v1beta1/query.lcd.ts +33 -0
- package/src/codegen/cosmos/evidence/v1beta1/query.rpc.Query.ts +43 -0
- package/src/codegen/cosmos/evidence/v1beta1/query.ts +405 -0
- package/src/codegen/cosmos/evidence/v1beta1/tx.amino.ts +8 -0
- package/src/codegen/cosmos/evidence/v1beta1/tx.registry.ts +34 -0
- package/src/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.ts +23 -0
- package/src/codegen/cosmos/evidence/v1beta1/tx.ts +207 -0
- package/src/codegen/cosmos/feegrant/v1beta1/feegrant.ts +560 -0
- package/src/codegen/cosmos/feegrant/v1beta1/genesis.ts +93 -0
- package/src/codegen/cosmos/feegrant/v1beta1/query.lcd.ts +44 -0
- package/src/codegen/cosmos/feegrant/v1beta1/query.rpc.Query.ts +55 -0
- package/src/codegen/cosmos/feegrant/v1beta1/query.ts +634 -0
- package/src/codegen/cosmos/feegrant/v1beta1/tx.amino.ts +13 -0
- package/src/codegen/cosmos/feegrant/v1beta1/tx.registry.ts +52 -0
- package/src/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.ts +34 -0
- package/src/codegen/cosmos/feegrant/v1beta1/tx.ts +384 -0
- package/src/codegen/cosmos/genutil/v1beta1/genesis.ts +95 -0
- package/src/codegen/cosmos/gov/v1/genesis.ts +100 -55
- package/src/codegen/cosmos/gov/v1/gov.ts +560 -306
- package/src/codegen/cosmos/gov/v1/query.lcd.ts +1 -28
- package/src/codegen/cosmos/gov/v1/query.rpc.Query.ts +9 -35
- package/src/codegen/cosmos/gov/v1/query.ts +929 -365
- package/src/codegen/cosmos/gov/v1/tx.amino.ts +10 -208
- package/src/codegen/cosmos/gov/v1/tx.registry.ts +0 -15
- package/src/codegen/cosmos/gov/v1/tx.rpc.msg.ts +6 -18
- package/src/codegen/cosmos/gov/v1/tx.ts +582 -213
- package/src/codegen/cosmos/gov/v1beta1/genesis.ts +107 -62
- package/src/codegen/cosmos/gov/v1beta1/gov.ts +641 -348
- package/src/codegen/cosmos/gov/v1beta1/query.lcd.ts +1 -28
- package/src/codegen/cosmos/gov/v1beta1/query.rpc.Query.ts +9 -35
- package/src/codegen/cosmos/gov/v1beta1/query.ts +948 -384
- package/src/codegen/cosmos/gov/v1beta1/tx.amino.ts +8 -159
- package/src/codegen/cosmos/gov/v1beta1/tx.registry.ts +0 -12
- package/src/codegen/cosmos/gov/v1beta1/tx.rpc.msg.ts +5 -15
- package/src/codegen/cosmos/gov/v1beta1/tx.ts +468 -168
- package/src/codegen/cosmos/group/v1/events.ts +855 -0
- package/src/codegen/cosmos/group/v1/genesis.ts +240 -0
- package/src/codegen/cosmos/group/v1/query.lcd.ts +139 -0
- package/src/codegen/cosmos/group/v1/query.rpc.Query.ts +162 -0
- package/src/codegen/cosmos/group/v1/query.ts +2674 -0
- package/src/codegen/cosmos/group/v1/tx.amino.ts +73 -0
- package/src/codegen/cosmos/group/v1/tx.registry.ts +268 -0
- package/src/codegen/cosmos/group/v1/tx.rpc.msg.ts +124 -0
- package/src/codegen/cosmos/group/v1/tx.ts +2998 -0
- package/src/codegen/cosmos/group/v1/types.ts +1964 -0
- package/src/codegen/cosmos/lcd.ts +48 -1
- package/src/codegen/cosmos/mint/v1beta1/genesis.ts +110 -0
- package/src/codegen/cosmos/mint/v1beta1/mint.ts +286 -0
- package/src/codegen/cosmos/mint/v1beta1/query.lcd.ts +30 -0
- package/src/codegen/cosmos/mint/v1beta1/query.rpc.Query.ts +52 -0
- package/src/codegen/cosmos/mint/v1beta1/query.ts +513 -0
- package/src/codegen/cosmos/msg/v1/msg.ts +1 -0
- package/src/codegen/cosmos/nft/v1beta1/event.ts +373 -0
- package/src/codegen/cosmos/nft/v1beta1/genesis.ts +222 -0
- package/src/codegen/cosmos/nft/v1beta1/nft.ts +354 -0
- package/src/codegen/cosmos/nft/v1beta1/query.lcd.ts +76 -0
- package/src/codegen/cosmos/nft/v1beta1/query.rpc.Query.ts +101 -0
- package/src/codegen/cosmos/nft/v1beta1/query.ts +1360 -0
- package/src/codegen/cosmos/nft/v1beta1/tx.amino.ts +8 -0
- package/src/codegen/cosmos/nft/v1beta1/tx.registry.ts +34 -0
- package/src/codegen/cosmos/nft/v1beta1/tx.rpc.msg.ts +20 -0
- package/src/codegen/cosmos/nft/v1beta1/tx.ts +213 -0
- package/src/codegen/cosmos/orm/v1/orm.ts +566 -0
- package/src/codegen/cosmos/orm/v1alpha1/schema.ts +348 -0
- package/src/codegen/cosmos/params/v1beta1/params.ts +250 -0
- package/src/codegen/cosmos/params/v1beta1/query.lcd.ts +34 -0
- package/src/codegen/cosmos/params/v1beta1/query.rpc.Query.ts +44 -0
- package/src/codegen/cosmos/params/v1beta1/query.ts +495 -0
- package/src/codegen/cosmos/rpc.query.ts +32 -0
- package/src/codegen/cosmos/rpc.tx.ts +21 -0
- package/src/codegen/cosmos/slashing/v1beta1/genesis.ts +478 -0
- package/src/codegen/cosmos/slashing/v1beta1/query.lcd.ts +39 -0
- package/src/codegen/cosmos/slashing/v1beta1/query.rpc.Query.ts +54 -0
- package/src/codegen/cosmos/slashing/v1beta1/query.ts +577 -0
- package/src/codegen/cosmos/slashing/v1beta1/slashing.ts +356 -0
- package/src/codegen/cosmos/slashing/v1beta1/tx.amino.ts +8 -0
- package/src/codegen/cosmos/slashing/v1beta1/tx.registry.ts +34 -0
- package/src/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.ts +24 -0
- package/src/codegen/cosmos/slashing/v1beta1/tx.ts +160 -0
- package/src/codegen/cosmos/staking/v1beta1/authz.ts +130 -84
- package/src/codegen/cosmos/staking/v1beta1/genesis.ts +170 -82
- package/src/codegen/cosmos/staking/v1beta1/query.lcd.ts +1 -48
- package/src/codegen/cosmos/staking/v1beta1/query.rpc.Query.ts +15 -59
- package/src/codegen/cosmos/staking/v1beta1/query.ts +1616 -586
- package/src/codegen/cosmos/staking/v1beta1/staking.ts +1395 -616
- package/src/codegen/cosmos/staking/v1beta1/tx.amino.ts +10 -276
- package/src/codegen/cosmos/staking/v1beta1/tx.registry.ts +0 -15
- package/src/codegen/cosmos/staking/v1beta1/tx.rpc.msg.ts +6 -18
- package/src/codegen/cosmos/staking/v1beta1/tx.ts +609 -224
- package/src/codegen/cosmos/tx/signing/v1beta1/signing.ts +306 -181
- package/src/codegen/cosmos/tx/v1beta1/service.lcd.ts +1 -15
- package/src/codegen/cosmos/tx/v1beta1/service.rpc.Service.ts +6 -23
- package/src/codegen/cosmos/tx/v1beta1/service.ts +635 -293
- package/src/codegen/cosmos/tx/v1beta1/tx.ts +930 -405
- package/src/codegen/cosmos/upgrade/v1beta1/query.lcd.ts +1 -15
- package/src/codegen/cosmos/upgrade/v1beta1/query.rpc.Query.ts +6 -23
- package/src/codegen/cosmos/upgrade/v1beta1/query.ts +550 -182
- package/src/codegen/cosmos/upgrade/v1beta1/tx.amino.ts +4 -77
- package/src/codegen/cosmos/upgrade/v1beta1/tx.registry.ts +0 -6
- package/src/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.ts +3 -9
- package/src/codegen/cosmos/upgrade/v1beta1/tx.ts +217 -73
- package/src/codegen/cosmos/upgrade/v1beta1/upgrade.ts +284 -124
- package/src/codegen/cosmos/vesting/v1beta1/tx.amino.ts +18 -0
- package/src/codegen/cosmos/vesting/v1beta1/tx.registry.ts +70 -0
- package/src/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.ts +45 -0
- package/src/codegen/cosmos/vesting/v1beta1/tx.ts +657 -0
- package/src/codegen/cosmos/vesting/v1beta1/vesting.ts +724 -0
- package/src/codegen/cosmos_proto/bundle.ts +3 -2
- package/src/codegen/cosmos_proto/cosmos.ts +125 -67
- package/src/codegen/cosmwasm/bundle.ts +32 -30
- package/src/codegen/cosmwasm/client.ts +5 -3
- package/src/codegen/cosmwasm/lcd.ts +48 -1
- package/src/codegen/cosmwasm/rpc.query.ts +32 -0
- package/src/codegen/cosmwasm/rpc.tx.ts +21 -0
- package/src/codegen/cosmwasm/wasm/v1/authz.ts +528 -180
- package/src/codegen/cosmwasm/wasm/v1/genesis.ts +356 -134
- package/src/codegen/cosmwasm/wasm/v1/ibc.ts +131 -60
- package/src/codegen/cosmwasm/wasm/v1/proposal.ts +987 -497
- package/src/codegen/cosmwasm/wasm/v1/query.lcd.ts +1 -37
- package/src/codegen/cosmwasm/wasm/v1/query.rpc.Query.ts +12 -47
- package/src/codegen/cosmwasm/wasm/v1/query.ts +1352 -486
- package/src/codegen/cosmwasm/wasm/v1/tx.amino.ts +14 -298
- package/src/codegen/cosmwasm/wasm/v1/tx.registry.ts +0 -21
- package/src/codegen/cosmwasm/wasm/v1/tx.rpc.msg.ts +8 -24
- package/src/codegen/cosmwasm/wasm/v1/tx.ts +893 -386
- package/src/codegen/cosmwasm/wasm/v1/types.ts +541 -300
- package/src/codegen/gaia/bundle.ts +14 -12
- package/src/codegen/gaia/globalfee/v1beta1/genesis.ts +97 -40
- package/src/codegen/gaia/globalfee/v1beta1/query.lcd.ts +1 -5
- package/src/codegen/gaia/globalfee/v1beta1/query.rpc.Query.ts +2 -7
- package/src/codegen/gaia/globalfee/v1beta1/query.ts +92 -33
- package/src/codegen/gaia/lcd.ts +48 -1
- package/src/codegen/gaia/rpc.query.ts +32 -0
- package/src/codegen/gogoproto/bundle.ts +3 -2
- package/src/codegen/google/api/annotations.ts +1 -0
- package/src/codegen/google/api/http.ts +1351 -0
- package/src/codegen/google/bundle.ts +17 -10
- package/src/codegen/google/protobuf/any.ts +131 -24
- package/src/codegen/google/protobuf/descriptor.ts +1890 -1033
- package/src/codegen/google/protobuf/duration.ts +106 -41
- package/src/codegen/google/protobuf/empty.ts +49 -16
- package/src/codegen/google/protobuf/timestamp.ts +127 -39
- package/src/codegen/helpers.ts +174 -166
- package/src/codegen/ibc/applications/transfer/v1/genesis.ts +67 -26
- package/src/codegen/ibc/applications/transfer/v1/query.lcd.ts +1 -11
- package/src/codegen/ibc/applications/transfer/v1/query.rpc.Query.ts +4 -15
- package/src/codegen/ibc/applications/transfer/v1/query.ts +322 -108
- package/src/codegen/ibc/applications/transfer/v1/transfer.ts +123 -46
- package/src/codegen/ibc/applications/transfer/v1/tx.amino.ts +2 -67
- package/src/codegen/ibc/applications/transfer/v1/tx.registry.ts +0 -3
- package/src/codegen/ibc/applications/transfer/v1/tx.rpc.msg.ts +2 -6
- package/src/codegen/ibc/applications/transfer/v1/tx.ts +148 -75
- package/src/codegen/ibc/applications/transfer/v2/packet.ts +74 -34
- package/src/codegen/ibc/bundle.ts +115 -90
- package/src/codegen/ibc/client.ts +5 -3
- package/src/codegen/ibc/core/channel/v1/channel.ts +489 -301
- package/src/codegen/ibc/core/channel/v1/genesis.ts +177 -68
- package/src/codegen/ibc/core/channel/v1/query.lcd.ts +1 -38
- package/src/codegen/ibc/core/channel/v1/query.rpc.Query.ts +14 -55
- package/src/codegen/ibc/core/channel/v1/query.ts +1799 -794
- package/src/codegen/ibc/core/channel/v1/tx.amino.ts +20 -637
- package/src/codegen/ibc/core/channel/v1/tx.registry.ts +0 -30
- package/src/codegen/ibc/core/channel/v1/tx.rpc.msg.ts +11 -33
- package/src/codegen/ibc/core/channel/v1/tx.ts +1224 -442
- package/src/codegen/ibc/core/client/v1/client.ts +463 -184
- package/src/codegen/ibc/core/client/v1/genesis.ts +218 -91
- package/src/codegen/ibc/core/client/v1/query.lcd.ts +1 -25
- package/src/codegen/ibc/core/client/v1/query.rpc.Query.ts +9 -35
- package/src/codegen/ibc/core/client/v1/query.ts +929 -333
- package/src/codegen/ibc/core/client/v1/tx.amino.ts +8 -190
- package/src/codegen/ibc/core/client/v1/tx.registry.ts +0 -12
- package/src/codegen/ibc/core/client/v1/tx.rpc.msg.ts +5 -15
- package/src/codegen/ibc/core/client/v1/tx.ts +461 -182
- package/src/codegen/ibc/core/commitment/v1/commitment.ts +224 -67
- package/src/codegen/ibc/core/connection/v1/connection.ts +485 -246
- package/src/codegen/ibc/core/connection/v1/genesis.ts +81 -37
- package/src/codegen/ibc/core/connection/v1/query.lcd.ts +1 -15
- package/src/codegen/ibc/core/connection/v1/query.rpc.Query.ts +6 -23
- package/src/codegen/ibc/core/connection/v1/query.ts +653 -261
- package/src/codegen/ibc/core/connection/v1/tx.amino.ts +8 -328
- package/src/codegen/ibc/core/connection/v1/tx.registry.ts +0 -12
- package/src/codegen/ibc/core/connection/v1/tx.rpc.msg.ts +5 -15
- package/src/codegen/ibc/core/connection/v1/tx.ts +583 -242
- package/src/codegen/ibc/core/port/v1/query.rpc.Query.ts +30 -0
- package/src/codegen/ibc/core/port/v1/query.ts +269 -0
- package/src/codegen/ibc/core/types/v1/genesis.ts +135 -0
- package/src/codegen/ibc/lcd.ts +48 -1
- package/src/codegen/ibc/lightclients/localhost/v1/localhost.ts +65 -28
- package/src/codegen/ibc/lightclients/solomachine/v1/solomachine.ts +1061 -473
- package/src/codegen/ibc/lightclients/solomachine/v2/solomachine.ts +1056 -468
- package/src/codegen/ibc/lightclients/tendermint/v1/tendermint.ts +419 -189
- package/src/codegen/ibc/rpc.query.ts +35 -0
- package/src/codegen/ibc/rpc.tx.ts +21 -0
- package/src/codegen/ics23/bundle.ts +3 -2
- package/src/codegen/index.ts +5 -2
- package/src/codegen/juno/bundle.ts +127 -34
- package/src/codegen/juno/client.ts +21 -4
- package/src/codegen/juno/clock/v1/genesis.ts +188 -0
- package/src/codegen/juno/clock/v1/query.lcd.ts +24 -0
- package/src/codegen/juno/clock/v1/query.rpc.Query.ts +41 -0
- package/src/codegen/juno/clock/v1/query.ts +298 -0
- package/src/codegen/juno/clock/v1/tx.amino.ts +8 -0
- package/src/codegen/juno/clock/v1/tx.registry.ts +34 -0
- package/src/codegen/juno/clock/v1/tx.rpc.msg.ts +25 -0
- package/src/codegen/juno/clock/v1/tx.ts +203 -0
- package/src/codegen/juno/cwhooks/v1/genesis.ts +209 -0
- package/src/codegen/juno/cwhooks/v1/query.lcd.ts +30 -0
- package/src/codegen/juno/cwhooks/v1/query.rpc.Query.ts +52 -0
- package/src/codegen/juno/cwhooks/v1/query.ts +447 -0
- package/src/codegen/juno/cwhooks/v1/tx.amino.ts +28 -0
- package/src/codegen/juno/cwhooks/v1/tx.registry.ts +106 -0
- package/src/codegen/juno/cwhooks/v1/tx.rpc.msg.ts +57 -0
- package/src/codegen/juno/cwhooks/v1/tx.ts +851 -0
- package/src/codegen/juno/drip/v1/genesis.ts +190 -0
- package/src/codegen/juno/drip/v1/query.lcd.ts +18 -0
- package/src/codegen/juno/drip/v1/query.rpc.Query.ts +30 -0
- package/src/codegen/juno/drip/v1/query.ts +151 -0
- package/src/codegen/juno/drip/v1/tx.amino.ts +13 -0
- package/src/codegen/juno/drip/v1/tx.registry.ts +52 -0
- package/src/codegen/juno/drip/v1/tx.rpc.msg.ts +27 -0
- package/src/codegen/juno/drip/v1/tx.ts +360 -0
- package/src/codegen/juno/feepay/v1/feepay.ts +257 -0
- package/src/codegen/juno/feepay/v1/genesis.ts +191 -0
- package/src/codegen/juno/feepay/v1/query.lcd.ts +51 -0
- package/src/codegen/juno/feepay/v1/query.rpc.Query.ts +76 -0
- package/src/codegen/juno/feepay/v1/query.ts +886 -0
- package/src/codegen/juno/feepay/v1/tx.amino.ts +28 -0
- package/src/codegen/juno/feepay/v1/tx.registry.ts +106 -0
- package/src/codegen/juno/feepay/v1/tx.rpc.msg.ts +52 -0
- package/src/codegen/juno/feepay/v1/tx.ts +905 -0
- package/src/codegen/juno/feeshare/v1/feeshare.ts +61 -29
- package/src/codegen/juno/feeshare/v1/genesis.ts +119 -56
- package/src/codegen/juno/feeshare/v1/query.lcd.ts +1 -19
- package/src/codegen/juno/feeshare/v1/query.rpc.Query.ts +6 -23
- package/src/codegen/juno/feeshare/v1/query.ts +504 -203
- package/src/codegen/juno/feeshare/v1/tx.amino.ts +12 -87
- package/src/codegen/juno/feeshare/v1/tx.registry.ts +20 -11
- package/src/codegen/juno/feeshare/v1/tx.rpc.msg.ts +13 -13
- package/src/codegen/juno/feeshare/v1/tx.ts +485 -120
- package/src/codegen/juno/lcd.ts +68 -1
- package/src/codegen/juno/mint/genesis.ts +58 -30
- package/src/codegen/juno/mint/mint.ts +152 -73
- package/src/codegen/juno/mint/query.lcd.ts +8 -10
- package/src/codegen/juno/mint/query.rpc.Query.ts +16 -16
- package/src/codegen/juno/mint/query.ts +431 -99
- package/src/codegen/juno/mint/tx.amino.ts +8 -0
- package/src/codegen/juno/mint/tx.registry.ts +34 -0
- package/src/codegen/juno/mint/tx.rpc.msg.ts +25 -0
- package/src/codegen/juno/mint/tx.ts +203 -0
- package/src/codegen/juno/rpc.query.ts +44 -0
- package/src/codegen/juno/rpc.tx.ts +35 -1
- package/src/codegen/osmosis/bundle.ts +28 -26
- package/src/codegen/osmosis/client.ts +5 -3
- package/src/codegen/osmosis/lcd.ts +48 -1
- package/src/codegen/osmosis/rpc.query.ts +32 -0
- package/src/codegen/osmosis/rpc.tx.ts +21 -0
- package/src/codegen/osmosis/tokenfactory/v1beta1/authorityMetadata.ts +56 -19
- package/src/codegen/osmosis/tokenfactory/v1beta1/genesis.ts +126 -47
- package/src/codegen/osmosis/tokenfactory/v1beta1/params.ts +80 -20
- package/src/codegen/osmosis/tokenfactory/v1beta1/query.lcd.ts +1 -9
- package/src/codegen/osmosis/tokenfactory/v1beta1/query.rpc.Query.ts +4 -15
- package/src/codegen/osmosis/tokenfactory/v1beta1/query.ts +318 -105
- package/src/codegen/osmosis/tokenfactory/v1beta1/tx.amino.ts +18 -244
- package/src/codegen/osmosis/tokenfactory/v1beta1/tx.registry.ts +20 -20
- package/src/codegen/osmosis/tokenfactory/v1beta1/tx.rpc.msg.ts +21 -17
- package/src/codegen/osmosis/tokenfactory/v1beta1/tx.ts +881 -215
- package/src/codegen/router/bundle.ts +14 -12
- package/src/codegen/router/lcd.ts +48 -1
- package/src/codegen/router/rpc.query.ts +32 -0
- package/src/codegen/router/v1/genesis.ts +276 -119
- package/src/codegen/router/v1/query.lcd.ts +1 -5
- package/src/codegen/router/v1/query.rpc.Query.ts +2 -7
- package/src/codegen/router/v1/query.ts +85 -34
- package/src/codegen/tendermint/abci/types.ts +2651 -1184
- package/src/codegen/tendermint/bundle.ts +28 -22
- package/src/codegen/tendermint/crypto/keys.ts +51 -20
- package/src/codegen/tendermint/crypto/proof.ts +281 -108
- package/src/codegen/tendermint/libs/bits/types.ts +62 -32
- package/src/codegen/tendermint/p2p/types.ts +318 -126
- package/src/codegen/tendermint/types/block.ts +70 -33
- package/src/codegen/tendermint/types/evidence.ts +257 -112
- package/src/codegen/tendermint/types/params.ts +383 -188
- package/src/codegen/tendermint/types/types.ts +886 -437
- package/src/codegen/tendermint/types/validator.ts +191 -84
- package/src/codegen/tendermint/version/types.ts +125 -56
- package/src/codegen/utf8.ts +148 -0
- package/src/codegen/varint.ts +488 -0
- package/types/codegen/cosmos/authz/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/bank/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/distribution/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/gov/v1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/gov/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/staking/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/tx/v1beta1/service.lcd.d.ts +1 -1
- package/types/codegen/cosmos/upgrade/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmwasm/wasm/v1/query.lcd.d.ts +1 -1
- package/types/codegen/gaia/globalfee/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/helpers.d.ts +1 -1
- package/types/codegen/ibc/applications/transfer/v1/query.lcd.d.ts +1 -1
- package/types/codegen/ibc/core/channel/v1/query.lcd.d.ts +1 -1
- package/types/codegen/ibc/core/client/v1/query.lcd.d.ts +1 -1
- package/types/codegen/ibc/core/connection/v1/query.lcd.d.ts +1 -1
- package/types/codegen/index.d.ts +1 -1
- package/types/codegen/juno/feeshare/v1/query.lcd.d.ts +1 -1
- package/types/codegen/juno/mint/query.lcd.d.ts +1 -1
- package/types/codegen/osmosis/tokenfactory/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/router/v1/query.lcd.d.ts +1 -1
|
@@ -1,48 +1,73 @@
|
|
|
1
|
-
import { Any, AnySDKType } from "../../../google/protobuf/any";
|
|
2
|
-
import { Coin, CoinSDKType } from "../../../cosmos/base/v1beta1/coin";
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
1
|
+
import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any";
|
|
2
|
+
import { Coin, CoinAmino, CoinSDKType } from "../../../cosmos/base/v1beta1/coin";
|
|
3
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
|
+
import { toUtf8, fromUtf8 } from "@cosmjs/encoding";
|
|
5
5
|
/**
|
|
6
6
|
* ContractExecutionAuthorization defines authorization for wasm execute.
|
|
7
7
|
* Since: wasmd 0.30
|
|
8
8
|
*/
|
|
9
|
-
|
|
10
9
|
export interface ContractExecutionAuthorization {
|
|
11
10
|
/** Grants for contract executions */
|
|
12
11
|
grants: ContractGrant[];
|
|
13
12
|
}
|
|
13
|
+
export interface ContractExecutionAuthorizationProtoMsg {
|
|
14
|
+
typeUrl: "/cosmwasm.wasm.v1.ContractExecutionAuthorization";
|
|
15
|
+
value: Uint8Array;
|
|
16
|
+
}
|
|
14
17
|
/**
|
|
15
18
|
* ContractExecutionAuthorization defines authorization for wasm execute.
|
|
16
19
|
* Since: wasmd 0.30
|
|
17
20
|
*/
|
|
18
|
-
|
|
19
|
-
export interface ContractExecutionAuthorizationSDKType {
|
|
21
|
+
export interface ContractExecutionAuthorizationAmino {
|
|
20
22
|
/** Grants for contract executions */
|
|
23
|
+
grants?: ContractGrantAmino[];
|
|
24
|
+
}
|
|
25
|
+
export interface ContractExecutionAuthorizationAminoMsg {
|
|
26
|
+
type: "wasm/ContractExecutionAuthorization";
|
|
27
|
+
value: ContractExecutionAuthorizationAmino;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* ContractExecutionAuthorization defines authorization for wasm execute.
|
|
31
|
+
* Since: wasmd 0.30
|
|
32
|
+
*/
|
|
33
|
+
export interface ContractExecutionAuthorizationSDKType {
|
|
21
34
|
grants: ContractGrantSDKType[];
|
|
22
35
|
}
|
|
23
36
|
/**
|
|
24
37
|
* ContractMigrationAuthorization defines authorization for wasm contract
|
|
25
38
|
* migration. Since: wasmd 0.30
|
|
26
39
|
*/
|
|
27
|
-
|
|
28
40
|
export interface ContractMigrationAuthorization {
|
|
29
41
|
/** Grants for contract migrations */
|
|
30
42
|
grants: ContractGrant[];
|
|
31
43
|
}
|
|
44
|
+
export interface ContractMigrationAuthorizationProtoMsg {
|
|
45
|
+
typeUrl: "/cosmwasm.wasm.v1.ContractMigrationAuthorization";
|
|
46
|
+
value: Uint8Array;
|
|
47
|
+
}
|
|
32
48
|
/**
|
|
33
49
|
* ContractMigrationAuthorization defines authorization for wasm contract
|
|
34
50
|
* migration. Since: wasmd 0.30
|
|
35
51
|
*/
|
|
36
|
-
|
|
37
|
-
export interface ContractMigrationAuthorizationSDKType {
|
|
52
|
+
export interface ContractMigrationAuthorizationAmino {
|
|
38
53
|
/** Grants for contract migrations */
|
|
54
|
+
grants?: ContractGrantAmino[];
|
|
55
|
+
}
|
|
56
|
+
export interface ContractMigrationAuthorizationAminoMsg {
|
|
57
|
+
type: "wasm/ContractMigrationAuthorization";
|
|
58
|
+
value: ContractMigrationAuthorizationAmino;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* ContractMigrationAuthorization defines authorization for wasm contract
|
|
62
|
+
* migration. Since: wasmd 0.30
|
|
63
|
+
*/
|
|
64
|
+
export interface ContractMigrationAuthorizationSDKType {
|
|
39
65
|
grants: ContractGrantSDKType[];
|
|
40
66
|
}
|
|
41
67
|
/**
|
|
42
68
|
* ContractGrant a granted permission for a single contract
|
|
43
69
|
* Since: wasmd 0.30
|
|
44
70
|
*/
|
|
45
|
-
|
|
46
71
|
export interface ContractGrant {
|
|
47
72
|
/** Contract is the bech32 address of the smart contract */
|
|
48
73
|
contract: string;
|
|
@@ -50,72 +75,110 @@ export interface ContractGrant {
|
|
|
50
75
|
* Limit defines execution limits that are enforced and updated when the grant
|
|
51
76
|
* is applied. When the limit lapsed the grant is removed.
|
|
52
77
|
*/
|
|
53
|
-
|
|
54
78
|
limit?: Any;
|
|
55
79
|
/**
|
|
56
80
|
* Filter define more fine-grained control on the message payload passed
|
|
57
81
|
* to the contract in the operation. When no filter applies on execution, the
|
|
58
82
|
* operation is prohibited.
|
|
59
83
|
*/
|
|
60
|
-
|
|
61
84
|
filter?: Any;
|
|
62
85
|
}
|
|
86
|
+
export interface ContractGrantProtoMsg {
|
|
87
|
+
typeUrl: "/cosmwasm.wasm.v1.ContractGrant";
|
|
88
|
+
value: Uint8Array;
|
|
89
|
+
}
|
|
63
90
|
/**
|
|
64
91
|
* ContractGrant a granted permission for a single contract
|
|
65
92
|
* Since: wasmd 0.30
|
|
66
93
|
*/
|
|
67
|
-
|
|
68
|
-
export interface ContractGrantSDKType {
|
|
94
|
+
export interface ContractGrantAmino {
|
|
69
95
|
/** Contract is the bech32 address of the smart contract */
|
|
70
|
-
contract
|
|
96
|
+
contract?: string;
|
|
71
97
|
/**
|
|
72
98
|
* Limit defines execution limits that are enforced and updated when the grant
|
|
73
99
|
* is applied. When the limit lapsed the grant is removed.
|
|
74
100
|
*/
|
|
75
|
-
|
|
76
|
-
limit?: AnySDKType;
|
|
101
|
+
limit?: AnyAmino;
|
|
77
102
|
/**
|
|
78
103
|
* Filter define more fine-grained control on the message payload passed
|
|
79
104
|
* to the contract in the operation. When no filter applies on execution, the
|
|
80
105
|
* operation is prohibited.
|
|
81
106
|
*/
|
|
82
|
-
|
|
107
|
+
filter?: AnyAmino;
|
|
108
|
+
}
|
|
109
|
+
export interface ContractGrantAminoMsg {
|
|
110
|
+
type: "wasm/ContractGrant";
|
|
111
|
+
value: ContractGrantAmino;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* ContractGrant a granted permission for a single contract
|
|
115
|
+
* Since: wasmd 0.30
|
|
116
|
+
*/
|
|
117
|
+
export interface ContractGrantSDKType {
|
|
118
|
+
contract: string;
|
|
119
|
+
limit?: AnySDKType;
|
|
83
120
|
filter?: AnySDKType;
|
|
84
121
|
}
|
|
85
122
|
/**
|
|
86
123
|
* MaxCallsLimit limited number of calls to the contract. No funds transferable.
|
|
87
124
|
* Since: wasmd 0.30
|
|
88
125
|
*/
|
|
89
|
-
|
|
90
126
|
export interface MaxCallsLimit {
|
|
91
127
|
/** Remaining number that is decremented on each execution */
|
|
92
|
-
remaining:
|
|
128
|
+
remaining: bigint;
|
|
129
|
+
}
|
|
130
|
+
export interface MaxCallsLimitProtoMsg {
|
|
131
|
+
typeUrl: "/cosmwasm.wasm.v1.MaxCallsLimit";
|
|
132
|
+
value: Uint8Array;
|
|
93
133
|
}
|
|
94
134
|
/**
|
|
95
135
|
* MaxCallsLimit limited number of calls to the contract. No funds transferable.
|
|
96
136
|
* Since: wasmd 0.30
|
|
97
137
|
*/
|
|
98
|
-
|
|
99
|
-
export interface MaxCallsLimitSDKType {
|
|
138
|
+
export interface MaxCallsLimitAmino {
|
|
100
139
|
/** Remaining number that is decremented on each execution */
|
|
101
|
-
remaining
|
|
140
|
+
remaining?: string;
|
|
141
|
+
}
|
|
142
|
+
export interface MaxCallsLimitAminoMsg {
|
|
143
|
+
type: "wasm/MaxCallsLimit";
|
|
144
|
+
value: MaxCallsLimitAmino;
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* MaxCallsLimit limited number of calls to the contract. No funds transferable.
|
|
148
|
+
* Since: wasmd 0.30
|
|
149
|
+
*/
|
|
150
|
+
export interface MaxCallsLimitSDKType {
|
|
151
|
+
remaining: bigint;
|
|
102
152
|
}
|
|
103
153
|
/**
|
|
104
154
|
* MaxFundsLimit defines the maximal amounts that can be sent to the contract.
|
|
105
155
|
* Since: wasmd 0.30
|
|
106
156
|
*/
|
|
107
|
-
|
|
108
157
|
export interface MaxFundsLimit {
|
|
109
158
|
/** Amounts is the maximal amount of tokens transferable to the contract. */
|
|
110
159
|
amounts: Coin[];
|
|
111
160
|
}
|
|
161
|
+
export interface MaxFundsLimitProtoMsg {
|
|
162
|
+
typeUrl: "/cosmwasm.wasm.v1.MaxFundsLimit";
|
|
163
|
+
value: Uint8Array;
|
|
164
|
+
}
|
|
112
165
|
/**
|
|
113
166
|
* MaxFundsLimit defines the maximal amounts that can be sent to the contract.
|
|
114
167
|
* Since: wasmd 0.30
|
|
115
168
|
*/
|
|
116
|
-
|
|
117
|
-
export interface MaxFundsLimitSDKType {
|
|
169
|
+
export interface MaxFundsLimitAmino {
|
|
118
170
|
/** Amounts is the maximal amount of tokens transferable to the contract. */
|
|
171
|
+
amounts?: CoinAmino[];
|
|
172
|
+
}
|
|
173
|
+
export interface MaxFundsLimitAminoMsg {
|
|
174
|
+
type: "wasm/MaxFundsLimit";
|
|
175
|
+
value: MaxFundsLimitAmino;
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* MaxFundsLimit defines the maximal amounts that can be sent to the contract.
|
|
179
|
+
* Since: wasmd 0.30
|
|
180
|
+
*/
|
|
181
|
+
export interface MaxFundsLimitSDKType {
|
|
119
182
|
amounts: CoinSDKType[];
|
|
120
183
|
}
|
|
121
184
|
/**
|
|
@@ -123,25 +186,38 @@ export interface MaxFundsLimitSDKType {
|
|
|
123
186
|
* the maximal number of calls executable. Both need to remain >0 to be valid.
|
|
124
187
|
* Since: wasmd 0.30
|
|
125
188
|
*/
|
|
126
|
-
|
|
127
189
|
export interface CombinedLimit {
|
|
128
190
|
/** Remaining number that is decremented on each execution */
|
|
129
|
-
callsRemaining:
|
|
191
|
+
callsRemaining: bigint;
|
|
130
192
|
/** Amounts is the maximal amount of tokens transferable to the contract. */
|
|
131
|
-
|
|
132
193
|
amounts: Coin[];
|
|
133
194
|
}
|
|
195
|
+
export interface CombinedLimitProtoMsg {
|
|
196
|
+
typeUrl: "/cosmwasm.wasm.v1.CombinedLimit";
|
|
197
|
+
value: Uint8Array;
|
|
198
|
+
}
|
|
134
199
|
/**
|
|
135
200
|
* CombinedLimit defines the maximal amounts that can be sent to a contract and
|
|
136
201
|
* the maximal number of calls executable. Both need to remain >0 to be valid.
|
|
137
202
|
* Since: wasmd 0.30
|
|
138
203
|
*/
|
|
139
|
-
|
|
140
|
-
export interface CombinedLimitSDKType {
|
|
204
|
+
export interface CombinedLimitAmino {
|
|
141
205
|
/** Remaining number that is decremented on each execution */
|
|
142
|
-
calls_remaining
|
|
206
|
+
calls_remaining?: string;
|
|
143
207
|
/** Amounts is the maximal amount of tokens transferable to the contract. */
|
|
144
|
-
|
|
208
|
+
amounts?: CoinAmino[];
|
|
209
|
+
}
|
|
210
|
+
export interface CombinedLimitAminoMsg {
|
|
211
|
+
type: "wasm/CombinedLimit";
|
|
212
|
+
value: CombinedLimitAmino;
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* CombinedLimit defines the maximal amounts that can be sent to a contract and
|
|
216
|
+
* the maximal number of calls executable. Both need to remain >0 to be valid.
|
|
217
|
+
* Since: wasmd 0.30
|
|
218
|
+
*/
|
|
219
|
+
export interface CombinedLimitSDKType {
|
|
220
|
+
calls_remaining: bigint;
|
|
145
221
|
amounts: CoinSDKType[];
|
|
146
222
|
}
|
|
147
223
|
/**
|
|
@@ -149,33 +225,59 @@ export interface CombinedLimitSDKType {
|
|
|
149
225
|
* message.
|
|
150
226
|
* Since: wasmd 0.30
|
|
151
227
|
*/
|
|
152
|
-
|
|
153
228
|
export interface AllowAllMessagesFilter {}
|
|
229
|
+
export interface AllowAllMessagesFilterProtoMsg {
|
|
230
|
+
typeUrl: "/cosmwasm.wasm.v1.AllowAllMessagesFilter";
|
|
231
|
+
value: Uint8Array;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* AllowAllMessagesFilter is a wildcard to allow any type of contract payload
|
|
235
|
+
* message.
|
|
236
|
+
* Since: wasmd 0.30
|
|
237
|
+
*/
|
|
238
|
+
export interface AllowAllMessagesFilterAmino {}
|
|
239
|
+
export interface AllowAllMessagesFilterAminoMsg {
|
|
240
|
+
type: "wasm/AllowAllMessagesFilter";
|
|
241
|
+
value: AllowAllMessagesFilterAmino;
|
|
242
|
+
}
|
|
154
243
|
/**
|
|
155
244
|
* AllowAllMessagesFilter is a wildcard to allow any type of contract payload
|
|
156
245
|
* message.
|
|
157
246
|
* Since: wasmd 0.30
|
|
158
247
|
*/
|
|
159
|
-
|
|
160
248
|
export interface AllowAllMessagesFilterSDKType {}
|
|
161
249
|
/**
|
|
162
250
|
* AcceptedMessageKeysFilter accept only the specific contract message keys in
|
|
163
251
|
* the json object to be executed.
|
|
164
252
|
* Since: wasmd 0.30
|
|
165
253
|
*/
|
|
166
|
-
|
|
167
254
|
export interface AcceptedMessageKeysFilter {
|
|
168
255
|
/** Messages is the list of unique keys */
|
|
169
256
|
keys: string[];
|
|
170
257
|
}
|
|
258
|
+
export interface AcceptedMessageKeysFilterProtoMsg {
|
|
259
|
+
typeUrl: "/cosmwasm.wasm.v1.AcceptedMessageKeysFilter";
|
|
260
|
+
value: Uint8Array;
|
|
261
|
+
}
|
|
171
262
|
/**
|
|
172
263
|
* AcceptedMessageKeysFilter accept only the specific contract message keys in
|
|
173
264
|
* the json object to be executed.
|
|
174
265
|
* Since: wasmd 0.30
|
|
175
266
|
*/
|
|
176
|
-
|
|
177
|
-
export interface AcceptedMessageKeysFilterSDKType {
|
|
267
|
+
export interface AcceptedMessageKeysFilterAmino {
|
|
178
268
|
/** Messages is the list of unique keys */
|
|
269
|
+
keys?: string[];
|
|
270
|
+
}
|
|
271
|
+
export interface AcceptedMessageKeysFilterAminoMsg {
|
|
272
|
+
type: "wasm/AcceptedMessageKeysFilter";
|
|
273
|
+
value: AcceptedMessageKeysFilterAmino;
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* AcceptedMessageKeysFilter accept only the specific contract message keys in
|
|
277
|
+
* the json object to be executed.
|
|
278
|
+
* Since: wasmd 0.30
|
|
279
|
+
*/
|
|
280
|
+
export interface AcceptedMessageKeysFilterSDKType {
|
|
179
281
|
keys: string[];
|
|
180
282
|
}
|
|
181
283
|
/**
|
|
@@ -183,112 +285,177 @@ export interface AcceptedMessageKeysFilterSDKType {
|
|
|
183
285
|
* executed.
|
|
184
286
|
* Since: wasmd 0.30
|
|
185
287
|
*/
|
|
186
|
-
|
|
187
288
|
export interface AcceptedMessagesFilter {
|
|
188
289
|
/** Messages is the list of raw contract messages */
|
|
189
290
|
messages: Uint8Array[];
|
|
190
291
|
}
|
|
292
|
+
export interface AcceptedMessagesFilterProtoMsg {
|
|
293
|
+
typeUrl: "/cosmwasm.wasm.v1.AcceptedMessagesFilter";
|
|
294
|
+
value: Uint8Array;
|
|
295
|
+
}
|
|
191
296
|
/**
|
|
192
297
|
* AcceptedMessagesFilter accept only the specific raw contract messages to be
|
|
193
298
|
* executed.
|
|
194
299
|
* Since: wasmd 0.30
|
|
195
300
|
*/
|
|
196
|
-
|
|
197
|
-
export interface AcceptedMessagesFilterSDKType {
|
|
301
|
+
export interface AcceptedMessagesFilterAmino {
|
|
198
302
|
/** Messages is the list of raw contract messages */
|
|
303
|
+
messages?: any[];
|
|
304
|
+
}
|
|
305
|
+
export interface AcceptedMessagesFilterAminoMsg {
|
|
306
|
+
type: "wasm/AcceptedMessagesFilter";
|
|
307
|
+
value: AcceptedMessagesFilterAmino;
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* AcceptedMessagesFilter accept only the specific raw contract messages to be
|
|
311
|
+
* executed.
|
|
312
|
+
* Since: wasmd 0.30
|
|
313
|
+
*/
|
|
314
|
+
export interface AcceptedMessagesFilterSDKType {
|
|
199
315
|
messages: Uint8Array[];
|
|
200
316
|
}
|
|
201
|
-
|
|
202
317
|
function createBaseContractExecutionAuthorization(): ContractExecutionAuthorization {
|
|
203
318
|
return {
|
|
204
319
|
grants: []
|
|
205
320
|
};
|
|
206
321
|
}
|
|
207
|
-
|
|
208
322
|
export const ContractExecutionAuthorization = {
|
|
209
|
-
|
|
323
|
+
typeUrl: "/cosmwasm.wasm.v1.ContractExecutionAuthorization",
|
|
324
|
+
encode(message: ContractExecutionAuthorization, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
210
325
|
for (const v of message.grants) {
|
|
211
326
|
ContractGrant.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
212
327
|
}
|
|
213
|
-
|
|
214
328
|
return writer;
|
|
215
329
|
},
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
330
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ContractExecutionAuthorization {
|
|
331
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
219
332
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
220
333
|
const message = createBaseContractExecutionAuthorization();
|
|
221
|
-
|
|
222
334
|
while (reader.pos < end) {
|
|
223
335
|
const tag = reader.uint32();
|
|
224
|
-
|
|
225
336
|
switch (tag >>> 3) {
|
|
226
337
|
case 1:
|
|
227
338
|
message.grants.push(ContractGrant.decode(reader, reader.uint32()));
|
|
228
339
|
break;
|
|
229
|
-
|
|
230
340
|
default:
|
|
231
341
|
reader.skipType(tag & 7);
|
|
232
342
|
break;
|
|
233
343
|
}
|
|
234
344
|
}
|
|
235
|
-
|
|
236
345
|
return message;
|
|
237
346
|
},
|
|
238
|
-
|
|
239
|
-
fromPartial(object: DeepPartial<ContractExecutionAuthorization>): ContractExecutionAuthorization {
|
|
347
|
+
fromPartial(object: Partial<ContractExecutionAuthorization>): ContractExecutionAuthorization {
|
|
240
348
|
const message = createBaseContractExecutionAuthorization();
|
|
241
349
|
message.grants = object.grants?.map(e => ContractGrant.fromPartial(e)) || [];
|
|
242
350
|
return message;
|
|
351
|
+
},
|
|
352
|
+
fromAmino(object: ContractExecutionAuthorizationAmino): ContractExecutionAuthorization {
|
|
353
|
+
const message = createBaseContractExecutionAuthorization();
|
|
354
|
+
message.grants = object.grants?.map(e => ContractGrant.fromAmino(e)) || [];
|
|
355
|
+
return message;
|
|
356
|
+
},
|
|
357
|
+
toAmino(message: ContractExecutionAuthorization): ContractExecutionAuthorizationAmino {
|
|
358
|
+
const obj: any = {};
|
|
359
|
+
if (message.grants) {
|
|
360
|
+
obj.grants = message.grants.map(e => e ? ContractGrant.toAmino(e) : undefined);
|
|
361
|
+
} else {
|
|
362
|
+
obj.grants = [];
|
|
363
|
+
}
|
|
364
|
+
return obj;
|
|
365
|
+
},
|
|
366
|
+
fromAminoMsg(object: ContractExecutionAuthorizationAminoMsg): ContractExecutionAuthorization {
|
|
367
|
+
return ContractExecutionAuthorization.fromAmino(object.value);
|
|
368
|
+
},
|
|
369
|
+
toAminoMsg(message: ContractExecutionAuthorization): ContractExecutionAuthorizationAminoMsg {
|
|
370
|
+
return {
|
|
371
|
+
type: "wasm/ContractExecutionAuthorization",
|
|
372
|
+
value: ContractExecutionAuthorization.toAmino(message)
|
|
373
|
+
};
|
|
374
|
+
},
|
|
375
|
+
fromProtoMsg(message: ContractExecutionAuthorizationProtoMsg): ContractExecutionAuthorization {
|
|
376
|
+
return ContractExecutionAuthorization.decode(message.value);
|
|
377
|
+
},
|
|
378
|
+
toProto(message: ContractExecutionAuthorization): Uint8Array {
|
|
379
|
+
return ContractExecutionAuthorization.encode(message).finish();
|
|
380
|
+
},
|
|
381
|
+
toProtoMsg(message: ContractExecutionAuthorization): ContractExecutionAuthorizationProtoMsg {
|
|
382
|
+
return {
|
|
383
|
+
typeUrl: "/cosmwasm.wasm.v1.ContractExecutionAuthorization",
|
|
384
|
+
value: ContractExecutionAuthorization.encode(message).finish()
|
|
385
|
+
};
|
|
243
386
|
}
|
|
244
|
-
|
|
245
387
|
};
|
|
246
|
-
|
|
247
388
|
function createBaseContractMigrationAuthorization(): ContractMigrationAuthorization {
|
|
248
389
|
return {
|
|
249
390
|
grants: []
|
|
250
391
|
};
|
|
251
392
|
}
|
|
252
|
-
|
|
253
393
|
export const ContractMigrationAuthorization = {
|
|
254
|
-
|
|
394
|
+
typeUrl: "/cosmwasm.wasm.v1.ContractMigrationAuthorization",
|
|
395
|
+
encode(message: ContractMigrationAuthorization, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
255
396
|
for (const v of message.grants) {
|
|
256
397
|
ContractGrant.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
257
398
|
}
|
|
258
|
-
|
|
259
399
|
return writer;
|
|
260
400
|
},
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
401
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ContractMigrationAuthorization {
|
|
402
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
264
403
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
265
404
|
const message = createBaseContractMigrationAuthorization();
|
|
266
|
-
|
|
267
405
|
while (reader.pos < end) {
|
|
268
406
|
const tag = reader.uint32();
|
|
269
|
-
|
|
270
407
|
switch (tag >>> 3) {
|
|
271
408
|
case 1:
|
|
272
409
|
message.grants.push(ContractGrant.decode(reader, reader.uint32()));
|
|
273
410
|
break;
|
|
274
|
-
|
|
275
411
|
default:
|
|
276
412
|
reader.skipType(tag & 7);
|
|
277
413
|
break;
|
|
278
414
|
}
|
|
279
415
|
}
|
|
280
|
-
|
|
281
416
|
return message;
|
|
282
417
|
},
|
|
283
|
-
|
|
284
|
-
fromPartial(object: DeepPartial<ContractMigrationAuthorization>): ContractMigrationAuthorization {
|
|
418
|
+
fromPartial(object: Partial<ContractMigrationAuthorization>): ContractMigrationAuthorization {
|
|
285
419
|
const message = createBaseContractMigrationAuthorization();
|
|
286
420
|
message.grants = object.grants?.map(e => ContractGrant.fromPartial(e)) || [];
|
|
287
421
|
return message;
|
|
422
|
+
},
|
|
423
|
+
fromAmino(object: ContractMigrationAuthorizationAmino): ContractMigrationAuthorization {
|
|
424
|
+
const message = createBaseContractMigrationAuthorization();
|
|
425
|
+
message.grants = object.grants?.map(e => ContractGrant.fromAmino(e)) || [];
|
|
426
|
+
return message;
|
|
427
|
+
},
|
|
428
|
+
toAmino(message: ContractMigrationAuthorization): ContractMigrationAuthorizationAmino {
|
|
429
|
+
const obj: any = {};
|
|
430
|
+
if (message.grants) {
|
|
431
|
+
obj.grants = message.grants.map(e => e ? ContractGrant.toAmino(e) : undefined);
|
|
432
|
+
} else {
|
|
433
|
+
obj.grants = [];
|
|
434
|
+
}
|
|
435
|
+
return obj;
|
|
436
|
+
},
|
|
437
|
+
fromAminoMsg(object: ContractMigrationAuthorizationAminoMsg): ContractMigrationAuthorization {
|
|
438
|
+
return ContractMigrationAuthorization.fromAmino(object.value);
|
|
439
|
+
},
|
|
440
|
+
toAminoMsg(message: ContractMigrationAuthorization): ContractMigrationAuthorizationAminoMsg {
|
|
441
|
+
return {
|
|
442
|
+
type: "wasm/ContractMigrationAuthorization",
|
|
443
|
+
value: ContractMigrationAuthorization.toAmino(message)
|
|
444
|
+
};
|
|
445
|
+
},
|
|
446
|
+
fromProtoMsg(message: ContractMigrationAuthorizationProtoMsg): ContractMigrationAuthorization {
|
|
447
|
+
return ContractMigrationAuthorization.decode(message.value);
|
|
448
|
+
},
|
|
449
|
+
toProto(message: ContractMigrationAuthorization): Uint8Array {
|
|
450
|
+
return ContractMigrationAuthorization.encode(message).finish();
|
|
451
|
+
},
|
|
452
|
+
toProtoMsg(message: ContractMigrationAuthorization): ContractMigrationAuthorizationProtoMsg {
|
|
453
|
+
return {
|
|
454
|
+
typeUrl: "/cosmwasm.wasm.v1.ContractMigrationAuthorization",
|
|
455
|
+
value: ContractMigrationAuthorization.encode(message).finish()
|
|
456
|
+
};
|
|
288
457
|
}
|
|
289
|
-
|
|
290
458
|
};
|
|
291
|
-
|
|
292
459
|
function createBaseContractGrant(): ContractGrant {
|
|
293
460
|
return {
|
|
294
461
|
contract: "",
|
|
@@ -296,329 +463,510 @@ function createBaseContractGrant(): ContractGrant {
|
|
|
296
463
|
filter: undefined
|
|
297
464
|
};
|
|
298
465
|
}
|
|
299
|
-
|
|
300
466
|
export const ContractGrant = {
|
|
301
|
-
|
|
467
|
+
typeUrl: "/cosmwasm.wasm.v1.ContractGrant",
|
|
468
|
+
encode(message: ContractGrant, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
302
469
|
if (message.contract !== "") {
|
|
303
470
|
writer.uint32(10).string(message.contract);
|
|
304
471
|
}
|
|
305
|
-
|
|
306
472
|
if (message.limit !== undefined) {
|
|
307
473
|
Any.encode(message.limit, writer.uint32(18).fork()).ldelim();
|
|
308
474
|
}
|
|
309
|
-
|
|
310
475
|
if (message.filter !== undefined) {
|
|
311
476
|
Any.encode(message.filter, writer.uint32(26).fork()).ldelim();
|
|
312
477
|
}
|
|
313
|
-
|
|
314
478
|
return writer;
|
|
315
479
|
},
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
480
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ContractGrant {
|
|
481
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
319
482
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
320
483
|
const message = createBaseContractGrant();
|
|
321
|
-
|
|
322
484
|
while (reader.pos < end) {
|
|
323
485
|
const tag = reader.uint32();
|
|
324
|
-
|
|
325
486
|
switch (tag >>> 3) {
|
|
326
487
|
case 1:
|
|
327
488
|
message.contract = reader.string();
|
|
328
489
|
break;
|
|
329
|
-
|
|
330
490
|
case 2:
|
|
331
491
|
message.limit = Any.decode(reader, reader.uint32());
|
|
332
492
|
break;
|
|
333
|
-
|
|
334
493
|
case 3:
|
|
335
494
|
message.filter = Any.decode(reader, reader.uint32());
|
|
336
495
|
break;
|
|
337
|
-
|
|
338
496
|
default:
|
|
339
497
|
reader.skipType(tag & 7);
|
|
340
498
|
break;
|
|
341
499
|
}
|
|
342
500
|
}
|
|
343
|
-
|
|
344
501
|
return message;
|
|
345
502
|
},
|
|
346
|
-
|
|
347
|
-
fromPartial(object: DeepPartial<ContractGrant>): ContractGrant {
|
|
503
|
+
fromPartial(object: Partial<ContractGrant>): ContractGrant {
|
|
348
504
|
const message = createBaseContractGrant();
|
|
349
505
|
message.contract = object.contract ?? "";
|
|
350
506
|
message.limit = object.limit !== undefined && object.limit !== null ? Any.fromPartial(object.limit) : undefined;
|
|
351
507
|
message.filter = object.filter !== undefined && object.filter !== null ? Any.fromPartial(object.filter) : undefined;
|
|
352
508
|
return message;
|
|
509
|
+
},
|
|
510
|
+
fromAmino(object: ContractGrantAmino): ContractGrant {
|
|
511
|
+
const message = createBaseContractGrant();
|
|
512
|
+
if (object.contract !== undefined && object.contract !== null) {
|
|
513
|
+
message.contract = object.contract;
|
|
514
|
+
}
|
|
515
|
+
if (object.limit !== undefined && object.limit !== null) {
|
|
516
|
+
message.limit = Any.fromAmino(object.limit);
|
|
517
|
+
}
|
|
518
|
+
if (object.filter !== undefined && object.filter !== null) {
|
|
519
|
+
message.filter = Any.fromAmino(object.filter);
|
|
520
|
+
}
|
|
521
|
+
return message;
|
|
522
|
+
},
|
|
523
|
+
toAmino(message: ContractGrant): ContractGrantAmino {
|
|
524
|
+
const obj: any = {};
|
|
525
|
+
obj.contract = message.contract;
|
|
526
|
+
obj.limit = message.limit ? Any.toAmino(message.limit) : undefined;
|
|
527
|
+
obj.filter = message.filter ? Any.toAmino(message.filter) : undefined;
|
|
528
|
+
return obj;
|
|
529
|
+
},
|
|
530
|
+
fromAminoMsg(object: ContractGrantAminoMsg): ContractGrant {
|
|
531
|
+
return ContractGrant.fromAmino(object.value);
|
|
532
|
+
},
|
|
533
|
+
toAminoMsg(message: ContractGrant): ContractGrantAminoMsg {
|
|
534
|
+
return {
|
|
535
|
+
type: "wasm/ContractGrant",
|
|
536
|
+
value: ContractGrant.toAmino(message)
|
|
537
|
+
};
|
|
538
|
+
},
|
|
539
|
+
fromProtoMsg(message: ContractGrantProtoMsg): ContractGrant {
|
|
540
|
+
return ContractGrant.decode(message.value);
|
|
541
|
+
},
|
|
542
|
+
toProto(message: ContractGrant): Uint8Array {
|
|
543
|
+
return ContractGrant.encode(message).finish();
|
|
544
|
+
},
|
|
545
|
+
toProtoMsg(message: ContractGrant): ContractGrantProtoMsg {
|
|
546
|
+
return {
|
|
547
|
+
typeUrl: "/cosmwasm.wasm.v1.ContractGrant",
|
|
548
|
+
value: ContractGrant.encode(message).finish()
|
|
549
|
+
};
|
|
353
550
|
}
|
|
354
|
-
|
|
355
551
|
};
|
|
356
|
-
|
|
357
552
|
function createBaseMaxCallsLimit(): MaxCallsLimit {
|
|
358
553
|
return {
|
|
359
|
-
remaining:
|
|
554
|
+
remaining: BigInt(0)
|
|
360
555
|
};
|
|
361
556
|
}
|
|
362
|
-
|
|
363
557
|
export const MaxCallsLimit = {
|
|
364
|
-
|
|
365
|
-
|
|
558
|
+
typeUrl: "/cosmwasm.wasm.v1.MaxCallsLimit",
|
|
559
|
+
encode(message: MaxCallsLimit, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
560
|
+
if (message.remaining !== BigInt(0)) {
|
|
366
561
|
writer.uint32(8).uint64(message.remaining);
|
|
367
562
|
}
|
|
368
|
-
|
|
369
563
|
return writer;
|
|
370
564
|
},
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
565
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MaxCallsLimit {
|
|
566
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
374
567
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
375
568
|
const message = createBaseMaxCallsLimit();
|
|
376
|
-
|
|
377
569
|
while (reader.pos < end) {
|
|
378
570
|
const tag = reader.uint32();
|
|
379
|
-
|
|
380
571
|
switch (tag >>> 3) {
|
|
381
572
|
case 1:
|
|
382
|
-
message.remaining =
|
|
573
|
+
message.remaining = reader.uint64();
|
|
383
574
|
break;
|
|
384
|
-
|
|
385
575
|
default:
|
|
386
576
|
reader.skipType(tag & 7);
|
|
387
577
|
break;
|
|
388
578
|
}
|
|
389
579
|
}
|
|
390
|
-
|
|
391
580
|
return message;
|
|
392
581
|
},
|
|
393
|
-
|
|
394
|
-
fromPartial(object: DeepPartial<MaxCallsLimit>): MaxCallsLimit {
|
|
582
|
+
fromPartial(object: Partial<MaxCallsLimit>): MaxCallsLimit {
|
|
395
583
|
const message = createBaseMaxCallsLimit();
|
|
396
|
-
message.remaining = object.remaining !== undefined && object.remaining !== null ?
|
|
584
|
+
message.remaining = object.remaining !== undefined && object.remaining !== null ? BigInt(object.remaining.toString()) : BigInt(0);
|
|
397
585
|
return message;
|
|
586
|
+
},
|
|
587
|
+
fromAmino(object: MaxCallsLimitAmino): MaxCallsLimit {
|
|
588
|
+
const message = createBaseMaxCallsLimit();
|
|
589
|
+
if (object.remaining !== undefined && object.remaining !== null) {
|
|
590
|
+
message.remaining = BigInt(object.remaining);
|
|
591
|
+
}
|
|
592
|
+
return message;
|
|
593
|
+
},
|
|
594
|
+
toAmino(message: MaxCallsLimit): MaxCallsLimitAmino {
|
|
595
|
+
const obj: any = {};
|
|
596
|
+
obj.remaining = message.remaining ? message.remaining.toString() : undefined;
|
|
597
|
+
return obj;
|
|
598
|
+
},
|
|
599
|
+
fromAminoMsg(object: MaxCallsLimitAminoMsg): MaxCallsLimit {
|
|
600
|
+
return MaxCallsLimit.fromAmino(object.value);
|
|
601
|
+
},
|
|
602
|
+
toAminoMsg(message: MaxCallsLimit): MaxCallsLimitAminoMsg {
|
|
603
|
+
return {
|
|
604
|
+
type: "wasm/MaxCallsLimit",
|
|
605
|
+
value: MaxCallsLimit.toAmino(message)
|
|
606
|
+
};
|
|
607
|
+
},
|
|
608
|
+
fromProtoMsg(message: MaxCallsLimitProtoMsg): MaxCallsLimit {
|
|
609
|
+
return MaxCallsLimit.decode(message.value);
|
|
610
|
+
},
|
|
611
|
+
toProto(message: MaxCallsLimit): Uint8Array {
|
|
612
|
+
return MaxCallsLimit.encode(message).finish();
|
|
613
|
+
},
|
|
614
|
+
toProtoMsg(message: MaxCallsLimit): MaxCallsLimitProtoMsg {
|
|
615
|
+
return {
|
|
616
|
+
typeUrl: "/cosmwasm.wasm.v1.MaxCallsLimit",
|
|
617
|
+
value: MaxCallsLimit.encode(message).finish()
|
|
618
|
+
};
|
|
398
619
|
}
|
|
399
|
-
|
|
400
620
|
};
|
|
401
|
-
|
|
402
621
|
function createBaseMaxFundsLimit(): MaxFundsLimit {
|
|
403
622
|
return {
|
|
404
623
|
amounts: []
|
|
405
624
|
};
|
|
406
625
|
}
|
|
407
|
-
|
|
408
626
|
export const MaxFundsLimit = {
|
|
409
|
-
|
|
627
|
+
typeUrl: "/cosmwasm.wasm.v1.MaxFundsLimit",
|
|
628
|
+
encode(message: MaxFundsLimit, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
410
629
|
for (const v of message.amounts) {
|
|
411
630
|
Coin.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
412
631
|
}
|
|
413
|
-
|
|
414
632
|
return writer;
|
|
415
633
|
},
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
634
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MaxFundsLimit {
|
|
635
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
419
636
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
420
637
|
const message = createBaseMaxFundsLimit();
|
|
421
|
-
|
|
422
638
|
while (reader.pos < end) {
|
|
423
639
|
const tag = reader.uint32();
|
|
424
|
-
|
|
425
640
|
switch (tag >>> 3) {
|
|
426
641
|
case 1:
|
|
427
642
|
message.amounts.push(Coin.decode(reader, reader.uint32()));
|
|
428
643
|
break;
|
|
429
|
-
|
|
430
644
|
default:
|
|
431
645
|
reader.skipType(tag & 7);
|
|
432
646
|
break;
|
|
433
647
|
}
|
|
434
648
|
}
|
|
435
|
-
|
|
436
649
|
return message;
|
|
437
650
|
},
|
|
438
|
-
|
|
439
|
-
fromPartial(object: DeepPartial<MaxFundsLimit>): MaxFundsLimit {
|
|
651
|
+
fromPartial(object: Partial<MaxFundsLimit>): MaxFundsLimit {
|
|
440
652
|
const message = createBaseMaxFundsLimit();
|
|
441
653
|
message.amounts = object.amounts?.map(e => Coin.fromPartial(e)) || [];
|
|
442
654
|
return message;
|
|
655
|
+
},
|
|
656
|
+
fromAmino(object: MaxFundsLimitAmino): MaxFundsLimit {
|
|
657
|
+
const message = createBaseMaxFundsLimit();
|
|
658
|
+
message.amounts = object.amounts?.map(e => Coin.fromAmino(e)) || [];
|
|
659
|
+
return message;
|
|
660
|
+
},
|
|
661
|
+
toAmino(message: MaxFundsLimit): MaxFundsLimitAmino {
|
|
662
|
+
const obj: any = {};
|
|
663
|
+
if (message.amounts) {
|
|
664
|
+
obj.amounts = message.amounts.map(e => e ? Coin.toAmino(e) : undefined);
|
|
665
|
+
} else {
|
|
666
|
+
obj.amounts = [];
|
|
667
|
+
}
|
|
668
|
+
return obj;
|
|
669
|
+
},
|
|
670
|
+
fromAminoMsg(object: MaxFundsLimitAminoMsg): MaxFundsLimit {
|
|
671
|
+
return MaxFundsLimit.fromAmino(object.value);
|
|
672
|
+
},
|
|
673
|
+
toAminoMsg(message: MaxFundsLimit): MaxFundsLimitAminoMsg {
|
|
674
|
+
return {
|
|
675
|
+
type: "wasm/MaxFundsLimit",
|
|
676
|
+
value: MaxFundsLimit.toAmino(message)
|
|
677
|
+
};
|
|
678
|
+
},
|
|
679
|
+
fromProtoMsg(message: MaxFundsLimitProtoMsg): MaxFundsLimit {
|
|
680
|
+
return MaxFundsLimit.decode(message.value);
|
|
681
|
+
},
|
|
682
|
+
toProto(message: MaxFundsLimit): Uint8Array {
|
|
683
|
+
return MaxFundsLimit.encode(message).finish();
|
|
684
|
+
},
|
|
685
|
+
toProtoMsg(message: MaxFundsLimit): MaxFundsLimitProtoMsg {
|
|
686
|
+
return {
|
|
687
|
+
typeUrl: "/cosmwasm.wasm.v1.MaxFundsLimit",
|
|
688
|
+
value: MaxFundsLimit.encode(message).finish()
|
|
689
|
+
};
|
|
443
690
|
}
|
|
444
|
-
|
|
445
691
|
};
|
|
446
|
-
|
|
447
692
|
function createBaseCombinedLimit(): CombinedLimit {
|
|
448
693
|
return {
|
|
449
|
-
callsRemaining:
|
|
694
|
+
callsRemaining: BigInt(0),
|
|
450
695
|
amounts: []
|
|
451
696
|
};
|
|
452
697
|
}
|
|
453
|
-
|
|
454
698
|
export const CombinedLimit = {
|
|
455
|
-
|
|
456
|
-
|
|
699
|
+
typeUrl: "/cosmwasm.wasm.v1.CombinedLimit",
|
|
700
|
+
encode(message: CombinedLimit, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
701
|
+
if (message.callsRemaining !== BigInt(0)) {
|
|
457
702
|
writer.uint32(8).uint64(message.callsRemaining);
|
|
458
703
|
}
|
|
459
|
-
|
|
460
704
|
for (const v of message.amounts) {
|
|
461
705
|
Coin.encode(v!, writer.uint32(18).fork()).ldelim();
|
|
462
706
|
}
|
|
463
|
-
|
|
464
707
|
return writer;
|
|
465
708
|
},
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
709
|
+
decode(input: BinaryReader | Uint8Array, length?: number): CombinedLimit {
|
|
710
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
469
711
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
470
712
|
const message = createBaseCombinedLimit();
|
|
471
|
-
|
|
472
713
|
while (reader.pos < end) {
|
|
473
714
|
const tag = reader.uint32();
|
|
474
|
-
|
|
475
715
|
switch (tag >>> 3) {
|
|
476
716
|
case 1:
|
|
477
|
-
message.callsRemaining =
|
|
717
|
+
message.callsRemaining = reader.uint64();
|
|
478
718
|
break;
|
|
479
|
-
|
|
480
719
|
case 2:
|
|
481
720
|
message.amounts.push(Coin.decode(reader, reader.uint32()));
|
|
482
721
|
break;
|
|
483
|
-
|
|
484
722
|
default:
|
|
485
723
|
reader.skipType(tag & 7);
|
|
486
724
|
break;
|
|
487
725
|
}
|
|
488
726
|
}
|
|
489
|
-
|
|
490
727
|
return message;
|
|
491
728
|
},
|
|
492
|
-
|
|
493
|
-
fromPartial(object: DeepPartial<CombinedLimit>): CombinedLimit {
|
|
729
|
+
fromPartial(object: Partial<CombinedLimit>): CombinedLimit {
|
|
494
730
|
const message = createBaseCombinedLimit();
|
|
495
|
-
message.callsRemaining = object.callsRemaining !== undefined && object.callsRemaining !== null ?
|
|
731
|
+
message.callsRemaining = object.callsRemaining !== undefined && object.callsRemaining !== null ? BigInt(object.callsRemaining.toString()) : BigInt(0);
|
|
496
732
|
message.amounts = object.amounts?.map(e => Coin.fromPartial(e)) || [];
|
|
497
733
|
return message;
|
|
734
|
+
},
|
|
735
|
+
fromAmino(object: CombinedLimitAmino): CombinedLimit {
|
|
736
|
+
const message = createBaseCombinedLimit();
|
|
737
|
+
if (object.calls_remaining !== undefined && object.calls_remaining !== null) {
|
|
738
|
+
message.callsRemaining = BigInt(object.calls_remaining);
|
|
739
|
+
}
|
|
740
|
+
message.amounts = object.amounts?.map(e => Coin.fromAmino(e)) || [];
|
|
741
|
+
return message;
|
|
742
|
+
},
|
|
743
|
+
toAmino(message: CombinedLimit): CombinedLimitAmino {
|
|
744
|
+
const obj: any = {};
|
|
745
|
+
obj.calls_remaining = message.callsRemaining ? message.callsRemaining.toString() : undefined;
|
|
746
|
+
if (message.amounts) {
|
|
747
|
+
obj.amounts = message.amounts.map(e => e ? Coin.toAmino(e) : undefined);
|
|
748
|
+
} else {
|
|
749
|
+
obj.amounts = [];
|
|
750
|
+
}
|
|
751
|
+
return obj;
|
|
752
|
+
},
|
|
753
|
+
fromAminoMsg(object: CombinedLimitAminoMsg): CombinedLimit {
|
|
754
|
+
return CombinedLimit.fromAmino(object.value);
|
|
755
|
+
},
|
|
756
|
+
toAminoMsg(message: CombinedLimit): CombinedLimitAminoMsg {
|
|
757
|
+
return {
|
|
758
|
+
type: "wasm/CombinedLimit",
|
|
759
|
+
value: CombinedLimit.toAmino(message)
|
|
760
|
+
};
|
|
761
|
+
},
|
|
762
|
+
fromProtoMsg(message: CombinedLimitProtoMsg): CombinedLimit {
|
|
763
|
+
return CombinedLimit.decode(message.value);
|
|
764
|
+
},
|
|
765
|
+
toProto(message: CombinedLimit): Uint8Array {
|
|
766
|
+
return CombinedLimit.encode(message).finish();
|
|
767
|
+
},
|
|
768
|
+
toProtoMsg(message: CombinedLimit): CombinedLimitProtoMsg {
|
|
769
|
+
return {
|
|
770
|
+
typeUrl: "/cosmwasm.wasm.v1.CombinedLimit",
|
|
771
|
+
value: CombinedLimit.encode(message).finish()
|
|
772
|
+
};
|
|
498
773
|
}
|
|
499
|
-
|
|
500
774
|
};
|
|
501
|
-
|
|
502
775
|
function createBaseAllowAllMessagesFilter(): AllowAllMessagesFilter {
|
|
503
776
|
return {};
|
|
504
777
|
}
|
|
505
|
-
|
|
506
778
|
export const AllowAllMessagesFilter = {
|
|
507
|
-
|
|
779
|
+
typeUrl: "/cosmwasm.wasm.v1.AllowAllMessagesFilter",
|
|
780
|
+
encode(_: AllowAllMessagesFilter, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
508
781
|
return writer;
|
|
509
782
|
},
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
783
|
+
decode(input: BinaryReader | Uint8Array, length?: number): AllowAllMessagesFilter {
|
|
784
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
513
785
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
514
786
|
const message = createBaseAllowAllMessagesFilter();
|
|
515
|
-
|
|
516
787
|
while (reader.pos < end) {
|
|
517
788
|
const tag = reader.uint32();
|
|
518
|
-
|
|
519
789
|
switch (tag >>> 3) {
|
|
520
790
|
default:
|
|
521
791
|
reader.skipType(tag & 7);
|
|
522
792
|
break;
|
|
523
793
|
}
|
|
524
794
|
}
|
|
525
|
-
|
|
526
795
|
return message;
|
|
527
796
|
},
|
|
528
|
-
|
|
529
|
-
|
|
797
|
+
fromPartial(_: Partial<AllowAllMessagesFilter>): AllowAllMessagesFilter {
|
|
798
|
+
const message = createBaseAllowAllMessagesFilter();
|
|
799
|
+
return message;
|
|
800
|
+
},
|
|
801
|
+
fromAmino(_: AllowAllMessagesFilterAmino): AllowAllMessagesFilter {
|
|
530
802
|
const message = createBaseAllowAllMessagesFilter();
|
|
531
803
|
return message;
|
|
804
|
+
},
|
|
805
|
+
toAmino(_: AllowAllMessagesFilter): AllowAllMessagesFilterAmino {
|
|
806
|
+
const obj: any = {};
|
|
807
|
+
return obj;
|
|
808
|
+
},
|
|
809
|
+
fromAminoMsg(object: AllowAllMessagesFilterAminoMsg): AllowAllMessagesFilter {
|
|
810
|
+
return AllowAllMessagesFilter.fromAmino(object.value);
|
|
811
|
+
},
|
|
812
|
+
toAminoMsg(message: AllowAllMessagesFilter): AllowAllMessagesFilterAminoMsg {
|
|
813
|
+
return {
|
|
814
|
+
type: "wasm/AllowAllMessagesFilter",
|
|
815
|
+
value: AllowAllMessagesFilter.toAmino(message)
|
|
816
|
+
};
|
|
817
|
+
},
|
|
818
|
+
fromProtoMsg(message: AllowAllMessagesFilterProtoMsg): AllowAllMessagesFilter {
|
|
819
|
+
return AllowAllMessagesFilter.decode(message.value);
|
|
820
|
+
},
|
|
821
|
+
toProto(message: AllowAllMessagesFilter): Uint8Array {
|
|
822
|
+
return AllowAllMessagesFilter.encode(message).finish();
|
|
823
|
+
},
|
|
824
|
+
toProtoMsg(message: AllowAllMessagesFilter): AllowAllMessagesFilterProtoMsg {
|
|
825
|
+
return {
|
|
826
|
+
typeUrl: "/cosmwasm.wasm.v1.AllowAllMessagesFilter",
|
|
827
|
+
value: AllowAllMessagesFilter.encode(message).finish()
|
|
828
|
+
};
|
|
532
829
|
}
|
|
533
|
-
|
|
534
830
|
};
|
|
535
|
-
|
|
536
831
|
function createBaseAcceptedMessageKeysFilter(): AcceptedMessageKeysFilter {
|
|
537
832
|
return {
|
|
538
833
|
keys: []
|
|
539
834
|
};
|
|
540
835
|
}
|
|
541
|
-
|
|
542
836
|
export const AcceptedMessageKeysFilter = {
|
|
543
|
-
|
|
837
|
+
typeUrl: "/cosmwasm.wasm.v1.AcceptedMessageKeysFilter",
|
|
838
|
+
encode(message: AcceptedMessageKeysFilter, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
544
839
|
for (const v of message.keys) {
|
|
545
840
|
writer.uint32(10).string(v!);
|
|
546
841
|
}
|
|
547
|
-
|
|
548
842
|
return writer;
|
|
549
843
|
},
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
844
|
+
decode(input: BinaryReader | Uint8Array, length?: number): AcceptedMessageKeysFilter {
|
|
845
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
553
846
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
554
847
|
const message = createBaseAcceptedMessageKeysFilter();
|
|
555
|
-
|
|
556
848
|
while (reader.pos < end) {
|
|
557
849
|
const tag = reader.uint32();
|
|
558
|
-
|
|
559
850
|
switch (tag >>> 3) {
|
|
560
851
|
case 1:
|
|
561
852
|
message.keys.push(reader.string());
|
|
562
853
|
break;
|
|
563
|
-
|
|
564
854
|
default:
|
|
565
855
|
reader.skipType(tag & 7);
|
|
566
856
|
break;
|
|
567
857
|
}
|
|
568
858
|
}
|
|
569
|
-
|
|
570
859
|
return message;
|
|
571
860
|
},
|
|
572
|
-
|
|
573
|
-
|
|
861
|
+
fromPartial(object: Partial<AcceptedMessageKeysFilter>): AcceptedMessageKeysFilter {
|
|
862
|
+
const message = createBaseAcceptedMessageKeysFilter();
|
|
863
|
+
message.keys = object.keys?.map(e => e) || [];
|
|
864
|
+
return message;
|
|
865
|
+
},
|
|
866
|
+
fromAmino(object: AcceptedMessageKeysFilterAmino): AcceptedMessageKeysFilter {
|
|
574
867
|
const message = createBaseAcceptedMessageKeysFilter();
|
|
575
868
|
message.keys = object.keys?.map(e => e) || [];
|
|
576
869
|
return message;
|
|
870
|
+
},
|
|
871
|
+
toAmino(message: AcceptedMessageKeysFilter): AcceptedMessageKeysFilterAmino {
|
|
872
|
+
const obj: any = {};
|
|
873
|
+
if (message.keys) {
|
|
874
|
+
obj.keys = message.keys.map(e => e);
|
|
875
|
+
} else {
|
|
876
|
+
obj.keys = [];
|
|
877
|
+
}
|
|
878
|
+
return obj;
|
|
879
|
+
},
|
|
880
|
+
fromAminoMsg(object: AcceptedMessageKeysFilterAminoMsg): AcceptedMessageKeysFilter {
|
|
881
|
+
return AcceptedMessageKeysFilter.fromAmino(object.value);
|
|
882
|
+
},
|
|
883
|
+
toAminoMsg(message: AcceptedMessageKeysFilter): AcceptedMessageKeysFilterAminoMsg {
|
|
884
|
+
return {
|
|
885
|
+
type: "wasm/AcceptedMessageKeysFilter",
|
|
886
|
+
value: AcceptedMessageKeysFilter.toAmino(message)
|
|
887
|
+
};
|
|
888
|
+
},
|
|
889
|
+
fromProtoMsg(message: AcceptedMessageKeysFilterProtoMsg): AcceptedMessageKeysFilter {
|
|
890
|
+
return AcceptedMessageKeysFilter.decode(message.value);
|
|
891
|
+
},
|
|
892
|
+
toProto(message: AcceptedMessageKeysFilter): Uint8Array {
|
|
893
|
+
return AcceptedMessageKeysFilter.encode(message).finish();
|
|
894
|
+
},
|
|
895
|
+
toProtoMsg(message: AcceptedMessageKeysFilter): AcceptedMessageKeysFilterProtoMsg {
|
|
896
|
+
return {
|
|
897
|
+
typeUrl: "/cosmwasm.wasm.v1.AcceptedMessageKeysFilter",
|
|
898
|
+
value: AcceptedMessageKeysFilter.encode(message).finish()
|
|
899
|
+
};
|
|
577
900
|
}
|
|
578
|
-
|
|
579
901
|
};
|
|
580
|
-
|
|
581
902
|
function createBaseAcceptedMessagesFilter(): AcceptedMessagesFilter {
|
|
582
903
|
return {
|
|
583
904
|
messages: []
|
|
584
905
|
};
|
|
585
906
|
}
|
|
586
|
-
|
|
587
907
|
export const AcceptedMessagesFilter = {
|
|
588
|
-
|
|
908
|
+
typeUrl: "/cosmwasm.wasm.v1.AcceptedMessagesFilter",
|
|
909
|
+
encode(message: AcceptedMessagesFilter, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
589
910
|
for (const v of message.messages) {
|
|
590
911
|
writer.uint32(10).bytes(v!);
|
|
591
912
|
}
|
|
592
|
-
|
|
593
913
|
return writer;
|
|
594
914
|
},
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
915
|
+
decode(input: BinaryReader | Uint8Array, length?: number): AcceptedMessagesFilter {
|
|
916
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
598
917
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
599
918
|
const message = createBaseAcceptedMessagesFilter();
|
|
600
|
-
|
|
601
919
|
while (reader.pos < end) {
|
|
602
920
|
const tag = reader.uint32();
|
|
603
|
-
|
|
604
921
|
switch (tag >>> 3) {
|
|
605
922
|
case 1:
|
|
606
923
|
message.messages.push(reader.bytes());
|
|
607
924
|
break;
|
|
608
|
-
|
|
609
925
|
default:
|
|
610
926
|
reader.skipType(tag & 7);
|
|
611
927
|
break;
|
|
612
928
|
}
|
|
613
929
|
}
|
|
614
|
-
|
|
615
930
|
return message;
|
|
616
931
|
},
|
|
617
|
-
|
|
618
|
-
fromPartial(object: DeepPartial<AcceptedMessagesFilter>): AcceptedMessagesFilter {
|
|
932
|
+
fromPartial(object: Partial<AcceptedMessagesFilter>): AcceptedMessagesFilter {
|
|
619
933
|
const message = createBaseAcceptedMessagesFilter();
|
|
620
934
|
message.messages = object.messages?.map(e => e) || [];
|
|
621
935
|
return message;
|
|
936
|
+
},
|
|
937
|
+
fromAmino(object: AcceptedMessagesFilterAmino): AcceptedMessagesFilter {
|
|
938
|
+
const message = createBaseAcceptedMessagesFilter();
|
|
939
|
+
message.messages = object.messages?.map(e => toUtf8(JSON.stringify(e))) || [];
|
|
940
|
+
return message;
|
|
941
|
+
},
|
|
942
|
+
toAmino(message: AcceptedMessagesFilter): AcceptedMessagesFilterAmino {
|
|
943
|
+
const obj: any = {};
|
|
944
|
+
if (message.messages) {
|
|
945
|
+
obj.messages = message.messages.map(e => JSON.parse(fromUtf8(e)));
|
|
946
|
+
} else {
|
|
947
|
+
obj.messages = [];
|
|
948
|
+
}
|
|
949
|
+
return obj;
|
|
950
|
+
},
|
|
951
|
+
fromAminoMsg(object: AcceptedMessagesFilterAminoMsg): AcceptedMessagesFilter {
|
|
952
|
+
return AcceptedMessagesFilter.fromAmino(object.value);
|
|
953
|
+
},
|
|
954
|
+
toAminoMsg(message: AcceptedMessagesFilter): AcceptedMessagesFilterAminoMsg {
|
|
955
|
+
return {
|
|
956
|
+
type: "wasm/AcceptedMessagesFilter",
|
|
957
|
+
value: AcceptedMessagesFilter.toAmino(message)
|
|
958
|
+
};
|
|
959
|
+
},
|
|
960
|
+
fromProtoMsg(message: AcceptedMessagesFilterProtoMsg): AcceptedMessagesFilter {
|
|
961
|
+
return AcceptedMessagesFilter.decode(message.value);
|
|
962
|
+
},
|
|
963
|
+
toProto(message: AcceptedMessagesFilter): Uint8Array {
|
|
964
|
+
return AcceptedMessagesFilter.encode(message).finish();
|
|
965
|
+
},
|
|
966
|
+
toProtoMsg(message: AcceptedMessagesFilter): AcceptedMessagesFilterProtoMsg {
|
|
967
|
+
return {
|
|
968
|
+
typeUrl: "/cosmwasm.wasm.v1.AcceptedMessagesFilter",
|
|
969
|
+
value: AcceptedMessagesFilter.encode(message).finish()
|
|
970
|
+
};
|
|
622
971
|
}
|
|
623
|
-
|
|
624
972
|
};
|