@xpla/xpla-react 1.7.0 → 1.8.0-rc.1
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 +49 -8
- package/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/cosmos/app/v1alpha1/config.d.ts +72 -10
- package/cosmos/app/v1alpha1/config.js +31 -0
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +23 -0
- package/cosmos/app/v1alpha1/query.d.ts +42 -6
- package/cosmos/app/v1alpha1/query.js +16 -0
- package/cosmos/app/v1alpha1/query.rpc.func.d.ts +7 -2
- package/cosmos/app/v1alpha1/query.rpc.func.js +8 -4
- package/cosmos/app/v1alpha1/query.rpc.react.d.ts +6 -0
- package/cosmos/app/v1alpha1/query.rpc.react.js +7 -1
- package/cosmos/auth/module/v1/module.d.ts +60 -12
- package/cosmos/auth/module/v1/module.js +16 -0
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +34 -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 +362 -32
- package/cosmos/auth/v1beta1/query.js +169 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
- package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
- package/cosmos/auth/v1beta1/query.rpc.react.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.react.js +87 -10
- package/cosmos/auth/v1beta1/tx.d.ts +35 -2
- package/cosmos/auth/v1beta1/tx.js +21 -0
- package/cosmos/auth/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/auth/v1beta1/tx.registry.js +27 -1
- package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/auth/v1beta1/tx.rpc.react.js +10 -1
- 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 +36 -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 +10 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +55 -0
- package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
- package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
- package/cosmos/authz/v1beta1/query.rpc.react.d.ts +22 -0
- package/cosmos/authz/v1beta1/query.rpc.react.js +25 -3
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +43 -0
- package/cosmos/authz/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/authz/v1beta1/tx.registry.js +63 -1
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
- package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
- package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +27 -3
- package/cosmos/authz/v1beta1/tx.rpc.react.js +27 -3
- package/cosmos/autocli/v1/options.d.ts +208 -38
- package/cosmos/autocli/v1/options.js +54 -0
- package/cosmos/autocli/v1/query.d.ts +57 -6
- package/cosmos/autocli/v1/query.js +21 -0
- package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/autocli/v1/query.rpc.func.js +8 -4
- package/cosmos/autocli/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/autocli/v1/query.rpc.react.js +7 -1
- 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 +15 -0
- package/cosmos/bank/v1beta1/authz.js +12 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +63 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
- package/cosmos/bank/v1beta1/genesis.js +20 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +263 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
- package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
- package/cosmos/bank/v1beta1/query.rpc.react.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.react.js +128 -13
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +74 -0
- package/cosmos/bank/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/bank/v1beta1/tx.registry.js +81 -1
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
- package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
- package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +36 -4
- package/cosmos/bank/v1beta1/tx.rpc.react.js +36 -4
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/base/node/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
- package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +14 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +16 -2
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +38 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +44 -6
- package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
- package/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +46 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +53 -7
- package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
- package/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +188 -0
- package/cosmos/bundle.js +990 -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 +16 -0
- package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/consensus/v1/query.rpc.func.js +8 -4
- package/cosmos/consensus/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/consensus/v1/query.rpc.react.js +7 -1
- package/cosmos/consensus/v1/tx.d.ts +43 -6
- package/cosmos/consensus/v1/tx.js +17 -0
- package/cosmos/consensus/v1/tx.registry.d.ts +21 -0
- package/cosmos/consensus/v1/tx.registry.js +27 -1
- package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
- package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
- package/cosmos/consensus/v1/tx.rpc.react.d.ts +10 -1
- package/cosmos/consensus/v1/tx.rpc.react.js +10 -1
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -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 +132 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +164 -0
- package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
- package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
- package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +61 -0
- package/cosmos/distribution/v1beta1/query.rpc.react.js +71 -10
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +128 -0
- package/cosmos/distribution/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/distribution/v1beta1/tx.registry.js +135 -1
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
- package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +64 -7
- package/cosmos/distribution/v1beta1/tx.rpc.react.js +64 -7
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
- package/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
- package/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/cosmos/evidence/v1beta1/query.d.ts +88 -14
- package/cosmos/evidence/v1beta1/query.js +33 -0
- package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/evidence/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
- package/cosmos/evidence/v1beta1/tx.js +13 -0
- package/cosmos/evidence/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/evidence/v1beta1/tx.registry.js +27 -1
- package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
- package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
- package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +8 -1
- package/cosmos/evidence/v1beta1/tx.rpc.react.js +8 -1
- package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
- package/cosmos/evm/feemarket/v1/events.js +182 -0
- package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
- package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
- package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
- package/cosmos/evm/feemarket/v1/genesis.js +106 -0
- package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
- package/cosmos/evm/feemarket/v1/query.js +473 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.js +35 -0
- package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
- package/cosmos/evm/feemarket/v1/tx.js +177 -0
- package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
- package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.js +16 -0
- package/cosmos/evm/vm/v1/events.d.ts +286 -0
- package/cosmos/evm/vm/v1/events.js +435 -0
- package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
- package/cosmos/evm/vm/v1/evm.js +1617 -0
- package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
- package/cosmos/evm/vm/v1/genesis.js +227 -0
- package/cosmos/evm/vm/v1/query.d.ts +1773 -0
- package/cosmos/evm/vm/v1/query.js +2680 -0
- package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
- package/cosmos/evm/vm/v1/query.rpc.react.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.react.js +153 -0
- package/cosmos/evm/vm/v1/tx.d.ts +747 -0
- package/cosmos/evm/vm/v1/tx.js +1132 -0
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.d.ts +7 -7
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.js +12 -12
- package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.js +25 -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 +38 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
- package/cosmos/feegrant/v1beta1/query.js +56 -0
- package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
- package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
- package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +20 -0
- package/cosmos/feegrant/v1beta1/query.rpc.react.js +23 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/cosmos/feegrant/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/feegrant/v1beta1/tx.registry.js +63 -1
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
- package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +25 -3
- package/cosmos/feegrant/v1beta1/tx.rpc.react.js +25 -3
- 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 -16
- package/cosmos/gov/v1/genesis.js +10 -0
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +77 -0
- package/cosmos/gov/v1/query.d.ts +469 -88
- package/cosmos/gov/v1/query.js +143 -0
- package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
- package/cosmos/gov/v1/query.rpc.func.js +64 -28
- package/cosmos/gov/v1/query.rpc.react.d.ts +54 -0
- package/cosmos/gov/v1/query.rpc.react.js +63 -9
- package/cosmos/gov/v1/tx.d.ts +377 -67
- package/cosmos/gov/v1/tx.js +111 -3
- package/cosmos/gov/v1/tx.registry.d.ts +93 -0
- package/cosmos/gov/v1/tx.registry.js +135 -1
- package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
- package/cosmos/gov/v1/tx.rpc.func.js +63 -51
- package/cosmos/gov/v1/tx.rpc.react.d.ts +55 -7
- package/cosmos/gov/v1/tx.rpc.react.js +55 -7
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +10 -0
- package/cosmos/gov/v1beta1/gov.d.ts +294 -63
- package/cosmos/gov/v1beta1/gov.js +74 -3
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +131 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
- package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
- package/cosmos/gov/v1beta1/query.rpc.react.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.react.js +56 -8
- package/cosmos/gov/v1beta1/tx.d.ts +214 -39
- package/cosmos/gov/v1beta1/tx.js +62 -3
- package/cosmos/gov/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/gov/v1beta1/tx.registry.js +81 -1
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
- package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
- package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +30 -4
- package/cosmos/gov/v1beta1/tx.rpc.react.js +30 -4
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +169 -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 +10 -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 +43 -0
- package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/mint/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/mint/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/mint/v1beta1/tx.d.ts +35 -2
- package/cosmos/mint/v1beta1/tx.js +21 -0
- package/cosmos/mint/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/mint/v1beta1/tx.registry.js +27 -1
- package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/mint/v1beta1/tx.rpc.react.js +10 -1
- 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 +16 -0
- package/cosmos/params/v1beta1/query.d.ts +99 -10
- package/cosmos/params/v1beta1/query.js +46 -0
- package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
- package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
- package/cosmos/params/v1beta1/query.rpc.react.d.ts +15 -0
- package/cosmos/params/v1beta1/query.rpc.react.js +17 -2
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
- package/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/cosmos/slashing/v1beta1/query.d.ts +106 -10
- package/cosmos/slashing/v1beta1/query.js +53 -0
- package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/slashing/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
- package/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
- package/cosmos/slashing/v1beta1/tx.js +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.js +45 -1
- package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/slashing/v1beta1/tx.rpc.react.js +19 -2
- 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 +44 -6
- package/cosmos/staking/v1beta1/authz.js +17 -0
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +16 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +250 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
- package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
- package/cosmos/staking/v1beta1/query.rpc.react.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.react.js +123 -14
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +186 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +120 -0
- package/cosmos/staking/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/staking/v1beta1/tx.registry.js +135 -1
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
- package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
- package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +57 -7
- package/cosmos/staking/v1beta1/tx.rpc.react.js +57 -7
- 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 +46 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +176 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
- package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
- package/cosmos/tx/v1beta1/service.rpc.react.d.ts +67 -3
- package/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +127 -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 +172 -14
- package/cosmos/upgrade/v1beta1/query.js +85 -0
- package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
- package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
- package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +40 -0
- package/cosmos/upgrade/v1beta1/query.rpc.react.js +45 -5
- package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
- package/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/cosmos/upgrade/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/upgrade/v1beta1/tx.registry.js +45 -1
- package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/upgrade/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/cosmos_proto/bundle.d.ts +1 -0
- package/cosmos_proto/bundle.js +8 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +12 -0
- package/cosmwasm/bundle.js +174 -0
- package/cosmwasm/wasm/v1/authz.d.ts +212 -22
- package/cosmwasm/wasm/v1/authz.js +113 -0
- package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
- package/cosmwasm/wasm/v1/genesis.js +34 -0
- package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
- package/cosmwasm/wasm/v1/ibc.js +24 -0
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/cosmwasm/wasm/v1/query.d.ts +761 -76
- package/cosmwasm/wasm/v1/query.js +581 -1
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
- package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
- package/cosmwasm/wasm/v1/query.rpc.react.d.ts +88 -1
- package/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +267 -0
- package/cosmwasm/wasm/v1/tx.registry.d.ts +213 -0
- package/cosmwasm/wasm/v1/tx.registry.js +315 -1
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
- package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
- package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +145 -17
- package/cosmwasm/wasm/v1/tx.rpc.react.js +161 -33
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/esm/cosmos/app/v1alpha1/config.js +31 -0
- package/esm/cosmos/app/v1alpha1/module.js +23 -0
- package/esm/cosmos/app/v1alpha1/query.js +16 -0
- package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
- package/esm/cosmos/app/v1alpha1/query.rpc.react.js +8 -2
- package/esm/cosmos/auth/module/v1/module.js +16 -0
- package/esm/cosmos/auth/v1beta1/auth.js +34 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +169 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
- package/esm/cosmos/auth/v1beta1/query.rpc.react.js +88 -11
- package/esm/cosmos/auth/v1beta1/tx.js +21 -0
- package/esm/cosmos/auth/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +36 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
- package/esm/cosmos/authz/v1beta1/query.js +55 -0
- package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.react.js +26 -4
- package/esm/cosmos/authz/v1beta1/tx.js +43 -0
- package/esm/cosmos/authz/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
- package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +28 -4
- package/esm/cosmos/autocli/v1/options.js +54 -0
- package/esm/cosmos/autocli/v1/query.js +21 -0
- package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/autocli/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +12 -0
- package/esm/cosmos/bank/v1beta1/bank.js +63 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
- package/esm/cosmos/bank/v1beta1/query.js +263 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
- package/esm/cosmos/bank/v1beta1/query.rpc.react.js +129 -14
- package/esm/cosmos/bank/v1beta1/tx.js +74 -0
- package/esm/cosmos/bank/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
- package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +37 -5
- package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +17 -3
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +45 -7
- package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +54 -8
- package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +188 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +16 -0
- package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/consensus/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/consensus/v1/tx.js +17 -0
- package/esm/cosmos/consensus/v1/tx.registry.js +26 -0
- package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
- package/esm/cosmos/consensus/v1/tx.rpc.react.js +11 -2
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/esm/cosmos/distribution/v1beta1/query.js +164 -0
- package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
- package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +72 -11
- package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
- package/esm/cosmos/distribution/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
- package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +65 -8
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/esm/cosmos/evidence/v1beta1/query.js +33 -0
- package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
- package/esm/cosmos/evidence/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
- package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +9 -2
- package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
- package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
- package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
- package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.react.js +32 -0
- package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
- package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.react.js +13 -0
- package/esm/cosmos/evm/vm/v1/events.js +432 -0
- package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
- package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
- package/esm/cosmos/evm/vm/v1/query.js +2677 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.react.js +150 -0
- package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
- package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.react.js +22 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
- package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
- package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +24 -4
- package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/esm/cosmos/feegrant/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +26 -4
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +10 -0
- package/esm/cosmos/gov/v1/gov.js +77 -0
- package/esm/cosmos/gov/v1/query.js +143 -0
- package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
- package/esm/cosmos/gov/v1/query.rpc.react.js +64 -10
- package/esm/cosmos/gov/v1/tx.js +111 -3
- package/esm/cosmos/gov/v1/tx.registry.js +134 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
- package/esm/cosmos/gov/v1/tx.rpc.react.js +56 -8
- package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
- package/esm/cosmos/gov/v1beta1/gov.js +74 -3
- package/esm/cosmos/gov/v1beta1/query.js +131 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
- package/esm/cosmos/gov/v1beta1/query.rpc.react.js +57 -9
- package/esm/cosmos/gov/v1beta1/tx.js +62 -3
- package/esm/cosmos/gov/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
- package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +31 -5
- package/esm/cosmos/ics23/v1/proofs.js +169 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +43 -0
- package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/mint/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/mint/v1beta1/tx.js +21 -0
- package/esm/cosmos/mint/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +16 -0
- package/esm/cosmos/params/v1beta1/query.js +46 -0
- package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
- package/esm/cosmos/params/v1beta1/query.rpc.react.js +18 -3
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/esm/cosmos/slashing/v1beta1/query.js +53 -0
- package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
- package/esm/cosmos/slashing/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +17 -0
- package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
- package/esm/cosmos/staking/v1beta1/query.js +250 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
- package/esm/cosmos/staking/v1beta1/query.rpc.react.js +124 -15
- package/esm/cosmos/staking/v1beta1/staking.js +186 -0
- package/esm/cosmos/staking/v1beta1/tx.js +120 -0
- package/esm/cosmos/staking/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
- package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +58 -8
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/esm/cosmos/tx/v1beta1/service.js +176 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
- package/esm/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/esm/cosmos/tx/v1beta1/tx.js +127 -0
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
- package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
- package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +46 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/esm/cosmos/upgrade/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/esm/cosmos_proto/bundle.js +1 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +12 -0
- package/esm/cosmwasm/wasm/v1/authz.js +113 -0
- package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
- package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/esm/cosmwasm/wasm/v1/query.js +580 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
- package/esm/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/esm/cosmwasm/wasm/v1/tx.js +267 -0
- package/esm/cosmwasm/wasm/v1/tx.registry.js +314 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
- package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +162 -34
- package/esm/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/ethermint/bundle.js +25 -0
- package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/esm/ethermint/evm/v1/events.js +24 -0
- package/esm/ethermint/evm/v1/evm.js +69 -0
- package/esm/ethermint/evm/v1/genesis.js +21 -0
- package/esm/ethermint/evm/v1/query.js +167 -0
- package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
- package/esm/ethermint/evm/v1/query.rpc.react.js +88 -13
- package/esm/ethermint/evm/v1/tx.js +66 -0
- package/esm/ethermint/evm/v1/tx.registry.js +44 -0
- package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
- package/esm/ethermint/evm/v1/tx.rpc.react.js +16 -3
- package/esm/ethermint/feemarket/v1/events.js +12 -0
- package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
- package/esm/ethermint/feemarket/v1/genesis.js +10 -0
- package/esm/ethermint/feemarket/v1/query.js +42 -0
- package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
- package/esm/ethermint/feemarket/v1/query.rpc.react.js +22 -4
- package/esm/ethermint/feemarket/v1/tx.js +17 -0
- package/esm/ethermint/feemarket/v1/tx.registry.js +26 -0
- package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
- package/esm/ethermint/feemarket/v1/tx.rpc.react.js +9 -2
- package/esm/ethermint/types/v1/account.js +10 -0
- package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
- package/esm/ethermint/types/v1/indexer.js +6 -0
- package/esm/ethermint/types/v1/web3.js +7 -0
- package/esm/extern.js +14 -4
- package/esm/google/api/http.js +290 -0
- package/esm/google/bundle.js +5 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +553 -11
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +14 -22
- 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 +28 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +62 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +8 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -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/transfer/v1/authz.js +19 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
- package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/esm/ibc/applications/transfer/v1/query.js +270 -175
- package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
- package/esm/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/esm/ibc/applications/transfer/v1/token.js +300 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
- package/esm/ibc/applications/transfer/v1/tx.js +49 -3
- package/esm/ibc/applications/transfer/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/bundle.js +94 -0
- package/esm/ibc/core/channel/v1/channel.js +84 -124
- package/esm/ibc/core/channel/v1/genesis.js +21 -17
- package/esm/ibc/core/channel/v1/query.js +252 -530
- package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
- package/esm/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/esm/ibc/core/channel/v1/tx.js +164 -1970
- package/esm/ibc/core/channel/v1/tx.registry.js +190 -2
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
- package/esm/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/esm/ibc/core/channel/v2/genesis.js +360 -0
- package/esm/ibc/core/channel/v2/packet.js +508 -0
- package/esm/ibc/core/channel/v2/query.js +1727 -0
- package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
- package/esm/ibc/core/channel/v2/query.rpc.react.js +82 -0
- package/esm/ibc/core/channel/v2/tx.js +901 -0
- package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
- package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
- package/esm/ibc/core/channel/v2/tx.rpc.react.js +38 -0
- package/esm/ibc/core/client/v1/client.js +50 -235
- package/esm/ibc/core/client/v1/genesis.js +27 -0
- package/esm/ibc/core/client/v1/query.js +355 -16
- package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
- package/esm/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/esm/ibc/core/client/v1/tx.js +279 -7
- package/esm/ibc/core/client/v1/tx.registry.js +154 -2
- package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
- package/esm/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/esm/ibc/core/client/v2/config.js +90 -0
- package/esm/ibc/core/client/v2/counterparty.js +100 -0
- package/esm/ibc/core/client/v2/genesis.js +194 -0
- package/esm/ibc/core/client/v2/query.js +348 -0
- package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
- package/esm/ibc/core/client/v2/query.rpc.react.js +22 -0
- package/esm/ibc/core/client/v2/tx.js +378 -0
- package/esm/ibc/core/client/v2/tx.registry.js +46 -0
- package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
- package/esm/ibc/core/client/v2/tx.rpc.react.js +20 -0
- package/esm/ibc/core/commitment/v1/commitment.js +29 -80
- package/esm/ibc/core/commitment/v2/commitment.js +118 -0
- package/esm/ibc/core/connection/v1/connection.js +57 -0
- package/esm/ibc/core/connection/v1/genesis.js +10 -0
- package/esm/ibc/core/connection/v1/query.js +105 -0
- package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
- package/esm/ibc/core/connection/v1/query.rpc.react.js +46 -7
- package/esm/ibc/core/connection/v1/tx.js +82 -0
- package/esm/ibc/core/connection/v1/tx.registry.js +98 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
- package/esm/ibc/core/connection/v1/tx.rpc.react.js +38 -6
- package/esm/ibc/core/types/v1/genesis.js +41 -3
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
- package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
- package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +15 -3
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/tx.registry.js +62 -0
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/esm/index.js +21 -0
- package/esm/react-query.js +4 -6
- package/esm/registry.js +9 -1
- package/esm/tendermint/abci/types.js +322 -0
- package/esm/tendermint/bundle.js +10 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +36 -0
- package/esm/tendermint/p2p/types.js +24 -0
- package/esm/tendermint/types/block.js +9 -0
- package/esm/tendermint/types/evidence.js +35 -0
- package/esm/tendermint/types/params.js +50 -0
- package/esm/tendermint/types/types.js +121 -0
- package/esm/tendermint/types/validator.js +25 -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/esm/xpla/bundle.js +28 -0
- package/esm/xpla/burn/v1beta1/burn.js +111 -0
- package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/esm/xpla/burn/v1beta1/query.js +327 -0
- package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
- package/esm/xpla/burn/v1beta1/query.rpc.react.js +22 -0
- package/esm/xpla/burn/v1beta1/tx.js +169 -0
- package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.react.js +11 -0
- package/esm/xpla/reward/v1beta1/genesis.js +10 -0
- package/esm/xpla/reward/v1beta1/query.js +33 -0
- package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
- package/esm/xpla/reward/v1beta1/query.rpc.react.js +15 -3
- package/esm/xpla/reward/v1beta1/reward.js +6 -0
- package/esm/xpla/reward/v1beta1/tx.js +35 -0
- package/esm/xpla/reward/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
- package/esm/xpla/reward/v1beta1/tx.rpc.react.js +18 -3
- package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/esm/xpla/volunteer/v1beta1/query.js +12 -0
- package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
- package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +8 -2
- package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
- package/esm/xpla/volunteer/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
- package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +16 -3
- package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/ethermint/bundle.d.ts +25 -0
- package/ethermint/bundle.js +142 -0
- package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
- package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/ethermint/evm/v1/events.d.ts +144 -32
- package/ethermint/evm/v1/events.js +24 -0
- package/ethermint/evm/v1/evm.d.ts +434 -110
- package/ethermint/evm/v1/evm.js +69 -0
- package/ethermint/evm/v1/genesis.d.ts +62 -12
- package/ethermint/evm/v1/genesis.js +21 -0
- package/ethermint/evm/v1/query.d.ts +673 -126
- package/ethermint/evm/v1/query.js +167 -0
- package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
- package/ethermint/evm/v1/query.rpc.func.js +88 -37
- package/ethermint/evm/v1/query.rpc.react.d.ts +75 -0
- package/ethermint/evm/v1/query.rpc.react.js +87 -12
- package/ethermint/evm/v1/tx.d.ts +363 -88
- package/ethermint/evm/v1/tx.js +66 -0
- package/ethermint/evm/v1/tx.registry.d.ts +33 -0
- package/ethermint/evm/v1/tx.registry.js +45 -1
- package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
- package/ethermint/evm/v1/tx.rpc.func.js +18 -16
- package/ethermint/evm/v1/tx.rpc.react.d.ts +15 -2
- package/ethermint/evm/v1/tx.rpc.react.js +15 -2
- package/ethermint/feemarket/v1/events.d.ts +54 -10
- package/ethermint/feemarket/v1/events.js +12 -0
- package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
- package/ethermint/feemarket/v1/feemarket.js +6 -0
- package/ethermint/feemarket/v1/genesis.d.ts +24 -4
- package/ethermint/feemarket/v1/genesis.js +10 -0
- package/ethermint/feemarket/v1/query.d.ts +116 -14
- package/ethermint/feemarket/v1/query.js +42 -0
- package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
- package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
- package/ethermint/feemarket/v1/query.rpc.react.d.ts +18 -0
- package/ethermint/feemarket/v1/query.rpc.react.js +21 -3
- package/ethermint/feemarket/v1/tx.d.ts +37 -4
- package/ethermint/feemarket/v1/tx.js +17 -0
- package/ethermint/feemarket/v1/tx.registry.d.ts +21 -0
- package/ethermint/feemarket/v1/tx.registry.js +27 -1
- package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
- package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
- package/ethermint/feemarket/v1/tx.rpc.react.d.ts +8 -1
- package/ethermint/feemarket/v1/tx.rpc.react.js +8 -1
- package/ethermint/types/v1/account.d.ts +25 -4
- package/ethermint/types/v1/account.js +10 -0
- package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
- package/ethermint/types/v1/dynamic_fee.js +6 -0
- package/ethermint/types/v1/indexer.d.ts +42 -10
- package/ethermint/types/v1/indexer.js +6 -0
- package/ethermint/types/v1/web3.d.ts +13 -0
- package/ethermint/types/v1/web3.js +7 -0
- package/extern.d.ts +3 -2
- package/extern.js +14 -4
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +290 -0
- package/google/bundle.d.ts +5 -0
- package/google/bundle.js +21 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +833 -86
- package/google/protobuf/descriptor.js +561 -13
- 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/helper-func-types.d.ts +7 -87
- package/helper-func-types.js +15 -24
- 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 +28 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +12 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +45 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +63 -1
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +21 -3
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -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 +16 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +6 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +7 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +45 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +9 -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/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +19 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
- package/ibc/applications/transfer/v1/denomtrace.js +101 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
- package/ibc/applications/transfer/v1/genesis.js +23 -12
- package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
- package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/ibc/applications/transfer/v1/query.d.ts +389 -170
- package/ibc/applications/transfer/v1/query.js +270 -175
- package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
- package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
- package/ibc/applications/transfer/v1/query.rpc.react.d.ts +39 -3
- package/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/ibc/applications/transfer/v1/token.d.ts +179 -0
- package/ibc/applications/transfer/v1/token.js +303 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
- package/ibc/applications/transfer/v1/transfer.js +10 -90
- package/ibc/applications/transfer/v1/tx.d.ts +127 -24
- package/ibc/applications/transfer/v1/tx.js +49 -3
- package/ibc/applications/transfer/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/transfer/v1/tx.registry.js +45 -1
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/transfer/v1/tx.rpc.react.js +14 -2
- package/ibc/bundle.d.ts +94 -0
- package/ibc/bundle.js +540 -0
- package/ibc/core/channel/v1/channel.d.ts +293 -120
- package/ibc/core/channel/v1/channel.js +85 -125
- package/ibc/core/channel/v1/genesis.d.ts +38 -7
- package/ibc/core/channel/v1/genesis.js +20 -16
- package/ibc/core/channel/v1/query.d.ts +840 -378
- package/ibc/core/channel/v1/query.js +252 -530
- package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
- package/ibc/core/channel/v1/query.rpc.func.js +107 -70
- package/ibc/core/channel/v1/query.rpc.react.d.ts +93 -4
- package/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/ibc/core/channel/v1/tx.d.ts +335 -747
- package/ibc/core/channel/v1/tx.js +164 -1970
- package/ibc/core/channel/v1/tx.registry.d.ts +129 -0
- package/ibc/core/channel/v1/tx.registry.js +190 -2
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
- package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
- package/ibc/core/channel/v1/tx.rpc.react.d.ts +72 -20
- package/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/ibc/core/channel/v2/genesis.d.ts +202 -0
- package/ibc/core/channel/v2/genesis.js +363 -0
- package/ibc/core/channel/v2/packet.d.ts +322 -0
- package/ibc/core/channel/v2/packet.js +513 -0
- package/ibc/core/channel/v2/query.d.ts +1067 -0
- package/ibc/core/channel/v2/query.js +1730 -0
- package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.func.js +109 -0
- package/ibc/core/channel/v2/query.rpc.react.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.react.js +85 -0
- package/ibc/core/channel/v2/tx.d.ts +437 -0
- package/ibc/core/channel/v2/tx.js +906 -0
- package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
- package/ibc/core/channel/v2/tx.registry.js +85 -0
- package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
- package/ibc/core/channel/v2/tx.rpc.react.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.react.js +41 -0
- package/ibc/core/client/v1/client.d.ts +133 -153
- package/ibc/core/client/v1/client.js +51 -236
- package/ibc/core/client/v1/genesis.d.ts +86 -20
- package/ibc/core/client/v1/genesis.js +27 -0
- package/ibc/core/client/v1/query.d.ts +591 -75
- package/ibc/core/client/v1/query.js +356 -17
- package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
- package/ibc/core/client/v1/query.rpc.func.js +86 -31
- package/ibc/core/client/v1/query.rpc.react.d.ts +70 -1
- package/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/ibc/core/client/v1/tx.d.ts +454 -60
- package/ibc/core/client/v1/tx.js +280 -8
- package/ibc/core/client/v1/tx.registry.d.ts +105 -0
- package/ibc/core/client/v1/tx.registry.js +154 -2
- package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
- package/ibc/core/client/v1/tx.rpc.func.js +73 -58
- package/ibc/core/client/v1/tx.rpc.react.d.ts +57 -8
- package/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/ibc/core/client/v2/config.d.ts +66 -0
- package/ibc/core/client/v2/config.js +93 -0
- package/ibc/core/client/v2/counterparty.d.ts +65 -0
- package/ibc/core/client/v2/counterparty.js +103 -0
- package/ibc/core/client/v2/genesis.d.ts +121 -0
- package/ibc/core/client/v2/genesis.js +197 -0
- package/ibc/core/client/v2/query.d.ts +218 -0
- package/ibc/core/client/v2/query.js +351 -0
- package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.func.js +31 -0
- package/ibc/core/client/v2/query.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.react.js +25 -0
- package/ibc/core/client/v2/tx.d.ts +251 -0
- package/ibc/core/client/v2/tx.js +381 -0
- package/ibc/core/client/v2/tx.registry.d.ts +35 -0
- package/ibc/core/client/v2/tx.registry.js +49 -0
- package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.func.js +23 -0
- package/ibc/core/client/v2/tx.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.react.js +23 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -41
- package/ibc/core/commitment/v1/commitment.js +30 -81
- package/ibc/core/commitment/v2/commitment.d.ts +141 -0
- package/ibc/core/commitment/v2/commitment.js +121 -0
- package/ibc/core/connection/v1/connection.d.ts +199 -38
- package/ibc/core/connection/v1/connection.js +57 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +10 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +105 -0
- package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
- package/ibc/core/connection/v1/query.rpc.func.js +46 -19
- package/ibc/core/connection/v1/query.rpc.react.d.ts +39 -0
- package/ibc/core/connection/v1/query.rpc.react.js +45 -6
- package/ibc/core/connection/v1/tx.d.ts +254 -32
- package/ibc/core/connection/v1/tx.js +82 -0
- package/ibc/core/connection/v1/tx.registry.d.ts +69 -0
- package/ibc/core/connection/v1/tx.registry.js +99 -1
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
- package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
- package/ibc/core/connection/v1/tx.rpc.react.d.ts +37 -5
- package/ibc/core/connection/v1/tx.rpc.react.js +37 -5
- package/ibc/core/types/v1/genesis.d.ts +56 -8
- package/ibc/core/types/v1/genesis.js +41 -3
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
- package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
- package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
- package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +31 -0
- package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
- package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
- package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +12 -0
- package/ibc/lightclients/wasm/v1/query.rpc.react.js +14 -2
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/tx.registry.d.ts +45 -0
- package/ibc/lightclients/wasm/v1/tx.registry.js +63 -1
- package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
- package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/lightclients/wasm/v1/tx.rpc.react.js +21 -3
- package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
- package/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/index.d.ts +21 -0
- package/index.js +37 -0
- package/package.json +8 -9
- package/react-query.d.ts +8 -6
- package/react-query.js +5 -7
- package/registry.d.ts +3 -1
- package/registry.js +9 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +322 -0
- package/tendermint/bundle.d.ts +10 -0
- package/tendermint/bundle.js +115 -0
- 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 +36 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +24 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +9 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +35 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +50 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +121 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +25 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +4 -49
- 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/xpla/bundle.d.ts +28 -0
- package/xpla/bundle.js +71 -0
- package/xpla/burn/v1beta1/burn.d.ts +54 -0
- package/xpla/burn/v1beta1/burn.js +114 -0
- package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
- package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/xpla/burn/v1beta1/query.d.ts +204 -0
- package/xpla/burn/v1beta1/query.js +330 -0
- package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
- package/xpla/burn/v1beta1/query.rpc.react.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.react.js +25 -0
- package/xpla/burn/v1beta1/tx.d.ts +105 -0
- package/xpla/burn/v1beta1/tx.js +172 -0
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.d.ts +6 -6
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.js +9 -9
- package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
- package/xpla/burn/v1beta1/tx.rpc.react.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.react.js +14 -0
- package/xpla/reward/v1beta1/genesis.d.ts +24 -4
- package/xpla/reward/v1beta1/genesis.js +10 -0
- package/xpla/reward/v1beta1/query.d.ts +74 -8
- package/xpla/reward/v1beta1/query.js +33 -0
- package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
- package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
- package/xpla/reward/v1beta1/query.rpc.react.d.ts +12 -0
- package/xpla/reward/v1beta1/query.rpc.react.js +14 -2
- package/xpla/reward/v1beta1/reward.d.ts +18 -2
- package/xpla/reward/v1beta1/reward.js +6 -0
- package/xpla/reward/v1beta1/tx.d.ts +64 -4
- package/xpla/reward/v1beta1/tx.js +35 -0
- package/xpla/reward/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/reward/v1beta1/tx.registry.js +45 -1
- package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
- package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
- package/xpla/reward/v1beta1/tx.rpc.react.d.ts +17 -2
- package/xpla/reward/v1beta1/tx.rpc.react.js +17 -2
- package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
- package/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
- package/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/xpla/volunteer/v1beta1/query.d.ts +36 -4
- package/xpla/volunteer/v1beta1/query.js +12 -0
- package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
- package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
- package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +6 -0
- package/xpla/volunteer/v1beta1/query.rpc.react.js +7 -1
- package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
- package/xpla/volunteer/v1beta1/tx.js +31 -0
- package/xpla/volunteer/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/volunteer/v1beta1/tx.registry.js +45 -1
- package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
- package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
- package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +15 -2
- package/xpla/volunteer/v1beta1/tx.rpc.react.js +15 -2
- package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
- package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/cosmos/app/runtime/v2/module.d.ts +0 -231
- package/cosmos/app/runtime/v2/module.js +0 -421
- package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
- package/cosmos/auth/v1beta1/accounts.js +0 -161
- package/cosmos/base/grpc/v2/service.d.ts +0 -168
- package/cosmos/base/grpc/v2/service.js +0 -394
- package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
- package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
- package/cosmos/base/grpc/v2/service.rpc.react.d.ts +0 -3
- package/cosmos/base/grpc/v2/service.rpc.react.js +0 -13
- package/cosmos/circuit/module/v1/module.d.ts +0 -36
- package/cosmos/circuit/module/v1/module.js +0 -83
- package/cosmos/circuit/v1/query.d.ts +0 -200
- package/cosmos/circuit/v1/query.js +0 -480
- package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/query.rpc.func.js +0 -42
- package/cosmos/circuit/v1/tx.d.ts +0 -251
- package/cosmos/circuit/v1/tx.js +0 -528
- package/cosmos/circuit/v1/tx.registry.d.ts +0 -47
- package/cosmos/circuit/v1/tx.registry.js +0 -67
- package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/tx.rpc.func.js +0 -37
- package/cosmos/circuit/v1/types.d.ts +0 -151
- package/cosmos/circuit/v1/types.js +0 -350
- package/cosmos/crisis/module/v1/module.d.ts +0 -40
- package/cosmos/crisis/module/v1/module.js +0 -95
- package/cosmos/crisis/v1beta1/genesis.js +0 -84
- package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
- package/cosmos/crisis/v1beta1/tx.js +0 -328
- package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -6
- package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -27
- package/cosmos/crypto/ed25519/keys.d.ts +0 -84
- package/cosmos/crypto/ed25519/keys.js +0 -162
- package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
- package/cosmos/crypto/hd/v1/hd.js +0 -131
- package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
- package/cosmos/crypto/keyring/v1/record.js +0 -431
- package/cosmos/crypto/multisig/keys.d.ts +0 -45
- package/cosmos/crypto/multisig/keys.js +0 -99
- package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
- package/cosmos/crypto/secp256k1/keys.js +0 -162
- package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
- package/cosmos/crypto/secp256r1/keys.js +0 -162
- package/cosmos/genutil/module/v1/module.d.ts +0 -32
- package/cosmos/genutil/module/v1/module.js +0 -70
- package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
- package/cosmos/group/module/v1/module.d.ts +0 -53
- package/cosmos/group/module/v1/module.js +0 -96
- package/cosmos/group/v1/events.d.ts +0 -363
- package/cosmos/group/v1/events.js +0 -847
- package/cosmos/group/v1/genesis.d.ts +0 -83
- package/cosmos/group/v1/genesis.js +0 -183
- package/cosmos/group/v1/query.d.ts +0 -1044
- package/cosmos/group/v1/query.js +0 -2434
- package/cosmos/group/v1/query.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/query.rpc.func.js +0 -174
- package/cosmos/group/v1/tx.d.ts +0 -1140
- package/cosmos/group/v1/tx.js +0 -2567
- package/cosmos/group/v1/tx.registry.d.ts +0 -179
- package/cosmos/group/v1/tx.registry.js +0 -265
- package/cosmos/group/v1/tx.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/tx.rpc.func.js +0 -147
- package/cosmos/group/v1/types.d.ts +0 -799
- package/cosmos/group/v1/types.js +0 -1542
- package/cosmos/msg/textual/v1/textual.d.ts +0 -1
- package/cosmos/msg/textual/v1/textual.js +0 -2
- package/cosmos/nft/module/v1/module.d.ts +0 -32
- package/cosmos/nft/module/v1/module.js +0 -70
- package/cosmos/nft/v1beta1/event.d.ts +0 -132
- package/cosmos/nft/v1beta1/event.js +0 -323
- package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
- package/cosmos/nft/v1beta1/genesis.js +0 -195
- package/cosmos/nft/v1beta1/nft.d.ts +0 -111
- package/cosmos/nft/v1beta1/nft.js +0 -282
- package/cosmos/nft/v1beta1/query.d.ts +0 -508
- package/cosmos/nft/v1beta1/query.js +0 -1189
- package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -16
- package/cosmos/nft/v1beta1/query.rpc.func.js +0 -90
- package/cosmos/nft/v1beta1/tx.d.ts +0 -78
- package/cosmos/nft/v1beta1/tx.js +0 -184
- package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -4
- package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -17
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
- package/cosmos/orm/module/v1alpha1/module.js +0 -70
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
- package/cosmos/orm/query/v1alpha1/query.js +0 -751
- package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -6
- package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -30
- package/cosmos/orm/v1/orm.d.ts +0 -278
- package/cosmos/orm/v1/orm.js +0 -380
- package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
- package/cosmos/orm/v1alpha1/schema.js +0 -258
- package/cosmos/reflection/v1/reflection.d.ts +0 -67
- package/cosmos/reflection/v1/reflection.js +0 -152
- package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -4
- package/cosmos/reflection/v1/reflection.rpc.func.js +0 -18
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
- package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
- package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
- package/cosmos/store/snapshots/v1/snapshot.js +0 -687
- package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
- package/cosmos/store/snapshots/v2/snapshot.js +0 -687
- package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
- package/cosmos/store/streaming/abci/grpc.js +0 -332
- package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
- package/cosmos/store/v1beta1/commit_info.js +0 -292
- package/cosmos/store/v1beta1/listening.d.ts +0 -101
- package/cosmos/store/v1beta1/listening.js +0 -223
- package/cosmos/streaming/v1/grpc.d.ts +0 -302
- package/cosmos/streaming/v1/grpc.js +0 -826
- package/cosmos/validate/module/v1/module.d.ts +0 -32
- package/cosmos/validate/module/v1/module.js +0 -70
- package/cosmos/vesting/module/v1/module.d.ts +0 -32
- package/cosmos/vesting/module/v1/module.js +0 -70
- package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
- package/cosmos/vesting/v1beta1/tx.js +0 -553
- package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -47
- package/cosmos/vesting/v1beta1/tx.registry.js +0 -67
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -8
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -37
- package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
- package/cosmos/vesting/v1beta1/vesting.js +0 -586
- package/dist/package.json +0 -50
- package/esm/cosmos/app/runtime/v2/module.js +0 -418
- package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
- package/esm/cosmos/base/grpc/v2/service.js +0 -391
- package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
- package/esm/cosmos/base/grpc/v2/service.rpc.react.js +0 -10
- package/esm/cosmos/circuit/module/v1/module.js +0 -80
- package/esm/cosmos/circuit/v1/query.js +0 -477
- package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -36
- package/esm/cosmos/circuit/v1/tx.js +0 -525
- package/esm/cosmos/circuit/v1/tx.registry.js +0 -64
- package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -31
- package/esm/cosmos/circuit/v1/types.js +0 -345
- package/esm/cosmos/crisis/module/v1/module.js +0 -92
- package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
- package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
- package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -46
- package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -22
- package/esm/cosmos/crypto/ed25519/keys.js +0 -159
- package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
- package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
- package/esm/cosmos/crypto/multisig/keys.js +0 -96
- package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
- package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
- package/esm/cosmos/genutil/module/v1/module.js +0 -67
- package/esm/cosmos/group/module/v1/module.js +0 -93
- package/esm/cosmos/group/v1/events.js +0 -844
- package/esm/cosmos/group/v1/genesis.js +0 -180
- package/esm/cosmos/group/v1/query.js +0 -2431
- package/esm/cosmos/group/v1/query.rpc.func.js +0 -157
- package/esm/cosmos/group/v1/tx.js +0 -2562
- package/esm/cosmos/group/v1/tx.registry.js +0 -262
- package/esm/cosmos/group/v1/tx.rpc.func.js +0 -130
- package/esm/cosmos/group/v1/types.js +0 -1533
- package/esm/cosmos/msg/textual/v1/textual.js +0 -1
- package/esm/cosmos/nft/module/v1/module.js +0 -67
- package/esm/cosmos/nft/v1beta1/event.js +0 -320
- package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
- package/esm/cosmos/nft/v1beta1/nft.js +0 -279
- package/esm/cosmos/nft/v1beta1/query.js +0 -1186
- package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -80
- package/esm/cosmos/nft/v1beta1/tx.js +0 -181
- package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -28
- package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -25
- package/esm/cosmos/orm/v1/orm.js +0 -377
- package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
- package/esm/cosmos/reflection/v1/reflection.js +0 -149
- package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -14
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
- package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
- package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
- package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
- package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
- package/esm/cosmos/store/v1beta1/listening.js +0 -220
- package/esm/cosmos/streaming/v1/grpc.js +0 -823
- package/esm/cosmos/validate/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
- package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -64
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -31
- package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
- package/esm/ibc/applications/fee/v1/ack.js +0 -103
- package/esm/ibc/applications/fee/v1/fee.js +0 -398
- package/esm/ibc/applications/fee/v1/genesis.js +0 -531
- package/esm/ibc/applications/fee/v1/metadata.js +0 -90
- package/esm/ibc/applications/fee/v1/query.js +0 -1739
- package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
- package/esm/ibc/applications/fee/v1/query.rpc.react.js +0 -42
- package/esm/ibc/applications/fee/v1/tx.js +0 -707
- package/esm/ibc/applications/fee/v1/tx.registry.js +0 -2
- package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
- package/esm/ibc/applications/fee/v1/tx.rpc.react.js +0 -14
- package/esm/ibc/core/channel/v1/upgrade.js +0 -300
- package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
- package/ibc/applications/fee/v1/ack.d.ts +0 -45
- package/ibc/applications/fee/v1/ack.js +0 -106
- package/ibc/applications/fee/v1/fee.d.ts +0 -164
- package/ibc/applications/fee/v1/fee.js +0 -401
- package/ibc/applications/fee/v1/genesis.d.ts +0 -225
- package/ibc/applications/fee/v1/genesis.js +0 -534
- package/ibc/applications/fee/v1/metadata.d.ts +0 -47
- package/ibc/applications/fee/v1/metadata.js +0 -93
- package/ibc/applications/fee/v1/query.d.ts +0 -757
- package/ibc/applications/fee/v1/query.js +0 -1742
- package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
- package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
- package/ibc/applications/fee/v1/query.rpc.react.d.ts +0 -11
- package/ibc/applications/fee/v1/query.rpc.react.js +0 -45
- package/ibc/applications/fee/v1/tx.d.ts +0 -326
- package/ibc/applications/fee/v1/tx.js +0 -710
- package/ibc/applications/fee/v1/tx.registry.d.ts +0 -2
- package/ibc/applications/fee/v1/tx.registry.js +0 -5
- package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
- package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
- package/ibc/applications/fee/v1/tx.rpc.react.d.ts +0 -5
- package/ibc/applications/fee/v1/tx.rpc.react.js +0 -17
- package/ibc/core/channel/v1/upgrade.d.ts +0 -142
- package/ibc/core/channel/v1/upgrade.js +0 -303
- package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
- package/ibc/lightclients/localhost/v2/localhost.js +0 -84
|
@@ -3,51 +3,92 @@ 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.
|
|
@@ -60,11 +101,20 @@ export interface QueryAllBalancesRequestProtoMsg {
|
|
|
60
101
|
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesRequest";
|
|
61
102
|
value: Uint8Array;
|
|
62
103
|
}
|
|
63
|
-
/**
|
|
104
|
+
/**
|
|
105
|
+
* QueryBalanceRequest is the request type for the Query/AllBalances RPC method.
|
|
106
|
+
* @name QueryAllBalancesRequestAmino
|
|
107
|
+
* @package cosmos.bank.v1beta1
|
|
108
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesRequest
|
|
109
|
+
*/
|
|
64
110
|
export interface QueryAllBalancesRequestAmino {
|
|
65
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* address is the address to query balances for.
|
|
113
|
+
*/
|
|
66
114
|
address: string;
|
|
67
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* pagination defines an optional pagination for the request.
|
|
117
|
+
*/
|
|
68
118
|
pagination?: PageRequestAmino;
|
|
69
119
|
/**
|
|
70
120
|
* resolve_denom is the flag to resolve the denom into a human-readable form from the metadata.
|
|
@@ -80,11 +130,18 @@ export interface QueryAllBalancesRequestAminoMsg {
|
|
|
80
130
|
/**
|
|
81
131
|
* QueryAllBalancesResponse is the response type for the Query/AllBalances RPC
|
|
82
132
|
* method.
|
|
133
|
+
* @name QueryAllBalancesResponse
|
|
134
|
+
* @package cosmos.bank.v1beta1
|
|
135
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesResponse
|
|
83
136
|
*/
|
|
84
137
|
export interface QueryAllBalancesResponse {
|
|
85
|
-
/**
|
|
138
|
+
/**
|
|
139
|
+
* balances is the balances of all the coins.
|
|
140
|
+
*/
|
|
86
141
|
balances: Coin[];
|
|
87
|
-
/**
|
|
142
|
+
/**
|
|
143
|
+
* pagination defines the pagination in the response.
|
|
144
|
+
*/
|
|
88
145
|
pagination?: PageResponse;
|
|
89
146
|
}
|
|
90
147
|
export interface QueryAllBalancesResponseProtoMsg {
|
|
@@ -94,11 +151,18 @@ export interface QueryAllBalancesResponseProtoMsg {
|
|
|
94
151
|
/**
|
|
95
152
|
* QueryAllBalancesResponse is the response type for the Query/AllBalances RPC
|
|
96
153
|
* method.
|
|
154
|
+
* @name QueryAllBalancesResponseAmino
|
|
155
|
+
* @package cosmos.bank.v1beta1
|
|
156
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesResponse
|
|
97
157
|
*/
|
|
98
158
|
export interface QueryAllBalancesResponseAmino {
|
|
99
|
-
/**
|
|
159
|
+
/**
|
|
160
|
+
* balances is the balances of all the coins.
|
|
161
|
+
*/
|
|
100
162
|
balances: CoinAmino[];
|
|
101
|
-
/**
|
|
163
|
+
/**
|
|
164
|
+
* pagination defines the pagination in the response.
|
|
165
|
+
*/
|
|
102
166
|
pagination?: PageResponseAmino;
|
|
103
167
|
}
|
|
104
168
|
export interface QueryAllBalancesResponseAminoMsg {
|
|
@@ -110,11 +174,18 @@ export interface QueryAllBalancesResponseAminoMsg {
|
|
|
110
174
|
* an account's spendable balances.
|
|
111
175
|
*
|
|
112
176
|
* Since: cosmos-sdk 0.46
|
|
177
|
+
* @name QuerySpendableBalancesRequest
|
|
178
|
+
* @package cosmos.bank.v1beta1
|
|
179
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesRequest
|
|
113
180
|
*/
|
|
114
181
|
export interface QuerySpendableBalancesRequest {
|
|
115
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* address is the address to query spendable balances for.
|
|
184
|
+
*/
|
|
116
185
|
address: string;
|
|
117
|
-
/**
|
|
186
|
+
/**
|
|
187
|
+
* pagination defines an optional pagination for the request.
|
|
188
|
+
*/
|
|
118
189
|
pagination?: PageRequest;
|
|
119
190
|
}
|
|
120
191
|
export interface QuerySpendableBalancesRequestProtoMsg {
|
|
@@ -126,11 +197,18 @@ export interface QuerySpendableBalancesRequestProtoMsg {
|
|
|
126
197
|
* an account's spendable balances.
|
|
127
198
|
*
|
|
128
199
|
* Since: cosmos-sdk 0.46
|
|
200
|
+
* @name QuerySpendableBalancesRequestAmino
|
|
201
|
+
* @package cosmos.bank.v1beta1
|
|
202
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesRequest
|
|
129
203
|
*/
|
|
130
204
|
export interface QuerySpendableBalancesRequestAmino {
|
|
131
|
-
/**
|
|
205
|
+
/**
|
|
206
|
+
* address is the address to query spendable balances for.
|
|
207
|
+
*/
|
|
132
208
|
address: string;
|
|
133
|
-
/**
|
|
209
|
+
/**
|
|
210
|
+
* pagination defines an optional pagination for the request.
|
|
211
|
+
*/
|
|
134
212
|
pagination?: PageRequestAmino;
|
|
135
213
|
}
|
|
136
214
|
export interface QuerySpendableBalancesRequestAminoMsg {
|
|
@@ -142,11 +220,18 @@ export interface QuerySpendableBalancesRequestAminoMsg {
|
|
|
142
220
|
* an account's spendable balances.
|
|
143
221
|
*
|
|
144
222
|
* Since: cosmos-sdk 0.46
|
|
223
|
+
* @name QuerySpendableBalancesResponse
|
|
224
|
+
* @package cosmos.bank.v1beta1
|
|
225
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesResponse
|
|
145
226
|
*/
|
|
146
227
|
export interface QuerySpendableBalancesResponse {
|
|
147
|
-
/**
|
|
228
|
+
/**
|
|
229
|
+
* balances is the spendable balances of all the coins.
|
|
230
|
+
*/
|
|
148
231
|
balances: Coin[];
|
|
149
|
-
/**
|
|
232
|
+
/**
|
|
233
|
+
* pagination defines the pagination in the response.
|
|
234
|
+
*/
|
|
150
235
|
pagination?: PageResponse;
|
|
151
236
|
}
|
|
152
237
|
export interface QuerySpendableBalancesResponseProtoMsg {
|
|
@@ -158,11 +243,18 @@ export interface QuerySpendableBalancesResponseProtoMsg {
|
|
|
158
243
|
* an account's spendable balances.
|
|
159
244
|
*
|
|
160
245
|
* Since: cosmos-sdk 0.46
|
|
246
|
+
* @name QuerySpendableBalancesResponseAmino
|
|
247
|
+
* @package cosmos.bank.v1beta1
|
|
248
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesResponse
|
|
161
249
|
*/
|
|
162
250
|
export interface QuerySpendableBalancesResponseAmino {
|
|
163
|
-
/**
|
|
251
|
+
/**
|
|
252
|
+
* balances is the spendable balances of all the coins.
|
|
253
|
+
*/
|
|
164
254
|
balances: CoinAmino[];
|
|
165
|
-
/**
|
|
255
|
+
/**
|
|
256
|
+
* pagination defines the pagination in the response.
|
|
257
|
+
*/
|
|
166
258
|
pagination?: PageResponseAmino;
|
|
167
259
|
}
|
|
168
260
|
export interface QuerySpendableBalancesResponseAminoMsg {
|
|
@@ -174,11 +266,18 @@ export interface QuerySpendableBalancesResponseAminoMsg {
|
|
|
174
266
|
* querying an account's spendable balance for a specific denom.
|
|
175
267
|
*
|
|
176
268
|
* Since: cosmos-sdk 0.47
|
|
269
|
+
* @name QuerySpendableBalanceByDenomRequest
|
|
270
|
+
* @package cosmos.bank.v1beta1
|
|
271
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest
|
|
177
272
|
*/
|
|
178
273
|
export interface QuerySpendableBalanceByDenomRequest {
|
|
179
|
-
/**
|
|
274
|
+
/**
|
|
275
|
+
* address is the address to query balances for.
|
|
276
|
+
*/
|
|
180
277
|
address: string;
|
|
181
|
-
/**
|
|
278
|
+
/**
|
|
279
|
+
* denom is the coin denom to query balances for.
|
|
280
|
+
*/
|
|
182
281
|
denom: string;
|
|
183
282
|
}
|
|
184
283
|
export interface QuerySpendableBalanceByDenomRequestProtoMsg {
|
|
@@ -190,11 +289,18 @@ export interface QuerySpendableBalanceByDenomRequestProtoMsg {
|
|
|
190
289
|
* querying an account's spendable balance for a specific denom.
|
|
191
290
|
*
|
|
192
291
|
* Since: cosmos-sdk 0.47
|
|
292
|
+
* @name QuerySpendableBalanceByDenomRequestAmino
|
|
293
|
+
* @package cosmos.bank.v1beta1
|
|
294
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest
|
|
193
295
|
*/
|
|
194
296
|
export interface QuerySpendableBalanceByDenomRequestAmino {
|
|
195
|
-
/**
|
|
297
|
+
/**
|
|
298
|
+
* address is the address to query balances for.
|
|
299
|
+
*/
|
|
196
300
|
address: string;
|
|
197
|
-
/**
|
|
301
|
+
/**
|
|
302
|
+
* denom is the coin denom to query balances for.
|
|
303
|
+
*/
|
|
198
304
|
denom: string;
|
|
199
305
|
}
|
|
200
306
|
export interface QuerySpendableBalanceByDenomRequestAminoMsg {
|
|
@@ -206,9 +312,14 @@ export interface QuerySpendableBalanceByDenomRequestAminoMsg {
|
|
|
206
312
|
* querying an account's spendable balance for a specific denom.
|
|
207
313
|
*
|
|
208
314
|
* Since: cosmos-sdk 0.47
|
|
315
|
+
* @name QuerySpendableBalanceByDenomResponse
|
|
316
|
+
* @package cosmos.bank.v1beta1
|
|
317
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse
|
|
209
318
|
*/
|
|
210
319
|
export interface QuerySpendableBalanceByDenomResponse {
|
|
211
|
-
/**
|
|
320
|
+
/**
|
|
321
|
+
* balance is the balance of the coin.
|
|
322
|
+
*/
|
|
212
323
|
balance?: Coin;
|
|
213
324
|
}
|
|
214
325
|
export interface QuerySpendableBalanceByDenomResponseProtoMsg {
|
|
@@ -220,9 +331,14 @@ export interface QuerySpendableBalanceByDenomResponseProtoMsg {
|
|
|
220
331
|
* querying an account's spendable balance for a specific denom.
|
|
221
332
|
*
|
|
222
333
|
* Since: cosmos-sdk 0.47
|
|
334
|
+
* @name QuerySpendableBalanceByDenomResponseAmino
|
|
335
|
+
* @package cosmos.bank.v1beta1
|
|
336
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse
|
|
223
337
|
*/
|
|
224
338
|
export interface QuerySpendableBalanceByDenomResponseAmino {
|
|
225
|
-
/**
|
|
339
|
+
/**
|
|
340
|
+
* balance is the balance of the coin.
|
|
341
|
+
*/
|
|
226
342
|
balance?: CoinAmino;
|
|
227
343
|
}
|
|
228
344
|
export interface QuerySpendableBalanceByDenomResponseAminoMsg {
|
|
@@ -232,6 +348,9 @@ export interface QuerySpendableBalanceByDenomResponseAminoMsg {
|
|
|
232
348
|
/**
|
|
233
349
|
* QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC
|
|
234
350
|
* method.
|
|
351
|
+
* @name QueryTotalSupplyRequest
|
|
352
|
+
* @package cosmos.bank.v1beta1
|
|
353
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyRequest
|
|
235
354
|
*/
|
|
236
355
|
export interface QueryTotalSupplyRequest {
|
|
237
356
|
/**
|
|
@@ -248,6 +367,9 @@ export interface QueryTotalSupplyRequestProtoMsg {
|
|
|
248
367
|
/**
|
|
249
368
|
* QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC
|
|
250
369
|
* method.
|
|
370
|
+
* @name QueryTotalSupplyRequestAmino
|
|
371
|
+
* @package cosmos.bank.v1beta1
|
|
372
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyRequest
|
|
251
373
|
*/
|
|
252
374
|
export interface QueryTotalSupplyRequestAmino {
|
|
253
375
|
/**
|
|
@@ -264,9 +386,14 @@ export interface QueryTotalSupplyRequestAminoMsg {
|
|
|
264
386
|
/**
|
|
265
387
|
* QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC
|
|
266
388
|
* method
|
|
389
|
+
* @name QueryTotalSupplyResponse
|
|
390
|
+
* @package cosmos.bank.v1beta1
|
|
391
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyResponse
|
|
267
392
|
*/
|
|
268
393
|
export interface QueryTotalSupplyResponse {
|
|
269
|
-
/**
|
|
394
|
+
/**
|
|
395
|
+
* supply is the supply of the coins
|
|
396
|
+
*/
|
|
270
397
|
supply: Coin[];
|
|
271
398
|
/**
|
|
272
399
|
* pagination defines the pagination in the response.
|
|
@@ -282,9 +409,14 @@ export interface QueryTotalSupplyResponseProtoMsg {
|
|
|
282
409
|
/**
|
|
283
410
|
* QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC
|
|
284
411
|
* method
|
|
412
|
+
* @name QueryTotalSupplyResponseAmino
|
|
413
|
+
* @package cosmos.bank.v1beta1
|
|
414
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyResponse
|
|
285
415
|
*/
|
|
286
416
|
export interface QueryTotalSupplyResponseAmino {
|
|
287
|
-
/**
|
|
417
|
+
/**
|
|
418
|
+
* supply is the supply of the coins
|
|
419
|
+
*/
|
|
288
420
|
supply: CoinAmino[];
|
|
289
421
|
/**
|
|
290
422
|
* pagination defines the pagination in the response.
|
|
@@ -297,86 +429,152 @@ export interface QueryTotalSupplyResponseAminoMsg {
|
|
|
297
429
|
type: "cosmos-sdk/QueryTotalSupplyResponse";
|
|
298
430
|
value: QueryTotalSupplyResponseAmino;
|
|
299
431
|
}
|
|
300
|
-
/**
|
|
432
|
+
/**
|
|
433
|
+
* QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method.
|
|
434
|
+
* @name QuerySupplyOfRequest
|
|
435
|
+
* @package cosmos.bank.v1beta1
|
|
436
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfRequest
|
|
437
|
+
*/
|
|
301
438
|
export interface QuerySupplyOfRequest {
|
|
302
|
-
/**
|
|
439
|
+
/**
|
|
440
|
+
* denom is the coin denom to query balances for.
|
|
441
|
+
*/
|
|
303
442
|
denom: string;
|
|
304
443
|
}
|
|
305
444
|
export interface QuerySupplyOfRequestProtoMsg {
|
|
306
445
|
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfRequest";
|
|
307
446
|
value: Uint8Array;
|
|
308
447
|
}
|
|
309
|
-
/**
|
|
448
|
+
/**
|
|
449
|
+
* QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method.
|
|
450
|
+
* @name QuerySupplyOfRequestAmino
|
|
451
|
+
* @package cosmos.bank.v1beta1
|
|
452
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfRequest
|
|
453
|
+
*/
|
|
310
454
|
export interface QuerySupplyOfRequestAmino {
|
|
311
|
-
/**
|
|
455
|
+
/**
|
|
456
|
+
* denom is the coin denom to query balances for.
|
|
457
|
+
*/
|
|
312
458
|
denom: string;
|
|
313
459
|
}
|
|
314
460
|
export interface QuerySupplyOfRequestAminoMsg {
|
|
315
461
|
type: "cosmos-sdk/QuerySupplyOfRequest";
|
|
316
462
|
value: QuerySupplyOfRequestAmino;
|
|
317
463
|
}
|
|
318
|
-
/**
|
|
464
|
+
/**
|
|
465
|
+
* QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method.
|
|
466
|
+
* @name QuerySupplyOfResponse
|
|
467
|
+
* @package cosmos.bank.v1beta1
|
|
468
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfResponse
|
|
469
|
+
*/
|
|
319
470
|
export interface QuerySupplyOfResponse {
|
|
320
|
-
/**
|
|
471
|
+
/**
|
|
472
|
+
* amount is the supply of the coin.
|
|
473
|
+
*/
|
|
321
474
|
amount: Coin;
|
|
322
475
|
}
|
|
323
476
|
export interface QuerySupplyOfResponseProtoMsg {
|
|
324
477
|
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfResponse";
|
|
325
478
|
value: Uint8Array;
|
|
326
479
|
}
|
|
327
|
-
/**
|
|
480
|
+
/**
|
|
481
|
+
* QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method.
|
|
482
|
+
* @name QuerySupplyOfResponseAmino
|
|
483
|
+
* @package cosmos.bank.v1beta1
|
|
484
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfResponse
|
|
485
|
+
*/
|
|
328
486
|
export interface QuerySupplyOfResponseAmino {
|
|
329
|
-
/**
|
|
487
|
+
/**
|
|
488
|
+
* amount is the supply of the coin.
|
|
489
|
+
*/
|
|
330
490
|
amount: CoinAmino;
|
|
331
491
|
}
|
|
332
492
|
export interface QuerySupplyOfResponseAminoMsg {
|
|
333
493
|
type: "cosmos-sdk/QuerySupplyOfResponse";
|
|
334
494
|
value: QuerySupplyOfResponseAmino;
|
|
335
495
|
}
|
|
336
|
-
/**
|
|
496
|
+
/**
|
|
497
|
+
* QueryParamsRequest defines the request type for querying x/bank parameters.
|
|
498
|
+
* @name QueryParamsRequest
|
|
499
|
+
* @package cosmos.bank.v1beta1
|
|
500
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsRequest
|
|
501
|
+
*/
|
|
337
502
|
export interface QueryParamsRequest {
|
|
338
503
|
}
|
|
339
504
|
export interface QueryParamsRequestProtoMsg {
|
|
340
505
|
typeUrl: "/cosmos.bank.v1beta1.QueryParamsRequest";
|
|
341
506
|
value: Uint8Array;
|
|
342
507
|
}
|
|
343
|
-
/**
|
|
508
|
+
/**
|
|
509
|
+
* QueryParamsRequest defines the request type for querying x/bank parameters.
|
|
510
|
+
* @name QueryParamsRequestAmino
|
|
511
|
+
* @package cosmos.bank.v1beta1
|
|
512
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsRequest
|
|
513
|
+
*/
|
|
344
514
|
export interface QueryParamsRequestAmino {
|
|
345
515
|
}
|
|
346
516
|
export interface QueryParamsRequestAminoMsg {
|
|
347
517
|
type: "cosmos-sdk/QueryParamsRequest";
|
|
348
518
|
value: QueryParamsRequestAmino;
|
|
349
519
|
}
|
|
350
|
-
/**
|
|
520
|
+
/**
|
|
521
|
+
* QueryParamsResponse defines the response type for querying x/bank parameters.
|
|
522
|
+
* @name QueryParamsResponse
|
|
523
|
+
* @package cosmos.bank.v1beta1
|
|
524
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsResponse
|
|
525
|
+
*/
|
|
351
526
|
export interface QueryParamsResponse {
|
|
352
|
-
/**
|
|
527
|
+
/**
|
|
528
|
+
* params provides the parameters of the bank module.
|
|
529
|
+
*/
|
|
353
530
|
params: Params;
|
|
354
531
|
}
|
|
355
532
|
export interface QueryParamsResponseProtoMsg {
|
|
356
533
|
typeUrl: "/cosmos.bank.v1beta1.QueryParamsResponse";
|
|
357
534
|
value: Uint8Array;
|
|
358
535
|
}
|
|
359
|
-
/**
|
|
536
|
+
/**
|
|
537
|
+
* QueryParamsResponse defines the response type for querying x/bank parameters.
|
|
538
|
+
* @name QueryParamsResponseAmino
|
|
539
|
+
* @package cosmos.bank.v1beta1
|
|
540
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsResponse
|
|
541
|
+
*/
|
|
360
542
|
export interface QueryParamsResponseAmino {
|
|
361
|
-
/**
|
|
543
|
+
/**
|
|
544
|
+
* params provides the parameters of the bank module.
|
|
545
|
+
*/
|
|
362
546
|
params: ParamsAmino;
|
|
363
547
|
}
|
|
364
548
|
export interface QueryParamsResponseAminoMsg {
|
|
365
549
|
type: "cosmos-sdk/QueryParamsResponse";
|
|
366
550
|
value: QueryParamsResponseAmino;
|
|
367
551
|
}
|
|
368
|
-
/**
|
|
552
|
+
/**
|
|
553
|
+
* QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method.
|
|
554
|
+
* @name QueryDenomsMetadataRequest
|
|
555
|
+
* @package cosmos.bank.v1beta1
|
|
556
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataRequest
|
|
557
|
+
*/
|
|
369
558
|
export interface QueryDenomsMetadataRequest {
|
|
370
|
-
/**
|
|
559
|
+
/**
|
|
560
|
+
* pagination defines an optional pagination for the request.
|
|
561
|
+
*/
|
|
371
562
|
pagination?: PageRequest;
|
|
372
563
|
}
|
|
373
564
|
export interface QueryDenomsMetadataRequestProtoMsg {
|
|
374
565
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataRequest";
|
|
375
566
|
value: Uint8Array;
|
|
376
567
|
}
|
|
377
|
-
/**
|
|
568
|
+
/**
|
|
569
|
+
* QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method.
|
|
570
|
+
* @name QueryDenomsMetadataRequestAmino
|
|
571
|
+
* @package cosmos.bank.v1beta1
|
|
572
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataRequest
|
|
573
|
+
*/
|
|
378
574
|
export interface QueryDenomsMetadataRequestAmino {
|
|
379
|
-
/**
|
|
575
|
+
/**
|
|
576
|
+
* pagination defines an optional pagination for the request.
|
|
577
|
+
*/
|
|
380
578
|
pagination?: PageRequestAmino;
|
|
381
579
|
}
|
|
382
580
|
export interface QueryDenomsMetadataRequestAminoMsg {
|
|
@@ -386,11 +584,18 @@ export interface QueryDenomsMetadataRequestAminoMsg {
|
|
|
386
584
|
/**
|
|
387
585
|
* QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC
|
|
388
586
|
* method.
|
|
587
|
+
* @name QueryDenomsMetadataResponse
|
|
588
|
+
* @package cosmos.bank.v1beta1
|
|
589
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataResponse
|
|
389
590
|
*/
|
|
390
591
|
export interface QueryDenomsMetadataResponse {
|
|
391
|
-
/**
|
|
592
|
+
/**
|
|
593
|
+
* metadata provides the client information for all the registered tokens.
|
|
594
|
+
*/
|
|
392
595
|
metadatas: Metadata[];
|
|
393
|
-
/**
|
|
596
|
+
/**
|
|
597
|
+
* pagination defines the pagination in the response.
|
|
598
|
+
*/
|
|
394
599
|
pagination?: PageResponse;
|
|
395
600
|
}
|
|
396
601
|
export interface QueryDenomsMetadataResponseProtoMsg {
|
|
@@ -400,29 +605,50 @@ export interface QueryDenomsMetadataResponseProtoMsg {
|
|
|
400
605
|
/**
|
|
401
606
|
* QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC
|
|
402
607
|
* method.
|
|
608
|
+
* @name QueryDenomsMetadataResponseAmino
|
|
609
|
+
* @package cosmos.bank.v1beta1
|
|
610
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataResponse
|
|
403
611
|
*/
|
|
404
612
|
export interface QueryDenomsMetadataResponseAmino {
|
|
405
|
-
/**
|
|
613
|
+
/**
|
|
614
|
+
* metadata provides the client information for all the registered tokens.
|
|
615
|
+
*/
|
|
406
616
|
metadatas: MetadataAmino[];
|
|
407
|
-
/**
|
|
617
|
+
/**
|
|
618
|
+
* pagination defines the pagination in the response.
|
|
619
|
+
*/
|
|
408
620
|
pagination?: PageResponseAmino;
|
|
409
621
|
}
|
|
410
622
|
export interface QueryDenomsMetadataResponseAminoMsg {
|
|
411
623
|
type: "cosmos-sdk/QueryDenomsMetadataResponse";
|
|
412
624
|
value: QueryDenomsMetadataResponseAmino;
|
|
413
625
|
}
|
|
414
|
-
/**
|
|
626
|
+
/**
|
|
627
|
+
* QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method.
|
|
628
|
+
* @name QueryDenomMetadataRequest
|
|
629
|
+
* @package cosmos.bank.v1beta1
|
|
630
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataRequest
|
|
631
|
+
*/
|
|
415
632
|
export interface QueryDenomMetadataRequest {
|
|
416
|
-
/**
|
|
633
|
+
/**
|
|
634
|
+
* denom is the coin denom to query the metadata for.
|
|
635
|
+
*/
|
|
417
636
|
denom: string;
|
|
418
637
|
}
|
|
419
638
|
export interface QueryDenomMetadataRequestProtoMsg {
|
|
420
639
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataRequest";
|
|
421
640
|
value: Uint8Array;
|
|
422
641
|
}
|
|
423
|
-
/**
|
|
642
|
+
/**
|
|
643
|
+
* QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method.
|
|
644
|
+
* @name QueryDenomMetadataRequestAmino
|
|
645
|
+
* @package cosmos.bank.v1beta1
|
|
646
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataRequest
|
|
647
|
+
*/
|
|
424
648
|
export interface QueryDenomMetadataRequestAmino {
|
|
425
|
-
/**
|
|
649
|
+
/**
|
|
650
|
+
* denom is the coin denom to query the metadata for.
|
|
651
|
+
*/
|
|
426
652
|
denom: string;
|
|
427
653
|
}
|
|
428
654
|
export interface QueryDenomMetadataRequestAminoMsg {
|
|
@@ -432,9 +658,14 @@ export interface QueryDenomMetadataRequestAminoMsg {
|
|
|
432
658
|
/**
|
|
433
659
|
* QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC
|
|
434
660
|
* method.
|
|
661
|
+
* @name QueryDenomMetadataResponse
|
|
662
|
+
* @package cosmos.bank.v1beta1
|
|
663
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataResponse
|
|
435
664
|
*/
|
|
436
665
|
export interface QueryDenomMetadataResponse {
|
|
437
|
-
/**
|
|
666
|
+
/**
|
|
667
|
+
* metadata describes and provides all the client information for the requested token.
|
|
668
|
+
*/
|
|
438
669
|
metadata: Metadata;
|
|
439
670
|
}
|
|
440
671
|
export interface QueryDenomMetadataResponseProtoMsg {
|
|
@@ -444,9 +675,14 @@ export interface QueryDenomMetadataResponseProtoMsg {
|
|
|
444
675
|
/**
|
|
445
676
|
* QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC
|
|
446
677
|
* method.
|
|
678
|
+
* @name QueryDenomMetadataResponseAmino
|
|
679
|
+
* @package cosmos.bank.v1beta1
|
|
680
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataResponse
|
|
447
681
|
*/
|
|
448
682
|
export interface QueryDenomMetadataResponseAmino {
|
|
449
|
-
/**
|
|
683
|
+
/**
|
|
684
|
+
* metadata describes and provides all the client information for the requested token.
|
|
685
|
+
*/
|
|
450
686
|
metadata: MetadataAmino;
|
|
451
687
|
}
|
|
452
688
|
export interface QueryDenomMetadataResponseAminoMsg {
|
|
@@ -456,9 +692,14 @@ export interface QueryDenomMetadataResponseAminoMsg {
|
|
|
456
692
|
/**
|
|
457
693
|
* QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method.
|
|
458
694
|
* Identical with QueryDenomMetadataRequest but receives denom as query string.
|
|
695
|
+
* @name QueryDenomMetadataByQueryStringRequest
|
|
696
|
+
* @package cosmos.bank.v1beta1
|
|
697
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest
|
|
459
698
|
*/
|
|
460
699
|
export interface QueryDenomMetadataByQueryStringRequest {
|
|
461
|
-
/**
|
|
700
|
+
/**
|
|
701
|
+
* denom is the coin denom to query the metadata for.
|
|
702
|
+
*/
|
|
462
703
|
denom: string;
|
|
463
704
|
}
|
|
464
705
|
export interface QueryDenomMetadataByQueryStringRequestProtoMsg {
|
|
@@ -468,9 +709,14 @@ export interface QueryDenomMetadataByQueryStringRequestProtoMsg {
|
|
|
468
709
|
/**
|
|
469
710
|
* QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method.
|
|
470
711
|
* Identical with QueryDenomMetadataRequest but receives denom as query string.
|
|
712
|
+
* @name QueryDenomMetadataByQueryStringRequestAmino
|
|
713
|
+
* @package cosmos.bank.v1beta1
|
|
714
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest
|
|
471
715
|
*/
|
|
472
716
|
export interface QueryDenomMetadataByQueryStringRequestAmino {
|
|
473
|
-
/**
|
|
717
|
+
/**
|
|
718
|
+
* denom is the coin denom to query the metadata for.
|
|
719
|
+
*/
|
|
474
720
|
denom: string;
|
|
475
721
|
}
|
|
476
722
|
export interface QueryDenomMetadataByQueryStringRequestAminoMsg {
|
|
@@ -480,9 +726,14 @@ export interface QueryDenomMetadataByQueryStringRequestAminoMsg {
|
|
|
480
726
|
/**
|
|
481
727
|
* QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC
|
|
482
728
|
* method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.
|
|
729
|
+
* @name QueryDenomMetadataByQueryStringResponse
|
|
730
|
+
* @package cosmos.bank.v1beta1
|
|
731
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse
|
|
483
732
|
*/
|
|
484
733
|
export interface QueryDenomMetadataByQueryStringResponse {
|
|
485
|
-
/**
|
|
734
|
+
/**
|
|
735
|
+
* metadata describes and provides all the client information for the requested token.
|
|
736
|
+
*/
|
|
486
737
|
metadata: Metadata;
|
|
487
738
|
}
|
|
488
739
|
export interface QueryDenomMetadataByQueryStringResponseProtoMsg {
|
|
@@ -492,9 +743,14 @@ export interface QueryDenomMetadataByQueryStringResponseProtoMsg {
|
|
|
492
743
|
/**
|
|
493
744
|
* QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC
|
|
494
745
|
* method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.
|
|
746
|
+
* @name QueryDenomMetadataByQueryStringResponseAmino
|
|
747
|
+
* @package cosmos.bank.v1beta1
|
|
748
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse
|
|
495
749
|
*/
|
|
496
750
|
export interface QueryDenomMetadataByQueryStringResponseAmino {
|
|
497
|
-
/**
|
|
751
|
+
/**
|
|
752
|
+
* metadata describes and provides all the client information for the requested token.
|
|
753
|
+
*/
|
|
498
754
|
metadata: MetadataAmino;
|
|
499
755
|
}
|
|
500
756
|
export interface QueryDenomMetadataByQueryStringResponseAminoMsg {
|
|
@@ -505,11 +761,18 @@ export interface QueryDenomMetadataByQueryStringResponseAminoMsg {
|
|
|
505
761
|
* QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query,
|
|
506
762
|
* which queries for a paginated set of all account holders of a particular
|
|
507
763
|
* denomination.
|
|
764
|
+
* @name QueryDenomOwnersRequest
|
|
765
|
+
* @package cosmos.bank.v1beta1
|
|
766
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersRequest
|
|
508
767
|
*/
|
|
509
768
|
export interface QueryDenomOwnersRequest {
|
|
510
|
-
/**
|
|
769
|
+
/**
|
|
770
|
+
* denom defines the coin denomination to query all account holders for.
|
|
771
|
+
*/
|
|
511
772
|
denom: string;
|
|
512
|
-
/**
|
|
773
|
+
/**
|
|
774
|
+
* pagination defines an optional pagination for the request.
|
|
775
|
+
*/
|
|
513
776
|
pagination?: PageRequest;
|
|
514
777
|
}
|
|
515
778
|
export interface QueryDenomOwnersRequestProtoMsg {
|
|
@@ -520,11 +783,18 @@ export interface QueryDenomOwnersRequestProtoMsg {
|
|
|
520
783
|
* QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query,
|
|
521
784
|
* which queries for a paginated set of all account holders of a particular
|
|
522
785
|
* denomination.
|
|
786
|
+
* @name QueryDenomOwnersRequestAmino
|
|
787
|
+
* @package cosmos.bank.v1beta1
|
|
788
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersRequest
|
|
523
789
|
*/
|
|
524
790
|
export interface QueryDenomOwnersRequestAmino {
|
|
525
|
-
/**
|
|
791
|
+
/**
|
|
792
|
+
* denom defines the coin denomination to query all account holders for.
|
|
793
|
+
*/
|
|
526
794
|
denom: string;
|
|
527
|
-
/**
|
|
795
|
+
/**
|
|
796
|
+
* pagination defines an optional pagination for the request.
|
|
797
|
+
*/
|
|
528
798
|
pagination?: PageRequestAmino;
|
|
529
799
|
}
|
|
530
800
|
export interface QueryDenomOwnersRequestAminoMsg {
|
|
@@ -537,11 +807,18 @@ export interface QueryDenomOwnersRequestAminoMsg {
|
|
|
537
807
|
* balance of the denominated token.
|
|
538
808
|
*
|
|
539
809
|
* Since: cosmos-sdk 0.46
|
|
810
|
+
* @name DenomOwner
|
|
811
|
+
* @package cosmos.bank.v1beta1
|
|
812
|
+
* @see proto type: cosmos.bank.v1beta1.DenomOwner
|
|
540
813
|
*/
|
|
541
814
|
export interface DenomOwner {
|
|
542
|
-
/**
|
|
815
|
+
/**
|
|
816
|
+
* address defines the address that owns a particular denomination.
|
|
817
|
+
*/
|
|
543
818
|
address: string;
|
|
544
|
-
/**
|
|
819
|
+
/**
|
|
820
|
+
* balance is the balance of the denominated coin for an account.
|
|
821
|
+
*/
|
|
545
822
|
balance: Coin;
|
|
546
823
|
}
|
|
547
824
|
export interface DenomOwnerProtoMsg {
|
|
@@ -554,11 +831,18 @@ export interface DenomOwnerProtoMsg {
|
|
|
554
831
|
* balance of the denominated token.
|
|
555
832
|
*
|
|
556
833
|
* Since: cosmos-sdk 0.46
|
|
834
|
+
* @name DenomOwnerAmino
|
|
835
|
+
* @package cosmos.bank.v1beta1
|
|
836
|
+
* @see proto type: cosmos.bank.v1beta1.DenomOwner
|
|
557
837
|
*/
|
|
558
838
|
export interface DenomOwnerAmino {
|
|
559
|
-
/**
|
|
839
|
+
/**
|
|
840
|
+
* address defines the address that owns a particular denomination.
|
|
841
|
+
*/
|
|
560
842
|
address: string;
|
|
561
|
-
/**
|
|
843
|
+
/**
|
|
844
|
+
* balance is the balance of the denominated coin for an account.
|
|
845
|
+
*/
|
|
562
846
|
balance: CoinAmino;
|
|
563
847
|
}
|
|
564
848
|
export interface DenomOwnerAminoMsg {
|
|
@@ -569,10 +853,15 @@ export interface DenomOwnerAminoMsg {
|
|
|
569
853
|
* QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.
|
|
570
854
|
*
|
|
571
855
|
* Since: cosmos-sdk 0.46
|
|
856
|
+
* @name QueryDenomOwnersResponse
|
|
857
|
+
* @package cosmos.bank.v1beta1
|
|
858
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersResponse
|
|
572
859
|
*/
|
|
573
860
|
export interface QueryDenomOwnersResponse {
|
|
574
861
|
denomOwners: DenomOwner[];
|
|
575
|
-
/**
|
|
862
|
+
/**
|
|
863
|
+
* pagination defines the pagination in the response.
|
|
864
|
+
*/
|
|
576
865
|
pagination?: PageResponse;
|
|
577
866
|
}
|
|
578
867
|
export interface QueryDenomOwnersResponseProtoMsg {
|
|
@@ -583,10 +872,15 @@ export interface QueryDenomOwnersResponseProtoMsg {
|
|
|
583
872
|
* QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.
|
|
584
873
|
*
|
|
585
874
|
* Since: cosmos-sdk 0.46
|
|
875
|
+
* @name QueryDenomOwnersResponseAmino
|
|
876
|
+
* @package cosmos.bank.v1beta1
|
|
877
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersResponse
|
|
586
878
|
*/
|
|
587
879
|
export interface QueryDenomOwnersResponseAmino {
|
|
588
880
|
denom_owners: DenomOwnerAmino[];
|
|
589
|
-
/**
|
|
881
|
+
/**
|
|
882
|
+
* pagination defines the pagination in the response.
|
|
883
|
+
*/
|
|
590
884
|
pagination?: PageResponseAmino;
|
|
591
885
|
}
|
|
592
886
|
export interface QueryDenomOwnersResponseAminoMsg {
|
|
@@ -599,11 +893,18 @@ export interface QueryDenomOwnersResponseAminoMsg {
|
|
|
599
893
|
* denomination.
|
|
600
894
|
*
|
|
601
895
|
* Since: cosmos-sdk 0.50.3
|
|
896
|
+
* @name QueryDenomOwnersByQueryRequest
|
|
897
|
+
* @package cosmos.bank.v1beta1
|
|
898
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest
|
|
602
899
|
*/
|
|
603
900
|
export interface QueryDenomOwnersByQueryRequest {
|
|
604
|
-
/**
|
|
901
|
+
/**
|
|
902
|
+
* denom defines the coin denomination to query all account holders for.
|
|
903
|
+
*/
|
|
605
904
|
denom: string;
|
|
606
|
-
/**
|
|
905
|
+
/**
|
|
906
|
+
* pagination defines an optional pagination for the request.
|
|
907
|
+
*/
|
|
607
908
|
pagination?: PageRequest;
|
|
608
909
|
}
|
|
609
910
|
export interface QueryDenomOwnersByQueryRequestProtoMsg {
|
|
@@ -616,11 +917,18 @@ export interface QueryDenomOwnersByQueryRequestProtoMsg {
|
|
|
616
917
|
* denomination.
|
|
617
918
|
*
|
|
618
919
|
* Since: cosmos-sdk 0.50.3
|
|
920
|
+
* @name QueryDenomOwnersByQueryRequestAmino
|
|
921
|
+
* @package cosmos.bank.v1beta1
|
|
922
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest
|
|
619
923
|
*/
|
|
620
924
|
export interface QueryDenomOwnersByQueryRequestAmino {
|
|
621
|
-
/**
|
|
925
|
+
/**
|
|
926
|
+
* denom defines the coin denomination to query all account holders for.
|
|
927
|
+
*/
|
|
622
928
|
denom: string;
|
|
623
|
-
/**
|
|
929
|
+
/**
|
|
930
|
+
* pagination defines an optional pagination for the request.
|
|
931
|
+
*/
|
|
624
932
|
pagination?: PageRequestAmino;
|
|
625
933
|
}
|
|
626
934
|
export interface QueryDenomOwnersByQueryRequestAminoMsg {
|
|
@@ -631,10 +939,15 @@ export interface QueryDenomOwnersByQueryRequestAminoMsg {
|
|
|
631
939
|
* QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.
|
|
632
940
|
*
|
|
633
941
|
* Since: cosmos-sdk 0.50.3
|
|
942
|
+
* @name QueryDenomOwnersByQueryResponse
|
|
943
|
+
* @package cosmos.bank.v1beta1
|
|
944
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse
|
|
634
945
|
*/
|
|
635
946
|
export interface QueryDenomOwnersByQueryResponse {
|
|
636
947
|
denomOwners: DenomOwner[];
|
|
637
|
-
/**
|
|
948
|
+
/**
|
|
949
|
+
* pagination defines the pagination in the response.
|
|
950
|
+
*/
|
|
638
951
|
pagination?: PageResponse;
|
|
639
952
|
}
|
|
640
953
|
export interface QueryDenomOwnersByQueryResponseProtoMsg {
|
|
@@ -645,10 +958,15 @@ export interface QueryDenomOwnersByQueryResponseProtoMsg {
|
|
|
645
958
|
* QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.
|
|
646
959
|
*
|
|
647
960
|
* Since: cosmos-sdk 0.50.3
|
|
961
|
+
* @name QueryDenomOwnersByQueryResponseAmino
|
|
962
|
+
* @package cosmos.bank.v1beta1
|
|
963
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse
|
|
648
964
|
*/
|
|
649
965
|
export interface QueryDenomOwnersByQueryResponseAmino {
|
|
650
966
|
denom_owners: DenomOwnerAmino[];
|
|
651
|
-
/**
|
|
967
|
+
/**
|
|
968
|
+
* pagination defines the pagination in the response.
|
|
969
|
+
*/
|
|
652
970
|
pagination?: PageResponseAmino;
|
|
653
971
|
}
|
|
654
972
|
export interface QueryDenomOwnersByQueryResponseAminoMsg {
|
|
@@ -659,9 +977,14 @@ export interface QueryDenomOwnersByQueryResponseAminoMsg {
|
|
|
659
977
|
* QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.
|
|
660
978
|
*
|
|
661
979
|
* Since: cosmos-sdk 0.47
|
|
980
|
+
* @name QuerySendEnabledRequest
|
|
981
|
+
* @package cosmos.bank.v1beta1
|
|
982
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledRequest
|
|
662
983
|
*/
|
|
663
984
|
export interface QuerySendEnabledRequest {
|
|
664
|
-
/**
|
|
985
|
+
/**
|
|
986
|
+
* denoms is the specific denoms you want look up. Leave empty to get all entries.
|
|
987
|
+
*/
|
|
665
988
|
denoms: string[];
|
|
666
989
|
/**
|
|
667
990
|
* pagination defines an optional pagination for the request. This field is
|
|
@@ -677,9 +1000,14 @@ export interface QuerySendEnabledRequestProtoMsg {
|
|
|
677
1000
|
* QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.
|
|
678
1001
|
*
|
|
679
1002
|
* Since: cosmos-sdk 0.47
|
|
1003
|
+
* @name QuerySendEnabledRequestAmino
|
|
1004
|
+
* @package cosmos.bank.v1beta1
|
|
1005
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledRequest
|
|
680
1006
|
*/
|
|
681
1007
|
export interface QuerySendEnabledRequestAmino {
|
|
682
|
-
/**
|
|
1008
|
+
/**
|
|
1009
|
+
* denoms is the specific denoms you want look up. Leave empty to get all entries.
|
|
1010
|
+
*/
|
|
683
1011
|
denoms: string[];
|
|
684
1012
|
/**
|
|
685
1013
|
* pagination defines an optional pagination for the request. This field is
|
|
@@ -695,6 +1023,9 @@ export interface QuerySendEnabledRequestAminoMsg {
|
|
|
695
1023
|
* QuerySendEnabledResponse defines the RPC response of a SendEnable query.
|
|
696
1024
|
*
|
|
697
1025
|
* Since: cosmos-sdk 0.47
|
|
1026
|
+
* @name QuerySendEnabledResponse
|
|
1027
|
+
* @package cosmos.bank.v1beta1
|
|
1028
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledResponse
|
|
698
1029
|
*/
|
|
699
1030
|
export interface QuerySendEnabledResponse {
|
|
700
1031
|
sendEnabled: SendEnabled[];
|
|
@@ -712,6 +1043,9 @@ export interface QuerySendEnabledResponseProtoMsg {
|
|
|
712
1043
|
* QuerySendEnabledResponse defines the RPC response of a SendEnable query.
|
|
713
1044
|
*
|
|
714
1045
|
* Since: cosmos-sdk 0.47
|
|
1046
|
+
* @name QuerySendEnabledResponseAmino
|
|
1047
|
+
* @package cosmos.bank.v1beta1
|
|
1048
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledResponse
|
|
715
1049
|
*/
|
|
716
1050
|
export interface QuerySendEnabledResponseAmino {
|
|
717
1051
|
send_enabled: SendEnabledAmino[];
|
|
@@ -725,6 +1059,12 @@ export interface QuerySendEnabledResponseAminoMsg {
|
|
|
725
1059
|
type: "cosmos-sdk/QuerySendEnabledResponse";
|
|
726
1060
|
value: QuerySendEnabledResponseAmino;
|
|
727
1061
|
}
|
|
1062
|
+
/**
|
|
1063
|
+
* QueryBalanceRequest is the request type for the Query/Balance RPC method.
|
|
1064
|
+
* @name QueryBalanceRequest
|
|
1065
|
+
* @package cosmos.bank.v1beta1
|
|
1066
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceRequest
|
|
1067
|
+
*/
|
|
728
1068
|
export declare const QueryBalanceRequest: {
|
|
729
1069
|
typeUrl: string;
|
|
730
1070
|
aminoType: string;
|
|
@@ -742,6 +1082,12 @@ export declare const QueryBalanceRequest: {
|
|
|
742
1082
|
toProtoMsg(message: QueryBalanceRequest): QueryBalanceRequestProtoMsg;
|
|
743
1083
|
registerTypeUrl(): void;
|
|
744
1084
|
};
|
|
1085
|
+
/**
|
|
1086
|
+
* QueryBalanceResponse is the response type for the Query/Balance RPC method.
|
|
1087
|
+
* @name QueryBalanceResponse
|
|
1088
|
+
* @package cosmos.bank.v1beta1
|
|
1089
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceResponse
|
|
1090
|
+
*/
|
|
745
1091
|
export declare const QueryBalanceResponse: {
|
|
746
1092
|
typeUrl: string;
|
|
747
1093
|
aminoType: string;
|
|
@@ -759,6 +1105,12 @@ export declare const QueryBalanceResponse: {
|
|
|
759
1105
|
toProtoMsg(message: QueryBalanceResponse): QueryBalanceResponseProtoMsg;
|
|
760
1106
|
registerTypeUrl(): void;
|
|
761
1107
|
};
|
|
1108
|
+
/**
|
|
1109
|
+
* QueryBalanceRequest is the request type for the Query/AllBalances RPC method.
|
|
1110
|
+
* @name QueryAllBalancesRequest
|
|
1111
|
+
* @package cosmos.bank.v1beta1
|
|
1112
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesRequest
|
|
1113
|
+
*/
|
|
762
1114
|
export declare const QueryAllBalancesRequest: {
|
|
763
1115
|
typeUrl: string;
|
|
764
1116
|
aminoType: string;
|
|
@@ -776,6 +1128,13 @@ export declare const QueryAllBalancesRequest: {
|
|
|
776
1128
|
toProtoMsg(message: QueryAllBalancesRequest): QueryAllBalancesRequestProtoMsg;
|
|
777
1129
|
registerTypeUrl(): void;
|
|
778
1130
|
};
|
|
1131
|
+
/**
|
|
1132
|
+
* QueryAllBalancesResponse is the response type for the Query/AllBalances RPC
|
|
1133
|
+
* method.
|
|
1134
|
+
* @name QueryAllBalancesResponse
|
|
1135
|
+
* @package cosmos.bank.v1beta1
|
|
1136
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesResponse
|
|
1137
|
+
*/
|
|
779
1138
|
export declare const QueryAllBalancesResponse: {
|
|
780
1139
|
typeUrl: string;
|
|
781
1140
|
aminoType: string;
|
|
@@ -793,6 +1152,15 @@ export declare const QueryAllBalancesResponse: {
|
|
|
793
1152
|
toProtoMsg(message: QueryAllBalancesResponse): QueryAllBalancesResponseProtoMsg;
|
|
794
1153
|
registerTypeUrl(): void;
|
|
795
1154
|
};
|
|
1155
|
+
/**
|
|
1156
|
+
* QuerySpendableBalancesRequest defines the gRPC request structure for querying
|
|
1157
|
+
* an account's spendable balances.
|
|
1158
|
+
*
|
|
1159
|
+
* Since: cosmos-sdk 0.46
|
|
1160
|
+
* @name QuerySpendableBalancesRequest
|
|
1161
|
+
* @package cosmos.bank.v1beta1
|
|
1162
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesRequest
|
|
1163
|
+
*/
|
|
796
1164
|
export declare const QuerySpendableBalancesRequest: {
|
|
797
1165
|
typeUrl: string;
|
|
798
1166
|
aminoType: string;
|
|
@@ -810,6 +1178,15 @@ export declare const QuerySpendableBalancesRequest: {
|
|
|
810
1178
|
toProtoMsg(message: QuerySpendableBalancesRequest): QuerySpendableBalancesRequestProtoMsg;
|
|
811
1179
|
registerTypeUrl(): void;
|
|
812
1180
|
};
|
|
1181
|
+
/**
|
|
1182
|
+
* QuerySpendableBalancesResponse defines the gRPC response structure for querying
|
|
1183
|
+
* an account's spendable balances.
|
|
1184
|
+
*
|
|
1185
|
+
* Since: cosmos-sdk 0.46
|
|
1186
|
+
* @name QuerySpendableBalancesResponse
|
|
1187
|
+
* @package cosmos.bank.v1beta1
|
|
1188
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesResponse
|
|
1189
|
+
*/
|
|
813
1190
|
export declare const QuerySpendableBalancesResponse: {
|
|
814
1191
|
typeUrl: string;
|
|
815
1192
|
aminoType: string;
|
|
@@ -827,6 +1204,15 @@ export declare const QuerySpendableBalancesResponse: {
|
|
|
827
1204
|
toProtoMsg(message: QuerySpendableBalancesResponse): QuerySpendableBalancesResponseProtoMsg;
|
|
828
1205
|
registerTypeUrl(): void;
|
|
829
1206
|
};
|
|
1207
|
+
/**
|
|
1208
|
+
* QuerySpendableBalanceByDenomRequest defines the gRPC request structure for
|
|
1209
|
+
* querying an account's spendable balance for a specific denom.
|
|
1210
|
+
*
|
|
1211
|
+
* Since: cosmos-sdk 0.47
|
|
1212
|
+
* @name QuerySpendableBalanceByDenomRequest
|
|
1213
|
+
* @package cosmos.bank.v1beta1
|
|
1214
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest
|
|
1215
|
+
*/
|
|
830
1216
|
export declare const QuerySpendableBalanceByDenomRequest: {
|
|
831
1217
|
typeUrl: string;
|
|
832
1218
|
aminoType: string;
|
|
@@ -844,6 +1230,15 @@ export declare const QuerySpendableBalanceByDenomRequest: {
|
|
|
844
1230
|
toProtoMsg(message: QuerySpendableBalanceByDenomRequest): QuerySpendableBalanceByDenomRequestProtoMsg;
|
|
845
1231
|
registerTypeUrl(): void;
|
|
846
1232
|
};
|
|
1233
|
+
/**
|
|
1234
|
+
* QuerySpendableBalanceByDenomResponse defines the gRPC response structure for
|
|
1235
|
+
* querying an account's spendable balance for a specific denom.
|
|
1236
|
+
*
|
|
1237
|
+
* Since: cosmos-sdk 0.47
|
|
1238
|
+
* @name QuerySpendableBalanceByDenomResponse
|
|
1239
|
+
* @package cosmos.bank.v1beta1
|
|
1240
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse
|
|
1241
|
+
*/
|
|
847
1242
|
export declare const QuerySpendableBalanceByDenomResponse: {
|
|
848
1243
|
typeUrl: string;
|
|
849
1244
|
aminoType: string;
|
|
@@ -861,6 +1256,13 @@ export declare const QuerySpendableBalanceByDenomResponse: {
|
|
|
861
1256
|
toProtoMsg(message: QuerySpendableBalanceByDenomResponse): QuerySpendableBalanceByDenomResponseProtoMsg;
|
|
862
1257
|
registerTypeUrl(): void;
|
|
863
1258
|
};
|
|
1259
|
+
/**
|
|
1260
|
+
* QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC
|
|
1261
|
+
* method.
|
|
1262
|
+
* @name QueryTotalSupplyRequest
|
|
1263
|
+
* @package cosmos.bank.v1beta1
|
|
1264
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyRequest
|
|
1265
|
+
*/
|
|
864
1266
|
export declare const QueryTotalSupplyRequest: {
|
|
865
1267
|
typeUrl: string;
|
|
866
1268
|
aminoType: string;
|
|
@@ -878,6 +1280,13 @@ export declare const QueryTotalSupplyRequest: {
|
|
|
878
1280
|
toProtoMsg(message: QueryTotalSupplyRequest): QueryTotalSupplyRequestProtoMsg;
|
|
879
1281
|
registerTypeUrl(): void;
|
|
880
1282
|
};
|
|
1283
|
+
/**
|
|
1284
|
+
* QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC
|
|
1285
|
+
* method
|
|
1286
|
+
* @name QueryTotalSupplyResponse
|
|
1287
|
+
* @package cosmos.bank.v1beta1
|
|
1288
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyResponse
|
|
1289
|
+
*/
|
|
881
1290
|
export declare const QueryTotalSupplyResponse: {
|
|
882
1291
|
typeUrl: string;
|
|
883
1292
|
aminoType: string;
|
|
@@ -895,6 +1304,12 @@ export declare const QueryTotalSupplyResponse: {
|
|
|
895
1304
|
toProtoMsg(message: QueryTotalSupplyResponse): QueryTotalSupplyResponseProtoMsg;
|
|
896
1305
|
registerTypeUrl(): void;
|
|
897
1306
|
};
|
|
1307
|
+
/**
|
|
1308
|
+
* QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method.
|
|
1309
|
+
* @name QuerySupplyOfRequest
|
|
1310
|
+
* @package cosmos.bank.v1beta1
|
|
1311
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfRequest
|
|
1312
|
+
*/
|
|
898
1313
|
export declare const QuerySupplyOfRequest: {
|
|
899
1314
|
typeUrl: string;
|
|
900
1315
|
aminoType: string;
|
|
@@ -912,6 +1327,12 @@ export declare const QuerySupplyOfRequest: {
|
|
|
912
1327
|
toProtoMsg(message: QuerySupplyOfRequest): QuerySupplyOfRequestProtoMsg;
|
|
913
1328
|
registerTypeUrl(): void;
|
|
914
1329
|
};
|
|
1330
|
+
/**
|
|
1331
|
+
* QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method.
|
|
1332
|
+
* @name QuerySupplyOfResponse
|
|
1333
|
+
* @package cosmos.bank.v1beta1
|
|
1334
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfResponse
|
|
1335
|
+
*/
|
|
915
1336
|
export declare const QuerySupplyOfResponse: {
|
|
916
1337
|
typeUrl: string;
|
|
917
1338
|
aminoType: string;
|
|
@@ -929,6 +1350,12 @@ export declare const QuerySupplyOfResponse: {
|
|
|
929
1350
|
toProtoMsg(message: QuerySupplyOfResponse): QuerySupplyOfResponseProtoMsg;
|
|
930
1351
|
registerTypeUrl(): void;
|
|
931
1352
|
};
|
|
1353
|
+
/**
|
|
1354
|
+
* QueryParamsRequest defines the request type for querying x/bank parameters.
|
|
1355
|
+
* @name QueryParamsRequest
|
|
1356
|
+
* @package cosmos.bank.v1beta1
|
|
1357
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsRequest
|
|
1358
|
+
*/
|
|
932
1359
|
export declare const QueryParamsRequest: {
|
|
933
1360
|
typeUrl: string;
|
|
934
1361
|
aminoType: string;
|
|
@@ -946,6 +1373,12 @@ export declare const QueryParamsRequest: {
|
|
|
946
1373
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
947
1374
|
registerTypeUrl(): void;
|
|
948
1375
|
};
|
|
1376
|
+
/**
|
|
1377
|
+
* QueryParamsResponse defines the response type for querying x/bank parameters.
|
|
1378
|
+
* @name QueryParamsResponse
|
|
1379
|
+
* @package cosmos.bank.v1beta1
|
|
1380
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsResponse
|
|
1381
|
+
*/
|
|
949
1382
|
export declare const QueryParamsResponse: {
|
|
950
1383
|
typeUrl: string;
|
|
951
1384
|
aminoType: string;
|
|
@@ -963,6 +1396,12 @@ export declare const QueryParamsResponse: {
|
|
|
963
1396
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
964
1397
|
registerTypeUrl(): void;
|
|
965
1398
|
};
|
|
1399
|
+
/**
|
|
1400
|
+
* QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method.
|
|
1401
|
+
* @name QueryDenomsMetadataRequest
|
|
1402
|
+
* @package cosmos.bank.v1beta1
|
|
1403
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataRequest
|
|
1404
|
+
*/
|
|
966
1405
|
export declare const QueryDenomsMetadataRequest: {
|
|
967
1406
|
typeUrl: string;
|
|
968
1407
|
aminoType: string;
|
|
@@ -980,6 +1419,13 @@ export declare const QueryDenomsMetadataRequest: {
|
|
|
980
1419
|
toProtoMsg(message: QueryDenomsMetadataRequest): QueryDenomsMetadataRequestProtoMsg;
|
|
981
1420
|
registerTypeUrl(): void;
|
|
982
1421
|
};
|
|
1422
|
+
/**
|
|
1423
|
+
* QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC
|
|
1424
|
+
* method.
|
|
1425
|
+
* @name QueryDenomsMetadataResponse
|
|
1426
|
+
* @package cosmos.bank.v1beta1
|
|
1427
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataResponse
|
|
1428
|
+
*/
|
|
983
1429
|
export declare const QueryDenomsMetadataResponse: {
|
|
984
1430
|
typeUrl: string;
|
|
985
1431
|
aminoType: string;
|
|
@@ -997,6 +1443,12 @@ export declare const QueryDenomsMetadataResponse: {
|
|
|
997
1443
|
toProtoMsg(message: QueryDenomsMetadataResponse): QueryDenomsMetadataResponseProtoMsg;
|
|
998
1444
|
registerTypeUrl(): void;
|
|
999
1445
|
};
|
|
1446
|
+
/**
|
|
1447
|
+
* QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method.
|
|
1448
|
+
* @name QueryDenomMetadataRequest
|
|
1449
|
+
* @package cosmos.bank.v1beta1
|
|
1450
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataRequest
|
|
1451
|
+
*/
|
|
1000
1452
|
export declare const QueryDenomMetadataRequest: {
|
|
1001
1453
|
typeUrl: string;
|
|
1002
1454
|
aminoType: string;
|
|
@@ -1014,6 +1466,13 @@ export declare const QueryDenomMetadataRequest: {
|
|
|
1014
1466
|
toProtoMsg(message: QueryDenomMetadataRequest): QueryDenomMetadataRequestProtoMsg;
|
|
1015
1467
|
registerTypeUrl(): void;
|
|
1016
1468
|
};
|
|
1469
|
+
/**
|
|
1470
|
+
* QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC
|
|
1471
|
+
* method.
|
|
1472
|
+
* @name QueryDenomMetadataResponse
|
|
1473
|
+
* @package cosmos.bank.v1beta1
|
|
1474
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataResponse
|
|
1475
|
+
*/
|
|
1017
1476
|
export declare const QueryDenomMetadataResponse: {
|
|
1018
1477
|
typeUrl: string;
|
|
1019
1478
|
aminoType: string;
|
|
@@ -1031,6 +1490,13 @@ export declare const QueryDenomMetadataResponse: {
|
|
|
1031
1490
|
toProtoMsg(message: QueryDenomMetadataResponse): QueryDenomMetadataResponseProtoMsg;
|
|
1032
1491
|
registerTypeUrl(): void;
|
|
1033
1492
|
};
|
|
1493
|
+
/**
|
|
1494
|
+
* QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method.
|
|
1495
|
+
* Identical with QueryDenomMetadataRequest but receives denom as query string.
|
|
1496
|
+
* @name QueryDenomMetadataByQueryStringRequest
|
|
1497
|
+
* @package cosmos.bank.v1beta1
|
|
1498
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest
|
|
1499
|
+
*/
|
|
1034
1500
|
export declare const QueryDenomMetadataByQueryStringRequest: {
|
|
1035
1501
|
typeUrl: string;
|
|
1036
1502
|
aminoType: string;
|
|
@@ -1048,6 +1514,13 @@ export declare const QueryDenomMetadataByQueryStringRequest: {
|
|
|
1048
1514
|
toProtoMsg(message: QueryDenomMetadataByQueryStringRequest): QueryDenomMetadataByQueryStringRequestProtoMsg;
|
|
1049
1515
|
registerTypeUrl(): void;
|
|
1050
1516
|
};
|
|
1517
|
+
/**
|
|
1518
|
+
* QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC
|
|
1519
|
+
* method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.
|
|
1520
|
+
* @name QueryDenomMetadataByQueryStringResponse
|
|
1521
|
+
* @package cosmos.bank.v1beta1
|
|
1522
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse
|
|
1523
|
+
*/
|
|
1051
1524
|
export declare const QueryDenomMetadataByQueryStringResponse: {
|
|
1052
1525
|
typeUrl: string;
|
|
1053
1526
|
aminoType: string;
|
|
@@ -1065,6 +1538,14 @@ export declare const QueryDenomMetadataByQueryStringResponse: {
|
|
|
1065
1538
|
toProtoMsg(message: QueryDenomMetadataByQueryStringResponse): QueryDenomMetadataByQueryStringResponseProtoMsg;
|
|
1066
1539
|
registerTypeUrl(): void;
|
|
1067
1540
|
};
|
|
1541
|
+
/**
|
|
1542
|
+
* QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query,
|
|
1543
|
+
* which queries for a paginated set of all account holders of a particular
|
|
1544
|
+
* denomination.
|
|
1545
|
+
* @name QueryDenomOwnersRequest
|
|
1546
|
+
* @package cosmos.bank.v1beta1
|
|
1547
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersRequest
|
|
1548
|
+
*/
|
|
1068
1549
|
export declare const QueryDenomOwnersRequest: {
|
|
1069
1550
|
typeUrl: string;
|
|
1070
1551
|
aminoType: string;
|
|
@@ -1082,6 +1563,16 @@ export declare const QueryDenomOwnersRequest: {
|
|
|
1082
1563
|
toProtoMsg(message: QueryDenomOwnersRequest): QueryDenomOwnersRequestProtoMsg;
|
|
1083
1564
|
registerTypeUrl(): void;
|
|
1084
1565
|
};
|
|
1566
|
+
/**
|
|
1567
|
+
* DenomOwner defines structure representing an account that owns or holds a
|
|
1568
|
+
* particular denominated token. It contains the account address and account
|
|
1569
|
+
* balance of the denominated token.
|
|
1570
|
+
*
|
|
1571
|
+
* Since: cosmos-sdk 0.46
|
|
1572
|
+
* @name DenomOwner
|
|
1573
|
+
* @package cosmos.bank.v1beta1
|
|
1574
|
+
* @see proto type: cosmos.bank.v1beta1.DenomOwner
|
|
1575
|
+
*/
|
|
1085
1576
|
export declare const DenomOwner: {
|
|
1086
1577
|
typeUrl: string;
|
|
1087
1578
|
aminoType: string;
|
|
@@ -1099,6 +1590,14 @@ export declare const DenomOwner: {
|
|
|
1099
1590
|
toProtoMsg(message: DenomOwner): DenomOwnerProtoMsg;
|
|
1100
1591
|
registerTypeUrl(): void;
|
|
1101
1592
|
};
|
|
1593
|
+
/**
|
|
1594
|
+
* QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.
|
|
1595
|
+
*
|
|
1596
|
+
* Since: cosmos-sdk 0.46
|
|
1597
|
+
* @name QueryDenomOwnersResponse
|
|
1598
|
+
* @package cosmos.bank.v1beta1
|
|
1599
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersResponse
|
|
1600
|
+
*/
|
|
1102
1601
|
export declare const QueryDenomOwnersResponse: {
|
|
1103
1602
|
typeUrl: string;
|
|
1104
1603
|
aminoType: string;
|
|
@@ -1116,6 +1615,16 @@ export declare const QueryDenomOwnersResponse: {
|
|
|
1116
1615
|
toProtoMsg(message: QueryDenomOwnersResponse): QueryDenomOwnersResponseProtoMsg;
|
|
1117
1616
|
registerTypeUrl(): void;
|
|
1118
1617
|
};
|
|
1618
|
+
/**
|
|
1619
|
+
* QueryDenomOwnersByQueryRequest defines the request type for the DenomOwnersByQuery RPC query,
|
|
1620
|
+
* which queries for a paginated set of all account holders of a particular
|
|
1621
|
+
* denomination.
|
|
1622
|
+
*
|
|
1623
|
+
* Since: cosmos-sdk 0.50.3
|
|
1624
|
+
* @name QueryDenomOwnersByQueryRequest
|
|
1625
|
+
* @package cosmos.bank.v1beta1
|
|
1626
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest
|
|
1627
|
+
*/
|
|
1119
1628
|
export declare const QueryDenomOwnersByQueryRequest: {
|
|
1120
1629
|
typeUrl: string;
|
|
1121
1630
|
aminoType: string;
|
|
@@ -1133,6 +1642,14 @@ export declare const QueryDenomOwnersByQueryRequest: {
|
|
|
1133
1642
|
toProtoMsg(message: QueryDenomOwnersByQueryRequest): QueryDenomOwnersByQueryRequestProtoMsg;
|
|
1134
1643
|
registerTypeUrl(): void;
|
|
1135
1644
|
};
|
|
1645
|
+
/**
|
|
1646
|
+
* QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.
|
|
1647
|
+
*
|
|
1648
|
+
* Since: cosmos-sdk 0.50.3
|
|
1649
|
+
* @name QueryDenomOwnersByQueryResponse
|
|
1650
|
+
* @package cosmos.bank.v1beta1
|
|
1651
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse
|
|
1652
|
+
*/
|
|
1136
1653
|
export declare const QueryDenomOwnersByQueryResponse: {
|
|
1137
1654
|
typeUrl: string;
|
|
1138
1655
|
aminoType: string;
|
|
@@ -1150,6 +1667,14 @@ export declare const QueryDenomOwnersByQueryResponse: {
|
|
|
1150
1667
|
toProtoMsg(message: QueryDenomOwnersByQueryResponse): QueryDenomOwnersByQueryResponseProtoMsg;
|
|
1151
1668
|
registerTypeUrl(): void;
|
|
1152
1669
|
};
|
|
1670
|
+
/**
|
|
1671
|
+
* QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.
|
|
1672
|
+
*
|
|
1673
|
+
* Since: cosmos-sdk 0.47
|
|
1674
|
+
* @name QuerySendEnabledRequest
|
|
1675
|
+
* @package cosmos.bank.v1beta1
|
|
1676
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledRequest
|
|
1677
|
+
*/
|
|
1153
1678
|
export declare const QuerySendEnabledRequest: {
|
|
1154
1679
|
typeUrl: string;
|
|
1155
1680
|
aminoType: string;
|
|
@@ -1167,6 +1692,14 @@ export declare const QuerySendEnabledRequest: {
|
|
|
1167
1692
|
toProtoMsg(message: QuerySendEnabledRequest): QuerySendEnabledRequestProtoMsg;
|
|
1168
1693
|
registerTypeUrl(): void;
|
|
1169
1694
|
};
|
|
1695
|
+
/**
|
|
1696
|
+
* QuerySendEnabledResponse defines the RPC response of a SendEnable query.
|
|
1697
|
+
*
|
|
1698
|
+
* Since: cosmos-sdk 0.47
|
|
1699
|
+
* @name QuerySendEnabledResponse
|
|
1700
|
+
* @package cosmos.bank.v1beta1
|
|
1701
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledResponse
|
|
1702
|
+
*/
|
|
1170
1703
|
export declare const QuerySendEnabledResponse: {
|
|
1171
1704
|
typeUrl: string;
|
|
1172
1705
|
aminoType: string;
|