@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
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/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -10,6 +10,12 @@ function createBaseQueryProposalRequest() {
|
|
|
10
10
|
proposalId: BigInt(0)
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* QueryProposalRequest is the request type for the Query/Proposal RPC method.
|
|
15
|
+
* @name QueryProposalRequest
|
|
16
|
+
* @package cosmos.gov.v1beta1
|
|
17
|
+
* @see proto type: cosmos.gov.v1beta1.QueryProposalRequest
|
|
18
|
+
*/
|
|
13
19
|
exports.QueryProposalRequest = {
|
|
14
20
|
typeUrl: "/cosmos.gov.v1beta1.QueryProposalRequest",
|
|
15
21
|
aminoType: "cosmos-sdk/QueryProposalRequest",
|
|
@@ -80,6 +86,12 @@ function createBaseQueryProposalResponse() {
|
|
|
80
86
|
proposal: gov_1.Proposal.fromPartial({})
|
|
81
87
|
};
|
|
82
88
|
}
|
|
89
|
+
/**
|
|
90
|
+
* QueryProposalResponse is the response type for the Query/Proposal RPC method.
|
|
91
|
+
* @name QueryProposalResponse
|
|
92
|
+
* @package cosmos.gov.v1beta1
|
|
93
|
+
* @see proto type: cosmos.gov.v1beta1.QueryProposalResponse
|
|
94
|
+
*/
|
|
83
95
|
exports.QueryProposalResponse = {
|
|
84
96
|
typeUrl: "/cosmos.gov.v1beta1.QueryProposalResponse",
|
|
85
97
|
aminoType: "cosmos-sdk/QueryProposalResponse",
|
|
@@ -153,6 +165,12 @@ function createBaseQueryProposalsRequest() {
|
|
|
153
165
|
pagination: undefined
|
|
154
166
|
};
|
|
155
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* QueryProposalsRequest is the request type for the Query/Proposals RPC method.
|
|
170
|
+
* @name QueryProposalsRequest
|
|
171
|
+
* @package cosmos.gov.v1beta1
|
|
172
|
+
* @see proto type: cosmos.gov.v1beta1.QueryProposalsRequest
|
|
173
|
+
*/
|
|
156
174
|
exports.QueryProposalsRequest = {
|
|
157
175
|
typeUrl: "/cosmos.gov.v1beta1.QueryProposalsRequest",
|
|
158
176
|
aminoType: "cosmos-sdk/QueryProposalsRequest",
|
|
@@ -257,6 +275,13 @@ function createBaseQueryProposalsResponse() {
|
|
|
257
275
|
pagination: undefined
|
|
258
276
|
};
|
|
259
277
|
}
|
|
278
|
+
/**
|
|
279
|
+
* QueryProposalsResponse is the response type for the Query/Proposals RPC
|
|
280
|
+
* method.
|
|
281
|
+
* @name QueryProposalsResponse
|
|
282
|
+
* @package cosmos.gov.v1beta1
|
|
283
|
+
* @see proto type: cosmos.gov.v1beta1.QueryProposalsResponse
|
|
284
|
+
*/
|
|
260
285
|
exports.QueryProposalsResponse = {
|
|
261
286
|
typeUrl: "/cosmos.gov.v1beta1.QueryProposalsResponse",
|
|
262
287
|
aminoType: "cosmos-sdk/QueryProposalsResponse",
|
|
@@ -342,6 +367,12 @@ function createBaseQueryVoteRequest() {
|
|
|
342
367
|
voter: ""
|
|
343
368
|
};
|
|
344
369
|
}
|
|
370
|
+
/**
|
|
371
|
+
* QueryVoteRequest is the request type for the Query/Vote RPC method.
|
|
372
|
+
* @name QueryVoteRequest
|
|
373
|
+
* @package cosmos.gov.v1beta1
|
|
374
|
+
* @see proto type: cosmos.gov.v1beta1.QueryVoteRequest
|
|
375
|
+
*/
|
|
345
376
|
exports.QueryVoteRequest = {
|
|
346
377
|
typeUrl: "/cosmos.gov.v1beta1.QueryVoteRequest",
|
|
347
378
|
aminoType: "cosmos-sdk/QueryVoteRequest",
|
|
@@ -423,6 +454,12 @@ function createBaseQueryVoteResponse() {
|
|
|
423
454
|
vote: gov_1.Vote.fromPartial({})
|
|
424
455
|
};
|
|
425
456
|
}
|
|
457
|
+
/**
|
|
458
|
+
* QueryVoteResponse is the response type for the Query/Vote RPC method.
|
|
459
|
+
* @name QueryVoteResponse
|
|
460
|
+
* @package cosmos.gov.v1beta1
|
|
461
|
+
* @see proto type: cosmos.gov.v1beta1.QueryVoteResponse
|
|
462
|
+
*/
|
|
426
463
|
exports.QueryVoteResponse = {
|
|
427
464
|
typeUrl: "/cosmos.gov.v1beta1.QueryVoteResponse",
|
|
428
465
|
aminoType: "cosmos-sdk/QueryVoteResponse",
|
|
@@ -494,6 +531,12 @@ function createBaseQueryVotesRequest() {
|
|
|
494
531
|
pagination: undefined
|
|
495
532
|
};
|
|
496
533
|
}
|
|
534
|
+
/**
|
|
535
|
+
* QueryVotesRequest is the request type for the Query/Votes RPC method.
|
|
536
|
+
* @name QueryVotesRequest
|
|
537
|
+
* @package cosmos.gov.v1beta1
|
|
538
|
+
* @see proto type: cosmos.gov.v1beta1.QueryVotesRequest
|
|
539
|
+
*/
|
|
497
540
|
exports.QueryVotesRequest = {
|
|
498
541
|
typeUrl: "/cosmos.gov.v1beta1.QueryVotesRequest",
|
|
499
542
|
aminoType: "cosmos-sdk/QueryVotesRequest",
|
|
@@ -576,6 +619,12 @@ function createBaseQueryVotesResponse() {
|
|
|
576
619
|
pagination: undefined
|
|
577
620
|
};
|
|
578
621
|
}
|
|
622
|
+
/**
|
|
623
|
+
* QueryVotesResponse is the response type for the Query/Votes RPC method.
|
|
624
|
+
* @name QueryVotesResponse
|
|
625
|
+
* @package cosmos.gov.v1beta1
|
|
626
|
+
* @see proto type: cosmos.gov.v1beta1.QueryVotesResponse
|
|
627
|
+
*/
|
|
579
628
|
exports.QueryVotesResponse = {
|
|
580
629
|
typeUrl: "/cosmos.gov.v1beta1.QueryVotesResponse",
|
|
581
630
|
aminoType: "cosmos-sdk/QueryVotesResponse",
|
|
@@ -660,6 +709,12 @@ function createBaseQueryParamsRequest() {
|
|
|
660
709
|
paramsType: ""
|
|
661
710
|
};
|
|
662
711
|
}
|
|
712
|
+
/**
|
|
713
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
714
|
+
* @name QueryParamsRequest
|
|
715
|
+
* @package cosmos.gov.v1beta1
|
|
716
|
+
* @see proto type: cosmos.gov.v1beta1.QueryParamsRequest
|
|
717
|
+
*/
|
|
663
718
|
exports.QueryParamsRequest = {
|
|
664
719
|
typeUrl: "/cosmos.gov.v1beta1.QueryParamsRequest",
|
|
665
720
|
aminoType: "cosmos-sdk/QueryParamsRequest",
|
|
@@ -732,6 +787,12 @@ function createBaseQueryParamsResponse() {
|
|
|
732
787
|
tallyParams: gov_1.TallyParams.fromPartial({})
|
|
733
788
|
};
|
|
734
789
|
}
|
|
790
|
+
/**
|
|
791
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
792
|
+
* @name QueryParamsResponse
|
|
793
|
+
* @package cosmos.gov.v1beta1
|
|
794
|
+
* @see proto type: cosmos.gov.v1beta1.QueryParamsResponse
|
|
795
|
+
*/
|
|
735
796
|
exports.QueryParamsResponse = {
|
|
736
797
|
typeUrl: "/cosmos.gov.v1beta1.QueryParamsResponse",
|
|
737
798
|
aminoType: "cosmos-sdk/QueryParamsResponse",
|
|
@@ -825,6 +886,12 @@ function createBaseQueryDepositRequest() {
|
|
|
825
886
|
depositor: ""
|
|
826
887
|
};
|
|
827
888
|
}
|
|
889
|
+
/**
|
|
890
|
+
* QueryDepositRequest is the request type for the Query/Deposit RPC method.
|
|
891
|
+
* @name QueryDepositRequest
|
|
892
|
+
* @package cosmos.gov.v1beta1
|
|
893
|
+
* @see proto type: cosmos.gov.v1beta1.QueryDepositRequest
|
|
894
|
+
*/
|
|
828
895
|
exports.QueryDepositRequest = {
|
|
829
896
|
typeUrl: "/cosmos.gov.v1beta1.QueryDepositRequest",
|
|
830
897
|
aminoType: "cosmos-sdk/QueryDepositRequest",
|
|
@@ -906,6 +973,12 @@ function createBaseQueryDepositResponse() {
|
|
|
906
973
|
deposit: gov_1.Deposit.fromPartial({})
|
|
907
974
|
};
|
|
908
975
|
}
|
|
976
|
+
/**
|
|
977
|
+
* QueryDepositResponse is the response type for the Query/Deposit RPC method.
|
|
978
|
+
* @name QueryDepositResponse
|
|
979
|
+
* @package cosmos.gov.v1beta1
|
|
980
|
+
* @see proto type: cosmos.gov.v1beta1.QueryDepositResponse
|
|
981
|
+
*/
|
|
909
982
|
exports.QueryDepositResponse = {
|
|
910
983
|
typeUrl: "/cosmos.gov.v1beta1.QueryDepositResponse",
|
|
911
984
|
aminoType: "cosmos-sdk/QueryDepositResponse",
|
|
@@ -977,6 +1050,12 @@ function createBaseQueryDepositsRequest() {
|
|
|
977
1050
|
pagination: undefined
|
|
978
1051
|
};
|
|
979
1052
|
}
|
|
1053
|
+
/**
|
|
1054
|
+
* QueryDepositsRequest is the request type for the Query/Deposits RPC method.
|
|
1055
|
+
* @name QueryDepositsRequest
|
|
1056
|
+
* @package cosmos.gov.v1beta1
|
|
1057
|
+
* @see proto type: cosmos.gov.v1beta1.QueryDepositsRequest
|
|
1058
|
+
*/
|
|
980
1059
|
exports.QueryDepositsRequest = {
|
|
981
1060
|
typeUrl: "/cosmos.gov.v1beta1.QueryDepositsRequest",
|
|
982
1061
|
aminoType: "cosmos-sdk/QueryDepositsRequest",
|
|
@@ -1059,6 +1138,12 @@ function createBaseQueryDepositsResponse() {
|
|
|
1059
1138
|
pagination: undefined
|
|
1060
1139
|
};
|
|
1061
1140
|
}
|
|
1141
|
+
/**
|
|
1142
|
+
* QueryDepositsResponse is the response type for the Query/Deposits RPC method.
|
|
1143
|
+
* @name QueryDepositsResponse
|
|
1144
|
+
* @package cosmos.gov.v1beta1
|
|
1145
|
+
* @see proto type: cosmos.gov.v1beta1.QueryDepositsResponse
|
|
1146
|
+
*/
|
|
1062
1147
|
exports.QueryDepositsResponse = {
|
|
1063
1148
|
typeUrl: "/cosmos.gov.v1beta1.QueryDepositsResponse",
|
|
1064
1149
|
aminoType: "cosmos-sdk/QueryDepositsResponse",
|
|
@@ -1143,6 +1228,12 @@ function createBaseQueryTallyResultRequest() {
|
|
|
1143
1228
|
proposalId: BigInt(0)
|
|
1144
1229
|
};
|
|
1145
1230
|
}
|
|
1231
|
+
/**
|
|
1232
|
+
* QueryTallyResultRequest is the request type for the Query/Tally RPC method.
|
|
1233
|
+
* @name QueryTallyResultRequest
|
|
1234
|
+
* @package cosmos.gov.v1beta1
|
|
1235
|
+
* @see proto type: cosmos.gov.v1beta1.QueryTallyResultRequest
|
|
1236
|
+
*/
|
|
1146
1237
|
exports.QueryTallyResultRequest = {
|
|
1147
1238
|
typeUrl: "/cosmos.gov.v1beta1.QueryTallyResultRequest",
|
|
1148
1239
|
aminoType: "cosmos-sdk/QueryTallyResultRequest",
|
|
@@ -1213,6 +1304,12 @@ function createBaseQueryTallyResultResponse() {
|
|
|
1213
1304
|
tally: gov_1.TallyResult.fromPartial({})
|
|
1214
1305
|
};
|
|
1215
1306
|
}
|
|
1307
|
+
/**
|
|
1308
|
+
* QueryTallyResultResponse is the response type for the Query/Tally RPC method.
|
|
1309
|
+
* @name QueryTallyResultResponse
|
|
1310
|
+
* @package cosmos.gov.v1beta1
|
|
1311
|
+
* @see proto type: cosmos.gov.v1beta1.QueryTallyResultResponse
|
|
1312
|
+
*/
|
|
1216
1313
|
exports.QueryTallyResultResponse = {
|
|
1217
1314
|
typeUrl: "/cosmos.gov.v1beta1.QueryTallyResultResponse",
|
|
1218
1315
|
aminoType: "cosmos-sdk/QueryTallyResultResponse",
|
|
@@ -9,13 +9,22 @@ import { DeepPartial } from "../../../helpers";
|
|
|
9
9
|
/**
|
|
10
10
|
* MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary
|
|
11
11
|
* proposal Content.
|
|
12
|
+
* @name MsgSubmitProposal
|
|
13
|
+
* @package cosmos.gov.v1beta1
|
|
14
|
+
* @see proto type: cosmos.gov.v1beta1.MsgSubmitProposal
|
|
12
15
|
*/
|
|
13
16
|
export interface MsgSubmitProposal {
|
|
14
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* content is the proposal's content.
|
|
19
|
+
*/
|
|
15
20
|
content?: CommunityPoolSpendProposal | CommunityPoolSpendProposalWithDeposit | TextProposal | ParameterChangeProposal | SoftwareUpgradeProposal | CancelSoftwareUpgradeProposal | Any | undefined;
|
|
16
|
-
/**
|
|
21
|
+
/**
|
|
22
|
+
* initial_deposit is the deposit value that must be paid at proposal submission.
|
|
23
|
+
*/
|
|
17
24
|
initialDeposit: Coin[];
|
|
18
|
-
/**
|
|
25
|
+
/**
|
|
26
|
+
* proposer is the account address of the proposer.
|
|
27
|
+
*/
|
|
19
28
|
proposer: string;
|
|
20
29
|
}
|
|
21
30
|
export interface MsgSubmitProposalProtoMsg {
|
|
@@ -23,76 +32,134 @@ export interface MsgSubmitProposalProtoMsg {
|
|
|
23
32
|
value: Uint8Array;
|
|
24
33
|
}
|
|
25
34
|
export type MsgSubmitProposalEncoded = Omit<MsgSubmitProposal, "content"> & {
|
|
26
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* content is the proposal's content.
|
|
37
|
+
*/
|
|
38
|
+
content?: CommunityPoolSpendProposalProtoMsg | CommunityPoolSpendProposalWithDepositProtoMsg | TextProposalProtoMsg | ParameterChangeProposalProtoMsg | SoftwareUpgradeProposalProtoMsg | CancelSoftwareUpgradeProposalProtoMsg | AnyProtoMsg | undefined;
|
|
27
39
|
};
|
|
28
40
|
/**
|
|
29
41
|
* MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary
|
|
30
42
|
* proposal Content.
|
|
43
|
+
* @name MsgSubmitProposalAmino
|
|
44
|
+
* @package cosmos.gov.v1beta1
|
|
45
|
+
* @see proto type: cosmos.gov.v1beta1.MsgSubmitProposal
|
|
31
46
|
*/
|
|
32
47
|
export interface MsgSubmitProposalAmino {
|
|
33
|
-
/**
|
|
48
|
+
/**
|
|
49
|
+
* content is the proposal's content.
|
|
50
|
+
*/
|
|
34
51
|
content?: AnyAmino;
|
|
35
|
-
/**
|
|
52
|
+
/**
|
|
53
|
+
* initial_deposit is the deposit value that must be paid at proposal submission.
|
|
54
|
+
*/
|
|
36
55
|
initial_deposit: CoinAmino[];
|
|
37
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* proposer is the account address of the proposer.
|
|
58
|
+
*/
|
|
38
59
|
proposer?: string;
|
|
39
60
|
}
|
|
40
61
|
export interface MsgSubmitProposalAminoMsg {
|
|
41
62
|
type: "cosmos-sdk/MsgSubmitProposal";
|
|
42
63
|
value: MsgSubmitProposalAmino;
|
|
43
64
|
}
|
|
44
|
-
/**
|
|
65
|
+
/**
|
|
66
|
+
* MsgSubmitProposalResponse defines the Msg/SubmitProposal response type.
|
|
67
|
+
* @name MsgSubmitProposalResponse
|
|
68
|
+
* @package cosmos.gov.v1beta1
|
|
69
|
+
* @see proto type: cosmos.gov.v1beta1.MsgSubmitProposalResponse
|
|
70
|
+
*/
|
|
45
71
|
export interface MsgSubmitProposalResponse {
|
|
46
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* proposal_id defines the unique id of the proposal.
|
|
74
|
+
*/
|
|
47
75
|
proposalId: bigint;
|
|
48
76
|
}
|
|
49
77
|
export interface MsgSubmitProposalResponseProtoMsg {
|
|
50
78
|
typeUrl: "/cosmos.gov.v1beta1.MsgSubmitProposalResponse";
|
|
51
79
|
value: Uint8Array;
|
|
52
80
|
}
|
|
53
|
-
/**
|
|
81
|
+
/**
|
|
82
|
+
* MsgSubmitProposalResponse defines the Msg/SubmitProposal response type.
|
|
83
|
+
* @name MsgSubmitProposalResponseAmino
|
|
84
|
+
* @package cosmos.gov.v1beta1
|
|
85
|
+
* @see proto type: cosmos.gov.v1beta1.MsgSubmitProposalResponse
|
|
86
|
+
*/
|
|
54
87
|
export interface MsgSubmitProposalResponseAmino {
|
|
55
|
-
/**
|
|
88
|
+
/**
|
|
89
|
+
* proposal_id defines the unique id of the proposal.
|
|
90
|
+
*/
|
|
56
91
|
proposal_id: string;
|
|
57
92
|
}
|
|
58
93
|
export interface MsgSubmitProposalResponseAminoMsg {
|
|
59
94
|
type: "cosmos-sdk/MsgSubmitProposalResponse";
|
|
60
95
|
value: MsgSubmitProposalResponseAmino;
|
|
61
96
|
}
|
|
62
|
-
/**
|
|
97
|
+
/**
|
|
98
|
+
* MsgVote defines a message to cast a vote.
|
|
99
|
+
* @name MsgVote
|
|
100
|
+
* @package cosmos.gov.v1beta1
|
|
101
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVote
|
|
102
|
+
*/
|
|
63
103
|
export interface MsgVote {
|
|
64
|
-
/**
|
|
104
|
+
/**
|
|
105
|
+
* proposal_id defines the unique id of the proposal.
|
|
106
|
+
*/
|
|
65
107
|
proposalId: bigint;
|
|
66
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* voter is the voter address for the proposal.
|
|
110
|
+
*/
|
|
67
111
|
voter: string;
|
|
68
|
-
/**
|
|
112
|
+
/**
|
|
113
|
+
* option defines the vote option.
|
|
114
|
+
*/
|
|
69
115
|
option: VoteOption;
|
|
70
116
|
}
|
|
71
117
|
export interface MsgVoteProtoMsg {
|
|
72
118
|
typeUrl: "/cosmos.gov.v1beta1.MsgVote";
|
|
73
119
|
value: Uint8Array;
|
|
74
120
|
}
|
|
75
|
-
/**
|
|
121
|
+
/**
|
|
122
|
+
* MsgVote defines a message to cast a vote.
|
|
123
|
+
* @name MsgVoteAmino
|
|
124
|
+
* @package cosmos.gov.v1beta1
|
|
125
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVote
|
|
126
|
+
*/
|
|
76
127
|
export interface MsgVoteAmino {
|
|
77
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* proposal_id defines the unique id of the proposal.
|
|
130
|
+
*/
|
|
78
131
|
proposal_id?: string;
|
|
79
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* voter is the voter address for the proposal.
|
|
134
|
+
*/
|
|
80
135
|
voter?: string;
|
|
81
|
-
/**
|
|
136
|
+
/**
|
|
137
|
+
* option defines the vote option.
|
|
138
|
+
*/
|
|
82
139
|
option?: VoteOption;
|
|
83
140
|
}
|
|
84
141
|
export interface MsgVoteAminoMsg {
|
|
85
142
|
type: "cosmos-sdk/MsgVote";
|
|
86
143
|
value: MsgVoteAmino;
|
|
87
144
|
}
|
|
88
|
-
/**
|
|
145
|
+
/**
|
|
146
|
+
* MsgVoteResponse defines the Msg/Vote response type.
|
|
147
|
+
* @name MsgVoteResponse
|
|
148
|
+
* @package cosmos.gov.v1beta1
|
|
149
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVoteResponse
|
|
150
|
+
*/
|
|
89
151
|
export interface MsgVoteResponse {
|
|
90
152
|
}
|
|
91
153
|
export interface MsgVoteResponseProtoMsg {
|
|
92
154
|
typeUrl: "/cosmos.gov.v1beta1.MsgVoteResponse";
|
|
93
155
|
value: Uint8Array;
|
|
94
156
|
}
|
|
95
|
-
/**
|
|
157
|
+
/**
|
|
158
|
+
* MsgVoteResponse defines the Msg/Vote response type.
|
|
159
|
+
* @name MsgVoteResponseAmino
|
|
160
|
+
* @package cosmos.gov.v1beta1
|
|
161
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVoteResponse
|
|
162
|
+
*/
|
|
96
163
|
export interface MsgVoteResponseAmino {
|
|
97
164
|
}
|
|
98
165
|
export interface MsgVoteResponseAminoMsg {
|
|
@@ -101,15 +168,22 @@ export interface MsgVoteResponseAminoMsg {
|
|
|
101
168
|
}
|
|
102
169
|
/**
|
|
103
170
|
* MsgVoteWeighted defines a message to cast a vote.
|
|
104
|
-
*
|
|
105
|
-
*
|
|
171
|
+
* @name MsgVoteWeighted
|
|
172
|
+
* @package cosmos.gov.v1beta1
|
|
173
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVoteWeighted
|
|
106
174
|
*/
|
|
107
175
|
export interface MsgVoteWeighted {
|
|
108
|
-
/**
|
|
176
|
+
/**
|
|
177
|
+
* proposal_id defines the unique id of the proposal.
|
|
178
|
+
*/
|
|
109
179
|
proposalId: bigint;
|
|
110
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* voter is the voter address for the proposal.
|
|
182
|
+
*/
|
|
111
183
|
voter: string;
|
|
112
|
-
/**
|
|
184
|
+
/**
|
|
185
|
+
* options defines the weighted vote options.
|
|
186
|
+
*/
|
|
113
187
|
options: WeightedVoteOption[];
|
|
114
188
|
}
|
|
115
189
|
export interface MsgVoteWeightedProtoMsg {
|
|
@@ -118,15 +192,22 @@ export interface MsgVoteWeightedProtoMsg {
|
|
|
118
192
|
}
|
|
119
193
|
/**
|
|
120
194
|
* MsgVoteWeighted defines a message to cast a vote.
|
|
121
|
-
*
|
|
122
|
-
*
|
|
195
|
+
* @name MsgVoteWeightedAmino
|
|
196
|
+
* @package cosmos.gov.v1beta1
|
|
197
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVoteWeighted
|
|
123
198
|
*/
|
|
124
199
|
export interface MsgVoteWeightedAmino {
|
|
125
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* proposal_id defines the unique id of the proposal.
|
|
202
|
+
*/
|
|
126
203
|
proposal_id: string;
|
|
127
|
-
/**
|
|
204
|
+
/**
|
|
205
|
+
* voter is the voter address for the proposal.
|
|
206
|
+
*/
|
|
128
207
|
voter?: string;
|
|
129
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* options defines the weighted vote options.
|
|
210
|
+
*/
|
|
130
211
|
options: WeightedVoteOptionAmino[];
|
|
131
212
|
}
|
|
132
213
|
export interface MsgVoteWeightedAminoMsg {
|
|
@@ -135,8 +216,9 @@ export interface MsgVoteWeightedAminoMsg {
|
|
|
135
216
|
}
|
|
136
217
|
/**
|
|
137
218
|
* MsgVoteWeightedResponse defines the Msg/VoteWeighted response type.
|
|
138
|
-
*
|
|
139
|
-
*
|
|
219
|
+
* @name MsgVoteWeightedResponse
|
|
220
|
+
* @package cosmos.gov.v1beta1
|
|
221
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVoteWeightedResponse
|
|
140
222
|
*/
|
|
141
223
|
export interface MsgVoteWeightedResponse {
|
|
142
224
|
}
|
|
@@ -146,8 +228,9 @@ export interface MsgVoteWeightedResponseProtoMsg {
|
|
|
146
228
|
}
|
|
147
229
|
/**
|
|
148
230
|
* MsgVoteWeightedResponse defines the Msg/VoteWeighted response type.
|
|
149
|
-
*
|
|
150
|
-
*
|
|
231
|
+
* @name MsgVoteWeightedResponseAmino
|
|
232
|
+
* @package cosmos.gov.v1beta1
|
|
233
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVoteWeightedResponse
|
|
151
234
|
*/
|
|
152
235
|
export interface MsgVoteWeightedResponseAmino {
|
|
153
236
|
}
|
|
@@ -155,46 +238,85 @@ export interface MsgVoteWeightedResponseAminoMsg {
|
|
|
155
238
|
type: "cosmos-sdk/MsgVoteWeightedResponse";
|
|
156
239
|
value: MsgVoteWeightedResponseAmino;
|
|
157
240
|
}
|
|
158
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* MsgDeposit defines a message to submit a deposit to an existing proposal.
|
|
243
|
+
* @name MsgDeposit
|
|
244
|
+
* @package cosmos.gov.v1beta1
|
|
245
|
+
* @see proto type: cosmos.gov.v1beta1.MsgDeposit
|
|
246
|
+
*/
|
|
159
247
|
export interface MsgDeposit {
|
|
160
|
-
/**
|
|
248
|
+
/**
|
|
249
|
+
* proposal_id defines the unique id of the proposal.
|
|
250
|
+
*/
|
|
161
251
|
proposalId: bigint;
|
|
162
|
-
/**
|
|
252
|
+
/**
|
|
253
|
+
* depositor defines the deposit addresses from the proposals.
|
|
254
|
+
*/
|
|
163
255
|
depositor: string;
|
|
164
|
-
/**
|
|
256
|
+
/**
|
|
257
|
+
* amount to be deposited by depositor.
|
|
258
|
+
*/
|
|
165
259
|
amount: Coin[];
|
|
166
260
|
}
|
|
167
261
|
export interface MsgDepositProtoMsg {
|
|
168
262
|
typeUrl: "/cosmos.gov.v1beta1.MsgDeposit";
|
|
169
263
|
value: Uint8Array;
|
|
170
264
|
}
|
|
171
|
-
/**
|
|
265
|
+
/**
|
|
266
|
+
* MsgDeposit defines a message to submit a deposit to an existing proposal.
|
|
267
|
+
* @name MsgDepositAmino
|
|
268
|
+
* @package cosmos.gov.v1beta1
|
|
269
|
+
* @see proto type: cosmos.gov.v1beta1.MsgDeposit
|
|
270
|
+
*/
|
|
172
271
|
export interface MsgDepositAmino {
|
|
173
|
-
/**
|
|
272
|
+
/**
|
|
273
|
+
* proposal_id defines the unique id of the proposal.
|
|
274
|
+
*/
|
|
174
275
|
proposal_id: string;
|
|
175
|
-
/**
|
|
276
|
+
/**
|
|
277
|
+
* depositor defines the deposit addresses from the proposals.
|
|
278
|
+
*/
|
|
176
279
|
depositor?: string;
|
|
177
|
-
/**
|
|
280
|
+
/**
|
|
281
|
+
* amount to be deposited by depositor.
|
|
282
|
+
*/
|
|
178
283
|
amount: CoinAmino[];
|
|
179
284
|
}
|
|
180
285
|
export interface MsgDepositAminoMsg {
|
|
181
286
|
type: "cosmos-sdk/MsgDeposit";
|
|
182
287
|
value: MsgDepositAmino;
|
|
183
288
|
}
|
|
184
|
-
/**
|
|
289
|
+
/**
|
|
290
|
+
* MsgDepositResponse defines the Msg/Deposit response type.
|
|
291
|
+
* @name MsgDepositResponse
|
|
292
|
+
* @package cosmos.gov.v1beta1
|
|
293
|
+
* @see proto type: cosmos.gov.v1beta1.MsgDepositResponse
|
|
294
|
+
*/
|
|
185
295
|
export interface MsgDepositResponse {
|
|
186
296
|
}
|
|
187
297
|
export interface MsgDepositResponseProtoMsg {
|
|
188
298
|
typeUrl: "/cosmos.gov.v1beta1.MsgDepositResponse";
|
|
189
299
|
value: Uint8Array;
|
|
190
300
|
}
|
|
191
|
-
/**
|
|
301
|
+
/**
|
|
302
|
+
* MsgDepositResponse defines the Msg/Deposit response type.
|
|
303
|
+
* @name MsgDepositResponseAmino
|
|
304
|
+
* @package cosmos.gov.v1beta1
|
|
305
|
+
* @see proto type: cosmos.gov.v1beta1.MsgDepositResponse
|
|
306
|
+
*/
|
|
192
307
|
export interface MsgDepositResponseAmino {
|
|
193
308
|
}
|
|
194
309
|
export interface MsgDepositResponseAminoMsg {
|
|
195
310
|
type: "cosmos-sdk/MsgDepositResponse";
|
|
196
311
|
value: MsgDepositResponseAmino;
|
|
197
312
|
}
|
|
313
|
+
/**
|
|
314
|
+
* MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary
|
|
315
|
+
* proposal Content.
|
|
316
|
+
* @name MsgSubmitProposal
|
|
317
|
+
* @package cosmos.gov.v1beta1
|
|
318
|
+
* @see proto type: cosmos.gov.v1beta1.MsgSubmitProposal
|
|
319
|
+
*/
|
|
198
320
|
export declare const MsgSubmitProposal: {
|
|
199
321
|
typeUrl: string;
|
|
200
322
|
aminoType: string;
|
|
@@ -209,6 +331,12 @@ export declare const MsgSubmitProposal: {
|
|
|
209
331
|
toProto(message: MsgSubmitProposal): Uint8Array;
|
|
210
332
|
toProtoMsg(message: MsgSubmitProposal): MsgSubmitProposalProtoMsg;
|
|
211
333
|
};
|
|
334
|
+
/**
|
|
335
|
+
* MsgSubmitProposalResponse defines the Msg/SubmitProposal response type.
|
|
336
|
+
* @name MsgSubmitProposalResponse
|
|
337
|
+
* @package cosmos.gov.v1beta1
|
|
338
|
+
* @see proto type: cosmos.gov.v1beta1.MsgSubmitProposalResponse
|
|
339
|
+
*/
|
|
212
340
|
export declare const MsgSubmitProposalResponse: {
|
|
213
341
|
typeUrl: string;
|
|
214
342
|
aminoType: string;
|
|
@@ -223,6 +351,12 @@ export declare const MsgSubmitProposalResponse: {
|
|
|
223
351
|
toProto(message: MsgSubmitProposalResponse): Uint8Array;
|
|
224
352
|
toProtoMsg(message: MsgSubmitProposalResponse): MsgSubmitProposalResponseProtoMsg;
|
|
225
353
|
};
|
|
354
|
+
/**
|
|
355
|
+
* MsgVote defines a message to cast a vote.
|
|
356
|
+
* @name MsgVote
|
|
357
|
+
* @package cosmos.gov.v1beta1
|
|
358
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVote
|
|
359
|
+
*/
|
|
226
360
|
export declare const MsgVote: {
|
|
227
361
|
typeUrl: string;
|
|
228
362
|
aminoType: string;
|
|
@@ -237,6 +371,12 @@ export declare const MsgVote: {
|
|
|
237
371
|
toProto(message: MsgVote): Uint8Array;
|
|
238
372
|
toProtoMsg(message: MsgVote): MsgVoteProtoMsg;
|
|
239
373
|
};
|
|
374
|
+
/**
|
|
375
|
+
* MsgVoteResponse defines the Msg/Vote response type.
|
|
376
|
+
* @name MsgVoteResponse
|
|
377
|
+
* @package cosmos.gov.v1beta1
|
|
378
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVoteResponse
|
|
379
|
+
*/
|
|
240
380
|
export declare const MsgVoteResponse: {
|
|
241
381
|
typeUrl: string;
|
|
242
382
|
aminoType: string;
|
|
@@ -251,6 +391,12 @@ export declare const MsgVoteResponse: {
|
|
|
251
391
|
toProto(message: MsgVoteResponse): Uint8Array;
|
|
252
392
|
toProtoMsg(message: MsgVoteResponse): MsgVoteResponseProtoMsg;
|
|
253
393
|
};
|
|
394
|
+
/**
|
|
395
|
+
* MsgVoteWeighted defines a message to cast a vote.
|
|
396
|
+
* @name MsgVoteWeighted
|
|
397
|
+
* @package cosmos.gov.v1beta1
|
|
398
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVoteWeighted
|
|
399
|
+
*/
|
|
254
400
|
export declare const MsgVoteWeighted: {
|
|
255
401
|
typeUrl: string;
|
|
256
402
|
aminoType: string;
|
|
@@ -265,6 +411,12 @@ export declare const MsgVoteWeighted: {
|
|
|
265
411
|
toProto(message: MsgVoteWeighted): Uint8Array;
|
|
266
412
|
toProtoMsg(message: MsgVoteWeighted): MsgVoteWeightedProtoMsg;
|
|
267
413
|
};
|
|
414
|
+
/**
|
|
415
|
+
* MsgVoteWeightedResponse defines the Msg/VoteWeighted response type.
|
|
416
|
+
* @name MsgVoteWeightedResponse
|
|
417
|
+
* @package cosmos.gov.v1beta1
|
|
418
|
+
* @see proto type: cosmos.gov.v1beta1.MsgVoteWeightedResponse
|
|
419
|
+
*/
|
|
268
420
|
export declare const MsgVoteWeightedResponse: {
|
|
269
421
|
typeUrl: string;
|
|
270
422
|
aminoType: string;
|
|
@@ -279,6 +431,12 @@ export declare const MsgVoteWeightedResponse: {
|
|
|
279
431
|
toProto(message: MsgVoteWeightedResponse): Uint8Array;
|
|
280
432
|
toProtoMsg(message: MsgVoteWeightedResponse): MsgVoteWeightedResponseProtoMsg;
|
|
281
433
|
};
|
|
434
|
+
/**
|
|
435
|
+
* MsgDeposit defines a message to submit a deposit to an existing proposal.
|
|
436
|
+
* @name MsgDeposit
|
|
437
|
+
* @package cosmos.gov.v1beta1
|
|
438
|
+
* @see proto type: cosmos.gov.v1beta1.MsgDeposit
|
|
439
|
+
*/
|
|
282
440
|
export declare const MsgDeposit: {
|
|
283
441
|
typeUrl: string;
|
|
284
442
|
aminoType: string;
|
|
@@ -293,6 +451,12 @@ export declare const MsgDeposit: {
|
|
|
293
451
|
toProto(message: MsgDeposit): Uint8Array;
|
|
294
452
|
toProtoMsg(message: MsgDeposit): MsgDepositProtoMsg;
|
|
295
453
|
};
|
|
454
|
+
/**
|
|
455
|
+
* MsgDepositResponse defines the Msg/Deposit response type.
|
|
456
|
+
* @name MsgDepositResponse
|
|
457
|
+
* @package cosmos.gov.v1beta1
|
|
458
|
+
* @see proto type: cosmos.gov.v1beta1.MsgDepositResponse
|
|
459
|
+
*/
|
|
296
460
|
export declare const MsgDepositResponse: {
|
|
297
461
|
typeUrl: string;
|
|
298
462
|
aminoType: string;
|