@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -3,56 +3,95 @@ import { Coin, CoinAmino } from "../../base/v1beta1/coin";
|
|
|
3
3
|
import { Params, ParamsAmino, Metadata, MetadataAmino, SendEnabled, SendEnabledAmino } from "./bank";
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
5
5
|
import { DeepPartial } from "../../../helpers";
|
|
6
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* QueryBalanceRequest is the request type for the Query/Balance RPC method.
|
|
8
|
+
* @name QueryBalanceRequest
|
|
9
|
+
* @package cosmos.bank.v1beta1
|
|
10
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceRequest
|
|
11
|
+
*/
|
|
7
12
|
export interface QueryBalanceRequest {
|
|
8
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* address is the address to query balances for.
|
|
15
|
+
*/
|
|
9
16
|
address: string;
|
|
10
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* denom is the coin denom to query balances for.
|
|
19
|
+
*/
|
|
11
20
|
denom: string;
|
|
12
21
|
}
|
|
13
22
|
export interface QueryBalanceRequestProtoMsg {
|
|
14
23
|
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceRequest";
|
|
15
24
|
value: Uint8Array;
|
|
16
25
|
}
|
|
17
|
-
/**
|
|
26
|
+
/**
|
|
27
|
+
* QueryBalanceRequest is the request type for the Query/Balance RPC method.
|
|
28
|
+
* @name QueryBalanceRequestAmino
|
|
29
|
+
* @package cosmos.bank.v1beta1
|
|
30
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceRequest
|
|
31
|
+
*/
|
|
18
32
|
export interface QueryBalanceRequestAmino {
|
|
19
|
-
/**
|
|
33
|
+
/**
|
|
34
|
+
* address is the address to query balances for.
|
|
35
|
+
*/
|
|
20
36
|
address?: string;
|
|
21
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* denom is the coin denom to query balances for.
|
|
39
|
+
*/
|
|
22
40
|
denom?: string;
|
|
23
41
|
}
|
|
24
42
|
export interface QueryBalanceRequestAminoMsg {
|
|
25
43
|
type: "cosmos-sdk/QueryBalanceRequest";
|
|
26
44
|
value: QueryBalanceRequestAmino;
|
|
27
45
|
}
|
|
28
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* QueryBalanceResponse is the response type for the Query/Balance RPC method.
|
|
48
|
+
* @name QueryBalanceResponse
|
|
49
|
+
* @package cosmos.bank.v1beta1
|
|
50
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceResponse
|
|
51
|
+
*/
|
|
29
52
|
export interface QueryBalanceResponse {
|
|
30
|
-
/**
|
|
53
|
+
/**
|
|
54
|
+
* balance is the balance of the coin.
|
|
55
|
+
*/
|
|
31
56
|
balance?: Coin;
|
|
32
57
|
}
|
|
33
58
|
export interface QueryBalanceResponseProtoMsg {
|
|
34
59
|
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceResponse";
|
|
35
60
|
value: Uint8Array;
|
|
36
61
|
}
|
|
37
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* QueryBalanceResponse is the response type for the Query/Balance RPC method.
|
|
64
|
+
* @name QueryBalanceResponseAmino
|
|
65
|
+
* @package cosmos.bank.v1beta1
|
|
66
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceResponse
|
|
67
|
+
*/
|
|
38
68
|
export interface QueryBalanceResponseAmino {
|
|
39
|
-
/**
|
|
69
|
+
/**
|
|
70
|
+
* balance is the balance of the coin.
|
|
71
|
+
*/
|
|
40
72
|
balance?: CoinAmino;
|
|
41
73
|
}
|
|
42
74
|
export interface QueryBalanceResponseAminoMsg {
|
|
43
75
|
type: "cosmos-sdk/QueryBalanceResponse";
|
|
44
76
|
value: QueryBalanceResponseAmino;
|
|
45
77
|
}
|
|
46
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* QueryBalanceRequest is the request type for the Query/AllBalances RPC method.
|
|
80
|
+
* @name QueryAllBalancesRequest
|
|
81
|
+
* @package cosmos.bank.v1beta1
|
|
82
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesRequest
|
|
83
|
+
*/
|
|
47
84
|
export interface QueryAllBalancesRequest {
|
|
48
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* address is the address to query balances for.
|
|
87
|
+
*/
|
|
49
88
|
address: string;
|
|
50
|
-
/**
|
|
89
|
+
/**
|
|
90
|
+
* pagination defines an optional pagination for the request.
|
|
91
|
+
*/
|
|
51
92
|
pagination?: PageRequest;
|
|
52
93
|
/**
|
|
53
94
|
* resolve_denom is the flag to resolve the denom into a human-readable form from the metadata.
|
|
54
|
-
*
|
|
55
|
-
* Since: cosmos-sdk 0.50
|
|
56
95
|
*/
|
|
57
96
|
resolveDenom: boolean;
|
|
58
97
|
}
|
|
@@ -60,16 +99,23 @@ export interface QueryAllBalancesRequestProtoMsg {
|
|
|
60
99
|
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesRequest";
|
|
61
100
|
value: Uint8Array;
|
|
62
101
|
}
|
|
63
|
-
/**
|
|
102
|
+
/**
|
|
103
|
+
* QueryBalanceRequest is the request type for the Query/AllBalances RPC method.
|
|
104
|
+
* @name QueryAllBalancesRequestAmino
|
|
105
|
+
* @package cosmos.bank.v1beta1
|
|
106
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesRequest
|
|
107
|
+
*/
|
|
64
108
|
export interface QueryAllBalancesRequestAmino {
|
|
65
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* address is the address to query balances for.
|
|
111
|
+
*/
|
|
66
112
|
address?: string;
|
|
67
|
-
/**
|
|
113
|
+
/**
|
|
114
|
+
* pagination defines an optional pagination for the request.
|
|
115
|
+
*/
|
|
68
116
|
pagination?: PageRequestAmino;
|
|
69
117
|
/**
|
|
70
118
|
* resolve_denom is the flag to resolve the denom into a human-readable form from the metadata.
|
|
71
|
-
*
|
|
72
|
-
* Since: cosmos-sdk 0.50
|
|
73
119
|
*/
|
|
74
120
|
resolve_denom?: boolean;
|
|
75
121
|
}
|
|
@@ -80,11 +126,18 @@ export interface QueryAllBalancesRequestAminoMsg {
|
|
|
80
126
|
/**
|
|
81
127
|
* QueryAllBalancesResponse is the response type for the Query/AllBalances RPC
|
|
82
128
|
* method.
|
|
129
|
+
* @name QueryAllBalancesResponse
|
|
130
|
+
* @package cosmos.bank.v1beta1
|
|
131
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesResponse
|
|
83
132
|
*/
|
|
84
133
|
export interface QueryAllBalancesResponse {
|
|
85
|
-
/**
|
|
134
|
+
/**
|
|
135
|
+
* balances is the balances of all the coins.
|
|
136
|
+
*/
|
|
86
137
|
balances: Coin[];
|
|
87
|
-
/**
|
|
138
|
+
/**
|
|
139
|
+
* pagination defines the pagination in the response.
|
|
140
|
+
*/
|
|
88
141
|
pagination?: PageResponse;
|
|
89
142
|
}
|
|
90
143
|
export interface QueryAllBalancesResponseProtoMsg {
|
|
@@ -94,11 +147,18 @@ export interface QueryAllBalancesResponseProtoMsg {
|
|
|
94
147
|
/**
|
|
95
148
|
* QueryAllBalancesResponse is the response type for the Query/AllBalances RPC
|
|
96
149
|
* method.
|
|
150
|
+
* @name QueryAllBalancesResponseAmino
|
|
151
|
+
* @package cosmos.bank.v1beta1
|
|
152
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesResponse
|
|
97
153
|
*/
|
|
98
154
|
export interface QueryAllBalancesResponseAmino {
|
|
99
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* balances is the balances of all the coins.
|
|
157
|
+
*/
|
|
100
158
|
balances: CoinAmino[];
|
|
101
|
-
/**
|
|
159
|
+
/**
|
|
160
|
+
* pagination defines the pagination in the response.
|
|
161
|
+
*/
|
|
102
162
|
pagination?: PageResponseAmino;
|
|
103
163
|
}
|
|
104
164
|
export interface QueryAllBalancesResponseAminoMsg {
|
|
@@ -108,13 +168,18 @@ export interface QueryAllBalancesResponseAminoMsg {
|
|
|
108
168
|
/**
|
|
109
169
|
* QuerySpendableBalancesRequest defines the gRPC request structure for querying
|
|
110
170
|
* an account's spendable balances.
|
|
111
|
-
*
|
|
112
|
-
*
|
|
171
|
+
* @name QuerySpendableBalancesRequest
|
|
172
|
+
* @package cosmos.bank.v1beta1
|
|
173
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesRequest
|
|
113
174
|
*/
|
|
114
175
|
export interface QuerySpendableBalancesRequest {
|
|
115
|
-
/**
|
|
176
|
+
/**
|
|
177
|
+
* address is the address to query spendable balances for.
|
|
178
|
+
*/
|
|
116
179
|
address: string;
|
|
117
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* pagination defines an optional pagination for the request.
|
|
182
|
+
*/
|
|
118
183
|
pagination?: PageRequest;
|
|
119
184
|
}
|
|
120
185
|
export interface QuerySpendableBalancesRequestProtoMsg {
|
|
@@ -124,13 +189,18 @@ export interface QuerySpendableBalancesRequestProtoMsg {
|
|
|
124
189
|
/**
|
|
125
190
|
* QuerySpendableBalancesRequest defines the gRPC request structure for querying
|
|
126
191
|
* an account's spendable balances.
|
|
127
|
-
*
|
|
128
|
-
*
|
|
192
|
+
* @name QuerySpendableBalancesRequestAmino
|
|
193
|
+
* @package cosmos.bank.v1beta1
|
|
194
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesRequest
|
|
129
195
|
*/
|
|
130
196
|
export interface QuerySpendableBalancesRequestAmino {
|
|
131
|
-
/**
|
|
197
|
+
/**
|
|
198
|
+
* address is the address to query spendable balances for.
|
|
199
|
+
*/
|
|
132
200
|
address?: string;
|
|
133
|
-
/**
|
|
201
|
+
/**
|
|
202
|
+
* pagination defines an optional pagination for the request.
|
|
203
|
+
*/
|
|
134
204
|
pagination?: PageRequestAmino;
|
|
135
205
|
}
|
|
136
206
|
export interface QuerySpendableBalancesRequestAminoMsg {
|
|
@@ -140,13 +210,18 @@ export interface QuerySpendableBalancesRequestAminoMsg {
|
|
|
140
210
|
/**
|
|
141
211
|
* QuerySpendableBalancesResponse defines the gRPC response structure for querying
|
|
142
212
|
* an account's spendable balances.
|
|
143
|
-
*
|
|
144
|
-
*
|
|
213
|
+
* @name QuerySpendableBalancesResponse
|
|
214
|
+
* @package cosmos.bank.v1beta1
|
|
215
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesResponse
|
|
145
216
|
*/
|
|
146
217
|
export interface QuerySpendableBalancesResponse {
|
|
147
|
-
/**
|
|
218
|
+
/**
|
|
219
|
+
* balances is the spendable balances of all the coins.
|
|
220
|
+
*/
|
|
148
221
|
balances: Coin[];
|
|
149
|
-
/**
|
|
222
|
+
/**
|
|
223
|
+
* pagination defines the pagination in the response.
|
|
224
|
+
*/
|
|
150
225
|
pagination?: PageResponse;
|
|
151
226
|
}
|
|
152
227
|
export interface QuerySpendableBalancesResponseProtoMsg {
|
|
@@ -156,13 +231,18 @@ export interface QuerySpendableBalancesResponseProtoMsg {
|
|
|
156
231
|
/**
|
|
157
232
|
* QuerySpendableBalancesResponse defines the gRPC response structure for querying
|
|
158
233
|
* an account's spendable balances.
|
|
159
|
-
*
|
|
160
|
-
*
|
|
234
|
+
* @name QuerySpendableBalancesResponseAmino
|
|
235
|
+
* @package cosmos.bank.v1beta1
|
|
236
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesResponse
|
|
161
237
|
*/
|
|
162
238
|
export interface QuerySpendableBalancesResponseAmino {
|
|
163
|
-
/**
|
|
239
|
+
/**
|
|
240
|
+
* balances is the spendable balances of all the coins.
|
|
241
|
+
*/
|
|
164
242
|
balances: CoinAmino[];
|
|
165
|
-
/**
|
|
243
|
+
/**
|
|
244
|
+
* pagination defines the pagination in the response.
|
|
245
|
+
*/
|
|
166
246
|
pagination?: PageResponseAmino;
|
|
167
247
|
}
|
|
168
248
|
export interface QuerySpendableBalancesResponseAminoMsg {
|
|
@@ -172,13 +252,18 @@ export interface QuerySpendableBalancesResponseAminoMsg {
|
|
|
172
252
|
/**
|
|
173
253
|
* QuerySpendableBalanceByDenomRequest defines the gRPC request structure for
|
|
174
254
|
* querying an account's spendable balance for a specific denom.
|
|
175
|
-
*
|
|
176
|
-
*
|
|
255
|
+
* @name QuerySpendableBalanceByDenomRequest
|
|
256
|
+
* @package cosmos.bank.v1beta1
|
|
257
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest
|
|
177
258
|
*/
|
|
178
259
|
export interface QuerySpendableBalanceByDenomRequest {
|
|
179
|
-
/**
|
|
260
|
+
/**
|
|
261
|
+
* address is the address to query balances for.
|
|
262
|
+
*/
|
|
180
263
|
address: string;
|
|
181
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* denom is the coin denom to query balances for.
|
|
266
|
+
*/
|
|
182
267
|
denom: string;
|
|
183
268
|
}
|
|
184
269
|
export interface QuerySpendableBalanceByDenomRequestProtoMsg {
|
|
@@ -188,13 +273,18 @@ export interface QuerySpendableBalanceByDenomRequestProtoMsg {
|
|
|
188
273
|
/**
|
|
189
274
|
* QuerySpendableBalanceByDenomRequest defines the gRPC request structure for
|
|
190
275
|
* querying an account's spendable balance for a specific denom.
|
|
191
|
-
*
|
|
192
|
-
*
|
|
276
|
+
* @name QuerySpendableBalanceByDenomRequestAmino
|
|
277
|
+
* @package cosmos.bank.v1beta1
|
|
278
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest
|
|
193
279
|
*/
|
|
194
280
|
export interface QuerySpendableBalanceByDenomRequestAmino {
|
|
195
|
-
/**
|
|
281
|
+
/**
|
|
282
|
+
* address is the address to query balances for.
|
|
283
|
+
*/
|
|
196
284
|
address?: string;
|
|
197
|
-
/**
|
|
285
|
+
/**
|
|
286
|
+
* denom is the coin denom to query balances for.
|
|
287
|
+
*/
|
|
198
288
|
denom?: string;
|
|
199
289
|
}
|
|
200
290
|
export interface QuerySpendableBalanceByDenomRequestAminoMsg {
|
|
@@ -204,11 +294,14 @@ export interface QuerySpendableBalanceByDenomRequestAminoMsg {
|
|
|
204
294
|
/**
|
|
205
295
|
* QuerySpendableBalanceByDenomResponse defines the gRPC response structure for
|
|
206
296
|
* querying an account's spendable balance for a specific denom.
|
|
207
|
-
*
|
|
208
|
-
*
|
|
297
|
+
* @name QuerySpendableBalanceByDenomResponse
|
|
298
|
+
* @package cosmos.bank.v1beta1
|
|
299
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse
|
|
209
300
|
*/
|
|
210
301
|
export interface QuerySpendableBalanceByDenomResponse {
|
|
211
|
-
/**
|
|
302
|
+
/**
|
|
303
|
+
* balance is the balance of the coin.
|
|
304
|
+
*/
|
|
212
305
|
balance?: Coin;
|
|
213
306
|
}
|
|
214
307
|
export interface QuerySpendableBalanceByDenomResponseProtoMsg {
|
|
@@ -218,11 +311,14 @@ export interface QuerySpendableBalanceByDenomResponseProtoMsg {
|
|
|
218
311
|
/**
|
|
219
312
|
* QuerySpendableBalanceByDenomResponse defines the gRPC response structure for
|
|
220
313
|
* querying an account's spendable balance for a specific denom.
|
|
221
|
-
*
|
|
222
|
-
*
|
|
314
|
+
* @name QuerySpendableBalanceByDenomResponseAmino
|
|
315
|
+
* @package cosmos.bank.v1beta1
|
|
316
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse
|
|
223
317
|
*/
|
|
224
318
|
export interface QuerySpendableBalanceByDenomResponseAmino {
|
|
225
|
-
/**
|
|
319
|
+
/**
|
|
320
|
+
* balance is the balance of the coin.
|
|
321
|
+
*/
|
|
226
322
|
balance?: CoinAmino;
|
|
227
323
|
}
|
|
228
324
|
export interface QuerySpendableBalanceByDenomResponseAminoMsg {
|
|
@@ -232,12 +328,13 @@ export interface QuerySpendableBalanceByDenomResponseAminoMsg {
|
|
|
232
328
|
/**
|
|
233
329
|
* QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC
|
|
234
330
|
* method.
|
|
331
|
+
* @name QueryTotalSupplyRequest
|
|
332
|
+
* @package cosmos.bank.v1beta1
|
|
333
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyRequest
|
|
235
334
|
*/
|
|
236
335
|
export interface QueryTotalSupplyRequest {
|
|
237
336
|
/**
|
|
238
337
|
* pagination defines an optional pagination for the request.
|
|
239
|
-
*
|
|
240
|
-
* Since: cosmos-sdk 0.43
|
|
241
338
|
*/
|
|
242
339
|
pagination?: PageRequest;
|
|
243
340
|
}
|
|
@@ -248,12 +345,13 @@ export interface QueryTotalSupplyRequestProtoMsg {
|
|
|
248
345
|
/**
|
|
249
346
|
* QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC
|
|
250
347
|
* method.
|
|
348
|
+
* @name QueryTotalSupplyRequestAmino
|
|
349
|
+
* @package cosmos.bank.v1beta1
|
|
350
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyRequest
|
|
251
351
|
*/
|
|
252
352
|
export interface QueryTotalSupplyRequestAmino {
|
|
253
353
|
/**
|
|
254
354
|
* pagination defines an optional pagination for the request.
|
|
255
|
-
*
|
|
256
|
-
* Since: cosmos-sdk 0.43
|
|
257
355
|
*/
|
|
258
356
|
pagination?: PageRequestAmino;
|
|
259
357
|
}
|
|
@@ -264,14 +362,17 @@ export interface QueryTotalSupplyRequestAminoMsg {
|
|
|
264
362
|
/**
|
|
265
363
|
* QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC
|
|
266
364
|
* method
|
|
365
|
+
* @name QueryTotalSupplyResponse
|
|
366
|
+
* @package cosmos.bank.v1beta1
|
|
367
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyResponse
|
|
267
368
|
*/
|
|
268
369
|
export interface QueryTotalSupplyResponse {
|
|
269
|
-
/**
|
|
370
|
+
/**
|
|
371
|
+
* supply is the supply of the coins
|
|
372
|
+
*/
|
|
270
373
|
supply: Coin[];
|
|
271
374
|
/**
|
|
272
375
|
* pagination defines the pagination in the response.
|
|
273
|
-
*
|
|
274
|
-
* Since: cosmos-sdk 0.43
|
|
275
376
|
*/
|
|
276
377
|
pagination?: PageResponse;
|
|
277
378
|
}
|
|
@@ -282,14 +383,17 @@ export interface QueryTotalSupplyResponseProtoMsg {
|
|
|
282
383
|
/**
|
|
283
384
|
* QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC
|
|
284
385
|
* method
|
|
386
|
+
* @name QueryTotalSupplyResponseAmino
|
|
387
|
+
* @package cosmos.bank.v1beta1
|
|
388
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyResponse
|
|
285
389
|
*/
|
|
286
390
|
export interface QueryTotalSupplyResponseAmino {
|
|
287
|
-
/**
|
|
391
|
+
/**
|
|
392
|
+
* supply is the supply of the coins
|
|
393
|
+
*/
|
|
288
394
|
supply: CoinAmino[];
|
|
289
395
|
/**
|
|
290
396
|
* pagination defines the pagination in the response.
|
|
291
|
-
*
|
|
292
|
-
* Since: cosmos-sdk 0.43
|
|
293
397
|
*/
|
|
294
398
|
pagination?: PageResponseAmino;
|
|
295
399
|
}
|
|
@@ -297,86 +401,152 @@ export interface QueryTotalSupplyResponseAminoMsg {
|
|
|
297
401
|
type: "cosmos-sdk/QueryTotalSupplyResponse";
|
|
298
402
|
value: QueryTotalSupplyResponseAmino;
|
|
299
403
|
}
|
|
300
|
-
/**
|
|
404
|
+
/**
|
|
405
|
+
* QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method.
|
|
406
|
+
* @name QuerySupplyOfRequest
|
|
407
|
+
* @package cosmos.bank.v1beta1
|
|
408
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfRequest
|
|
409
|
+
*/
|
|
301
410
|
export interface QuerySupplyOfRequest {
|
|
302
|
-
/**
|
|
411
|
+
/**
|
|
412
|
+
* denom is the coin denom to query balances for.
|
|
413
|
+
*/
|
|
303
414
|
denom: string;
|
|
304
415
|
}
|
|
305
416
|
export interface QuerySupplyOfRequestProtoMsg {
|
|
306
417
|
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfRequest";
|
|
307
418
|
value: Uint8Array;
|
|
308
419
|
}
|
|
309
|
-
/**
|
|
420
|
+
/**
|
|
421
|
+
* QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method.
|
|
422
|
+
* @name QuerySupplyOfRequestAmino
|
|
423
|
+
* @package cosmos.bank.v1beta1
|
|
424
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfRequest
|
|
425
|
+
*/
|
|
310
426
|
export interface QuerySupplyOfRequestAmino {
|
|
311
|
-
/**
|
|
427
|
+
/**
|
|
428
|
+
* denom is the coin denom to query balances for.
|
|
429
|
+
*/
|
|
312
430
|
denom?: string;
|
|
313
431
|
}
|
|
314
432
|
export interface QuerySupplyOfRequestAminoMsg {
|
|
315
433
|
type: "cosmos-sdk/QuerySupplyOfRequest";
|
|
316
434
|
value: QuerySupplyOfRequestAmino;
|
|
317
435
|
}
|
|
318
|
-
/**
|
|
436
|
+
/**
|
|
437
|
+
* QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method.
|
|
438
|
+
* @name QuerySupplyOfResponse
|
|
439
|
+
* @package cosmos.bank.v1beta1
|
|
440
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfResponse
|
|
441
|
+
*/
|
|
319
442
|
export interface QuerySupplyOfResponse {
|
|
320
|
-
/**
|
|
443
|
+
/**
|
|
444
|
+
* amount is the supply of the coin.
|
|
445
|
+
*/
|
|
321
446
|
amount: Coin;
|
|
322
447
|
}
|
|
323
448
|
export interface QuerySupplyOfResponseProtoMsg {
|
|
324
449
|
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfResponse";
|
|
325
450
|
value: Uint8Array;
|
|
326
451
|
}
|
|
327
|
-
/**
|
|
452
|
+
/**
|
|
453
|
+
* QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method.
|
|
454
|
+
* @name QuerySupplyOfResponseAmino
|
|
455
|
+
* @package cosmos.bank.v1beta1
|
|
456
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfResponse
|
|
457
|
+
*/
|
|
328
458
|
export interface QuerySupplyOfResponseAmino {
|
|
329
|
-
/**
|
|
459
|
+
/**
|
|
460
|
+
* amount is the supply of the coin.
|
|
461
|
+
*/
|
|
330
462
|
amount: CoinAmino;
|
|
331
463
|
}
|
|
332
464
|
export interface QuerySupplyOfResponseAminoMsg {
|
|
333
465
|
type: "cosmos-sdk/QuerySupplyOfResponse";
|
|
334
466
|
value: QuerySupplyOfResponseAmino;
|
|
335
467
|
}
|
|
336
|
-
/**
|
|
468
|
+
/**
|
|
469
|
+
* QueryParamsRequest defines the request type for querying x/bank parameters.
|
|
470
|
+
* @name QueryParamsRequest
|
|
471
|
+
* @package cosmos.bank.v1beta1
|
|
472
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsRequest
|
|
473
|
+
*/
|
|
337
474
|
export interface QueryParamsRequest {
|
|
338
475
|
}
|
|
339
476
|
export interface QueryParamsRequestProtoMsg {
|
|
340
477
|
typeUrl: "/cosmos.bank.v1beta1.QueryParamsRequest";
|
|
341
478
|
value: Uint8Array;
|
|
342
479
|
}
|
|
343
|
-
/**
|
|
480
|
+
/**
|
|
481
|
+
* QueryParamsRequest defines the request type for querying x/bank parameters.
|
|
482
|
+
* @name QueryParamsRequestAmino
|
|
483
|
+
* @package cosmos.bank.v1beta1
|
|
484
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsRequest
|
|
485
|
+
*/
|
|
344
486
|
export interface QueryParamsRequestAmino {
|
|
345
487
|
}
|
|
346
488
|
export interface QueryParamsRequestAminoMsg {
|
|
347
489
|
type: "cosmos-sdk/QueryParamsRequest";
|
|
348
490
|
value: QueryParamsRequestAmino;
|
|
349
491
|
}
|
|
350
|
-
/**
|
|
492
|
+
/**
|
|
493
|
+
* QueryParamsResponse defines the response type for querying x/bank parameters.
|
|
494
|
+
* @name QueryParamsResponse
|
|
495
|
+
* @package cosmos.bank.v1beta1
|
|
496
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsResponse
|
|
497
|
+
*/
|
|
351
498
|
export interface QueryParamsResponse {
|
|
352
|
-
/**
|
|
499
|
+
/**
|
|
500
|
+
* params provides the parameters of the bank module.
|
|
501
|
+
*/
|
|
353
502
|
params: Params;
|
|
354
503
|
}
|
|
355
504
|
export interface QueryParamsResponseProtoMsg {
|
|
356
505
|
typeUrl: "/cosmos.bank.v1beta1.QueryParamsResponse";
|
|
357
506
|
value: Uint8Array;
|
|
358
507
|
}
|
|
359
|
-
/**
|
|
508
|
+
/**
|
|
509
|
+
* QueryParamsResponse defines the response type for querying x/bank parameters.
|
|
510
|
+
* @name QueryParamsResponseAmino
|
|
511
|
+
* @package cosmos.bank.v1beta1
|
|
512
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsResponse
|
|
513
|
+
*/
|
|
360
514
|
export interface QueryParamsResponseAmino {
|
|
361
|
-
/**
|
|
515
|
+
/**
|
|
516
|
+
* params provides the parameters of the bank module.
|
|
517
|
+
*/
|
|
362
518
|
params: ParamsAmino;
|
|
363
519
|
}
|
|
364
520
|
export interface QueryParamsResponseAminoMsg {
|
|
365
521
|
type: "cosmos-sdk/QueryParamsResponse";
|
|
366
522
|
value: QueryParamsResponseAmino;
|
|
367
523
|
}
|
|
368
|
-
/**
|
|
524
|
+
/**
|
|
525
|
+
* QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method.
|
|
526
|
+
* @name QueryDenomsMetadataRequest
|
|
527
|
+
* @package cosmos.bank.v1beta1
|
|
528
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataRequest
|
|
529
|
+
*/
|
|
369
530
|
export interface QueryDenomsMetadataRequest {
|
|
370
|
-
/**
|
|
531
|
+
/**
|
|
532
|
+
* pagination defines an optional pagination for the request.
|
|
533
|
+
*/
|
|
371
534
|
pagination?: PageRequest;
|
|
372
535
|
}
|
|
373
536
|
export interface QueryDenomsMetadataRequestProtoMsg {
|
|
374
537
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataRequest";
|
|
375
538
|
value: Uint8Array;
|
|
376
539
|
}
|
|
377
|
-
/**
|
|
540
|
+
/**
|
|
541
|
+
* QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method.
|
|
542
|
+
* @name QueryDenomsMetadataRequestAmino
|
|
543
|
+
* @package cosmos.bank.v1beta1
|
|
544
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataRequest
|
|
545
|
+
*/
|
|
378
546
|
export interface QueryDenomsMetadataRequestAmino {
|
|
379
|
-
/**
|
|
547
|
+
/**
|
|
548
|
+
* pagination defines an optional pagination for the request.
|
|
549
|
+
*/
|
|
380
550
|
pagination?: PageRequestAmino;
|
|
381
551
|
}
|
|
382
552
|
export interface QueryDenomsMetadataRequestAminoMsg {
|
|
@@ -386,11 +556,18 @@ export interface QueryDenomsMetadataRequestAminoMsg {
|
|
|
386
556
|
/**
|
|
387
557
|
* QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC
|
|
388
558
|
* method.
|
|
559
|
+
* @name QueryDenomsMetadataResponse
|
|
560
|
+
* @package cosmos.bank.v1beta1
|
|
561
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataResponse
|
|
389
562
|
*/
|
|
390
563
|
export interface QueryDenomsMetadataResponse {
|
|
391
|
-
/**
|
|
564
|
+
/**
|
|
565
|
+
* metadata provides the client information for all the registered tokens.
|
|
566
|
+
*/
|
|
392
567
|
metadatas: Metadata[];
|
|
393
|
-
/**
|
|
568
|
+
/**
|
|
569
|
+
* pagination defines the pagination in the response.
|
|
570
|
+
*/
|
|
394
571
|
pagination?: PageResponse;
|
|
395
572
|
}
|
|
396
573
|
export interface QueryDenomsMetadataResponseProtoMsg {
|
|
@@ -400,29 +577,50 @@ export interface QueryDenomsMetadataResponseProtoMsg {
|
|
|
400
577
|
/**
|
|
401
578
|
* QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC
|
|
402
579
|
* method.
|
|
580
|
+
* @name QueryDenomsMetadataResponseAmino
|
|
581
|
+
* @package cosmos.bank.v1beta1
|
|
582
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataResponse
|
|
403
583
|
*/
|
|
404
584
|
export interface QueryDenomsMetadataResponseAmino {
|
|
405
|
-
/**
|
|
585
|
+
/**
|
|
586
|
+
* metadata provides the client information for all the registered tokens.
|
|
587
|
+
*/
|
|
406
588
|
metadatas: MetadataAmino[];
|
|
407
|
-
/**
|
|
589
|
+
/**
|
|
590
|
+
* pagination defines the pagination in the response.
|
|
591
|
+
*/
|
|
408
592
|
pagination?: PageResponseAmino;
|
|
409
593
|
}
|
|
410
594
|
export interface QueryDenomsMetadataResponseAminoMsg {
|
|
411
595
|
type: "cosmos-sdk/QueryDenomsMetadataResponse";
|
|
412
596
|
value: QueryDenomsMetadataResponseAmino;
|
|
413
597
|
}
|
|
414
|
-
/**
|
|
598
|
+
/**
|
|
599
|
+
* QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method.
|
|
600
|
+
* @name QueryDenomMetadataRequest
|
|
601
|
+
* @package cosmos.bank.v1beta1
|
|
602
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataRequest
|
|
603
|
+
*/
|
|
415
604
|
export interface QueryDenomMetadataRequest {
|
|
416
|
-
/**
|
|
605
|
+
/**
|
|
606
|
+
* denom is the coin denom to query the metadata for.
|
|
607
|
+
*/
|
|
417
608
|
denom: string;
|
|
418
609
|
}
|
|
419
610
|
export interface QueryDenomMetadataRequestProtoMsg {
|
|
420
611
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataRequest";
|
|
421
612
|
value: Uint8Array;
|
|
422
613
|
}
|
|
423
|
-
/**
|
|
614
|
+
/**
|
|
615
|
+
* QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method.
|
|
616
|
+
* @name QueryDenomMetadataRequestAmino
|
|
617
|
+
* @package cosmos.bank.v1beta1
|
|
618
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataRequest
|
|
619
|
+
*/
|
|
424
620
|
export interface QueryDenomMetadataRequestAmino {
|
|
425
|
-
/**
|
|
621
|
+
/**
|
|
622
|
+
* denom is the coin denom to query the metadata for.
|
|
623
|
+
*/
|
|
426
624
|
denom?: string;
|
|
427
625
|
}
|
|
428
626
|
export interface QueryDenomMetadataRequestAminoMsg {
|
|
@@ -432,9 +630,14 @@ export interface QueryDenomMetadataRequestAminoMsg {
|
|
|
432
630
|
/**
|
|
433
631
|
* QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC
|
|
434
632
|
* method.
|
|
633
|
+
* @name QueryDenomMetadataResponse
|
|
634
|
+
* @package cosmos.bank.v1beta1
|
|
635
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataResponse
|
|
435
636
|
*/
|
|
436
637
|
export interface QueryDenomMetadataResponse {
|
|
437
|
-
/**
|
|
638
|
+
/**
|
|
639
|
+
* metadata describes and provides all the client information for the requested token.
|
|
640
|
+
*/
|
|
438
641
|
metadata: Metadata;
|
|
439
642
|
}
|
|
440
643
|
export interface QueryDenomMetadataResponseProtoMsg {
|
|
@@ -444,9 +647,14 @@ export interface QueryDenomMetadataResponseProtoMsg {
|
|
|
444
647
|
/**
|
|
445
648
|
* QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC
|
|
446
649
|
* method.
|
|
650
|
+
* @name QueryDenomMetadataResponseAmino
|
|
651
|
+
* @package cosmos.bank.v1beta1
|
|
652
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataResponse
|
|
447
653
|
*/
|
|
448
654
|
export interface QueryDenomMetadataResponseAmino {
|
|
449
|
-
/**
|
|
655
|
+
/**
|
|
656
|
+
* metadata describes and provides all the client information for the requested token.
|
|
657
|
+
*/
|
|
450
658
|
metadata: MetadataAmino;
|
|
451
659
|
}
|
|
452
660
|
export interface QueryDenomMetadataResponseAminoMsg {
|
|
@@ -456,9 +664,14 @@ export interface QueryDenomMetadataResponseAminoMsg {
|
|
|
456
664
|
/**
|
|
457
665
|
* QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method.
|
|
458
666
|
* Identical with QueryDenomMetadataRequest but receives denom as query string.
|
|
667
|
+
* @name QueryDenomMetadataByQueryStringRequest
|
|
668
|
+
* @package cosmos.bank.v1beta1
|
|
669
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest
|
|
459
670
|
*/
|
|
460
671
|
export interface QueryDenomMetadataByQueryStringRequest {
|
|
461
|
-
/**
|
|
672
|
+
/**
|
|
673
|
+
* denom is the coin denom to query the metadata for.
|
|
674
|
+
*/
|
|
462
675
|
denom: string;
|
|
463
676
|
}
|
|
464
677
|
export interface QueryDenomMetadataByQueryStringRequestProtoMsg {
|
|
@@ -468,9 +681,14 @@ export interface QueryDenomMetadataByQueryStringRequestProtoMsg {
|
|
|
468
681
|
/**
|
|
469
682
|
* QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method.
|
|
470
683
|
* Identical with QueryDenomMetadataRequest but receives denom as query string.
|
|
684
|
+
* @name QueryDenomMetadataByQueryStringRequestAmino
|
|
685
|
+
* @package cosmos.bank.v1beta1
|
|
686
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest
|
|
471
687
|
*/
|
|
472
688
|
export interface QueryDenomMetadataByQueryStringRequestAmino {
|
|
473
|
-
/**
|
|
689
|
+
/**
|
|
690
|
+
* denom is the coin denom to query the metadata for.
|
|
691
|
+
*/
|
|
474
692
|
denom?: string;
|
|
475
693
|
}
|
|
476
694
|
export interface QueryDenomMetadataByQueryStringRequestAminoMsg {
|
|
@@ -480,9 +698,14 @@ export interface QueryDenomMetadataByQueryStringRequestAminoMsg {
|
|
|
480
698
|
/**
|
|
481
699
|
* QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC
|
|
482
700
|
* method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.
|
|
701
|
+
* @name QueryDenomMetadataByQueryStringResponse
|
|
702
|
+
* @package cosmos.bank.v1beta1
|
|
703
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse
|
|
483
704
|
*/
|
|
484
705
|
export interface QueryDenomMetadataByQueryStringResponse {
|
|
485
|
-
/**
|
|
706
|
+
/**
|
|
707
|
+
* metadata describes and provides all the client information for the requested token.
|
|
708
|
+
*/
|
|
486
709
|
metadata: Metadata;
|
|
487
710
|
}
|
|
488
711
|
export interface QueryDenomMetadataByQueryStringResponseProtoMsg {
|
|
@@ -492,9 +715,14 @@ export interface QueryDenomMetadataByQueryStringResponseProtoMsg {
|
|
|
492
715
|
/**
|
|
493
716
|
* QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC
|
|
494
717
|
* method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.
|
|
718
|
+
* @name QueryDenomMetadataByQueryStringResponseAmino
|
|
719
|
+
* @package cosmos.bank.v1beta1
|
|
720
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse
|
|
495
721
|
*/
|
|
496
722
|
export interface QueryDenomMetadataByQueryStringResponseAmino {
|
|
497
|
-
/**
|
|
723
|
+
/**
|
|
724
|
+
* metadata describes and provides all the client information for the requested token.
|
|
725
|
+
*/
|
|
498
726
|
metadata: MetadataAmino;
|
|
499
727
|
}
|
|
500
728
|
export interface QueryDenomMetadataByQueryStringResponseAminoMsg {
|
|
@@ -505,11 +733,18 @@ export interface QueryDenomMetadataByQueryStringResponseAminoMsg {
|
|
|
505
733
|
* QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query,
|
|
506
734
|
* which queries for a paginated set of all account holders of a particular
|
|
507
735
|
* denomination.
|
|
736
|
+
* @name QueryDenomOwnersRequest
|
|
737
|
+
* @package cosmos.bank.v1beta1
|
|
738
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersRequest
|
|
508
739
|
*/
|
|
509
740
|
export interface QueryDenomOwnersRequest {
|
|
510
|
-
/**
|
|
741
|
+
/**
|
|
742
|
+
* denom defines the coin denomination to query all account holders for.
|
|
743
|
+
*/
|
|
511
744
|
denom: string;
|
|
512
|
-
/**
|
|
745
|
+
/**
|
|
746
|
+
* pagination defines an optional pagination for the request.
|
|
747
|
+
*/
|
|
513
748
|
pagination?: PageRequest;
|
|
514
749
|
}
|
|
515
750
|
export interface QueryDenomOwnersRequestProtoMsg {
|
|
@@ -520,11 +755,18 @@ export interface QueryDenomOwnersRequestProtoMsg {
|
|
|
520
755
|
* QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query,
|
|
521
756
|
* which queries for a paginated set of all account holders of a particular
|
|
522
757
|
* denomination.
|
|
758
|
+
* @name QueryDenomOwnersRequestAmino
|
|
759
|
+
* @package cosmos.bank.v1beta1
|
|
760
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersRequest
|
|
523
761
|
*/
|
|
524
762
|
export interface QueryDenomOwnersRequestAmino {
|
|
525
|
-
/**
|
|
763
|
+
/**
|
|
764
|
+
* denom defines the coin denomination to query all account holders for.
|
|
765
|
+
*/
|
|
526
766
|
denom?: string;
|
|
527
|
-
/**
|
|
767
|
+
/**
|
|
768
|
+
* pagination defines an optional pagination for the request.
|
|
769
|
+
*/
|
|
528
770
|
pagination?: PageRequestAmino;
|
|
529
771
|
}
|
|
530
772
|
export interface QueryDenomOwnersRequestAminoMsg {
|
|
@@ -535,13 +777,18 @@ export interface QueryDenomOwnersRequestAminoMsg {
|
|
|
535
777
|
* DenomOwner defines structure representing an account that owns or holds a
|
|
536
778
|
* particular denominated token. It contains the account address and account
|
|
537
779
|
* balance of the denominated token.
|
|
538
|
-
*
|
|
539
|
-
*
|
|
780
|
+
* @name DenomOwner
|
|
781
|
+
* @package cosmos.bank.v1beta1
|
|
782
|
+
* @see proto type: cosmos.bank.v1beta1.DenomOwner
|
|
540
783
|
*/
|
|
541
784
|
export interface DenomOwner {
|
|
542
|
-
/**
|
|
785
|
+
/**
|
|
786
|
+
* address defines the address that owns a particular denomination.
|
|
787
|
+
*/
|
|
543
788
|
address: string;
|
|
544
|
-
/**
|
|
789
|
+
/**
|
|
790
|
+
* balance is the balance of the denominated coin for an account.
|
|
791
|
+
*/
|
|
545
792
|
balance: Coin;
|
|
546
793
|
}
|
|
547
794
|
export interface DenomOwnerProtoMsg {
|
|
@@ -552,13 +799,18 @@ export interface DenomOwnerProtoMsg {
|
|
|
552
799
|
* DenomOwner defines structure representing an account that owns or holds a
|
|
553
800
|
* particular denominated token. It contains the account address and account
|
|
554
801
|
* balance of the denominated token.
|
|
555
|
-
*
|
|
556
|
-
*
|
|
802
|
+
* @name DenomOwnerAmino
|
|
803
|
+
* @package cosmos.bank.v1beta1
|
|
804
|
+
* @see proto type: cosmos.bank.v1beta1.DenomOwner
|
|
557
805
|
*/
|
|
558
806
|
export interface DenomOwnerAmino {
|
|
559
|
-
/**
|
|
807
|
+
/**
|
|
808
|
+
* address defines the address that owns a particular denomination.
|
|
809
|
+
*/
|
|
560
810
|
address?: string;
|
|
561
|
-
/**
|
|
811
|
+
/**
|
|
812
|
+
* balance is the balance of the denominated coin for an account.
|
|
813
|
+
*/
|
|
562
814
|
balance: CoinAmino;
|
|
563
815
|
}
|
|
564
816
|
export interface DenomOwnerAminoMsg {
|
|
@@ -567,12 +819,15 @@ export interface DenomOwnerAminoMsg {
|
|
|
567
819
|
}
|
|
568
820
|
/**
|
|
569
821
|
* QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.
|
|
570
|
-
*
|
|
571
|
-
*
|
|
822
|
+
* @name QueryDenomOwnersResponse
|
|
823
|
+
* @package cosmos.bank.v1beta1
|
|
824
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersResponse
|
|
572
825
|
*/
|
|
573
826
|
export interface QueryDenomOwnersResponse {
|
|
574
827
|
denomOwners: DenomOwner[];
|
|
575
|
-
/**
|
|
828
|
+
/**
|
|
829
|
+
* pagination defines the pagination in the response.
|
|
830
|
+
*/
|
|
576
831
|
pagination?: PageResponse;
|
|
577
832
|
}
|
|
578
833
|
export interface QueryDenomOwnersResponseProtoMsg {
|
|
@@ -581,12 +836,15 @@ export interface QueryDenomOwnersResponseProtoMsg {
|
|
|
581
836
|
}
|
|
582
837
|
/**
|
|
583
838
|
* QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.
|
|
584
|
-
*
|
|
585
|
-
*
|
|
839
|
+
* @name QueryDenomOwnersResponseAmino
|
|
840
|
+
* @package cosmos.bank.v1beta1
|
|
841
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersResponse
|
|
586
842
|
*/
|
|
587
843
|
export interface QueryDenomOwnersResponseAmino {
|
|
588
844
|
denom_owners?: DenomOwnerAmino[];
|
|
589
|
-
/**
|
|
845
|
+
/**
|
|
846
|
+
* pagination defines the pagination in the response.
|
|
847
|
+
*/
|
|
590
848
|
pagination?: PageResponseAmino;
|
|
591
849
|
}
|
|
592
850
|
export interface QueryDenomOwnersResponseAminoMsg {
|
|
@@ -597,13 +855,18 @@ export interface QueryDenomOwnersResponseAminoMsg {
|
|
|
597
855
|
* QueryDenomOwnersByQueryRequest defines the request type for the DenomOwnersByQuery RPC query,
|
|
598
856
|
* which queries for a paginated set of all account holders of a particular
|
|
599
857
|
* denomination.
|
|
600
|
-
*
|
|
601
|
-
*
|
|
858
|
+
* @name QueryDenomOwnersByQueryRequest
|
|
859
|
+
* @package cosmos.bank.v1beta1
|
|
860
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest
|
|
602
861
|
*/
|
|
603
862
|
export interface QueryDenomOwnersByQueryRequest {
|
|
604
|
-
/**
|
|
863
|
+
/**
|
|
864
|
+
* denom defines the coin denomination to query all account holders for.
|
|
865
|
+
*/
|
|
605
866
|
denom: string;
|
|
606
|
-
/**
|
|
867
|
+
/**
|
|
868
|
+
* pagination defines an optional pagination for the request.
|
|
869
|
+
*/
|
|
607
870
|
pagination?: PageRequest;
|
|
608
871
|
}
|
|
609
872
|
export interface QueryDenomOwnersByQueryRequestProtoMsg {
|
|
@@ -614,13 +877,18 @@ export interface QueryDenomOwnersByQueryRequestProtoMsg {
|
|
|
614
877
|
* QueryDenomOwnersByQueryRequest defines the request type for the DenomOwnersByQuery RPC query,
|
|
615
878
|
* which queries for a paginated set of all account holders of a particular
|
|
616
879
|
* denomination.
|
|
617
|
-
*
|
|
618
|
-
*
|
|
880
|
+
* @name QueryDenomOwnersByQueryRequestAmino
|
|
881
|
+
* @package cosmos.bank.v1beta1
|
|
882
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest
|
|
619
883
|
*/
|
|
620
884
|
export interface QueryDenomOwnersByQueryRequestAmino {
|
|
621
|
-
/**
|
|
885
|
+
/**
|
|
886
|
+
* denom defines the coin denomination to query all account holders for.
|
|
887
|
+
*/
|
|
622
888
|
denom?: string;
|
|
623
|
-
/**
|
|
889
|
+
/**
|
|
890
|
+
* pagination defines an optional pagination for the request.
|
|
891
|
+
*/
|
|
624
892
|
pagination?: PageRequestAmino;
|
|
625
893
|
}
|
|
626
894
|
export interface QueryDenomOwnersByQueryRequestAminoMsg {
|
|
@@ -629,12 +897,15 @@ export interface QueryDenomOwnersByQueryRequestAminoMsg {
|
|
|
629
897
|
}
|
|
630
898
|
/**
|
|
631
899
|
* QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.
|
|
632
|
-
*
|
|
633
|
-
*
|
|
900
|
+
* @name QueryDenomOwnersByQueryResponse
|
|
901
|
+
* @package cosmos.bank.v1beta1
|
|
902
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse
|
|
634
903
|
*/
|
|
635
904
|
export interface QueryDenomOwnersByQueryResponse {
|
|
636
905
|
denomOwners: DenomOwner[];
|
|
637
|
-
/**
|
|
906
|
+
/**
|
|
907
|
+
* pagination defines the pagination in the response.
|
|
908
|
+
*/
|
|
638
909
|
pagination?: PageResponse;
|
|
639
910
|
}
|
|
640
911
|
export interface QueryDenomOwnersByQueryResponseProtoMsg {
|
|
@@ -643,12 +914,15 @@ export interface QueryDenomOwnersByQueryResponseProtoMsg {
|
|
|
643
914
|
}
|
|
644
915
|
/**
|
|
645
916
|
* QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.
|
|
646
|
-
*
|
|
647
|
-
*
|
|
917
|
+
* @name QueryDenomOwnersByQueryResponseAmino
|
|
918
|
+
* @package cosmos.bank.v1beta1
|
|
919
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse
|
|
648
920
|
*/
|
|
649
921
|
export interface QueryDenomOwnersByQueryResponseAmino {
|
|
650
922
|
denom_owners?: DenomOwnerAmino[];
|
|
651
|
-
/**
|
|
923
|
+
/**
|
|
924
|
+
* pagination defines the pagination in the response.
|
|
925
|
+
*/
|
|
652
926
|
pagination?: PageResponseAmino;
|
|
653
927
|
}
|
|
654
928
|
export interface QueryDenomOwnersByQueryResponseAminoMsg {
|
|
@@ -657,11 +931,14 @@ export interface QueryDenomOwnersByQueryResponseAminoMsg {
|
|
|
657
931
|
}
|
|
658
932
|
/**
|
|
659
933
|
* QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.
|
|
660
|
-
*
|
|
661
|
-
*
|
|
934
|
+
* @name QuerySendEnabledRequest
|
|
935
|
+
* @package cosmos.bank.v1beta1
|
|
936
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledRequest
|
|
662
937
|
*/
|
|
663
938
|
export interface QuerySendEnabledRequest {
|
|
664
|
-
/**
|
|
939
|
+
/**
|
|
940
|
+
* denoms is the specific denoms you want look up. Leave empty to get all entries.
|
|
941
|
+
*/
|
|
665
942
|
denoms: string[];
|
|
666
943
|
/**
|
|
667
944
|
* pagination defines an optional pagination for the request. This field is
|
|
@@ -675,11 +952,14 @@ export interface QuerySendEnabledRequestProtoMsg {
|
|
|
675
952
|
}
|
|
676
953
|
/**
|
|
677
954
|
* QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.
|
|
678
|
-
*
|
|
679
|
-
*
|
|
955
|
+
* @name QuerySendEnabledRequestAmino
|
|
956
|
+
* @package cosmos.bank.v1beta1
|
|
957
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledRequest
|
|
680
958
|
*/
|
|
681
959
|
export interface QuerySendEnabledRequestAmino {
|
|
682
|
-
/**
|
|
960
|
+
/**
|
|
961
|
+
* denoms is the specific denoms you want look up. Leave empty to get all entries.
|
|
962
|
+
*/
|
|
683
963
|
denoms?: string[];
|
|
684
964
|
/**
|
|
685
965
|
* pagination defines an optional pagination for the request. This field is
|
|
@@ -693,8 +973,9 @@ export interface QuerySendEnabledRequestAminoMsg {
|
|
|
693
973
|
}
|
|
694
974
|
/**
|
|
695
975
|
* QuerySendEnabledResponse defines the RPC response of a SendEnable query.
|
|
696
|
-
*
|
|
697
|
-
*
|
|
976
|
+
* @name QuerySendEnabledResponse
|
|
977
|
+
* @package cosmos.bank.v1beta1
|
|
978
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledResponse
|
|
698
979
|
*/
|
|
699
980
|
export interface QuerySendEnabledResponse {
|
|
700
981
|
sendEnabled: SendEnabled[];
|
|
@@ -710,8 +991,9 @@ export interface QuerySendEnabledResponseProtoMsg {
|
|
|
710
991
|
}
|
|
711
992
|
/**
|
|
712
993
|
* QuerySendEnabledResponse defines the RPC response of a SendEnable query.
|
|
713
|
-
*
|
|
714
|
-
*
|
|
994
|
+
* @name QuerySendEnabledResponseAmino
|
|
995
|
+
* @package cosmos.bank.v1beta1
|
|
996
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledResponse
|
|
715
997
|
*/
|
|
716
998
|
export interface QuerySendEnabledResponseAmino {
|
|
717
999
|
send_enabled?: SendEnabledAmino[];
|
|
@@ -725,6 +1007,12 @@ export interface QuerySendEnabledResponseAminoMsg {
|
|
|
725
1007
|
type: "cosmos-sdk/QuerySendEnabledResponse";
|
|
726
1008
|
value: QuerySendEnabledResponseAmino;
|
|
727
1009
|
}
|
|
1010
|
+
/**
|
|
1011
|
+
* QueryBalanceRequest is the request type for the Query/Balance RPC method.
|
|
1012
|
+
* @name QueryBalanceRequest
|
|
1013
|
+
* @package cosmos.bank.v1beta1
|
|
1014
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceRequest
|
|
1015
|
+
*/
|
|
728
1016
|
export declare const QueryBalanceRequest: {
|
|
729
1017
|
typeUrl: string;
|
|
730
1018
|
aminoType: string;
|
|
@@ -739,6 +1027,12 @@ export declare const QueryBalanceRequest: {
|
|
|
739
1027
|
toProto(message: QueryBalanceRequest): Uint8Array;
|
|
740
1028
|
toProtoMsg(message: QueryBalanceRequest): QueryBalanceRequestProtoMsg;
|
|
741
1029
|
};
|
|
1030
|
+
/**
|
|
1031
|
+
* QueryBalanceResponse is the response type for the Query/Balance RPC method.
|
|
1032
|
+
* @name QueryBalanceResponse
|
|
1033
|
+
* @package cosmos.bank.v1beta1
|
|
1034
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceResponse
|
|
1035
|
+
*/
|
|
742
1036
|
export declare const QueryBalanceResponse: {
|
|
743
1037
|
typeUrl: string;
|
|
744
1038
|
aminoType: string;
|
|
@@ -753,6 +1047,12 @@ export declare const QueryBalanceResponse: {
|
|
|
753
1047
|
toProto(message: QueryBalanceResponse): Uint8Array;
|
|
754
1048
|
toProtoMsg(message: QueryBalanceResponse): QueryBalanceResponseProtoMsg;
|
|
755
1049
|
};
|
|
1050
|
+
/**
|
|
1051
|
+
* QueryBalanceRequest is the request type for the Query/AllBalances RPC method.
|
|
1052
|
+
* @name QueryAllBalancesRequest
|
|
1053
|
+
* @package cosmos.bank.v1beta1
|
|
1054
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesRequest
|
|
1055
|
+
*/
|
|
756
1056
|
export declare const QueryAllBalancesRequest: {
|
|
757
1057
|
typeUrl: string;
|
|
758
1058
|
aminoType: string;
|
|
@@ -767,6 +1067,13 @@ export declare const QueryAllBalancesRequest: {
|
|
|
767
1067
|
toProto(message: QueryAllBalancesRequest): Uint8Array;
|
|
768
1068
|
toProtoMsg(message: QueryAllBalancesRequest): QueryAllBalancesRequestProtoMsg;
|
|
769
1069
|
};
|
|
1070
|
+
/**
|
|
1071
|
+
* QueryAllBalancesResponse is the response type for the Query/AllBalances RPC
|
|
1072
|
+
* method.
|
|
1073
|
+
* @name QueryAllBalancesResponse
|
|
1074
|
+
* @package cosmos.bank.v1beta1
|
|
1075
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesResponse
|
|
1076
|
+
*/
|
|
770
1077
|
export declare const QueryAllBalancesResponse: {
|
|
771
1078
|
typeUrl: string;
|
|
772
1079
|
aminoType: string;
|
|
@@ -781,6 +1088,13 @@ export declare const QueryAllBalancesResponse: {
|
|
|
781
1088
|
toProto(message: QueryAllBalancesResponse): Uint8Array;
|
|
782
1089
|
toProtoMsg(message: QueryAllBalancesResponse): QueryAllBalancesResponseProtoMsg;
|
|
783
1090
|
};
|
|
1091
|
+
/**
|
|
1092
|
+
* QuerySpendableBalancesRequest defines the gRPC request structure for querying
|
|
1093
|
+
* an account's spendable balances.
|
|
1094
|
+
* @name QuerySpendableBalancesRequest
|
|
1095
|
+
* @package cosmos.bank.v1beta1
|
|
1096
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesRequest
|
|
1097
|
+
*/
|
|
784
1098
|
export declare const QuerySpendableBalancesRequest: {
|
|
785
1099
|
typeUrl: string;
|
|
786
1100
|
aminoType: string;
|
|
@@ -795,6 +1109,13 @@ export declare const QuerySpendableBalancesRequest: {
|
|
|
795
1109
|
toProto(message: QuerySpendableBalancesRequest): Uint8Array;
|
|
796
1110
|
toProtoMsg(message: QuerySpendableBalancesRequest): QuerySpendableBalancesRequestProtoMsg;
|
|
797
1111
|
};
|
|
1112
|
+
/**
|
|
1113
|
+
* QuerySpendableBalancesResponse defines the gRPC response structure for querying
|
|
1114
|
+
* an account's spendable balances.
|
|
1115
|
+
* @name QuerySpendableBalancesResponse
|
|
1116
|
+
* @package cosmos.bank.v1beta1
|
|
1117
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesResponse
|
|
1118
|
+
*/
|
|
798
1119
|
export declare const QuerySpendableBalancesResponse: {
|
|
799
1120
|
typeUrl: string;
|
|
800
1121
|
aminoType: string;
|
|
@@ -809,6 +1130,13 @@ export declare const QuerySpendableBalancesResponse: {
|
|
|
809
1130
|
toProto(message: QuerySpendableBalancesResponse): Uint8Array;
|
|
810
1131
|
toProtoMsg(message: QuerySpendableBalancesResponse): QuerySpendableBalancesResponseProtoMsg;
|
|
811
1132
|
};
|
|
1133
|
+
/**
|
|
1134
|
+
* QuerySpendableBalanceByDenomRequest defines the gRPC request structure for
|
|
1135
|
+
* querying an account's spendable balance for a specific denom.
|
|
1136
|
+
* @name QuerySpendableBalanceByDenomRequest
|
|
1137
|
+
* @package cosmos.bank.v1beta1
|
|
1138
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest
|
|
1139
|
+
*/
|
|
812
1140
|
export declare const QuerySpendableBalanceByDenomRequest: {
|
|
813
1141
|
typeUrl: string;
|
|
814
1142
|
aminoType: string;
|
|
@@ -823,6 +1151,13 @@ export declare const QuerySpendableBalanceByDenomRequest: {
|
|
|
823
1151
|
toProto(message: QuerySpendableBalanceByDenomRequest): Uint8Array;
|
|
824
1152
|
toProtoMsg(message: QuerySpendableBalanceByDenomRequest): QuerySpendableBalanceByDenomRequestProtoMsg;
|
|
825
1153
|
};
|
|
1154
|
+
/**
|
|
1155
|
+
* QuerySpendableBalanceByDenomResponse defines the gRPC response structure for
|
|
1156
|
+
* querying an account's spendable balance for a specific denom.
|
|
1157
|
+
* @name QuerySpendableBalanceByDenomResponse
|
|
1158
|
+
* @package cosmos.bank.v1beta1
|
|
1159
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse
|
|
1160
|
+
*/
|
|
826
1161
|
export declare const QuerySpendableBalanceByDenomResponse: {
|
|
827
1162
|
typeUrl: string;
|
|
828
1163
|
aminoType: string;
|
|
@@ -837,6 +1172,13 @@ export declare const QuerySpendableBalanceByDenomResponse: {
|
|
|
837
1172
|
toProto(message: QuerySpendableBalanceByDenomResponse): Uint8Array;
|
|
838
1173
|
toProtoMsg(message: QuerySpendableBalanceByDenomResponse): QuerySpendableBalanceByDenomResponseProtoMsg;
|
|
839
1174
|
};
|
|
1175
|
+
/**
|
|
1176
|
+
* QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC
|
|
1177
|
+
* method.
|
|
1178
|
+
* @name QueryTotalSupplyRequest
|
|
1179
|
+
* @package cosmos.bank.v1beta1
|
|
1180
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyRequest
|
|
1181
|
+
*/
|
|
840
1182
|
export declare const QueryTotalSupplyRequest: {
|
|
841
1183
|
typeUrl: string;
|
|
842
1184
|
aminoType: string;
|
|
@@ -851,6 +1193,13 @@ export declare const QueryTotalSupplyRequest: {
|
|
|
851
1193
|
toProto(message: QueryTotalSupplyRequest): Uint8Array;
|
|
852
1194
|
toProtoMsg(message: QueryTotalSupplyRequest): QueryTotalSupplyRequestProtoMsg;
|
|
853
1195
|
};
|
|
1196
|
+
/**
|
|
1197
|
+
* QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC
|
|
1198
|
+
* method
|
|
1199
|
+
* @name QueryTotalSupplyResponse
|
|
1200
|
+
* @package cosmos.bank.v1beta1
|
|
1201
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyResponse
|
|
1202
|
+
*/
|
|
854
1203
|
export declare const QueryTotalSupplyResponse: {
|
|
855
1204
|
typeUrl: string;
|
|
856
1205
|
aminoType: string;
|
|
@@ -865,6 +1214,12 @@ export declare const QueryTotalSupplyResponse: {
|
|
|
865
1214
|
toProto(message: QueryTotalSupplyResponse): Uint8Array;
|
|
866
1215
|
toProtoMsg(message: QueryTotalSupplyResponse): QueryTotalSupplyResponseProtoMsg;
|
|
867
1216
|
};
|
|
1217
|
+
/**
|
|
1218
|
+
* QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method.
|
|
1219
|
+
* @name QuerySupplyOfRequest
|
|
1220
|
+
* @package cosmos.bank.v1beta1
|
|
1221
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfRequest
|
|
1222
|
+
*/
|
|
868
1223
|
export declare const QuerySupplyOfRequest: {
|
|
869
1224
|
typeUrl: string;
|
|
870
1225
|
aminoType: string;
|
|
@@ -879,6 +1234,12 @@ export declare const QuerySupplyOfRequest: {
|
|
|
879
1234
|
toProto(message: QuerySupplyOfRequest): Uint8Array;
|
|
880
1235
|
toProtoMsg(message: QuerySupplyOfRequest): QuerySupplyOfRequestProtoMsg;
|
|
881
1236
|
};
|
|
1237
|
+
/**
|
|
1238
|
+
* QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method.
|
|
1239
|
+
* @name QuerySupplyOfResponse
|
|
1240
|
+
* @package cosmos.bank.v1beta1
|
|
1241
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfResponse
|
|
1242
|
+
*/
|
|
882
1243
|
export declare const QuerySupplyOfResponse: {
|
|
883
1244
|
typeUrl: string;
|
|
884
1245
|
aminoType: string;
|
|
@@ -893,6 +1254,12 @@ export declare const QuerySupplyOfResponse: {
|
|
|
893
1254
|
toProto(message: QuerySupplyOfResponse): Uint8Array;
|
|
894
1255
|
toProtoMsg(message: QuerySupplyOfResponse): QuerySupplyOfResponseProtoMsg;
|
|
895
1256
|
};
|
|
1257
|
+
/**
|
|
1258
|
+
* QueryParamsRequest defines the request type for querying x/bank parameters.
|
|
1259
|
+
* @name QueryParamsRequest
|
|
1260
|
+
* @package cosmos.bank.v1beta1
|
|
1261
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsRequest
|
|
1262
|
+
*/
|
|
896
1263
|
export declare const QueryParamsRequest: {
|
|
897
1264
|
typeUrl: string;
|
|
898
1265
|
aminoType: string;
|
|
@@ -907,6 +1274,12 @@ export declare const QueryParamsRequest: {
|
|
|
907
1274
|
toProto(message: QueryParamsRequest): Uint8Array;
|
|
908
1275
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
909
1276
|
};
|
|
1277
|
+
/**
|
|
1278
|
+
* QueryParamsResponse defines the response type for querying x/bank parameters.
|
|
1279
|
+
* @name QueryParamsResponse
|
|
1280
|
+
* @package cosmos.bank.v1beta1
|
|
1281
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsResponse
|
|
1282
|
+
*/
|
|
910
1283
|
export declare const QueryParamsResponse: {
|
|
911
1284
|
typeUrl: string;
|
|
912
1285
|
aminoType: string;
|
|
@@ -921,6 +1294,12 @@ export declare const QueryParamsResponse: {
|
|
|
921
1294
|
toProto(message: QueryParamsResponse): Uint8Array;
|
|
922
1295
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
923
1296
|
};
|
|
1297
|
+
/**
|
|
1298
|
+
* QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method.
|
|
1299
|
+
* @name QueryDenomsMetadataRequest
|
|
1300
|
+
* @package cosmos.bank.v1beta1
|
|
1301
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataRequest
|
|
1302
|
+
*/
|
|
924
1303
|
export declare const QueryDenomsMetadataRequest: {
|
|
925
1304
|
typeUrl: string;
|
|
926
1305
|
aminoType: string;
|
|
@@ -935,6 +1314,13 @@ export declare const QueryDenomsMetadataRequest: {
|
|
|
935
1314
|
toProto(message: QueryDenomsMetadataRequest): Uint8Array;
|
|
936
1315
|
toProtoMsg(message: QueryDenomsMetadataRequest): QueryDenomsMetadataRequestProtoMsg;
|
|
937
1316
|
};
|
|
1317
|
+
/**
|
|
1318
|
+
* QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC
|
|
1319
|
+
* method.
|
|
1320
|
+
* @name QueryDenomsMetadataResponse
|
|
1321
|
+
* @package cosmos.bank.v1beta1
|
|
1322
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataResponse
|
|
1323
|
+
*/
|
|
938
1324
|
export declare const QueryDenomsMetadataResponse: {
|
|
939
1325
|
typeUrl: string;
|
|
940
1326
|
aminoType: string;
|
|
@@ -949,6 +1335,12 @@ export declare const QueryDenomsMetadataResponse: {
|
|
|
949
1335
|
toProto(message: QueryDenomsMetadataResponse): Uint8Array;
|
|
950
1336
|
toProtoMsg(message: QueryDenomsMetadataResponse): QueryDenomsMetadataResponseProtoMsg;
|
|
951
1337
|
};
|
|
1338
|
+
/**
|
|
1339
|
+
* QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method.
|
|
1340
|
+
* @name QueryDenomMetadataRequest
|
|
1341
|
+
* @package cosmos.bank.v1beta1
|
|
1342
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataRequest
|
|
1343
|
+
*/
|
|
952
1344
|
export declare const QueryDenomMetadataRequest: {
|
|
953
1345
|
typeUrl: string;
|
|
954
1346
|
aminoType: string;
|
|
@@ -963,6 +1355,13 @@ export declare const QueryDenomMetadataRequest: {
|
|
|
963
1355
|
toProto(message: QueryDenomMetadataRequest): Uint8Array;
|
|
964
1356
|
toProtoMsg(message: QueryDenomMetadataRequest): QueryDenomMetadataRequestProtoMsg;
|
|
965
1357
|
};
|
|
1358
|
+
/**
|
|
1359
|
+
* QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC
|
|
1360
|
+
* method.
|
|
1361
|
+
* @name QueryDenomMetadataResponse
|
|
1362
|
+
* @package cosmos.bank.v1beta1
|
|
1363
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataResponse
|
|
1364
|
+
*/
|
|
966
1365
|
export declare const QueryDenomMetadataResponse: {
|
|
967
1366
|
typeUrl: string;
|
|
968
1367
|
aminoType: string;
|
|
@@ -977,6 +1376,13 @@ export declare const QueryDenomMetadataResponse: {
|
|
|
977
1376
|
toProto(message: QueryDenomMetadataResponse): Uint8Array;
|
|
978
1377
|
toProtoMsg(message: QueryDenomMetadataResponse): QueryDenomMetadataResponseProtoMsg;
|
|
979
1378
|
};
|
|
1379
|
+
/**
|
|
1380
|
+
* QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method.
|
|
1381
|
+
* Identical with QueryDenomMetadataRequest but receives denom as query string.
|
|
1382
|
+
* @name QueryDenomMetadataByQueryStringRequest
|
|
1383
|
+
* @package cosmos.bank.v1beta1
|
|
1384
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest
|
|
1385
|
+
*/
|
|
980
1386
|
export declare const QueryDenomMetadataByQueryStringRequest: {
|
|
981
1387
|
typeUrl: string;
|
|
982
1388
|
aminoType: string;
|
|
@@ -991,6 +1397,13 @@ export declare const QueryDenomMetadataByQueryStringRequest: {
|
|
|
991
1397
|
toProto(message: QueryDenomMetadataByQueryStringRequest): Uint8Array;
|
|
992
1398
|
toProtoMsg(message: QueryDenomMetadataByQueryStringRequest): QueryDenomMetadataByQueryStringRequestProtoMsg;
|
|
993
1399
|
};
|
|
1400
|
+
/**
|
|
1401
|
+
* QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC
|
|
1402
|
+
* method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.
|
|
1403
|
+
* @name QueryDenomMetadataByQueryStringResponse
|
|
1404
|
+
* @package cosmos.bank.v1beta1
|
|
1405
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse
|
|
1406
|
+
*/
|
|
994
1407
|
export declare const QueryDenomMetadataByQueryStringResponse: {
|
|
995
1408
|
typeUrl: string;
|
|
996
1409
|
aminoType: string;
|
|
@@ -1005,6 +1418,14 @@ export declare const QueryDenomMetadataByQueryStringResponse: {
|
|
|
1005
1418
|
toProto(message: QueryDenomMetadataByQueryStringResponse): Uint8Array;
|
|
1006
1419
|
toProtoMsg(message: QueryDenomMetadataByQueryStringResponse): QueryDenomMetadataByQueryStringResponseProtoMsg;
|
|
1007
1420
|
};
|
|
1421
|
+
/**
|
|
1422
|
+
* QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query,
|
|
1423
|
+
* which queries for a paginated set of all account holders of a particular
|
|
1424
|
+
* denomination.
|
|
1425
|
+
* @name QueryDenomOwnersRequest
|
|
1426
|
+
* @package cosmos.bank.v1beta1
|
|
1427
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersRequest
|
|
1428
|
+
*/
|
|
1008
1429
|
export declare const QueryDenomOwnersRequest: {
|
|
1009
1430
|
typeUrl: string;
|
|
1010
1431
|
aminoType: string;
|
|
@@ -1019,6 +1440,14 @@ export declare const QueryDenomOwnersRequest: {
|
|
|
1019
1440
|
toProto(message: QueryDenomOwnersRequest): Uint8Array;
|
|
1020
1441
|
toProtoMsg(message: QueryDenomOwnersRequest): QueryDenomOwnersRequestProtoMsg;
|
|
1021
1442
|
};
|
|
1443
|
+
/**
|
|
1444
|
+
* DenomOwner defines structure representing an account that owns or holds a
|
|
1445
|
+
* particular denominated token. It contains the account address and account
|
|
1446
|
+
* balance of the denominated token.
|
|
1447
|
+
* @name DenomOwner
|
|
1448
|
+
* @package cosmos.bank.v1beta1
|
|
1449
|
+
* @see proto type: cosmos.bank.v1beta1.DenomOwner
|
|
1450
|
+
*/
|
|
1022
1451
|
export declare const DenomOwner: {
|
|
1023
1452
|
typeUrl: string;
|
|
1024
1453
|
aminoType: string;
|
|
@@ -1033,6 +1462,12 @@ export declare const DenomOwner: {
|
|
|
1033
1462
|
toProto(message: DenomOwner): Uint8Array;
|
|
1034
1463
|
toProtoMsg(message: DenomOwner): DenomOwnerProtoMsg;
|
|
1035
1464
|
};
|
|
1465
|
+
/**
|
|
1466
|
+
* QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.
|
|
1467
|
+
* @name QueryDenomOwnersResponse
|
|
1468
|
+
* @package cosmos.bank.v1beta1
|
|
1469
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersResponse
|
|
1470
|
+
*/
|
|
1036
1471
|
export declare const QueryDenomOwnersResponse: {
|
|
1037
1472
|
typeUrl: string;
|
|
1038
1473
|
aminoType: string;
|
|
@@ -1047,6 +1482,14 @@ export declare const QueryDenomOwnersResponse: {
|
|
|
1047
1482
|
toProto(message: QueryDenomOwnersResponse): Uint8Array;
|
|
1048
1483
|
toProtoMsg(message: QueryDenomOwnersResponse): QueryDenomOwnersResponseProtoMsg;
|
|
1049
1484
|
};
|
|
1485
|
+
/**
|
|
1486
|
+
* QueryDenomOwnersByQueryRequest defines the request type for the DenomOwnersByQuery RPC query,
|
|
1487
|
+
* which queries for a paginated set of all account holders of a particular
|
|
1488
|
+
* denomination.
|
|
1489
|
+
* @name QueryDenomOwnersByQueryRequest
|
|
1490
|
+
* @package cosmos.bank.v1beta1
|
|
1491
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest
|
|
1492
|
+
*/
|
|
1050
1493
|
export declare const QueryDenomOwnersByQueryRequest: {
|
|
1051
1494
|
typeUrl: string;
|
|
1052
1495
|
aminoType: string;
|
|
@@ -1061,6 +1504,12 @@ export declare const QueryDenomOwnersByQueryRequest: {
|
|
|
1061
1504
|
toProto(message: QueryDenomOwnersByQueryRequest): Uint8Array;
|
|
1062
1505
|
toProtoMsg(message: QueryDenomOwnersByQueryRequest): QueryDenomOwnersByQueryRequestProtoMsg;
|
|
1063
1506
|
};
|
|
1507
|
+
/**
|
|
1508
|
+
* QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.
|
|
1509
|
+
* @name QueryDenomOwnersByQueryResponse
|
|
1510
|
+
* @package cosmos.bank.v1beta1
|
|
1511
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse
|
|
1512
|
+
*/
|
|
1064
1513
|
export declare const QueryDenomOwnersByQueryResponse: {
|
|
1065
1514
|
typeUrl: string;
|
|
1066
1515
|
aminoType: string;
|
|
@@ -1075,6 +1524,12 @@ export declare const QueryDenomOwnersByQueryResponse: {
|
|
|
1075
1524
|
toProto(message: QueryDenomOwnersByQueryResponse): Uint8Array;
|
|
1076
1525
|
toProtoMsg(message: QueryDenomOwnersByQueryResponse): QueryDenomOwnersByQueryResponseProtoMsg;
|
|
1077
1526
|
};
|
|
1527
|
+
/**
|
|
1528
|
+
* QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.
|
|
1529
|
+
* @name QuerySendEnabledRequest
|
|
1530
|
+
* @package cosmos.bank.v1beta1
|
|
1531
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledRequest
|
|
1532
|
+
*/
|
|
1078
1533
|
export declare const QuerySendEnabledRequest: {
|
|
1079
1534
|
typeUrl: string;
|
|
1080
1535
|
aminoType: string;
|
|
@@ -1089,6 +1544,12 @@ export declare const QuerySendEnabledRequest: {
|
|
|
1089
1544
|
toProto(message: QuerySendEnabledRequest): Uint8Array;
|
|
1090
1545
|
toProtoMsg(message: QuerySendEnabledRequest): QuerySendEnabledRequestProtoMsg;
|
|
1091
1546
|
};
|
|
1547
|
+
/**
|
|
1548
|
+
* QuerySendEnabledResponse defines the RPC response of a SendEnable query.
|
|
1549
|
+
* @name QuerySendEnabledResponse
|
|
1550
|
+
* @package cosmos.bank.v1beta1
|
|
1551
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledResponse
|
|
1552
|
+
*/
|
|
1092
1553
|
export declare const QuerySendEnabledResponse: {
|
|
1093
1554
|
typeUrl: string;
|
|
1094
1555
|
aminoType: string;
|