@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
|
@@ -14,6 +14,12 @@ function createBaseGenesisState() {
|
|
|
14
14
|
constitution: ""
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* GenesisState defines the gov module's genesis state.
|
|
19
|
+
* @name GenesisState
|
|
20
|
+
* @package cosmos.gov.v1
|
|
21
|
+
* @see proto type: cosmos.gov.v1.GenesisState
|
|
22
|
+
*/
|
|
17
23
|
export const GenesisState = {
|
|
18
24
|
typeUrl: "/cosmos.gov.v1.GenesisState",
|
|
19
25
|
aminoType: "cosmos-sdk/v1/GenesisState",
|
package/esm/cosmos/gov/v1/gov.js
CHANGED
|
@@ -145,6 +145,12 @@ function createBaseWeightedVoteOption() {
|
|
|
145
145
|
weight: ""
|
|
146
146
|
};
|
|
147
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* WeightedVoteOption defines a unit of vote for vote split.
|
|
150
|
+
* @name WeightedVoteOption
|
|
151
|
+
* @package cosmos.gov.v1
|
|
152
|
+
* @see proto type: cosmos.gov.v1.WeightedVoteOption
|
|
153
|
+
*/
|
|
148
154
|
export const WeightedVoteOption = {
|
|
149
155
|
typeUrl: "/cosmos.gov.v1.WeightedVoteOption",
|
|
150
156
|
aminoType: "cosmos-sdk/v1/WeightedVoteOption",
|
|
@@ -228,6 +234,13 @@ function createBaseDeposit() {
|
|
|
228
234
|
amount: []
|
|
229
235
|
};
|
|
230
236
|
}
|
|
237
|
+
/**
|
|
238
|
+
* Deposit defines an amount deposited by an account address to an active
|
|
239
|
+
* proposal.
|
|
240
|
+
* @name Deposit
|
|
241
|
+
* @package cosmos.gov.v1
|
|
242
|
+
* @see proto type: cosmos.gov.v1.Deposit
|
|
243
|
+
*/
|
|
231
244
|
export const Deposit = {
|
|
232
245
|
typeUrl: "/cosmos.gov.v1.Deposit",
|
|
233
246
|
aminoType: "cosmos-sdk/v1/Deposit",
|
|
@@ -337,6 +350,12 @@ function createBaseProposal() {
|
|
|
337
350
|
failedReason: ""
|
|
338
351
|
};
|
|
339
352
|
}
|
|
353
|
+
/**
|
|
354
|
+
* Proposal defines the core field members of a governance proposal.
|
|
355
|
+
* @name Proposal
|
|
356
|
+
* @package cosmos.gov.v1
|
|
357
|
+
* @see proto type: cosmos.gov.v1.Proposal
|
|
358
|
+
*/
|
|
340
359
|
export const Proposal = {
|
|
341
360
|
typeUrl: "/cosmos.gov.v1.Proposal",
|
|
342
361
|
aminoType: "cosmos-sdk/v1/Proposal",
|
|
@@ -570,6 +589,12 @@ function createBaseTallyResult() {
|
|
|
570
589
|
noWithVetoCount: ""
|
|
571
590
|
};
|
|
572
591
|
}
|
|
592
|
+
/**
|
|
593
|
+
* TallyResult defines a standard tally for a governance proposal.
|
|
594
|
+
* @name TallyResult
|
|
595
|
+
* @package cosmos.gov.v1
|
|
596
|
+
* @see proto type: cosmos.gov.v1.TallyResult
|
|
597
|
+
*/
|
|
573
598
|
export const TallyResult = {
|
|
574
599
|
typeUrl: "/cosmos.gov.v1.TallyResult",
|
|
575
600
|
aminoType: "cosmos-sdk/v1/TallyResult",
|
|
@@ -676,6 +701,13 @@ function createBaseVote() {
|
|
|
676
701
|
metadata: ""
|
|
677
702
|
};
|
|
678
703
|
}
|
|
704
|
+
/**
|
|
705
|
+
* Vote defines a vote on a governance proposal.
|
|
706
|
+
* A Vote consists of a proposal ID, the voter, and the vote option.
|
|
707
|
+
* @name Vote
|
|
708
|
+
* @package cosmos.gov.v1
|
|
709
|
+
* @see proto type: cosmos.gov.v1.Vote
|
|
710
|
+
*/
|
|
679
711
|
export const Vote = {
|
|
680
712
|
typeUrl: "/cosmos.gov.v1.Vote",
|
|
681
713
|
aminoType: "cosmos-sdk/v1/Vote",
|
|
@@ -783,6 +815,13 @@ function createBaseDepositParams() {
|
|
|
783
815
|
maxDepositPeriod: undefined
|
|
784
816
|
};
|
|
785
817
|
}
|
|
818
|
+
/**
|
|
819
|
+
* DepositParams defines the params for deposits on governance proposals.
|
|
820
|
+
* @name DepositParams
|
|
821
|
+
* @package cosmos.gov.v1
|
|
822
|
+
* @see proto type: cosmos.gov.v1.DepositParams
|
|
823
|
+
* @deprecated
|
|
824
|
+
*/
|
|
786
825
|
export const DepositParams = {
|
|
787
826
|
typeUrl: "/cosmos.gov.v1.DepositParams",
|
|
788
827
|
aminoType: "cosmos-sdk/v1/DepositParams",
|
|
@@ -867,6 +906,13 @@ function createBaseVotingParams() {
|
|
|
867
906
|
votingPeriod: undefined
|
|
868
907
|
};
|
|
869
908
|
}
|
|
909
|
+
/**
|
|
910
|
+
* VotingParams defines the params for voting on governance proposals.
|
|
911
|
+
* @name VotingParams
|
|
912
|
+
* @package cosmos.gov.v1
|
|
913
|
+
* @see proto type: cosmos.gov.v1.VotingParams
|
|
914
|
+
* @deprecated
|
|
915
|
+
*/
|
|
870
916
|
export const VotingParams = {
|
|
871
917
|
typeUrl: "/cosmos.gov.v1.VotingParams",
|
|
872
918
|
aminoType: "cosmos-sdk/v1/VotingParams",
|
|
@@ -939,6 +985,13 @@ function createBaseTallyParams() {
|
|
|
939
985
|
vetoThreshold: ""
|
|
940
986
|
};
|
|
941
987
|
}
|
|
988
|
+
/**
|
|
989
|
+
* TallyParams defines the params for tallying votes on governance proposals.
|
|
990
|
+
* @name TallyParams
|
|
991
|
+
* @package cosmos.gov.v1
|
|
992
|
+
* @see proto type: cosmos.gov.v1.TallyParams
|
|
993
|
+
* @deprecated
|
|
994
|
+
*/
|
|
942
995
|
export const TallyParams = {
|
|
943
996
|
typeUrl: "/cosmos.gov.v1.TallyParams",
|
|
944
997
|
aminoType: "cosmos-sdk/v1/TallyParams",
|
|
@@ -1046,6 +1099,12 @@ function createBaseParams() {
|
|
|
1046
1099
|
minDepositRatio: ""
|
|
1047
1100
|
};
|
|
1048
1101
|
}
|
|
1102
|
+
/**
|
|
1103
|
+
* Params defines the parameters for the x/gov module.
|
|
1104
|
+
* @name Params
|
|
1105
|
+
* @package cosmos.gov.v1
|
|
1106
|
+
* @see proto type: cosmos.gov.v1.Params
|
|
1107
|
+
*/
|
|
1049
1108
|
export const Params = {
|
|
1050
1109
|
typeUrl: "/cosmos.gov.v1.Params",
|
|
1051
1110
|
aminoType: "cosmos-sdk/v1/Params",
|
|
@@ -5,6 +5,12 @@ import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
|
5
5
|
function createBaseQueryConstitutionRequest() {
|
|
6
6
|
return {};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* QueryConstitutionRequest is the request type for the Query/Constitution RPC method
|
|
10
|
+
* @name QueryConstitutionRequest
|
|
11
|
+
* @package cosmos.gov.v1
|
|
12
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionRequest
|
|
13
|
+
*/
|
|
8
14
|
export const QueryConstitutionRequest = {
|
|
9
15
|
typeUrl: "/cosmos.gov.v1.QueryConstitutionRequest",
|
|
10
16
|
aminoType: "cosmos-sdk/v1/QueryConstitutionRequest",
|
|
@@ -64,6 +70,12 @@ function createBaseQueryConstitutionResponse() {
|
|
|
64
70
|
constitution: ""
|
|
65
71
|
};
|
|
66
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
* QueryConstitutionResponse is the response type for the Query/Constitution RPC method
|
|
75
|
+
* @name QueryConstitutionResponse
|
|
76
|
+
* @package cosmos.gov.v1
|
|
77
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionResponse
|
|
78
|
+
*/
|
|
67
79
|
export const QueryConstitutionResponse = {
|
|
68
80
|
typeUrl: "/cosmos.gov.v1.QueryConstitutionResponse",
|
|
69
81
|
aminoType: "cosmos-sdk/v1/QueryConstitutionResponse",
|
|
@@ -134,6 +146,12 @@ function createBaseQueryProposalRequest() {
|
|
|
134
146
|
proposalId: BigInt(0)
|
|
135
147
|
};
|
|
136
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* QueryProposalRequest is the request type for the Query/Proposal RPC method.
|
|
151
|
+
* @name QueryProposalRequest
|
|
152
|
+
* @package cosmos.gov.v1
|
|
153
|
+
* @see proto type: cosmos.gov.v1.QueryProposalRequest
|
|
154
|
+
*/
|
|
137
155
|
export const QueryProposalRequest = {
|
|
138
156
|
typeUrl: "/cosmos.gov.v1.QueryProposalRequest",
|
|
139
157
|
aminoType: "cosmos-sdk/v1/QueryProposalRequest",
|
|
@@ -204,6 +222,12 @@ function createBaseQueryProposalResponse() {
|
|
|
204
222
|
proposal: undefined
|
|
205
223
|
};
|
|
206
224
|
}
|
|
225
|
+
/**
|
|
226
|
+
* QueryProposalResponse is the response type for the Query/Proposal RPC method.
|
|
227
|
+
* @name QueryProposalResponse
|
|
228
|
+
* @package cosmos.gov.v1
|
|
229
|
+
* @see proto type: cosmos.gov.v1.QueryProposalResponse
|
|
230
|
+
*/
|
|
207
231
|
export const QueryProposalResponse = {
|
|
208
232
|
typeUrl: "/cosmos.gov.v1.QueryProposalResponse",
|
|
209
233
|
aminoType: "cosmos-sdk/v1/QueryProposalResponse",
|
|
@@ -277,6 +301,12 @@ function createBaseQueryProposalsRequest() {
|
|
|
277
301
|
pagination: undefined
|
|
278
302
|
};
|
|
279
303
|
}
|
|
304
|
+
/**
|
|
305
|
+
* QueryProposalsRequest is the request type for the Query/Proposals RPC method.
|
|
306
|
+
* @name QueryProposalsRequest
|
|
307
|
+
* @package cosmos.gov.v1
|
|
308
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsRequest
|
|
309
|
+
*/
|
|
280
310
|
export const QueryProposalsRequest = {
|
|
281
311
|
typeUrl: "/cosmos.gov.v1.QueryProposalsRequest",
|
|
282
312
|
aminoType: "cosmos-sdk/v1/QueryProposalsRequest",
|
|
@@ -381,6 +411,13 @@ function createBaseQueryProposalsResponse() {
|
|
|
381
411
|
pagination: undefined
|
|
382
412
|
};
|
|
383
413
|
}
|
|
414
|
+
/**
|
|
415
|
+
* QueryProposalsResponse is the response type for the Query/Proposals RPC
|
|
416
|
+
* method.
|
|
417
|
+
* @name QueryProposalsResponse
|
|
418
|
+
* @package cosmos.gov.v1
|
|
419
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsResponse
|
|
420
|
+
*/
|
|
384
421
|
export const QueryProposalsResponse = {
|
|
385
422
|
typeUrl: "/cosmos.gov.v1.QueryProposalsResponse",
|
|
386
423
|
aminoType: "cosmos-sdk/v1/QueryProposalsResponse",
|
|
@@ -466,6 +503,12 @@ function createBaseQueryVoteRequest() {
|
|
|
466
503
|
voter: ""
|
|
467
504
|
};
|
|
468
505
|
}
|
|
506
|
+
/**
|
|
507
|
+
* QueryVoteRequest is the request type for the Query/Vote RPC method.
|
|
508
|
+
* @name QueryVoteRequest
|
|
509
|
+
* @package cosmos.gov.v1
|
|
510
|
+
* @see proto type: cosmos.gov.v1.QueryVoteRequest
|
|
511
|
+
*/
|
|
469
512
|
export const QueryVoteRequest = {
|
|
470
513
|
typeUrl: "/cosmos.gov.v1.QueryVoteRequest",
|
|
471
514
|
aminoType: "cosmos-sdk/v1/QueryVoteRequest",
|
|
@@ -547,6 +590,12 @@ function createBaseQueryVoteResponse() {
|
|
|
547
590
|
vote: undefined
|
|
548
591
|
};
|
|
549
592
|
}
|
|
593
|
+
/**
|
|
594
|
+
* QueryVoteResponse is the response type for the Query/Vote RPC method.
|
|
595
|
+
* @name QueryVoteResponse
|
|
596
|
+
* @package cosmos.gov.v1
|
|
597
|
+
* @see proto type: cosmos.gov.v1.QueryVoteResponse
|
|
598
|
+
*/
|
|
550
599
|
export const QueryVoteResponse = {
|
|
551
600
|
typeUrl: "/cosmos.gov.v1.QueryVoteResponse",
|
|
552
601
|
aminoType: "cosmos-sdk/v1/QueryVoteResponse",
|
|
@@ -618,6 +667,12 @@ function createBaseQueryVotesRequest() {
|
|
|
618
667
|
pagination: undefined
|
|
619
668
|
};
|
|
620
669
|
}
|
|
670
|
+
/**
|
|
671
|
+
* QueryVotesRequest is the request type for the Query/Votes RPC method.
|
|
672
|
+
* @name QueryVotesRequest
|
|
673
|
+
* @package cosmos.gov.v1
|
|
674
|
+
* @see proto type: cosmos.gov.v1.QueryVotesRequest
|
|
675
|
+
*/
|
|
621
676
|
export const QueryVotesRequest = {
|
|
622
677
|
typeUrl: "/cosmos.gov.v1.QueryVotesRequest",
|
|
623
678
|
aminoType: "cosmos-sdk/v1/QueryVotesRequest",
|
|
@@ -700,6 +755,12 @@ function createBaseQueryVotesResponse() {
|
|
|
700
755
|
pagination: undefined
|
|
701
756
|
};
|
|
702
757
|
}
|
|
758
|
+
/**
|
|
759
|
+
* QueryVotesResponse is the response type for the Query/Votes RPC method.
|
|
760
|
+
* @name QueryVotesResponse
|
|
761
|
+
* @package cosmos.gov.v1
|
|
762
|
+
* @see proto type: cosmos.gov.v1.QueryVotesResponse
|
|
763
|
+
*/
|
|
703
764
|
export const QueryVotesResponse = {
|
|
704
765
|
typeUrl: "/cosmos.gov.v1.QueryVotesResponse",
|
|
705
766
|
aminoType: "cosmos-sdk/v1/QueryVotesResponse",
|
|
@@ -784,6 +845,12 @@ function createBaseQueryParamsRequest() {
|
|
|
784
845
|
paramsType: ""
|
|
785
846
|
};
|
|
786
847
|
}
|
|
848
|
+
/**
|
|
849
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
850
|
+
* @name QueryParamsRequest
|
|
851
|
+
* @package cosmos.gov.v1
|
|
852
|
+
* @see proto type: cosmos.gov.v1.QueryParamsRequest
|
|
853
|
+
*/
|
|
787
854
|
export const QueryParamsRequest = {
|
|
788
855
|
typeUrl: "/cosmos.gov.v1.QueryParamsRequest",
|
|
789
856
|
aminoType: "cosmos-sdk/v1/QueryParamsRequest",
|
|
@@ -857,6 +924,12 @@ function createBaseQueryParamsResponse() {
|
|
|
857
924
|
params: undefined
|
|
858
925
|
};
|
|
859
926
|
}
|
|
927
|
+
/**
|
|
928
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
929
|
+
* @name QueryParamsResponse
|
|
930
|
+
* @package cosmos.gov.v1
|
|
931
|
+
* @see proto type: cosmos.gov.v1.QueryParamsResponse
|
|
932
|
+
*/
|
|
860
933
|
export const QueryParamsResponse = {
|
|
861
934
|
typeUrl: "/cosmos.gov.v1.QueryParamsResponse",
|
|
862
935
|
aminoType: "cosmos-sdk/v1/QueryParamsResponse",
|
|
@@ -961,6 +1034,12 @@ function createBaseQueryDepositRequest() {
|
|
|
961
1034
|
depositor: ""
|
|
962
1035
|
};
|
|
963
1036
|
}
|
|
1037
|
+
/**
|
|
1038
|
+
* QueryDepositRequest is the request type for the Query/Deposit RPC method.
|
|
1039
|
+
* @name QueryDepositRequest
|
|
1040
|
+
* @package cosmos.gov.v1
|
|
1041
|
+
* @see proto type: cosmos.gov.v1.QueryDepositRequest
|
|
1042
|
+
*/
|
|
964
1043
|
export const QueryDepositRequest = {
|
|
965
1044
|
typeUrl: "/cosmos.gov.v1.QueryDepositRequest",
|
|
966
1045
|
aminoType: "cosmos-sdk/v1/QueryDepositRequest",
|
|
@@ -1042,6 +1121,12 @@ function createBaseQueryDepositResponse() {
|
|
|
1042
1121
|
deposit: undefined
|
|
1043
1122
|
};
|
|
1044
1123
|
}
|
|
1124
|
+
/**
|
|
1125
|
+
* QueryDepositResponse is the response type for the Query/Deposit RPC method.
|
|
1126
|
+
* @name QueryDepositResponse
|
|
1127
|
+
* @package cosmos.gov.v1
|
|
1128
|
+
* @see proto type: cosmos.gov.v1.QueryDepositResponse
|
|
1129
|
+
*/
|
|
1045
1130
|
export const QueryDepositResponse = {
|
|
1046
1131
|
typeUrl: "/cosmos.gov.v1.QueryDepositResponse",
|
|
1047
1132
|
aminoType: "cosmos-sdk/v1/QueryDepositResponse",
|
|
@@ -1113,6 +1198,12 @@ function createBaseQueryDepositsRequest() {
|
|
|
1113
1198
|
pagination: undefined
|
|
1114
1199
|
};
|
|
1115
1200
|
}
|
|
1201
|
+
/**
|
|
1202
|
+
* QueryDepositsRequest is the request type for the Query/Deposits RPC method.
|
|
1203
|
+
* @name QueryDepositsRequest
|
|
1204
|
+
* @package cosmos.gov.v1
|
|
1205
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsRequest
|
|
1206
|
+
*/
|
|
1116
1207
|
export const QueryDepositsRequest = {
|
|
1117
1208
|
typeUrl: "/cosmos.gov.v1.QueryDepositsRequest",
|
|
1118
1209
|
aminoType: "cosmos-sdk/v1/QueryDepositsRequest",
|
|
@@ -1195,6 +1286,12 @@ function createBaseQueryDepositsResponse() {
|
|
|
1195
1286
|
pagination: undefined
|
|
1196
1287
|
};
|
|
1197
1288
|
}
|
|
1289
|
+
/**
|
|
1290
|
+
* QueryDepositsResponse is the response type for the Query/Deposits RPC method.
|
|
1291
|
+
* @name QueryDepositsResponse
|
|
1292
|
+
* @package cosmos.gov.v1
|
|
1293
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsResponse
|
|
1294
|
+
*/
|
|
1198
1295
|
export const QueryDepositsResponse = {
|
|
1199
1296
|
typeUrl: "/cosmos.gov.v1.QueryDepositsResponse",
|
|
1200
1297
|
aminoType: "cosmos-sdk/v1/QueryDepositsResponse",
|
|
@@ -1279,6 +1376,12 @@ function createBaseQueryTallyResultRequest() {
|
|
|
1279
1376
|
proposalId: BigInt(0)
|
|
1280
1377
|
};
|
|
1281
1378
|
}
|
|
1379
|
+
/**
|
|
1380
|
+
* QueryTallyResultRequest is the request type for the Query/Tally RPC method.
|
|
1381
|
+
* @name QueryTallyResultRequest
|
|
1382
|
+
* @package cosmos.gov.v1
|
|
1383
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultRequest
|
|
1384
|
+
*/
|
|
1282
1385
|
export const QueryTallyResultRequest = {
|
|
1283
1386
|
typeUrl: "/cosmos.gov.v1.QueryTallyResultRequest",
|
|
1284
1387
|
aminoType: "cosmos-sdk/v1/QueryTallyResultRequest",
|
|
@@ -1349,6 +1452,12 @@ function createBaseQueryTallyResultResponse() {
|
|
|
1349
1452
|
tally: undefined
|
|
1350
1453
|
};
|
|
1351
1454
|
}
|
|
1455
|
+
/**
|
|
1456
|
+
* QueryTallyResultResponse is the response type for the Query/Tally RPC method.
|
|
1457
|
+
* @name QueryTallyResultResponse
|
|
1458
|
+
* @package cosmos.gov.v1
|
|
1459
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultResponse
|
|
1460
|
+
*/
|
|
1352
1461
|
export const QueryTallyResultResponse = {
|
|
1353
1462
|
typeUrl: "/cosmos.gov.v1.QueryTallyResultResponse",
|
|
1354
1463
|
aminoType: "cosmos-sdk/v1/QueryTallyResultResponse",
|
package/esm/cosmos/gov/v1/tx.js
CHANGED
|
@@ -20,6 +20,13 @@ function createBaseMsgSubmitProposal() {
|
|
|
20
20
|
expedited: false
|
|
21
21
|
};
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary
|
|
25
|
+
* proposal Content.
|
|
26
|
+
* @name MsgSubmitProposal
|
|
27
|
+
* @package cosmos.gov.v1
|
|
28
|
+
* @see proto type: cosmos.gov.v1.MsgSubmitProposal
|
|
29
|
+
*/
|
|
23
30
|
export const MsgSubmitProposal = {
|
|
24
31
|
typeUrl: "/cosmos.gov.v1.MsgSubmitProposal",
|
|
25
32
|
aminoType: "cosmos-sdk/v1/MsgSubmitProposal",
|
|
@@ -162,6 +169,12 @@ function createBaseMsgSubmitProposalResponse() {
|
|
|
162
169
|
proposalId: BigInt(0)
|
|
163
170
|
};
|
|
164
171
|
}
|
|
172
|
+
/**
|
|
173
|
+
* MsgSubmitProposalResponse defines the Msg/SubmitProposal response type.
|
|
174
|
+
* @name MsgSubmitProposalResponse
|
|
175
|
+
* @package cosmos.gov.v1
|
|
176
|
+
* @see proto type: cosmos.gov.v1.MsgSubmitProposalResponse
|
|
177
|
+
*/
|
|
165
178
|
export const MsgSubmitProposalResponse = {
|
|
166
179
|
typeUrl: "/cosmos.gov.v1.MsgSubmitProposalResponse",
|
|
167
180
|
aminoType: "cosmos-sdk/v1/MsgSubmitProposalResponse",
|
|
@@ -233,6 +246,13 @@ function createBaseMsgExecLegacyContent() {
|
|
|
233
246
|
authority: ""
|
|
234
247
|
};
|
|
235
248
|
}
|
|
249
|
+
/**
|
|
250
|
+
* MsgExecLegacyContent is used to wrap the legacy content field into a message.
|
|
251
|
+
* This ensures backwards compatibility with v1beta1.MsgSubmitProposal.
|
|
252
|
+
* @name MsgExecLegacyContent
|
|
253
|
+
* @package cosmos.gov.v1
|
|
254
|
+
* @see proto type: cosmos.gov.v1.MsgExecLegacyContent
|
|
255
|
+
*/
|
|
236
256
|
export const MsgExecLegacyContent = {
|
|
237
257
|
typeUrl: "/cosmos.gov.v1.MsgExecLegacyContent",
|
|
238
258
|
aminoType: "cosmos-sdk/v1/MsgExecLegacyContent",
|
|
@@ -312,6 +332,12 @@ export const MsgExecLegacyContent = {
|
|
|
312
332
|
function createBaseMsgExecLegacyContentResponse() {
|
|
313
333
|
return {};
|
|
314
334
|
}
|
|
335
|
+
/**
|
|
336
|
+
* MsgExecLegacyContentResponse defines the Msg/ExecLegacyContent response type.
|
|
337
|
+
* @name MsgExecLegacyContentResponse
|
|
338
|
+
* @package cosmos.gov.v1
|
|
339
|
+
* @see proto type: cosmos.gov.v1.MsgExecLegacyContentResponse
|
|
340
|
+
*/
|
|
315
341
|
export const MsgExecLegacyContentResponse = {
|
|
316
342
|
typeUrl: "/cosmos.gov.v1.MsgExecLegacyContentResponse",
|
|
317
343
|
aminoType: "cosmos-sdk/v1/MsgExecLegacyContentResponse",
|
|
@@ -374,6 +400,12 @@ function createBaseMsgVote() {
|
|
|
374
400
|
metadata: ""
|
|
375
401
|
};
|
|
376
402
|
}
|
|
403
|
+
/**
|
|
404
|
+
* MsgVote defines a message to cast a vote.
|
|
405
|
+
* @name MsgVote
|
|
406
|
+
* @package cosmos.gov.v1
|
|
407
|
+
* @see proto type: cosmos.gov.v1.MsgVote
|
|
408
|
+
*/
|
|
377
409
|
export const MsgVote = {
|
|
378
410
|
typeUrl: "/cosmos.gov.v1.MsgVote",
|
|
379
411
|
aminoType: "cosmos-sdk/v1/MsgVote",
|
|
@@ -475,6 +507,12 @@ export const MsgVote = {
|
|
|
475
507
|
function createBaseMsgVoteResponse() {
|
|
476
508
|
return {};
|
|
477
509
|
}
|
|
510
|
+
/**
|
|
511
|
+
* MsgVoteResponse defines the Msg/Vote response type.
|
|
512
|
+
* @name MsgVoteResponse
|
|
513
|
+
* @package cosmos.gov.v1
|
|
514
|
+
* @see proto type: cosmos.gov.v1.MsgVoteResponse
|
|
515
|
+
*/
|
|
478
516
|
export const MsgVoteResponse = {
|
|
479
517
|
typeUrl: "/cosmos.gov.v1.MsgVoteResponse",
|
|
480
518
|
aminoType: "cosmos-sdk/v1/MsgVoteResponse",
|
|
@@ -537,6 +575,12 @@ function createBaseMsgVoteWeighted() {
|
|
|
537
575
|
metadata: ""
|
|
538
576
|
};
|
|
539
577
|
}
|
|
578
|
+
/**
|
|
579
|
+
* MsgVoteWeighted defines a message to cast a vote.
|
|
580
|
+
* @name MsgVoteWeighted
|
|
581
|
+
* @package cosmos.gov.v1
|
|
582
|
+
* @see proto type: cosmos.gov.v1.MsgVoteWeighted
|
|
583
|
+
*/
|
|
540
584
|
export const MsgVoteWeighted = {
|
|
541
585
|
typeUrl: "/cosmos.gov.v1.MsgVoteWeighted",
|
|
542
586
|
aminoType: "cosmos-sdk/v1/MsgVoteWeighted",
|
|
@@ -641,6 +685,12 @@ export const MsgVoteWeighted = {
|
|
|
641
685
|
function createBaseMsgVoteWeightedResponse() {
|
|
642
686
|
return {};
|
|
643
687
|
}
|
|
688
|
+
/**
|
|
689
|
+
* MsgVoteWeightedResponse defines the Msg/VoteWeighted response type.
|
|
690
|
+
* @name MsgVoteWeightedResponse
|
|
691
|
+
* @package cosmos.gov.v1
|
|
692
|
+
* @see proto type: cosmos.gov.v1.MsgVoteWeightedResponse
|
|
693
|
+
*/
|
|
644
694
|
export const MsgVoteWeightedResponse = {
|
|
645
695
|
typeUrl: "/cosmos.gov.v1.MsgVoteWeightedResponse",
|
|
646
696
|
aminoType: "cosmos-sdk/v1/MsgVoteWeightedResponse",
|
|
@@ -702,6 +752,12 @@ function createBaseMsgDeposit() {
|
|
|
702
752
|
amount: []
|
|
703
753
|
};
|
|
704
754
|
}
|
|
755
|
+
/**
|
|
756
|
+
* MsgDeposit defines a message to submit a deposit to an existing proposal.
|
|
757
|
+
* @name MsgDeposit
|
|
758
|
+
* @package cosmos.gov.v1
|
|
759
|
+
* @see proto type: cosmos.gov.v1.MsgDeposit
|
|
760
|
+
*/
|
|
705
761
|
export const MsgDeposit = {
|
|
706
762
|
typeUrl: "/cosmos.gov.v1.MsgDeposit",
|
|
707
763
|
aminoType: "cosmos-sdk/v1/MsgDeposit",
|
|
@@ -795,6 +851,12 @@ export const MsgDeposit = {
|
|
|
795
851
|
function createBaseMsgDepositResponse() {
|
|
796
852
|
return {};
|
|
797
853
|
}
|
|
854
|
+
/**
|
|
855
|
+
* MsgDepositResponse defines the Msg/Deposit response type.
|
|
856
|
+
* @name MsgDepositResponse
|
|
857
|
+
* @package cosmos.gov.v1
|
|
858
|
+
* @see proto type: cosmos.gov.v1.MsgDepositResponse
|
|
859
|
+
*/
|
|
798
860
|
export const MsgDepositResponse = {
|
|
799
861
|
typeUrl: "/cosmos.gov.v1.MsgDepositResponse",
|
|
800
862
|
aminoType: "cosmos-sdk/v1/MsgDepositResponse",
|
|
@@ -855,6 +917,12 @@ function createBaseMsgUpdateParams() {
|
|
|
855
917
|
params: Params.fromPartial({})
|
|
856
918
|
};
|
|
857
919
|
}
|
|
920
|
+
/**
|
|
921
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
922
|
+
* @name MsgUpdateParams
|
|
923
|
+
* @package cosmos.gov.v1
|
|
924
|
+
* @see proto type: cosmos.gov.v1.MsgUpdateParams
|
|
925
|
+
*/
|
|
858
926
|
export const MsgUpdateParams = {
|
|
859
927
|
typeUrl: "/cosmos.gov.v1.MsgUpdateParams",
|
|
860
928
|
aminoType: "cosmos-sdk/x/gov/v1/MsgUpdateParams",
|
|
@@ -934,6 +1002,13 @@ export const MsgUpdateParams = {
|
|
|
934
1002
|
function createBaseMsgUpdateParamsResponse() {
|
|
935
1003
|
return {};
|
|
936
1004
|
}
|
|
1005
|
+
/**
|
|
1006
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
1007
|
+
* MsgUpdateParams message.
|
|
1008
|
+
* @name MsgUpdateParamsResponse
|
|
1009
|
+
* @package cosmos.gov.v1
|
|
1010
|
+
* @see proto type: cosmos.gov.v1.MsgUpdateParamsResponse
|
|
1011
|
+
*/
|
|
937
1012
|
export const MsgUpdateParamsResponse = {
|
|
938
1013
|
typeUrl: "/cosmos.gov.v1.MsgUpdateParamsResponse",
|
|
939
1014
|
aminoType: "cosmos-sdk/v1/MsgUpdateParamsResponse",
|
|
@@ -994,6 +1069,12 @@ function createBaseMsgCancelProposal() {
|
|
|
994
1069
|
proposer: ""
|
|
995
1070
|
};
|
|
996
1071
|
}
|
|
1072
|
+
/**
|
|
1073
|
+
* MsgCancelProposal is the Msg/CancelProposal request type.
|
|
1074
|
+
* @name MsgCancelProposal
|
|
1075
|
+
* @package cosmos.gov.v1
|
|
1076
|
+
* @see proto type: cosmos.gov.v1.MsgCancelProposal
|
|
1077
|
+
*/
|
|
997
1078
|
export const MsgCancelProposal = {
|
|
998
1079
|
typeUrl: "/cosmos.gov.v1.MsgCancelProposal",
|
|
999
1080
|
aminoType: "cosmos-sdk/v1/MsgCancelProposal",
|
|
@@ -1077,6 +1158,13 @@ function createBaseMsgCancelProposalResponse() {
|
|
|
1077
1158
|
canceledHeight: BigInt(0)
|
|
1078
1159
|
};
|
|
1079
1160
|
}
|
|
1161
|
+
/**
|
|
1162
|
+
* MsgCancelProposalResponse defines the response structure for executing a
|
|
1163
|
+
* MsgCancelProposal message.
|
|
1164
|
+
* @name MsgCancelProposalResponse
|
|
1165
|
+
* @package cosmos.gov.v1
|
|
1166
|
+
* @see proto type: cosmos.gov.v1.MsgCancelProposalResponse
|
|
1167
|
+
*/
|
|
1080
1168
|
export const MsgCancelProposalResponse = {
|
|
1081
1169
|
typeUrl: "/cosmos.gov.v1.MsgCancelProposalResponse",
|
|
1082
1170
|
aminoType: "cosmos-sdk/v1/MsgCancelProposalResponse",
|
|
@@ -37,17 +37,13 @@ export class MsgClientImpl {
|
|
|
37
37
|
return promise.then(data => MsgDepositResponse.decode(new BinaryReader(data)));
|
|
38
38
|
};
|
|
39
39
|
/* UpdateParams defines a governance operation for updating the x/gov module
|
|
40
|
-
parameters. The authority is defined in the keeper.
|
|
41
|
-
|
|
42
|
-
Since: cosmos-sdk 0.47 */
|
|
40
|
+
parameters. The authority is defined in the keeper. */
|
|
43
41
|
updateParams = async (request) => {
|
|
44
42
|
const data = MsgUpdateParams.encode(request).finish();
|
|
45
43
|
const promise = this.rpc.request("cosmos.gov.v1.Msg", "UpdateParams", data);
|
|
46
44
|
return promise.then(data => MsgUpdateParamsResponse.decode(new BinaryReader(data)));
|
|
47
45
|
};
|
|
48
|
-
/* CancelProposal defines a method to cancel governance proposal
|
|
49
|
-
|
|
50
|
-
Since: cosmos-sdk 0.50 */
|
|
46
|
+
/* CancelProposal defines a method to cancel governance proposal */
|
|
51
47
|
cancelProposal = async (request) => {
|
|
52
48
|
const data = MsgCancelProposal.encode(request).finish();
|
|
53
49
|
const promise = this.rpc.request("cosmos.gov.v1.Msg", "CancelProposal", data);
|
|
@@ -12,6 +12,12 @@ function createBaseGenesisState() {
|
|
|
12
12
|
tallyParams: TallyParams.fromPartial({})
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* GenesisState defines the gov module's genesis state.
|
|
17
|
+
* @name GenesisState
|
|
18
|
+
* @package cosmos.gov.v1beta1
|
|
19
|
+
* @see proto type: cosmos.gov.v1beta1.GenesisState
|
|
20
|
+
*/
|
|
15
21
|
export const GenesisState = {
|
|
16
22
|
typeUrl: "/cosmos.gov.v1beta1.GenesisState",
|
|
17
23
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -149,6 +149,12 @@ function createBaseWeightedVoteOption() {
|
|
|
149
149
|
weight: ""
|
|
150
150
|
};
|
|
151
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* WeightedVoteOption defines a unit of vote for vote split.
|
|
154
|
+
* @name WeightedVoteOption
|
|
155
|
+
* @package cosmos.gov.v1beta1
|
|
156
|
+
* @see proto type: cosmos.gov.v1beta1.WeightedVoteOption
|
|
157
|
+
*/
|
|
152
158
|
export const WeightedVoteOption = {
|
|
153
159
|
typeUrl: "/cosmos.gov.v1beta1.WeightedVoteOption",
|
|
154
160
|
aminoType: "cosmos-sdk/WeightedVoteOption",
|
|
@@ -231,6 +237,13 @@ function createBaseTextProposal() {
|
|
|
231
237
|
description: ""
|
|
232
238
|
};
|
|
233
239
|
}
|
|
240
|
+
/**
|
|
241
|
+
* TextProposal defines a standard text proposal whose changes need to be
|
|
242
|
+
* manually updated in case of approval.
|
|
243
|
+
* @name TextProposal
|
|
244
|
+
* @package cosmos.gov.v1beta1
|
|
245
|
+
* @see proto type: cosmos.gov.v1beta1.TextProposal
|
|
246
|
+
*/
|
|
234
247
|
export const TextProposal = {
|
|
235
248
|
typeUrl: "/cosmos.gov.v1beta1.TextProposal",
|
|
236
249
|
aminoType: "cosmos-sdk/TextProposal",
|
|
@@ -314,6 +327,13 @@ function createBaseDeposit() {
|
|
|
314
327
|
amount: []
|
|
315
328
|
};
|
|
316
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* Deposit defines an amount deposited by an account address to an active
|
|
332
|
+
* proposal.
|
|
333
|
+
* @name Deposit
|
|
334
|
+
* @package cosmos.gov.v1beta1
|
|
335
|
+
* @see proto type: cosmos.gov.v1beta1.Deposit
|
|
336
|
+
*/
|
|
317
337
|
export const Deposit = {
|
|
318
338
|
typeUrl: "/cosmos.gov.v1beta1.Deposit",
|
|
319
339
|
aminoType: "cosmos-sdk/Deposit",
|
|
@@ -417,6 +437,12 @@ function createBaseProposal() {
|
|
|
417
437
|
votingEndTime: new Date()
|
|
418
438
|
};
|
|
419
439
|
}
|
|
440
|
+
/**
|
|
441
|
+
* Proposal defines the core field members of a governance proposal.
|
|
442
|
+
* @name Proposal
|
|
443
|
+
* @package cosmos.gov.v1beta1
|
|
444
|
+
* @see proto type: cosmos.gov.v1beta1.Proposal
|
|
445
|
+
*/
|
|
420
446
|
export const Proposal = {
|
|
421
447
|
typeUrl: "/cosmos.gov.v1beta1.Proposal",
|
|
422
448
|
aminoType: "cosmos-sdk/Proposal",
|
|
@@ -581,6 +607,12 @@ function createBaseTallyResult() {
|
|
|
581
607
|
noWithVeto: ""
|
|
582
608
|
};
|
|
583
609
|
}
|
|
610
|
+
/**
|
|
611
|
+
* TallyResult defines a standard tally for a governance proposal.
|
|
612
|
+
* @name TallyResult
|
|
613
|
+
* @package cosmos.gov.v1beta1
|
|
614
|
+
* @see proto type: cosmos.gov.v1beta1.TallyResult
|
|
615
|
+
*/
|
|
584
616
|
export const TallyResult = {
|
|
585
617
|
typeUrl: "/cosmos.gov.v1beta1.TallyResult",
|
|
586
618
|
aminoType: "cosmos-sdk/TallyResult",
|
|
@@ -687,6 +719,13 @@ function createBaseVote() {
|
|
|
687
719
|
options: []
|
|
688
720
|
};
|
|
689
721
|
}
|
|
722
|
+
/**
|
|
723
|
+
* Vote defines a vote on a governance proposal.
|
|
724
|
+
* A Vote consists of a proposal ID, the voter, and the vote option.
|
|
725
|
+
* @name Vote
|
|
726
|
+
* @package cosmos.gov.v1beta1
|
|
727
|
+
* @see proto type: cosmos.gov.v1beta1.Vote
|
|
728
|
+
*/
|
|
690
729
|
export const Vote = {
|
|
691
730
|
typeUrl: "/cosmos.gov.v1beta1.Vote",
|
|
692
731
|
aminoType: "cosmos-sdk/Vote",
|
|
@@ -794,6 +833,12 @@ function createBaseDepositParams() {
|
|
|
794
833
|
maxDepositPeriod: Duration.fromPartial({})
|
|
795
834
|
};
|
|
796
835
|
}
|
|
836
|
+
/**
|
|
837
|
+
* DepositParams defines the params for deposits on governance proposals.
|
|
838
|
+
* @name DepositParams
|
|
839
|
+
* @package cosmos.gov.v1beta1
|
|
840
|
+
* @see proto type: cosmos.gov.v1beta1.DepositParams
|
|
841
|
+
*/
|
|
797
842
|
export const DepositParams = {
|
|
798
843
|
typeUrl: "/cosmos.gov.v1beta1.DepositParams",
|
|
799
844
|
aminoType: "cosmos-sdk/DepositParams",
|
|
@@ -878,6 +923,12 @@ function createBaseVotingParams() {
|
|
|
878
923
|
votingPeriod: Duration.fromPartial({})
|
|
879
924
|
};
|
|
880
925
|
}
|
|
926
|
+
/**
|
|
927
|
+
* VotingParams defines the params for voting on governance proposals.
|
|
928
|
+
* @name VotingParams
|
|
929
|
+
* @package cosmos.gov.v1beta1
|
|
930
|
+
* @see proto type: cosmos.gov.v1beta1.VotingParams
|
|
931
|
+
*/
|
|
881
932
|
export const VotingParams = {
|
|
882
933
|
typeUrl: "/cosmos.gov.v1beta1.VotingParams",
|
|
883
934
|
aminoType: "cosmos-sdk/VotingParams",
|
|
@@ -950,6 +1001,12 @@ function createBaseTallyParams() {
|
|
|
950
1001
|
vetoThreshold: new Uint8Array()
|
|
951
1002
|
};
|
|
952
1003
|
}
|
|
1004
|
+
/**
|
|
1005
|
+
* TallyParams defines the params for tallying votes on governance proposals.
|
|
1006
|
+
* @name TallyParams
|
|
1007
|
+
* @package cosmos.gov.v1beta1
|
|
1008
|
+
* @see proto type: cosmos.gov.v1beta1.TallyParams
|
|
1009
|
+
*/
|
|
953
1010
|
export const TallyParams = {
|
|
954
1011
|
typeUrl: "/cosmos.gov.v1beta1.TallyParams",
|
|
955
1012
|
aminoType: "cosmos-sdk/TallyParams",
|