@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
|
@@ -11,6 +11,13 @@ function createBaseMsgFundCommunityPool() {
|
|
|
11
11
|
amount: []
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* MsgFundCommunityPool allows an account to directly
|
|
16
|
+
* fund the community pool.
|
|
17
|
+
* @name MsgFundCommunityPool
|
|
18
|
+
* @package cosmos.protocolpool.v1
|
|
19
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPool
|
|
20
|
+
*/
|
|
14
21
|
export const MsgFundCommunityPool = {
|
|
15
22
|
typeUrl: "/cosmos.protocolpool.v1.MsgFundCommunityPool",
|
|
16
23
|
aminoType: "cosmos-sdk/MsgFundCommunityPool",
|
|
@@ -93,6 +100,12 @@ export const MsgFundCommunityPool = {
|
|
|
93
100
|
function createBaseMsgFundCommunityPoolResponse() {
|
|
94
101
|
return {};
|
|
95
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type.
|
|
105
|
+
* @name MsgFundCommunityPoolResponse
|
|
106
|
+
* @package cosmos.protocolpool.v1
|
|
107
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPoolResponse
|
|
108
|
+
*/
|
|
96
109
|
export const MsgFundCommunityPoolResponse = {
|
|
97
110
|
typeUrl: "/cosmos.protocolpool.v1.MsgFundCommunityPoolResponse",
|
|
98
111
|
aminoType: "cosmos-sdk/MsgFundCommunityPoolResponse",
|
|
@@ -154,6 +167,14 @@ function createBaseMsgCommunityPoolSpend() {
|
|
|
154
167
|
amount: []
|
|
155
168
|
};
|
|
156
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* MsgCommunityPoolSpend defines a message for sending tokens from the community
|
|
172
|
+
* pool to another account. This message is typically executed via a governance
|
|
173
|
+
* proposal with the governance module being the executing authority.
|
|
174
|
+
* @name MsgCommunityPoolSpend
|
|
175
|
+
* @package cosmos.protocolpool.v1
|
|
176
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpend
|
|
177
|
+
*/
|
|
157
178
|
export const MsgCommunityPoolSpend = {
|
|
158
179
|
typeUrl: "/cosmos.protocolpool.v1.MsgCommunityPoolSpend",
|
|
159
180
|
aminoType: "cosmos-sdk/MsgCommunityPoolSpend",
|
|
@@ -247,6 +268,13 @@ export const MsgCommunityPoolSpend = {
|
|
|
247
268
|
function createBaseMsgCommunityPoolSpendResponse() {
|
|
248
269
|
return {};
|
|
249
270
|
}
|
|
271
|
+
/**
|
|
272
|
+
* MsgCommunityPoolSpendResponse defines the response to executing a
|
|
273
|
+
* MsgCommunityPoolSpend message.
|
|
274
|
+
* @name MsgCommunityPoolSpendResponse
|
|
275
|
+
* @package cosmos.protocolpool.v1
|
|
276
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpendResponse
|
|
277
|
+
*/
|
|
250
278
|
export const MsgCommunityPoolSpendResponse = {
|
|
251
279
|
typeUrl: "/cosmos.protocolpool.v1.MsgCommunityPoolSpendResponse",
|
|
252
280
|
aminoType: "cosmos-sdk/MsgCommunityPoolSpendResponse",
|
|
@@ -309,6 +337,12 @@ function createBaseMsgCreateContinuousFund() {
|
|
|
309
337
|
expiry: undefined
|
|
310
338
|
};
|
|
311
339
|
}
|
|
340
|
+
/**
|
|
341
|
+
* MsgCreateContinuousFund defines a message for adding continuous funds.
|
|
342
|
+
* @name MsgCreateContinuousFund
|
|
343
|
+
* @package cosmos.protocolpool.v1
|
|
344
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFund
|
|
345
|
+
*/
|
|
312
346
|
export const MsgCreateContinuousFund = {
|
|
313
347
|
typeUrl: "/cosmos.protocolpool.v1.MsgCreateContinuousFund",
|
|
314
348
|
aminoType: "cosmos-sdk/MsgCreateContinuousFund",
|
|
@@ -410,6 +444,13 @@ export const MsgCreateContinuousFund = {
|
|
|
410
444
|
function createBaseMsgCreateContinuousFundResponse() {
|
|
411
445
|
return {};
|
|
412
446
|
}
|
|
447
|
+
/**
|
|
448
|
+
* MsgCreateContinuousFundResponse defines the response to executing a
|
|
449
|
+
* MsgCreateContinuousFund message.
|
|
450
|
+
* @name MsgCreateContinuousFundResponse
|
|
451
|
+
* @package cosmos.protocolpool.v1
|
|
452
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFundResponse
|
|
453
|
+
*/
|
|
413
454
|
export const MsgCreateContinuousFundResponse = {
|
|
414
455
|
typeUrl: "/cosmos.protocolpool.v1.MsgCreateContinuousFundResponse",
|
|
415
456
|
aminoType: "cosmos-sdk/MsgCreateContinuousFundResponse",
|
|
@@ -470,6 +511,12 @@ function createBaseMsgCancelContinuousFund() {
|
|
|
470
511
|
recipient: ""
|
|
471
512
|
};
|
|
472
513
|
}
|
|
514
|
+
/**
|
|
515
|
+
* MsgCancelContinuousFund defines a message to cancel continuous funds for a specific recipient.
|
|
516
|
+
* @name MsgCancelContinuousFund
|
|
517
|
+
* @package cosmos.protocolpool.v1
|
|
518
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFund
|
|
519
|
+
*/
|
|
473
520
|
export const MsgCancelContinuousFund = {
|
|
474
521
|
typeUrl: "/cosmos.protocolpool.v1.MsgCancelContinuousFund",
|
|
475
522
|
aminoType: "cosmos-sdk/MsgCancelContinuousFund",
|
|
@@ -553,6 +600,13 @@ function createBaseMsgCancelContinuousFundResponse() {
|
|
|
553
600
|
recipient: ""
|
|
554
601
|
};
|
|
555
602
|
}
|
|
603
|
+
/**
|
|
604
|
+
* MsgCancelContinuousFundResponse defines the response to executing a
|
|
605
|
+
* MsgCancelContinuousFund message.
|
|
606
|
+
* @name MsgCancelContinuousFundResponse
|
|
607
|
+
* @package cosmos.protocolpool.v1
|
|
608
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFundResponse
|
|
609
|
+
*/
|
|
556
610
|
export const MsgCancelContinuousFundResponse = {
|
|
557
611
|
typeUrl: "/cosmos.protocolpool.v1.MsgCancelContinuousFundResponse",
|
|
558
612
|
aminoType: "cosmos-sdk/MsgCancelContinuousFundResponse",
|
|
@@ -646,6 +700,12 @@ function createBaseMsgUpdateParams() {
|
|
|
646
700
|
params: Params.fromPartial({})
|
|
647
701
|
};
|
|
648
702
|
}
|
|
703
|
+
/**
|
|
704
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
705
|
+
* @name MsgUpdateParams
|
|
706
|
+
* @package cosmos.protocolpool.v1
|
|
707
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParams
|
|
708
|
+
*/
|
|
649
709
|
export const MsgUpdateParams = {
|
|
650
710
|
typeUrl: "/cosmos.protocolpool.v1.MsgUpdateParams",
|
|
651
711
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -725,6 +785,13 @@ export const MsgUpdateParams = {
|
|
|
725
785
|
function createBaseMsgUpdateParamsResponse() {
|
|
726
786
|
return {};
|
|
727
787
|
}
|
|
788
|
+
/**
|
|
789
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
790
|
+
* MsgUpdateParams message.
|
|
791
|
+
* @name MsgUpdateParamsResponse
|
|
792
|
+
* @package cosmos.protocolpool.v1
|
|
793
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParamsResponse
|
|
794
|
+
*/
|
|
728
795
|
export const MsgUpdateParamsResponse = {
|
|
729
796
|
typeUrl: "/cosmos.protocolpool.v1.MsgUpdateParamsResponse",
|
|
730
797
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -10,6 +10,12 @@ function createBaseContinuousFund() {
|
|
|
10
10
|
expiry: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* ContinuousFund defines the fields of continuous fund proposal.
|
|
15
|
+
* @name ContinuousFund
|
|
16
|
+
* @package cosmos.protocolpool.v1
|
|
17
|
+
* @see proto type: cosmos.protocolpool.v1.ContinuousFund
|
|
18
|
+
*/
|
|
13
19
|
export const ContinuousFund = {
|
|
14
20
|
typeUrl: "/cosmos.protocolpool.v1.ContinuousFund",
|
|
15
21
|
aminoType: "cosmos-sdk/ContinuousFund",
|
|
@@ -103,6 +109,12 @@ function createBaseParams() {
|
|
|
103
109
|
distributionFrequency: BigInt(0)
|
|
104
110
|
};
|
|
105
111
|
}
|
|
112
|
+
/**
|
|
113
|
+
* Params defines the parameters for the protocolpool module.
|
|
114
|
+
* @name Params
|
|
115
|
+
* @package cosmos.protocolpool.v1
|
|
116
|
+
* @see proto type: cosmos.protocolpool.v1.Params
|
|
117
|
+
*/
|
|
106
118
|
export const Params = {
|
|
107
119
|
typeUrl: "/cosmos.protocolpool.v1.Params",
|
|
108
120
|
aminoType: "cosmos-sdk/Params",
|
|
@@ -4,6 +4,12 @@ import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
|
4
4
|
function createBaseFileDescriptorsRequest() {
|
|
5
5
|
return {};
|
|
6
6
|
}
|
|
7
|
+
/**
|
|
8
|
+
* FileDescriptorsRequest is the Query/FileDescriptors request type.
|
|
9
|
+
* @name FileDescriptorsRequest
|
|
10
|
+
* @package cosmos.reflection.v1
|
|
11
|
+
* @see proto type: cosmos.reflection.v1.FileDescriptorsRequest
|
|
12
|
+
*/
|
|
7
13
|
export const FileDescriptorsRequest = {
|
|
8
14
|
typeUrl: "/cosmos.reflection.v1.FileDescriptorsRequest",
|
|
9
15
|
aminoType: "cosmos-sdk/FileDescriptorsRequest",
|
|
@@ -63,6 +69,12 @@ function createBaseFileDescriptorsResponse() {
|
|
|
63
69
|
files: []
|
|
64
70
|
};
|
|
65
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* FileDescriptorsResponse is the Query/FileDescriptors response type.
|
|
74
|
+
* @name FileDescriptorsResponse
|
|
75
|
+
* @package cosmos.reflection.v1
|
|
76
|
+
* @see proto type: cosmos.reflection.v1.FileDescriptorsResponse
|
|
77
|
+
*/
|
|
66
78
|
export const FileDescriptorsResponse = {
|
|
67
79
|
typeUrl: "/cosmos.reflection.v1.FileDescriptorsResponse",
|
|
68
80
|
aminoType: "cosmos-sdk/FileDescriptorsResponse",
|
package/esm/cosmos/rpc.query.js
CHANGED
|
@@ -48,11 +48,6 @@ export const createRPCQueryClient = async ({ rpcEndpoint }) => {
|
|
|
48
48
|
mint: {
|
|
49
49
|
v1beta1: (await import("./mint/v1beta1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
50
50
|
},
|
|
51
|
-
orm: {
|
|
52
|
-
query: {
|
|
53
|
-
v1alpha1: (await import("./orm/query/v1alpha1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
51
|
params: {
|
|
57
52
|
v1beta1: (await import("./params/v1beta1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
58
53
|
},
|
|
@@ -5,6 +5,12 @@ function createBaseModule() {
|
|
|
5
5
|
authority: ""
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* Module is the config object of the slashing module.
|
|
10
|
+
* @name Module
|
|
11
|
+
* @package cosmos.slashing.module.v1
|
|
12
|
+
* @see proto type: cosmos.slashing.module.v1.Module
|
|
13
|
+
*/
|
|
8
14
|
export const Module = {
|
|
9
15
|
typeUrl: "/cosmos.slashing.module.v1.Module",
|
|
10
16
|
aminoType: "cosmos-sdk/Module",
|
|
@@ -8,6 +8,12 @@ function createBaseModule() {
|
|
|
8
8
|
bech32PrefixConsensus: ""
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* Module is the config object of the staking module.
|
|
13
|
+
* @name Module
|
|
14
|
+
* @package cosmos.staking.module.v1
|
|
15
|
+
* @see proto type: cosmos.staking.module.v1.Module
|
|
16
|
+
*/
|
|
11
17
|
export const Module = {
|
|
12
18
|
typeUrl: "/cosmos.staking.module.v1.Module",
|
|
13
19
|
aminoType: "cosmos-sdk/Module",
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
//@ts-nocheck
|
|
2
2
|
import { Coin } from "../../base/v1beta1/coin";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
|
-
/**
|
|
5
|
-
* AuthorizationType defines the type of staking module authorization type
|
|
6
|
-
*
|
|
7
|
-
* Since: cosmos-sdk 0.43
|
|
8
|
-
*/
|
|
4
|
+
/** AuthorizationType defines the type of staking module authorization type */
|
|
9
5
|
export var AuthorizationType;
|
|
10
6
|
(function (AuthorizationType) {
|
|
11
7
|
/** AUTHORIZATION_TYPE_UNSPECIFIED - AUTHORIZATION_TYPE_UNSPECIFIED specifies an unknown authorization type */
|
|
@@ -69,6 +65,12 @@ function createBaseStakeAuthorization() {
|
|
|
69
65
|
authorizationType: 0
|
|
70
66
|
};
|
|
71
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* StakeAuthorization defines authorization for delegate/undelegate/redelegate.
|
|
70
|
+
* @name StakeAuthorization
|
|
71
|
+
* @package cosmos.staking.v1beta1
|
|
72
|
+
* @see proto type: cosmos.staking.v1beta1.StakeAuthorization
|
|
73
|
+
*/
|
|
72
74
|
export const StakeAuthorization = {
|
|
73
75
|
typeUrl: "/cosmos.staking.v1beta1.StakeAuthorization",
|
|
74
76
|
aminoType: "cosmos-sdk/StakeAuthorization",
|
|
@@ -172,6 +174,12 @@ function createBaseStakeAuthorization_Validators() {
|
|
|
172
174
|
address: []
|
|
173
175
|
};
|
|
174
176
|
}
|
|
177
|
+
/**
|
|
178
|
+
* Validators defines list of validator addresses.
|
|
179
|
+
* @name StakeAuthorization_Validators
|
|
180
|
+
* @package cosmos.staking.v1beta1
|
|
181
|
+
* @see proto type: cosmos.staking.v1beta1.Validators
|
|
182
|
+
*/
|
|
175
183
|
export const StakeAuthorization_Validators = {
|
|
176
184
|
typeUrl: "/cosmos.staking.v1beta1.Validators",
|
|
177
185
|
aminoType: "cosmos-sdk/Validators",
|
|
@@ -14,6 +14,12 @@ function createBaseGenesisState() {
|
|
|
14
14
|
exported: false
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* GenesisState defines the staking module's genesis state.
|
|
19
|
+
* @name GenesisState
|
|
20
|
+
* @package cosmos.staking.v1beta1
|
|
21
|
+
* @see proto type: cosmos.staking.v1beta1.GenesisState
|
|
22
|
+
*/
|
|
17
23
|
export const GenesisState = {
|
|
18
24
|
typeUrl: "/cosmos.staking.v1beta1.GenesisState",
|
|
19
25
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -177,6 +183,12 @@ function createBaseLastValidatorPower() {
|
|
|
177
183
|
power: BigInt(0)
|
|
178
184
|
};
|
|
179
185
|
}
|
|
186
|
+
/**
|
|
187
|
+
* LastValidatorPower required for validator set update logic.
|
|
188
|
+
* @name LastValidatorPower
|
|
189
|
+
* @package cosmos.staking.v1beta1
|
|
190
|
+
* @see proto type: cosmos.staking.v1beta1.LastValidatorPower
|
|
191
|
+
*/
|
|
180
192
|
export const LastValidatorPower = {
|
|
181
193
|
typeUrl: "/cosmos.staking.v1beta1.LastValidatorPower",
|
|
182
194
|
aminoType: "cosmos-sdk/LastValidatorPower",
|
|
@@ -8,6 +8,12 @@ function createBaseQueryValidatorsRequest() {
|
|
|
8
8
|
pagination: undefined
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* QueryValidatorsRequest is request type for Query/Validators RPC method.
|
|
13
|
+
* @name QueryValidatorsRequest
|
|
14
|
+
* @package cosmos.staking.v1beta1
|
|
15
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
|
|
16
|
+
*/
|
|
11
17
|
export const QueryValidatorsRequest = {
|
|
12
18
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsRequest",
|
|
13
19
|
aminoType: "cosmos-sdk/QueryValidatorsRequest",
|
|
@@ -90,6 +96,12 @@ function createBaseQueryValidatorsResponse() {
|
|
|
90
96
|
pagination: undefined
|
|
91
97
|
};
|
|
92
98
|
}
|
|
99
|
+
/**
|
|
100
|
+
* QueryValidatorsResponse is response type for the Query/Validators RPC method
|
|
101
|
+
* @name QueryValidatorsResponse
|
|
102
|
+
* @package cosmos.staking.v1beta1
|
|
103
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
|
|
104
|
+
*/
|
|
93
105
|
export const QueryValidatorsResponse = {
|
|
94
106
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsResponse",
|
|
95
107
|
aminoType: "cosmos-sdk/QueryValidatorsResponse",
|
|
@@ -174,6 +186,12 @@ function createBaseQueryValidatorRequest() {
|
|
|
174
186
|
validatorAddr: ""
|
|
175
187
|
};
|
|
176
188
|
}
|
|
189
|
+
/**
|
|
190
|
+
* QueryValidatorRequest is response type for the Query/Validator RPC method
|
|
191
|
+
* @name QueryValidatorRequest
|
|
192
|
+
* @package cosmos.staking.v1beta1
|
|
193
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
|
|
194
|
+
*/
|
|
177
195
|
export const QueryValidatorRequest = {
|
|
178
196
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorRequest",
|
|
179
197
|
aminoType: "cosmos-sdk/QueryValidatorRequest",
|
|
@@ -244,6 +262,12 @@ function createBaseQueryValidatorResponse() {
|
|
|
244
262
|
validator: Validator.fromPartial({})
|
|
245
263
|
};
|
|
246
264
|
}
|
|
265
|
+
/**
|
|
266
|
+
* QueryValidatorResponse is response type for the Query/Validator RPC method
|
|
267
|
+
* @name QueryValidatorResponse
|
|
268
|
+
* @package cosmos.staking.v1beta1
|
|
269
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
|
|
270
|
+
*/
|
|
247
271
|
export const QueryValidatorResponse = {
|
|
248
272
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorResponse",
|
|
249
273
|
aminoType: "cosmos-sdk/QueryValidatorResponse",
|
|
@@ -315,6 +339,13 @@ function createBaseQueryValidatorDelegationsRequest() {
|
|
|
315
339
|
pagination: undefined
|
|
316
340
|
};
|
|
317
341
|
}
|
|
342
|
+
/**
|
|
343
|
+
* QueryValidatorDelegationsRequest is request type for the
|
|
344
|
+
* Query/ValidatorDelegations RPC method
|
|
345
|
+
* @name QueryValidatorDelegationsRequest
|
|
346
|
+
* @package cosmos.staking.v1beta1
|
|
347
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
|
|
348
|
+
*/
|
|
318
349
|
export const QueryValidatorDelegationsRequest = {
|
|
319
350
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorDelegationsRequest",
|
|
320
351
|
aminoType: "cosmos-sdk/QueryValidatorDelegationsRequest",
|
|
@@ -397,6 +428,13 @@ function createBaseQueryValidatorDelegationsResponse() {
|
|
|
397
428
|
pagination: undefined
|
|
398
429
|
};
|
|
399
430
|
}
|
|
431
|
+
/**
|
|
432
|
+
* QueryValidatorDelegationsResponse is response type for the
|
|
433
|
+
* Query/ValidatorDelegations RPC method
|
|
434
|
+
* @name QueryValidatorDelegationsResponse
|
|
435
|
+
* @package cosmos.staking.v1beta1
|
|
436
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
|
|
437
|
+
*/
|
|
400
438
|
export const QueryValidatorDelegationsResponse = {
|
|
401
439
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorDelegationsResponse",
|
|
402
440
|
aminoType: "cosmos-sdk/QueryValidatorDelegationsResponse",
|
|
@@ -482,6 +520,13 @@ function createBaseQueryValidatorUnbondingDelegationsRequest() {
|
|
|
482
520
|
pagination: undefined
|
|
483
521
|
};
|
|
484
522
|
}
|
|
523
|
+
/**
|
|
524
|
+
* QueryValidatorUnbondingDelegationsRequest is required type for the
|
|
525
|
+
* Query/ValidatorUnbondingDelegations RPC method
|
|
526
|
+
* @name QueryValidatorUnbondingDelegationsRequest
|
|
527
|
+
* @package cosmos.staking.v1beta1
|
|
528
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
|
|
529
|
+
*/
|
|
485
530
|
export const QueryValidatorUnbondingDelegationsRequest = {
|
|
486
531
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest",
|
|
487
532
|
aminoType: "cosmos-sdk/QueryValidatorUnbondingDelegationsRequest",
|
|
@@ -564,6 +609,13 @@ function createBaseQueryValidatorUnbondingDelegationsResponse() {
|
|
|
564
609
|
pagination: undefined
|
|
565
610
|
};
|
|
566
611
|
}
|
|
612
|
+
/**
|
|
613
|
+
* QueryValidatorUnbondingDelegationsResponse is response type for the
|
|
614
|
+
* Query/ValidatorUnbondingDelegations RPC method.
|
|
615
|
+
* @name QueryValidatorUnbondingDelegationsResponse
|
|
616
|
+
* @package cosmos.staking.v1beta1
|
|
617
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
|
|
618
|
+
*/
|
|
567
619
|
export const QueryValidatorUnbondingDelegationsResponse = {
|
|
568
620
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse",
|
|
569
621
|
aminoType: "cosmos-sdk/QueryValidatorUnbondingDelegationsResponse",
|
|
@@ -649,6 +701,12 @@ function createBaseQueryDelegationRequest() {
|
|
|
649
701
|
validatorAddr: ""
|
|
650
702
|
};
|
|
651
703
|
}
|
|
704
|
+
/**
|
|
705
|
+
* QueryDelegationRequest is request type for the Query/Delegation RPC method.
|
|
706
|
+
* @name QueryDelegationRequest
|
|
707
|
+
* @package cosmos.staking.v1beta1
|
|
708
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
|
|
709
|
+
*/
|
|
652
710
|
export const QueryDelegationRequest = {
|
|
653
711
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegationRequest",
|
|
654
712
|
aminoType: "cosmos-sdk/QueryDelegationRequest",
|
|
@@ -730,6 +788,12 @@ function createBaseQueryDelegationResponse() {
|
|
|
730
788
|
delegationResponse: undefined
|
|
731
789
|
};
|
|
732
790
|
}
|
|
791
|
+
/**
|
|
792
|
+
* QueryDelegationResponse is response type for the Query/Delegation RPC method.
|
|
793
|
+
* @name QueryDelegationResponse
|
|
794
|
+
* @package cosmos.staking.v1beta1
|
|
795
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
|
|
796
|
+
*/
|
|
733
797
|
export const QueryDelegationResponse = {
|
|
734
798
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegationResponse",
|
|
735
799
|
aminoType: "cosmos-sdk/QueryDelegationResponse",
|
|
@@ -801,6 +865,13 @@ function createBaseQueryUnbondingDelegationRequest() {
|
|
|
801
865
|
validatorAddr: ""
|
|
802
866
|
};
|
|
803
867
|
}
|
|
868
|
+
/**
|
|
869
|
+
* QueryUnbondingDelegationRequest is request type for the
|
|
870
|
+
* Query/UnbondingDelegation RPC method.
|
|
871
|
+
* @name QueryUnbondingDelegationRequest
|
|
872
|
+
* @package cosmos.staking.v1beta1
|
|
873
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
|
|
874
|
+
*/
|
|
804
875
|
export const QueryUnbondingDelegationRequest = {
|
|
805
876
|
typeUrl: "/cosmos.staking.v1beta1.QueryUnbondingDelegationRequest",
|
|
806
877
|
aminoType: "cosmos-sdk/QueryUnbondingDelegationRequest",
|
|
@@ -882,6 +953,13 @@ function createBaseQueryUnbondingDelegationResponse() {
|
|
|
882
953
|
unbond: UnbondingDelegation.fromPartial({})
|
|
883
954
|
};
|
|
884
955
|
}
|
|
956
|
+
/**
|
|
957
|
+
* QueryDelegationResponse is response type for the Query/UnbondingDelegation
|
|
958
|
+
* RPC method.
|
|
959
|
+
* @name QueryUnbondingDelegationResponse
|
|
960
|
+
* @package cosmos.staking.v1beta1
|
|
961
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
|
|
962
|
+
*/
|
|
885
963
|
export const QueryUnbondingDelegationResponse = {
|
|
886
964
|
typeUrl: "/cosmos.staking.v1beta1.QueryUnbondingDelegationResponse",
|
|
887
965
|
aminoType: "cosmos-sdk/QueryUnbondingDelegationResponse",
|
|
@@ -953,6 +1031,13 @@ function createBaseQueryDelegatorDelegationsRequest() {
|
|
|
953
1031
|
pagination: undefined
|
|
954
1032
|
};
|
|
955
1033
|
}
|
|
1034
|
+
/**
|
|
1035
|
+
* QueryDelegatorDelegationsRequest is request type for the
|
|
1036
|
+
* Query/DelegatorDelegations RPC method.
|
|
1037
|
+
* @name QueryDelegatorDelegationsRequest
|
|
1038
|
+
* @package cosmos.staking.v1beta1
|
|
1039
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
|
|
1040
|
+
*/
|
|
956
1041
|
export const QueryDelegatorDelegationsRequest = {
|
|
957
1042
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest",
|
|
958
1043
|
aminoType: "cosmos-sdk/QueryDelegatorDelegationsRequest",
|
|
@@ -1035,6 +1120,13 @@ function createBaseQueryDelegatorDelegationsResponse() {
|
|
|
1035
1120
|
pagination: undefined
|
|
1036
1121
|
};
|
|
1037
1122
|
}
|
|
1123
|
+
/**
|
|
1124
|
+
* QueryDelegatorDelegationsResponse is response type for the
|
|
1125
|
+
* Query/DelegatorDelegations RPC method.
|
|
1126
|
+
* @name QueryDelegatorDelegationsResponse
|
|
1127
|
+
* @package cosmos.staking.v1beta1
|
|
1128
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
|
|
1129
|
+
*/
|
|
1038
1130
|
export const QueryDelegatorDelegationsResponse = {
|
|
1039
1131
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse",
|
|
1040
1132
|
aminoType: "cosmos-sdk/QueryDelegatorDelegationsResponse",
|
|
@@ -1120,6 +1212,13 @@ function createBaseQueryDelegatorUnbondingDelegationsRequest() {
|
|
|
1120
1212
|
pagination: undefined
|
|
1121
1213
|
};
|
|
1122
1214
|
}
|
|
1215
|
+
/**
|
|
1216
|
+
* QueryDelegatorUnbondingDelegationsRequest is request type for the
|
|
1217
|
+
* Query/DelegatorUnbondingDelegations RPC method.
|
|
1218
|
+
* @name QueryDelegatorUnbondingDelegationsRequest
|
|
1219
|
+
* @package cosmos.staking.v1beta1
|
|
1220
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
|
|
1221
|
+
*/
|
|
1123
1222
|
export const QueryDelegatorUnbondingDelegationsRequest = {
|
|
1124
1223
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest",
|
|
1125
1224
|
aminoType: "cosmos-sdk/QueryDelegatorUnbondingDelegationsRequest",
|
|
@@ -1202,6 +1301,13 @@ function createBaseQueryDelegatorUnbondingDelegationsResponse() {
|
|
|
1202
1301
|
pagination: undefined
|
|
1203
1302
|
};
|
|
1204
1303
|
}
|
|
1304
|
+
/**
|
|
1305
|
+
* QueryUnbondingDelegatorDelegationsResponse is response type for the
|
|
1306
|
+
* Query/UnbondingDelegatorDelegations RPC method.
|
|
1307
|
+
* @name QueryDelegatorUnbondingDelegationsResponse
|
|
1308
|
+
* @package cosmos.staking.v1beta1
|
|
1309
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
|
|
1310
|
+
*/
|
|
1205
1311
|
export const QueryDelegatorUnbondingDelegationsResponse = {
|
|
1206
1312
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse",
|
|
1207
1313
|
aminoType: "cosmos-sdk/QueryDelegatorUnbondingDelegationsResponse",
|
|
@@ -1289,6 +1395,13 @@ function createBaseQueryRedelegationsRequest() {
|
|
|
1289
1395
|
pagination: undefined
|
|
1290
1396
|
};
|
|
1291
1397
|
}
|
|
1398
|
+
/**
|
|
1399
|
+
* QueryRedelegationsRequest is request type for the Query/Redelegations RPC
|
|
1400
|
+
* method.
|
|
1401
|
+
* @name QueryRedelegationsRequest
|
|
1402
|
+
* @package cosmos.staking.v1beta1
|
|
1403
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
|
|
1404
|
+
*/
|
|
1292
1405
|
export const QueryRedelegationsRequest = {
|
|
1293
1406
|
typeUrl: "/cosmos.staking.v1beta1.QueryRedelegationsRequest",
|
|
1294
1407
|
aminoType: "cosmos-sdk/QueryRedelegationsRequest",
|
|
@@ -1393,6 +1506,13 @@ function createBaseQueryRedelegationsResponse() {
|
|
|
1393
1506
|
pagination: undefined
|
|
1394
1507
|
};
|
|
1395
1508
|
}
|
|
1509
|
+
/**
|
|
1510
|
+
* QueryRedelegationsResponse is response type for the Query/Redelegations RPC
|
|
1511
|
+
* method.
|
|
1512
|
+
* @name QueryRedelegationsResponse
|
|
1513
|
+
* @package cosmos.staking.v1beta1
|
|
1514
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
|
|
1515
|
+
*/
|
|
1396
1516
|
export const QueryRedelegationsResponse = {
|
|
1397
1517
|
typeUrl: "/cosmos.staking.v1beta1.QueryRedelegationsResponse",
|
|
1398
1518
|
aminoType: "cosmos-sdk/QueryRedelegationsResponse",
|
|
@@ -1478,6 +1598,13 @@ function createBaseQueryDelegatorValidatorsRequest() {
|
|
|
1478
1598
|
pagination: undefined
|
|
1479
1599
|
};
|
|
1480
1600
|
}
|
|
1601
|
+
/**
|
|
1602
|
+
* QueryDelegatorValidatorsRequest is request type for the
|
|
1603
|
+
* Query/DelegatorValidators RPC method.
|
|
1604
|
+
* @name QueryDelegatorValidatorsRequest
|
|
1605
|
+
* @package cosmos.staking.v1beta1
|
|
1606
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
|
|
1607
|
+
*/
|
|
1481
1608
|
export const QueryDelegatorValidatorsRequest = {
|
|
1482
1609
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest",
|
|
1483
1610
|
aminoType: "cosmos-sdk/QueryDelegatorValidatorsRequest",
|
|
@@ -1560,6 +1687,13 @@ function createBaseQueryDelegatorValidatorsResponse() {
|
|
|
1560
1687
|
pagination: undefined
|
|
1561
1688
|
};
|
|
1562
1689
|
}
|
|
1690
|
+
/**
|
|
1691
|
+
* QueryDelegatorValidatorsResponse is response type for the
|
|
1692
|
+
* Query/DelegatorValidators RPC method.
|
|
1693
|
+
* @name QueryDelegatorValidatorsResponse
|
|
1694
|
+
* @package cosmos.staking.v1beta1
|
|
1695
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
|
|
1696
|
+
*/
|
|
1563
1697
|
export const QueryDelegatorValidatorsResponse = {
|
|
1564
1698
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse",
|
|
1565
1699
|
aminoType: "cosmos-sdk/QueryDelegatorValidatorsResponse",
|
|
@@ -1645,6 +1779,13 @@ function createBaseQueryDelegatorValidatorRequest() {
|
|
|
1645
1779
|
validatorAddr: ""
|
|
1646
1780
|
};
|
|
1647
1781
|
}
|
|
1782
|
+
/**
|
|
1783
|
+
* QueryDelegatorValidatorRequest is request type for the
|
|
1784
|
+
* Query/DelegatorValidator RPC method.
|
|
1785
|
+
* @name QueryDelegatorValidatorRequest
|
|
1786
|
+
* @package cosmos.staking.v1beta1
|
|
1787
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
|
|
1788
|
+
*/
|
|
1648
1789
|
export const QueryDelegatorValidatorRequest = {
|
|
1649
1790
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorRequest",
|
|
1650
1791
|
aminoType: "cosmos-sdk/QueryDelegatorValidatorRequest",
|
|
@@ -1726,6 +1867,13 @@ function createBaseQueryDelegatorValidatorResponse() {
|
|
|
1726
1867
|
validator: Validator.fromPartial({})
|
|
1727
1868
|
};
|
|
1728
1869
|
}
|
|
1870
|
+
/**
|
|
1871
|
+
* QueryDelegatorValidatorResponse response type for the
|
|
1872
|
+
* Query/DelegatorValidator RPC method.
|
|
1873
|
+
* @name QueryDelegatorValidatorResponse
|
|
1874
|
+
* @package cosmos.staking.v1beta1
|
|
1875
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
|
|
1876
|
+
*/
|
|
1729
1877
|
export const QueryDelegatorValidatorResponse = {
|
|
1730
1878
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorResponse",
|
|
1731
1879
|
aminoType: "cosmos-sdk/QueryDelegatorValidatorResponse",
|
|
@@ -1796,6 +1944,13 @@ function createBaseQueryHistoricalInfoRequest() {
|
|
|
1796
1944
|
height: BigInt(0)
|
|
1797
1945
|
};
|
|
1798
1946
|
}
|
|
1947
|
+
/**
|
|
1948
|
+
* QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
|
|
1949
|
+
* method.
|
|
1950
|
+
* @name QueryHistoricalInfoRequest
|
|
1951
|
+
* @package cosmos.staking.v1beta1
|
|
1952
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
|
|
1953
|
+
*/
|
|
1799
1954
|
export const QueryHistoricalInfoRequest = {
|
|
1800
1955
|
typeUrl: "/cosmos.staking.v1beta1.QueryHistoricalInfoRequest",
|
|
1801
1956
|
aminoType: "cosmos-sdk/QueryHistoricalInfoRequest",
|
|
@@ -1866,6 +2021,13 @@ function createBaseQueryHistoricalInfoResponse() {
|
|
|
1866
2021
|
hist: undefined
|
|
1867
2022
|
};
|
|
1868
2023
|
}
|
|
2024
|
+
/**
|
|
2025
|
+
* QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
|
|
2026
|
+
* method.
|
|
2027
|
+
* @name QueryHistoricalInfoResponse
|
|
2028
|
+
* @package cosmos.staking.v1beta1
|
|
2029
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
|
|
2030
|
+
*/
|
|
1869
2031
|
export const QueryHistoricalInfoResponse = {
|
|
1870
2032
|
typeUrl: "/cosmos.staking.v1beta1.QueryHistoricalInfoResponse",
|
|
1871
2033
|
aminoType: "cosmos-sdk/QueryHistoricalInfoResponse",
|
|
@@ -1934,6 +2096,12 @@ export const QueryHistoricalInfoResponse = {
|
|
|
1934
2096
|
function createBaseQueryPoolRequest() {
|
|
1935
2097
|
return {};
|
|
1936
2098
|
}
|
|
2099
|
+
/**
|
|
2100
|
+
* QueryPoolRequest is request type for the Query/Pool RPC method.
|
|
2101
|
+
* @name QueryPoolRequest
|
|
2102
|
+
* @package cosmos.staking.v1beta1
|
|
2103
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
|
|
2104
|
+
*/
|
|
1937
2105
|
export const QueryPoolRequest = {
|
|
1938
2106
|
typeUrl: "/cosmos.staking.v1beta1.QueryPoolRequest",
|
|
1939
2107
|
aminoType: "cosmos-sdk/QueryPoolRequest",
|
|
@@ -1993,6 +2161,12 @@ function createBaseQueryPoolResponse() {
|
|
|
1993
2161
|
pool: Pool.fromPartial({})
|
|
1994
2162
|
};
|
|
1995
2163
|
}
|
|
2164
|
+
/**
|
|
2165
|
+
* QueryPoolResponse is response type for the Query/Pool RPC method.
|
|
2166
|
+
* @name QueryPoolResponse
|
|
2167
|
+
* @package cosmos.staking.v1beta1
|
|
2168
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
|
|
2169
|
+
*/
|
|
1996
2170
|
export const QueryPoolResponse = {
|
|
1997
2171
|
typeUrl: "/cosmos.staking.v1beta1.QueryPoolResponse",
|
|
1998
2172
|
aminoType: "cosmos-sdk/QueryPoolResponse",
|
|
@@ -2061,6 +2235,12 @@ export const QueryPoolResponse = {
|
|
|
2061
2235
|
function createBaseQueryParamsRequest() {
|
|
2062
2236
|
return {};
|
|
2063
2237
|
}
|
|
2238
|
+
/**
|
|
2239
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
2240
|
+
* @name QueryParamsRequest
|
|
2241
|
+
* @package cosmos.staking.v1beta1
|
|
2242
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
|
|
2243
|
+
*/
|
|
2064
2244
|
export const QueryParamsRequest = {
|
|
2065
2245
|
typeUrl: "/cosmos.staking.v1beta1.QueryParamsRequest",
|
|
2066
2246
|
aminoType: "cosmos-sdk/QueryParamsRequest",
|
|
@@ -2120,6 +2300,12 @@ function createBaseQueryParamsResponse() {
|
|
|
2120
2300
|
params: Params.fromPartial({})
|
|
2121
2301
|
};
|
|
2122
2302
|
}
|
|
2303
|
+
/**
|
|
2304
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
2305
|
+
* @name QueryParamsResponse
|
|
2306
|
+
* @package cosmos.staking.v1beta1
|
|
2307
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
|
|
2308
|
+
*/
|
|
2123
2309
|
export const QueryParamsResponse = {
|
|
2124
2310
|
typeUrl: "/cosmos.staking.v1beta1.QueryParamsResponse",
|
|
2125
2311
|
aminoType: "cosmos-sdk/QueryParamsResponse",
|