@sparkdreamnft/sparkdreamjs 0.0.5 → 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 +2284 -2422
- 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/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/blog/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/esm/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/esm/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/esm/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/esm/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/esm/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/esm/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/esm/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/esm/sparkdream/bundle.js +68 -48
- package/esm/sparkdream/client.js +7 -7
- package/esm/sparkdream/lcd.js +10 -6
- package/esm/sparkdream/rpc.query.js +6 -7
- package/esm/sparkdream/rpc.tx.js +6 -2
- package/esm/sparkdream/sparkdream/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/sparkdream/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/esm/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/esm/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/esm/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/esm/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/esm/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/esm/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +20 -20
- 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 +54 -0
- package/sparkdream/{sparkdream/module → blog/module/v1}/module.js +9 -3
- package/sparkdream/{sparkdream → blog/v1}/genesis.d.ts +28 -8
- package/sparkdream/{sparkdream → blog/v1}/genesis.js +9 -3
- package/sparkdream/blog/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/sparkdream/blog/{post.d.ts → v1/post.d.ts} +22 -4
- package/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/sparkdream/blog/{query.d.ts → v1/query.d.ts} +129 -21
- package/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/sparkdream/blog/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +3 -3
- package/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/sparkdream/blog/{tx.amino.d.ts → v1/tx.amino.d.ts} +4 -4
- package/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/sparkdream/blog/{tx.d.ts → v1/tx.d.ts} +168 -23
- package/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/sparkdream/blog/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/sparkdream/blog/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +4 -1
- package/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/sparkdream/bundle.d.ts +461 -419
- package/sparkdream/bundle.js +68 -48
- package/sparkdream/client.d.ts +15 -15
- package/sparkdream/client.js +7 -7
- package/sparkdream/lcd.d.ts +6 -2
- package/sparkdream/lcd.js +10 -6
- package/sparkdream/rpc.query.d.ts +9 -13
- package/sparkdream/rpc.query.js +6 -7
- package/sparkdream/rpc.tx.d.ts +6 -2
- package/sparkdream/rpc.tx.js +6 -2
- package/sparkdream/sparkdream/module/v1/module.d.ts +54 -0
- package/sparkdream/{blog/module → sparkdream/module/v1}/module.js +9 -3
- package/sparkdream/sparkdream/v1/genesis.d.ts +53 -0
- package/sparkdream/{blog → sparkdream/v1}/genesis.js +9 -3
- package/sparkdream/sparkdream/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/sparkdream/sparkdream/{query.d.ts → v1/query.d.ts} +48 -12
- package/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/sparkdream/sparkdream/{tx.amino.d.ts → v1/tx.amino.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/sparkdream/sparkdream/{tx.d.ts → v1/tx.d.ts} +42 -9
- package/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/sparkdream/sparkdream/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/sparkdream/sparkdream/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- 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 +20 -20
- 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
- package/sparkdream/blog/genesis.d.ts +0 -33
- package/sparkdream/blog/module/module.d.ts +0 -32
- package/sparkdream/sparkdream/module/module.d.ts +0 -32
- /package/sparkdream/blog/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
- /package/sparkdream/sparkdream/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
package/cosmos/gov/v1/query.d.ts
CHANGED
|
@@ -2,21 +2,36 @@ import { ProposalStatus, Proposal, ProposalAmino, Vote, VoteAmino, VotingParams,
|
|
|
2
2
|
import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../base/query/v1beta1/pagination";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../helpers";
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* QueryConstitutionRequest is the request type for the Query/Constitution RPC method
|
|
7
|
+
* @name QueryConstitutionRequest
|
|
8
|
+
* @package cosmos.gov.v1
|
|
9
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionRequest
|
|
10
|
+
*/
|
|
6
11
|
export interface QueryConstitutionRequest {
|
|
7
12
|
}
|
|
8
13
|
export interface QueryConstitutionRequestProtoMsg {
|
|
9
14
|
typeUrl: "/cosmos.gov.v1.QueryConstitutionRequest";
|
|
10
15
|
value: Uint8Array;
|
|
11
16
|
}
|
|
12
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* QueryConstitutionRequest is the request type for the Query/Constitution RPC method
|
|
19
|
+
* @name QueryConstitutionRequestAmino
|
|
20
|
+
* @package cosmos.gov.v1
|
|
21
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionRequest
|
|
22
|
+
*/
|
|
13
23
|
export interface QueryConstitutionRequestAmino {
|
|
14
24
|
}
|
|
15
25
|
export interface QueryConstitutionRequestAminoMsg {
|
|
16
26
|
type: "cosmos-sdk/v1/QueryConstitutionRequest";
|
|
17
27
|
value: QueryConstitutionRequestAmino;
|
|
18
28
|
}
|
|
19
|
-
/**
|
|
29
|
+
/**
|
|
30
|
+
* QueryConstitutionResponse is the response type for the Query/Constitution RPC method
|
|
31
|
+
* @name QueryConstitutionResponse
|
|
32
|
+
* @package cosmos.gov.v1
|
|
33
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionResponse
|
|
34
|
+
*/
|
|
20
35
|
export interface QueryConstitutionResponse {
|
|
21
36
|
constitution: string;
|
|
22
37
|
}
|
|
@@ -24,7 +39,12 @@ export interface QueryConstitutionResponseProtoMsg {
|
|
|
24
39
|
typeUrl: "/cosmos.gov.v1.QueryConstitutionResponse";
|
|
25
40
|
value: Uint8Array;
|
|
26
41
|
}
|
|
27
|
-
/**
|
|
42
|
+
/**
|
|
43
|
+
* QueryConstitutionResponse is the response type for the Query/Constitution RPC method
|
|
44
|
+
* @name QueryConstitutionResponseAmino
|
|
45
|
+
* @package cosmos.gov.v1
|
|
46
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionResponse
|
|
47
|
+
*/
|
|
28
48
|
export interface QueryConstitutionResponseAmino {
|
|
29
49
|
constitution?: string;
|
|
30
50
|
}
|
|
@@ -32,66 +52,120 @@ export interface QueryConstitutionResponseAminoMsg {
|
|
|
32
52
|
type: "cosmos-sdk/v1/QueryConstitutionResponse";
|
|
33
53
|
value: QueryConstitutionResponseAmino;
|
|
34
54
|
}
|
|
35
|
-
/**
|
|
55
|
+
/**
|
|
56
|
+
* QueryProposalRequest is the request type for the Query/Proposal RPC method.
|
|
57
|
+
* @name QueryProposalRequest
|
|
58
|
+
* @package cosmos.gov.v1
|
|
59
|
+
* @see proto type: cosmos.gov.v1.QueryProposalRequest
|
|
60
|
+
*/
|
|
36
61
|
export interface QueryProposalRequest {
|
|
37
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* proposal_id defines the unique id of the proposal.
|
|
64
|
+
*/
|
|
38
65
|
proposalId: bigint;
|
|
39
66
|
}
|
|
40
67
|
export interface QueryProposalRequestProtoMsg {
|
|
41
68
|
typeUrl: "/cosmos.gov.v1.QueryProposalRequest";
|
|
42
69
|
value: Uint8Array;
|
|
43
70
|
}
|
|
44
|
-
/**
|
|
71
|
+
/**
|
|
72
|
+
* QueryProposalRequest is the request type for the Query/Proposal RPC method.
|
|
73
|
+
* @name QueryProposalRequestAmino
|
|
74
|
+
* @package cosmos.gov.v1
|
|
75
|
+
* @see proto type: cosmos.gov.v1.QueryProposalRequest
|
|
76
|
+
*/
|
|
45
77
|
export interface QueryProposalRequestAmino {
|
|
46
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* proposal_id defines the unique id of the proposal.
|
|
80
|
+
*/
|
|
47
81
|
proposal_id?: string;
|
|
48
82
|
}
|
|
49
83
|
export interface QueryProposalRequestAminoMsg {
|
|
50
84
|
type: "cosmos-sdk/v1/QueryProposalRequest";
|
|
51
85
|
value: QueryProposalRequestAmino;
|
|
52
86
|
}
|
|
53
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* QueryProposalResponse is the response type for the Query/Proposal RPC method.
|
|
89
|
+
* @name QueryProposalResponse
|
|
90
|
+
* @package cosmos.gov.v1
|
|
91
|
+
* @see proto type: cosmos.gov.v1.QueryProposalResponse
|
|
92
|
+
*/
|
|
54
93
|
export interface QueryProposalResponse {
|
|
55
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* proposal is the requested governance proposal.
|
|
96
|
+
*/
|
|
56
97
|
proposal?: Proposal;
|
|
57
98
|
}
|
|
58
99
|
export interface QueryProposalResponseProtoMsg {
|
|
59
100
|
typeUrl: "/cosmos.gov.v1.QueryProposalResponse";
|
|
60
101
|
value: Uint8Array;
|
|
61
102
|
}
|
|
62
|
-
/**
|
|
103
|
+
/**
|
|
104
|
+
* QueryProposalResponse is the response type for the Query/Proposal RPC method.
|
|
105
|
+
* @name QueryProposalResponseAmino
|
|
106
|
+
* @package cosmos.gov.v1
|
|
107
|
+
* @see proto type: cosmos.gov.v1.QueryProposalResponse
|
|
108
|
+
*/
|
|
63
109
|
export interface QueryProposalResponseAmino {
|
|
64
|
-
/**
|
|
110
|
+
/**
|
|
111
|
+
* proposal is the requested governance proposal.
|
|
112
|
+
*/
|
|
65
113
|
proposal?: ProposalAmino;
|
|
66
114
|
}
|
|
67
115
|
export interface QueryProposalResponseAminoMsg {
|
|
68
116
|
type: "cosmos-sdk/v1/QueryProposalResponse";
|
|
69
117
|
value: QueryProposalResponseAmino;
|
|
70
118
|
}
|
|
71
|
-
/**
|
|
119
|
+
/**
|
|
120
|
+
* QueryProposalsRequest is the request type for the Query/Proposals RPC method.
|
|
121
|
+
* @name QueryProposalsRequest
|
|
122
|
+
* @package cosmos.gov.v1
|
|
123
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsRequest
|
|
124
|
+
*/
|
|
72
125
|
export interface QueryProposalsRequest {
|
|
73
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* proposal_status defines the status of the proposals.
|
|
128
|
+
*/
|
|
74
129
|
proposalStatus: ProposalStatus;
|
|
75
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* voter defines the voter address for the proposals.
|
|
132
|
+
*/
|
|
76
133
|
voter: string;
|
|
77
|
-
/**
|
|
134
|
+
/**
|
|
135
|
+
* depositor defines the deposit addresses from the proposals.
|
|
136
|
+
*/
|
|
78
137
|
depositor: string;
|
|
79
|
-
/**
|
|
138
|
+
/**
|
|
139
|
+
* pagination defines an optional pagination for the request.
|
|
140
|
+
*/
|
|
80
141
|
pagination?: PageRequest;
|
|
81
142
|
}
|
|
82
143
|
export interface QueryProposalsRequestProtoMsg {
|
|
83
144
|
typeUrl: "/cosmos.gov.v1.QueryProposalsRequest";
|
|
84
145
|
value: Uint8Array;
|
|
85
146
|
}
|
|
86
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* QueryProposalsRequest is the request type for the Query/Proposals RPC method.
|
|
149
|
+
* @name QueryProposalsRequestAmino
|
|
150
|
+
* @package cosmos.gov.v1
|
|
151
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsRequest
|
|
152
|
+
*/
|
|
87
153
|
export interface QueryProposalsRequestAmino {
|
|
88
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* proposal_status defines the status of the proposals.
|
|
156
|
+
*/
|
|
89
157
|
proposal_status?: ProposalStatus;
|
|
90
|
-
/**
|
|
158
|
+
/**
|
|
159
|
+
* voter defines the voter address for the proposals.
|
|
160
|
+
*/
|
|
91
161
|
voter?: string;
|
|
92
|
-
/**
|
|
162
|
+
/**
|
|
163
|
+
* depositor defines the deposit addresses from the proposals.
|
|
164
|
+
*/
|
|
93
165
|
depositor?: string;
|
|
94
|
-
/**
|
|
166
|
+
/**
|
|
167
|
+
* pagination defines an optional pagination for the request.
|
|
168
|
+
*/
|
|
95
169
|
pagination?: PageRequestAmino;
|
|
96
170
|
}
|
|
97
171
|
export interface QueryProposalsRequestAminoMsg {
|
|
@@ -101,11 +175,18 @@ export interface QueryProposalsRequestAminoMsg {
|
|
|
101
175
|
/**
|
|
102
176
|
* QueryProposalsResponse is the response type for the Query/Proposals RPC
|
|
103
177
|
* method.
|
|
178
|
+
* @name QueryProposalsResponse
|
|
179
|
+
* @package cosmos.gov.v1
|
|
180
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsResponse
|
|
104
181
|
*/
|
|
105
182
|
export interface QueryProposalsResponse {
|
|
106
|
-
/**
|
|
183
|
+
/**
|
|
184
|
+
* proposals defines all the requested governance proposals.
|
|
185
|
+
*/
|
|
107
186
|
proposals: Proposal[];
|
|
108
|
-
/**
|
|
187
|
+
/**
|
|
188
|
+
* pagination defines the pagination in the response.
|
|
189
|
+
*/
|
|
109
190
|
pagination?: PageResponse;
|
|
110
191
|
}
|
|
111
192
|
export interface QueryProposalsResponseProtoMsg {
|
|
@@ -115,102 +196,182 @@ export interface QueryProposalsResponseProtoMsg {
|
|
|
115
196
|
/**
|
|
116
197
|
* QueryProposalsResponse is the response type for the Query/Proposals RPC
|
|
117
198
|
* method.
|
|
199
|
+
* @name QueryProposalsResponseAmino
|
|
200
|
+
* @package cosmos.gov.v1
|
|
201
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsResponse
|
|
118
202
|
*/
|
|
119
203
|
export interface QueryProposalsResponseAmino {
|
|
120
|
-
/**
|
|
204
|
+
/**
|
|
205
|
+
* proposals defines all the requested governance proposals.
|
|
206
|
+
*/
|
|
121
207
|
proposals?: ProposalAmino[];
|
|
122
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* pagination defines the pagination in the response.
|
|
210
|
+
*/
|
|
123
211
|
pagination?: PageResponseAmino;
|
|
124
212
|
}
|
|
125
213
|
export interface QueryProposalsResponseAminoMsg {
|
|
126
214
|
type: "cosmos-sdk/v1/QueryProposalsResponse";
|
|
127
215
|
value: QueryProposalsResponseAmino;
|
|
128
216
|
}
|
|
129
|
-
/**
|
|
217
|
+
/**
|
|
218
|
+
* QueryVoteRequest is the request type for the Query/Vote RPC method.
|
|
219
|
+
* @name QueryVoteRequest
|
|
220
|
+
* @package cosmos.gov.v1
|
|
221
|
+
* @see proto type: cosmos.gov.v1.QueryVoteRequest
|
|
222
|
+
*/
|
|
130
223
|
export interface QueryVoteRequest {
|
|
131
|
-
/**
|
|
224
|
+
/**
|
|
225
|
+
* proposal_id defines the unique id of the proposal.
|
|
226
|
+
*/
|
|
132
227
|
proposalId: bigint;
|
|
133
|
-
/**
|
|
228
|
+
/**
|
|
229
|
+
* voter defines the voter address for the proposals.
|
|
230
|
+
*/
|
|
134
231
|
voter: string;
|
|
135
232
|
}
|
|
136
233
|
export interface QueryVoteRequestProtoMsg {
|
|
137
234
|
typeUrl: "/cosmos.gov.v1.QueryVoteRequest";
|
|
138
235
|
value: Uint8Array;
|
|
139
236
|
}
|
|
140
|
-
/**
|
|
237
|
+
/**
|
|
238
|
+
* QueryVoteRequest is the request type for the Query/Vote RPC method.
|
|
239
|
+
* @name QueryVoteRequestAmino
|
|
240
|
+
* @package cosmos.gov.v1
|
|
241
|
+
* @see proto type: cosmos.gov.v1.QueryVoteRequest
|
|
242
|
+
*/
|
|
141
243
|
export interface QueryVoteRequestAmino {
|
|
142
|
-
/**
|
|
244
|
+
/**
|
|
245
|
+
* proposal_id defines the unique id of the proposal.
|
|
246
|
+
*/
|
|
143
247
|
proposal_id?: string;
|
|
144
|
-
/**
|
|
248
|
+
/**
|
|
249
|
+
* voter defines the voter address for the proposals.
|
|
250
|
+
*/
|
|
145
251
|
voter?: string;
|
|
146
252
|
}
|
|
147
253
|
export interface QueryVoteRequestAminoMsg {
|
|
148
254
|
type: "cosmos-sdk/v1/QueryVoteRequest";
|
|
149
255
|
value: QueryVoteRequestAmino;
|
|
150
256
|
}
|
|
151
|
-
/**
|
|
257
|
+
/**
|
|
258
|
+
* QueryVoteResponse is the response type for the Query/Vote RPC method.
|
|
259
|
+
* @name QueryVoteResponse
|
|
260
|
+
* @package cosmos.gov.v1
|
|
261
|
+
* @see proto type: cosmos.gov.v1.QueryVoteResponse
|
|
262
|
+
*/
|
|
152
263
|
export interface QueryVoteResponse {
|
|
153
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* vote defines the queried vote.
|
|
266
|
+
*/
|
|
154
267
|
vote?: Vote;
|
|
155
268
|
}
|
|
156
269
|
export interface QueryVoteResponseProtoMsg {
|
|
157
270
|
typeUrl: "/cosmos.gov.v1.QueryVoteResponse";
|
|
158
271
|
value: Uint8Array;
|
|
159
272
|
}
|
|
160
|
-
/**
|
|
273
|
+
/**
|
|
274
|
+
* QueryVoteResponse is the response type for the Query/Vote RPC method.
|
|
275
|
+
* @name QueryVoteResponseAmino
|
|
276
|
+
* @package cosmos.gov.v1
|
|
277
|
+
* @see proto type: cosmos.gov.v1.QueryVoteResponse
|
|
278
|
+
*/
|
|
161
279
|
export interface QueryVoteResponseAmino {
|
|
162
|
-
/**
|
|
280
|
+
/**
|
|
281
|
+
* vote defines the queried vote.
|
|
282
|
+
*/
|
|
163
283
|
vote?: VoteAmino;
|
|
164
284
|
}
|
|
165
285
|
export interface QueryVoteResponseAminoMsg {
|
|
166
286
|
type: "cosmos-sdk/v1/QueryVoteResponse";
|
|
167
287
|
value: QueryVoteResponseAmino;
|
|
168
288
|
}
|
|
169
|
-
/**
|
|
289
|
+
/**
|
|
290
|
+
* QueryVotesRequest is the request type for the Query/Votes RPC method.
|
|
291
|
+
* @name QueryVotesRequest
|
|
292
|
+
* @package cosmos.gov.v1
|
|
293
|
+
* @see proto type: cosmos.gov.v1.QueryVotesRequest
|
|
294
|
+
*/
|
|
170
295
|
export interface QueryVotesRequest {
|
|
171
|
-
/**
|
|
296
|
+
/**
|
|
297
|
+
* proposal_id defines the unique id of the proposal.
|
|
298
|
+
*/
|
|
172
299
|
proposalId: bigint;
|
|
173
|
-
/**
|
|
300
|
+
/**
|
|
301
|
+
* pagination defines an optional pagination for the request.
|
|
302
|
+
*/
|
|
174
303
|
pagination?: PageRequest;
|
|
175
304
|
}
|
|
176
305
|
export interface QueryVotesRequestProtoMsg {
|
|
177
306
|
typeUrl: "/cosmos.gov.v1.QueryVotesRequest";
|
|
178
307
|
value: Uint8Array;
|
|
179
308
|
}
|
|
180
|
-
/**
|
|
309
|
+
/**
|
|
310
|
+
* QueryVotesRequest is the request type for the Query/Votes RPC method.
|
|
311
|
+
* @name QueryVotesRequestAmino
|
|
312
|
+
* @package cosmos.gov.v1
|
|
313
|
+
* @see proto type: cosmos.gov.v1.QueryVotesRequest
|
|
314
|
+
*/
|
|
181
315
|
export interface QueryVotesRequestAmino {
|
|
182
|
-
/**
|
|
316
|
+
/**
|
|
317
|
+
* proposal_id defines the unique id of the proposal.
|
|
318
|
+
*/
|
|
183
319
|
proposal_id?: string;
|
|
184
|
-
/**
|
|
320
|
+
/**
|
|
321
|
+
* pagination defines an optional pagination for the request.
|
|
322
|
+
*/
|
|
185
323
|
pagination?: PageRequestAmino;
|
|
186
324
|
}
|
|
187
325
|
export interface QueryVotesRequestAminoMsg {
|
|
188
326
|
type: "cosmos-sdk/v1/QueryVotesRequest";
|
|
189
327
|
value: QueryVotesRequestAmino;
|
|
190
328
|
}
|
|
191
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* QueryVotesResponse is the response type for the Query/Votes RPC method.
|
|
331
|
+
* @name QueryVotesResponse
|
|
332
|
+
* @package cosmos.gov.v1
|
|
333
|
+
* @see proto type: cosmos.gov.v1.QueryVotesResponse
|
|
334
|
+
*/
|
|
192
335
|
export interface QueryVotesResponse {
|
|
193
|
-
/**
|
|
336
|
+
/**
|
|
337
|
+
* votes defines the queried votes.
|
|
338
|
+
*/
|
|
194
339
|
votes: Vote[];
|
|
195
|
-
/**
|
|
340
|
+
/**
|
|
341
|
+
* pagination defines the pagination in the response.
|
|
342
|
+
*/
|
|
196
343
|
pagination?: PageResponse;
|
|
197
344
|
}
|
|
198
345
|
export interface QueryVotesResponseProtoMsg {
|
|
199
346
|
typeUrl: "/cosmos.gov.v1.QueryVotesResponse";
|
|
200
347
|
value: Uint8Array;
|
|
201
348
|
}
|
|
202
|
-
/**
|
|
349
|
+
/**
|
|
350
|
+
* QueryVotesResponse is the response type for the Query/Votes RPC method.
|
|
351
|
+
* @name QueryVotesResponseAmino
|
|
352
|
+
* @package cosmos.gov.v1
|
|
353
|
+
* @see proto type: cosmos.gov.v1.QueryVotesResponse
|
|
354
|
+
*/
|
|
203
355
|
export interface QueryVotesResponseAmino {
|
|
204
|
-
/**
|
|
356
|
+
/**
|
|
357
|
+
* votes defines the queried votes.
|
|
358
|
+
*/
|
|
205
359
|
votes?: VoteAmino[];
|
|
206
|
-
/**
|
|
360
|
+
/**
|
|
361
|
+
* pagination defines the pagination in the response.
|
|
362
|
+
*/
|
|
207
363
|
pagination?: PageResponseAmino;
|
|
208
364
|
}
|
|
209
365
|
export interface QueryVotesResponseAminoMsg {
|
|
210
366
|
type: "cosmos-sdk/v1/QueryVotesResponse";
|
|
211
367
|
value: QueryVotesResponseAmino;
|
|
212
368
|
}
|
|
213
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
371
|
+
* @name QueryParamsRequest
|
|
372
|
+
* @package cosmos.gov.v1
|
|
373
|
+
* @see proto type: cosmos.gov.v1.QueryParamsRequest
|
|
374
|
+
*/
|
|
214
375
|
export interface QueryParamsRequest {
|
|
215
376
|
/**
|
|
216
377
|
* params_type defines which parameters to query for, can be one of "voting",
|
|
@@ -222,7 +383,12 @@ export interface QueryParamsRequestProtoMsg {
|
|
|
222
383
|
typeUrl: "/cosmos.gov.v1.QueryParamsRequest";
|
|
223
384
|
value: Uint8Array;
|
|
224
385
|
}
|
|
225
|
-
/**
|
|
386
|
+
/**
|
|
387
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
388
|
+
* @name QueryParamsRequestAmino
|
|
389
|
+
* @package cosmos.gov.v1
|
|
390
|
+
* @see proto type: cosmos.gov.v1.QueryParamsRequest
|
|
391
|
+
*/
|
|
226
392
|
export interface QueryParamsRequestAmino {
|
|
227
393
|
/**
|
|
228
394
|
* params_type defines which parameters to query for, can be one of "voting",
|
|
@@ -234,30 +400,33 @@ export interface QueryParamsRequestAminoMsg {
|
|
|
234
400
|
type: "cosmos-sdk/v1/QueryParamsRequest";
|
|
235
401
|
value: QueryParamsRequestAmino;
|
|
236
402
|
}
|
|
237
|
-
/**
|
|
403
|
+
/**
|
|
404
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
405
|
+
* @name QueryParamsResponse
|
|
406
|
+
* @package cosmos.gov.v1
|
|
407
|
+
* @see proto type: cosmos.gov.v1.QueryParamsResponse
|
|
408
|
+
*/
|
|
238
409
|
export interface QueryParamsResponse {
|
|
239
410
|
/**
|
|
240
411
|
* Deprecated: Prefer to use `params` instead.
|
|
241
412
|
* voting_params defines the parameters related to voting.
|
|
413
|
+
* @deprecated
|
|
242
414
|
*/
|
|
243
|
-
/** @deprecated */
|
|
244
415
|
votingParams?: VotingParams;
|
|
245
416
|
/**
|
|
246
417
|
* Deprecated: Prefer to use `params` instead.
|
|
247
418
|
* deposit_params defines the parameters related to deposit.
|
|
419
|
+
* @deprecated
|
|
248
420
|
*/
|
|
249
|
-
/** @deprecated */
|
|
250
421
|
depositParams?: DepositParams;
|
|
251
422
|
/**
|
|
252
423
|
* Deprecated: Prefer to use `params` instead.
|
|
253
424
|
* tally_params defines the parameters related to tally.
|
|
425
|
+
* @deprecated
|
|
254
426
|
*/
|
|
255
|
-
/** @deprecated */
|
|
256
427
|
tallyParams?: TallyParams;
|
|
257
428
|
/**
|
|
258
429
|
* params defines all the paramaters of x/gov module.
|
|
259
|
-
*
|
|
260
|
-
* Since: cosmos-sdk 0.47
|
|
261
430
|
*/
|
|
262
431
|
params?: Params;
|
|
263
432
|
}
|
|
@@ -265,30 +434,33 @@ export interface QueryParamsResponseProtoMsg {
|
|
|
265
434
|
typeUrl: "/cosmos.gov.v1.QueryParamsResponse";
|
|
266
435
|
value: Uint8Array;
|
|
267
436
|
}
|
|
268
|
-
/**
|
|
437
|
+
/**
|
|
438
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
439
|
+
* @name QueryParamsResponseAmino
|
|
440
|
+
* @package cosmos.gov.v1
|
|
441
|
+
* @see proto type: cosmos.gov.v1.QueryParamsResponse
|
|
442
|
+
*/
|
|
269
443
|
export interface QueryParamsResponseAmino {
|
|
270
444
|
/**
|
|
271
445
|
* Deprecated: Prefer to use `params` instead.
|
|
272
446
|
* voting_params defines the parameters related to voting.
|
|
447
|
+
* @deprecated
|
|
273
448
|
*/
|
|
274
|
-
/** @deprecated */
|
|
275
449
|
voting_params?: VotingParamsAmino;
|
|
276
450
|
/**
|
|
277
451
|
* Deprecated: Prefer to use `params` instead.
|
|
278
452
|
* deposit_params defines the parameters related to deposit.
|
|
453
|
+
* @deprecated
|
|
279
454
|
*/
|
|
280
|
-
/** @deprecated */
|
|
281
455
|
deposit_params?: DepositParamsAmino;
|
|
282
456
|
/**
|
|
283
457
|
* Deprecated: Prefer to use `params` instead.
|
|
284
458
|
* tally_params defines the parameters related to tally.
|
|
459
|
+
* @deprecated
|
|
285
460
|
*/
|
|
286
|
-
/** @deprecated */
|
|
287
461
|
tally_params?: TallyParamsAmino;
|
|
288
462
|
/**
|
|
289
463
|
* params defines all the paramaters of x/gov module.
|
|
290
|
-
*
|
|
291
|
-
* Since: cosmos-sdk 0.47
|
|
292
464
|
*/
|
|
293
465
|
params?: ParamsAmino;
|
|
294
466
|
}
|
|
@@ -296,126 +468,228 @@ export interface QueryParamsResponseAminoMsg {
|
|
|
296
468
|
type: "cosmos-sdk/v1/QueryParamsResponse";
|
|
297
469
|
value: QueryParamsResponseAmino;
|
|
298
470
|
}
|
|
299
|
-
/**
|
|
471
|
+
/**
|
|
472
|
+
* QueryDepositRequest is the request type for the Query/Deposit RPC method.
|
|
473
|
+
* @name QueryDepositRequest
|
|
474
|
+
* @package cosmos.gov.v1
|
|
475
|
+
* @see proto type: cosmos.gov.v1.QueryDepositRequest
|
|
476
|
+
*/
|
|
300
477
|
export interface QueryDepositRequest {
|
|
301
|
-
/**
|
|
478
|
+
/**
|
|
479
|
+
* proposal_id defines the unique id of the proposal.
|
|
480
|
+
*/
|
|
302
481
|
proposalId: bigint;
|
|
303
|
-
/**
|
|
482
|
+
/**
|
|
483
|
+
* depositor defines the deposit addresses from the proposals.
|
|
484
|
+
*/
|
|
304
485
|
depositor: string;
|
|
305
486
|
}
|
|
306
487
|
export interface QueryDepositRequestProtoMsg {
|
|
307
488
|
typeUrl: "/cosmos.gov.v1.QueryDepositRequest";
|
|
308
489
|
value: Uint8Array;
|
|
309
490
|
}
|
|
310
|
-
/**
|
|
491
|
+
/**
|
|
492
|
+
* QueryDepositRequest is the request type for the Query/Deposit RPC method.
|
|
493
|
+
* @name QueryDepositRequestAmino
|
|
494
|
+
* @package cosmos.gov.v1
|
|
495
|
+
* @see proto type: cosmos.gov.v1.QueryDepositRequest
|
|
496
|
+
*/
|
|
311
497
|
export interface QueryDepositRequestAmino {
|
|
312
|
-
/**
|
|
498
|
+
/**
|
|
499
|
+
* proposal_id defines the unique id of the proposal.
|
|
500
|
+
*/
|
|
313
501
|
proposal_id?: string;
|
|
314
|
-
/**
|
|
502
|
+
/**
|
|
503
|
+
* depositor defines the deposit addresses from the proposals.
|
|
504
|
+
*/
|
|
315
505
|
depositor?: string;
|
|
316
506
|
}
|
|
317
507
|
export interface QueryDepositRequestAminoMsg {
|
|
318
508
|
type: "cosmos-sdk/v1/QueryDepositRequest";
|
|
319
509
|
value: QueryDepositRequestAmino;
|
|
320
510
|
}
|
|
321
|
-
/**
|
|
511
|
+
/**
|
|
512
|
+
* QueryDepositResponse is the response type for the Query/Deposit RPC method.
|
|
513
|
+
* @name QueryDepositResponse
|
|
514
|
+
* @package cosmos.gov.v1
|
|
515
|
+
* @see proto type: cosmos.gov.v1.QueryDepositResponse
|
|
516
|
+
*/
|
|
322
517
|
export interface QueryDepositResponse {
|
|
323
|
-
/**
|
|
518
|
+
/**
|
|
519
|
+
* deposit defines the requested deposit.
|
|
520
|
+
*/
|
|
324
521
|
deposit?: Deposit;
|
|
325
522
|
}
|
|
326
523
|
export interface QueryDepositResponseProtoMsg {
|
|
327
524
|
typeUrl: "/cosmos.gov.v1.QueryDepositResponse";
|
|
328
525
|
value: Uint8Array;
|
|
329
526
|
}
|
|
330
|
-
/**
|
|
527
|
+
/**
|
|
528
|
+
* QueryDepositResponse is the response type for the Query/Deposit RPC method.
|
|
529
|
+
* @name QueryDepositResponseAmino
|
|
530
|
+
* @package cosmos.gov.v1
|
|
531
|
+
* @see proto type: cosmos.gov.v1.QueryDepositResponse
|
|
532
|
+
*/
|
|
331
533
|
export interface QueryDepositResponseAmino {
|
|
332
|
-
/**
|
|
534
|
+
/**
|
|
535
|
+
* deposit defines the requested deposit.
|
|
536
|
+
*/
|
|
333
537
|
deposit?: DepositAmino;
|
|
334
538
|
}
|
|
335
539
|
export interface QueryDepositResponseAminoMsg {
|
|
336
540
|
type: "cosmos-sdk/v1/QueryDepositResponse";
|
|
337
541
|
value: QueryDepositResponseAmino;
|
|
338
542
|
}
|
|
339
|
-
/**
|
|
543
|
+
/**
|
|
544
|
+
* QueryDepositsRequest is the request type for the Query/Deposits RPC method.
|
|
545
|
+
* @name QueryDepositsRequest
|
|
546
|
+
* @package cosmos.gov.v1
|
|
547
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsRequest
|
|
548
|
+
*/
|
|
340
549
|
export interface QueryDepositsRequest {
|
|
341
|
-
/**
|
|
550
|
+
/**
|
|
551
|
+
* proposal_id defines the unique id of the proposal.
|
|
552
|
+
*/
|
|
342
553
|
proposalId: bigint;
|
|
343
|
-
/**
|
|
554
|
+
/**
|
|
555
|
+
* pagination defines an optional pagination for the request.
|
|
556
|
+
*/
|
|
344
557
|
pagination?: PageRequest;
|
|
345
558
|
}
|
|
346
559
|
export interface QueryDepositsRequestProtoMsg {
|
|
347
560
|
typeUrl: "/cosmos.gov.v1.QueryDepositsRequest";
|
|
348
561
|
value: Uint8Array;
|
|
349
562
|
}
|
|
350
|
-
/**
|
|
563
|
+
/**
|
|
564
|
+
* QueryDepositsRequest is the request type for the Query/Deposits RPC method.
|
|
565
|
+
* @name QueryDepositsRequestAmino
|
|
566
|
+
* @package cosmos.gov.v1
|
|
567
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsRequest
|
|
568
|
+
*/
|
|
351
569
|
export interface QueryDepositsRequestAmino {
|
|
352
|
-
/**
|
|
570
|
+
/**
|
|
571
|
+
* proposal_id defines the unique id of the proposal.
|
|
572
|
+
*/
|
|
353
573
|
proposal_id?: string;
|
|
354
|
-
/**
|
|
574
|
+
/**
|
|
575
|
+
* pagination defines an optional pagination for the request.
|
|
576
|
+
*/
|
|
355
577
|
pagination?: PageRequestAmino;
|
|
356
578
|
}
|
|
357
579
|
export interface QueryDepositsRequestAminoMsg {
|
|
358
580
|
type: "cosmos-sdk/v1/QueryDepositsRequest";
|
|
359
581
|
value: QueryDepositsRequestAmino;
|
|
360
582
|
}
|
|
361
|
-
/**
|
|
583
|
+
/**
|
|
584
|
+
* QueryDepositsResponse is the response type for the Query/Deposits RPC method.
|
|
585
|
+
* @name QueryDepositsResponse
|
|
586
|
+
* @package cosmos.gov.v1
|
|
587
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsResponse
|
|
588
|
+
*/
|
|
362
589
|
export interface QueryDepositsResponse {
|
|
363
|
-
/**
|
|
590
|
+
/**
|
|
591
|
+
* deposits defines the requested deposits.
|
|
592
|
+
*/
|
|
364
593
|
deposits: Deposit[];
|
|
365
|
-
/**
|
|
594
|
+
/**
|
|
595
|
+
* pagination defines the pagination in the response.
|
|
596
|
+
*/
|
|
366
597
|
pagination?: PageResponse;
|
|
367
598
|
}
|
|
368
599
|
export interface QueryDepositsResponseProtoMsg {
|
|
369
600
|
typeUrl: "/cosmos.gov.v1.QueryDepositsResponse";
|
|
370
601
|
value: Uint8Array;
|
|
371
602
|
}
|
|
372
|
-
/**
|
|
603
|
+
/**
|
|
604
|
+
* QueryDepositsResponse is the response type for the Query/Deposits RPC method.
|
|
605
|
+
* @name QueryDepositsResponseAmino
|
|
606
|
+
* @package cosmos.gov.v1
|
|
607
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsResponse
|
|
608
|
+
*/
|
|
373
609
|
export interface QueryDepositsResponseAmino {
|
|
374
|
-
/**
|
|
610
|
+
/**
|
|
611
|
+
* deposits defines the requested deposits.
|
|
612
|
+
*/
|
|
375
613
|
deposits?: DepositAmino[];
|
|
376
|
-
/**
|
|
614
|
+
/**
|
|
615
|
+
* pagination defines the pagination in the response.
|
|
616
|
+
*/
|
|
377
617
|
pagination?: PageResponseAmino;
|
|
378
618
|
}
|
|
379
619
|
export interface QueryDepositsResponseAminoMsg {
|
|
380
620
|
type: "cosmos-sdk/v1/QueryDepositsResponse";
|
|
381
621
|
value: QueryDepositsResponseAmino;
|
|
382
622
|
}
|
|
383
|
-
/**
|
|
623
|
+
/**
|
|
624
|
+
* QueryTallyResultRequest is the request type for the Query/Tally RPC method.
|
|
625
|
+
* @name QueryTallyResultRequest
|
|
626
|
+
* @package cosmos.gov.v1
|
|
627
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultRequest
|
|
628
|
+
*/
|
|
384
629
|
export interface QueryTallyResultRequest {
|
|
385
|
-
/**
|
|
630
|
+
/**
|
|
631
|
+
* proposal_id defines the unique id of the proposal.
|
|
632
|
+
*/
|
|
386
633
|
proposalId: bigint;
|
|
387
634
|
}
|
|
388
635
|
export interface QueryTallyResultRequestProtoMsg {
|
|
389
636
|
typeUrl: "/cosmos.gov.v1.QueryTallyResultRequest";
|
|
390
637
|
value: Uint8Array;
|
|
391
638
|
}
|
|
392
|
-
/**
|
|
639
|
+
/**
|
|
640
|
+
* QueryTallyResultRequest is the request type for the Query/Tally RPC method.
|
|
641
|
+
* @name QueryTallyResultRequestAmino
|
|
642
|
+
* @package cosmos.gov.v1
|
|
643
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultRequest
|
|
644
|
+
*/
|
|
393
645
|
export interface QueryTallyResultRequestAmino {
|
|
394
|
-
/**
|
|
646
|
+
/**
|
|
647
|
+
* proposal_id defines the unique id of the proposal.
|
|
648
|
+
*/
|
|
395
649
|
proposal_id?: string;
|
|
396
650
|
}
|
|
397
651
|
export interface QueryTallyResultRequestAminoMsg {
|
|
398
652
|
type: "cosmos-sdk/v1/QueryTallyResultRequest";
|
|
399
653
|
value: QueryTallyResultRequestAmino;
|
|
400
654
|
}
|
|
401
|
-
/**
|
|
655
|
+
/**
|
|
656
|
+
* QueryTallyResultResponse is the response type for the Query/Tally RPC method.
|
|
657
|
+
* @name QueryTallyResultResponse
|
|
658
|
+
* @package cosmos.gov.v1
|
|
659
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultResponse
|
|
660
|
+
*/
|
|
402
661
|
export interface QueryTallyResultResponse {
|
|
403
|
-
/**
|
|
662
|
+
/**
|
|
663
|
+
* tally defines the requested tally.
|
|
664
|
+
*/
|
|
404
665
|
tally?: TallyResult;
|
|
405
666
|
}
|
|
406
667
|
export interface QueryTallyResultResponseProtoMsg {
|
|
407
668
|
typeUrl: "/cosmos.gov.v1.QueryTallyResultResponse";
|
|
408
669
|
value: Uint8Array;
|
|
409
670
|
}
|
|
410
|
-
/**
|
|
671
|
+
/**
|
|
672
|
+
* QueryTallyResultResponse is the response type for the Query/Tally RPC method.
|
|
673
|
+
* @name QueryTallyResultResponseAmino
|
|
674
|
+
* @package cosmos.gov.v1
|
|
675
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultResponse
|
|
676
|
+
*/
|
|
411
677
|
export interface QueryTallyResultResponseAmino {
|
|
412
|
-
/**
|
|
678
|
+
/**
|
|
679
|
+
* tally defines the requested tally.
|
|
680
|
+
*/
|
|
413
681
|
tally?: TallyResultAmino;
|
|
414
682
|
}
|
|
415
683
|
export interface QueryTallyResultResponseAminoMsg {
|
|
416
684
|
type: "cosmos-sdk/v1/QueryTallyResultResponse";
|
|
417
685
|
value: QueryTallyResultResponseAmino;
|
|
418
686
|
}
|
|
687
|
+
/**
|
|
688
|
+
* QueryConstitutionRequest is the request type for the Query/Constitution RPC method
|
|
689
|
+
* @name QueryConstitutionRequest
|
|
690
|
+
* @package cosmos.gov.v1
|
|
691
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionRequest
|
|
692
|
+
*/
|
|
419
693
|
export declare const QueryConstitutionRequest: {
|
|
420
694
|
typeUrl: string;
|
|
421
695
|
aminoType: string;
|
|
@@ -430,6 +704,12 @@ export declare const QueryConstitutionRequest: {
|
|
|
430
704
|
toProto(message: QueryConstitutionRequest): Uint8Array;
|
|
431
705
|
toProtoMsg(message: QueryConstitutionRequest): QueryConstitutionRequestProtoMsg;
|
|
432
706
|
};
|
|
707
|
+
/**
|
|
708
|
+
* QueryConstitutionResponse is the response type for the Query/Constitution RPC method
|
|
709
|
+
* @name QueryConstitutionResponse
|
|
710
|
+
* @package cosmos.gov.v1
|
|
711
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionResponse
|
|
712
|
+
*/
|
|
433
713
|
export declare const QueryConstitutionResponse: {
|
|
434
714
|
typeUrl: string;
|
|
435
715
|
aminoType: string;
|
|
@@ -444,6 +724,12 @@ export declare const QueryConstitutionResponse: {
|
|
|
444
724
|
toProto(message: QueryConstitutionResponse): Uint8Array;
|
|
445
725
|
toProtoMsg(message: QueryConstitutionResponse): QueryConstitutionResponseProtoMsg;
|
|
446
726
|
};
|
|
727
|
+
/**
|
|
728
|
+
* QueryProposalRequest is the request type for the Query/Proposal RPC method.
|
|
729
|
+
* @name QueryProposalRequest
|
|
730
|
+
* @package cosmos.gov.v1
|
|
731
|
+
* @see proto type: cosmos.gov.v1.QueryProposalRequest
|
|
732
|
+
*/
|
|
447
733
|
export declare const QueryProposalRequest: {
|
|
448
734
|
typeUrl: string;
|
|
449
735
|
aminoType: string;
|
|
@@ -458,6 +744,12 @@ export declare const QueryProposalRequest: {
|
|
|
458
744
|
toProto(message: QueryProposalRequest): Uint8Array;
|
|
459
745
|
toProtoMsg(message: QueryProposalRequest): QueryProposalRequestProtoMsg;
|
|
460
746
|
};
|
|
747
|
+
/**
|
|
748
|
+
* QueryProposalResponse is the response type for the Query/Proposal RPC method.
|
|
749
|
+
* @name QueryProposalResponse
|
|
750
|
+
* @package cosmos.gov.v1
|
|
751
|
+
* @see proto type: cosmos.gov.v1.QueryProposalResponse
|
|
752
|
+
*/
|
|
461
753
|
export declare const QueryProposalResponse: {
|
|
462
754
|
typeUrl: string;
|
|
463
755
|
aminoType: string;
|
|
@@ -472,6 +764,12 @@ export declare const QueryProposalResponse: {
|
|
|
472
764
|
toProto(message: QueryProposalResponse): Uint8Array;
|
|
473
765
|
toProtoMsg(message: QueryProposalResponse): QueryProposalResponseProtoMsg;
|
|
474
766
|
};
|
|
767
|
+
/**
|
|
768
|
+
* QueryProposalsRequest is the request type for the Query/Proposals RPC method.
|
|
769
|
+
* @name QueryProposalsRequest
|
|
770
|
+
* @package cosmos.gov.v1
|
|
771
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsRequest
|
|
772
|
+
*/
|
|
475
773
|
export declare const QueryProposalsRequest: {
|
|
476
774
|
typeUrl: string;
|
|
477
775
|
aminoType: string;
|
|
@@ -486,6 +784,13 @@ export declare const QueryProposalsRequest: {
|
|
|
486
784
|
toProto(message: QueryProposalsRequest): Uint8Array;
|
|
487
785
|
toProtoMsg(message: QueryProposalsRequest): QueryProposalsRequestProtoMsg;
|
|
488
786
|
};
|
|
787
|
+
/**
|
|
788
|
+
* QueryProposalsResponse is the response type for the Query/Proposals RPC
|
|
789
|
+
* method.
|
|
790
|
+
* @name QueryProposalsResponse
|
|
791
|
+
* @package cosmos.gov.v1
|
|
792
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsResponse
|
|
793
|
+
*/
|
|
489
794
|
export declare const QueryProposalsResponse: {
|
|
490
795
|
typeUrl: string;
|
|
491
796
|
aminoType: string;
|
|
@@ -500,6 +805,12 @@ export declare const QueryProposalsResponse: {
|
|
|
500
805
|
toProto(message: QueryProposalsResponse): Uint8Array;
|
|
501
806
|
toProtoMsg(message: QueryProposalsResponse): QueryProposalsResponseProtoMsg;
|
|
502
807
|
};
|
|
808
|
+
/**
|
|
809
|
+
* QueryVoteRequest is the request type for the Query/Vote RPC method.
|
|
810
|
+
* @name QueryVoteRequest
|
|
811
|
+
* @package cosmos.gov.v1
|
|
812
|
+
* @see proto type: cosmos.gov.v1.QueryVoteRequest
|
|
813
|
+
*/
|
|
503
814
|
export declare const QueryVoteRequest: {
|
|
504
815
|
typeUrl: string;
|
|
505
816
|
aminoType: string;
|
|
@@ -514,6 +825,12 @@ export declare const QueryVoteRequest: {
|
|
|
514
825
|
toProto(message: QueryVoteRequest): Uint8Array;
|
|
515
826
|
toProtoMsg(message: QueryVoteRequest): QueryVoteRequestProtoMsg;
|
|
516
827
|
};
|
|
828
|
+
/**
|
|
829
|
+
* QueryVoteResponse is the response type for the Query/Vote RPC method.
|
|
830
|
+
* @name QueryVoteResponse
|
|
831
|
+
* @package cosmos.gov.v1
|
|
832
|
+
* @see proto type: cosmos.gov.v1.QueryVoteResponse
|
|
833
|
+
*/
|
|
517
834
|
export declare const QueryVoteResponse: {
|
|
518
835
|
typeUrl: string;
|
|
519
836
|
aminoType: string;
|
|
@@ -528,6 +845,12 @@ export declare const QueryVoteResponse: {
|
|
|
528
845
|
toProto(message: QueryVoteResponse): Uint8Array;
|
|
529
846
|
toProtoMsg(message: QueryVoteResponse): QueryVoteResponseProtoMsg;
|
|
530
847
|
};
|
|
848
|
+
/**
|
|
849
|
+
* QueryVotesRequest is the request type for the Query/Votes RPC method.
|
|
850
|
+
* @name QueryVotesRequest
|
|
851
|
+
* @package cosmos.gov.v1
|
|
852
|
+
* @see proto type: cosmos.gov.v1.QueryVotesRequest
|
|
853
|
+
*/
|
|
531
854
|
export declare const QueryVotesRequest: {
|
|
532
855
|
typeUrl: string;
|
|
533
856
|
aminoType: string;
|
|
@@ -542,6 +865,12 @@ export declare const QueryVotesRequest: {
|
|
|
542
865
|
toProto(message: QueryVotesRequest): Uint8Array;
|
|
543
866
|
toProtoMsg(message: QueryVotesRequest): QueryVotesRequestProtoMsg;
|
|
544
867
|
};
|
|
868
|
+
/**
|
|
869
|
+
* QueryVotesResponse is the response type for the Query/Votes RPC method.
|
|
870
|
+
* @name QueryVotesResponse
|
|
871
|
+
* @package cosmos.gov.v1
|
|
872
|
+
* @see proto type: cosmos.gov.v1.QueryVotesResponse
|
|
873
|
+
*/
|
|
545
874
|
export declare const QueryVotesResponse: {
|
|
546
875
|
typeUrl: string;
|
|
547
876
|
aminoType: string;
|
|
@@ -556,6 +885,12 @@ export declare const QueryVotesResponse: {
|
|
|
556
885
|
toProto(message: QueryVotesResponse): Uint8Array;
|
|
557
886
|
toProtoMsg(message: QueryVotesResponse): QueryVotesResponseProtoMsg;
|
|
558
887
|
};
|
|
888
|
+
/**
|
|
889
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
890
|
+
* @name QueryParamsRequest
|
|
891
|
+
* @package cosmos.gov.v1
|
|
892
|
+
* @see proto type: cosmos.gov.v1.QueryParamsRequest
|
|
893
|
+
*/
|
|
559
894
|
export declare const QueryParamsRequest: {
|
|
560
895
|
typeUrl: string;
|
|
561
896
|
aminoType: string;
|
|
@@ -570,6 +905,12 @@ export declare const QueryParamsRequest: {
|
|
|
570
905
|
toProto(message: QueryParamsRequest): Uint8Array;
|
|
571
906
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
572
907
|
};
|
|
908
|
+
/**
|
|
909
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
910
|
+
* @name QueryParamsResponse
|
|
911
|
+
* @package cosmos.gov.v1
|
|
912
|
+
* @see proto type: cosmos.gov.v1.QueryParamsResponse
|
|
913
|
+
*/
|
|
573
914
|
export declare const QueryParamsResponse: {
|
|
574
915
|
typeUrl: string;
|
|
575
916
|
aminoType: string;
|
|
@@ -584,6 +925,12 @@ export declare const QueryParamsResponse: {
|
|
|
584
925
|
toProto(message: QueryParamsResponse): Uint8Array;
|
|
585
926
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
586
927
|
};
|
|
928
|
+
/**
|
|
929
|
+
* QueryDepositRequest is the request type for the Query/Deposit RPC method.
|
|
930
|
+
* @name QueryDepositRequest
|
|
931
|
+
* @package cosmos.gov.v1
|
|
932
|
+
* @see proto type: cosmos.gov.v1.QueryDepositRequest
|
|
933
|
+
*/
|
|
587
934
|
export declare const QueryDepositRequest: {
|
|
588
935
|
typeUrl: string;
|
|
589
936
|
aminoType: string;
|
|
@@ -598,6 +945,12 @@ export declare const QueryDepositRequest: {
|
|
|
598
945
|
toProto(message: QueryDepositRequest): Uint8Array;
|
|
599
946
|
toProtoMsg(message: QueryDepositRequest): QueryDepositRequestProtoMsg;
|
|
600
947
|
};
|
|
948
|
+
/**
|
|
949
|
+
* QueryDepositResponse is the response type for the Query/Deposit RPC method.
|
|
950
|
+
* @name QueryDepositResponse
|
|
951
|
+
* @package cosmos.gov.v1
|
|
952
|
+
* @see proto type: cosmos.gov.v1.QueryDepositResponse
|
|
953
|
+
*/
|
|
601
954
|
export declare const QueryDepositResponse: {
|
|
602
955
|
typeUrl: string;
|
|
603
956
|
aminoType: string;
|
|
@@ -612,6 +965,12 @@ export declare const QueryDepositResponse: {
|
|
|
612
965
|
toProto(message: QueryDepositResponse): Uint8Array;
|
|
613
966
|
toProtoMsg(message: QueryDepositResponse): QueryDepositResponseProtoMsg;
|
|
614
967
|
};
|
|
968
|
+
/**
|
|
969
|
+
* QueryDepositsRequest is the request type for the Query/Deposits RPC method.
|
|
970
|
+
* @name QueryDepositsRequest
|
|
971
|
+
* @package cosmos.gov.v1
|
|
972
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsRequest
|
|
973
|
+
*/
|
|
615
974
|
export declare const QueryDepositsRequest: {
|
|
616
975
|
typeUrl: string;
|
|
617
976
|
aminoType: string;
|
|
@@ -626,6 +985,12 @@ export declare const QueryDepositsRequest: {
|
|
|
626
985
|
toProto(message: QueryDepositsRequest): Uint8Array;
|
|
627
986
|
toProtoMsg(message: QueryDepositsRequest): QueryDepositsRequestProtoMsg;
|
|
628
987
|
};
|
|
988
|
+
/**
|
|
989
|
+
* QueryDepositsResponse is the response type for the Query/Deposits RPC method.
|
|
990
|
+
* @name QueryDepositsResponse
|
|
991
|
+
* @package cosmos.gov.v1
|
|
992
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsResponse
|
|
993
|
+
*/
|
|
629
994
|
export declare const QueryDepositsResponse: {
|
|
630
995
|
typeUrl: string;
|
|
631
996
|
aminoType: string;
|
|
@@ -640,6 +1005,12 @@ export declare const QueryDepositsResponse: {
|
|
|
640
1005
|
toProto(message: QueryDepositsResponse): Uint8Array;
|
|
641
1006
|
toProtoMsg(message: QueryDepositsResponse): QueryDepositsResponseProtoMsg;
|
|
642
1007
|
};
|
|
1008
|
+
/**
|
|
1009
|
+
* QueryTallyResultRequest is the request type for the Query/Tally RPC method.
|
|
1010
|
+
* @name QueryTallyResultRequest
|
|
1011
|
+
* @package cosmos.gov.v1
|
|
1012
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultRequest
|
|
1013
|
+
*/
|
|
643
1014
|
export declare const QueryTallyResultRequest: {
|
|
644
1015
|
typeUrl: string;
|
|
645
1016
|
aminoType: string;
|
|
@@ -654,6 +1025,12 @@ export declare const QueryTallyResultRequest: {
|
|
|
654
1025
|
toProto(message: QueryTallyResultRequest): Uint8Array;
|
|
655
1026
|
toProtoMsg(message: QueryTallyResultRequest): QueryTallyResultRequestProtoMsg;
|
|
656
1027
|
};
|
|
1028
|
+
/**
|
|
1029
|
+
* QueryTallyResultResponse is the response type for the Query/Tally RPC method.
|
|
1030
|
+
* @name QueryTallyResultResponse
|
|
1031
|
+
* @package cosmos.gov.v1
|
|
1032
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultResponse
|
|
1033
|
+
*/
|
|
657
1034
|
export declare const QueryTallyResultResponse: {
|
|
658
1035
|
typeUrl: string;
|
|
659
1036
|
aminoType: string;
|