@xpla/xplajs 1.7.0-beta.6 → 1.7.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +59 -0
- package/package.json +8 -14
- package/src/amino/amino.ts +1 -0
- package/src/binary.d.ts +130 -0
- package/src/binary.js +370 -0
- package/src/binary.ts +534 -0
- package/src/cosmos/app/runtime/v1alpha1/module.ts +423 -0
- package/src/cosmos/app/runtime/v2/module.ts +589 -0
- package/src/cosmos/app/v1alpha1/config.ts +422 -0
- package/src/cosmos/app/v1alpha1/module.ts +461 -0
- package/src/cosmos/app/v1alpha1/query.rpc.Query.ts +30 -0
- package/src/cosmos/app/v1alpha1/query.rpc.func.ts +9 -0
- package/src/cosmos/app/v1alpha1/query.ts +177 -0
- package/src/cosmos/auth/module/v1/module.ts +253 -0
- package/src/cosmos/auth/v1beta1/accounts.ts +226 -0
- package/src/cosmos/auth/v1beta1/auth.ts +550 -0
- package/src/cosmos/auth/v1beta1/genesis.ts +119 -0
- package/src/cosmos/auth/v1beta1/query.lcd.ts +94 -0
- package/src/cosmos/auth/v1beta1/query.rpc.Query.ts +179 -0
- package/src/cosmos/auth/v1beta1/query.rpc.func.ts +72 -0
- package/src/cosmos/auth/v1beta1/query.ts +2034 -0
- package/src/cosmos/auth/v1beta1/tx.amino.ts +8 -0
- package/src/cosmos/auth/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/auth/v1beta1/tx.rpc.func.ts +9 -0
- package/src/cosmos/auth/v1beta1/tx.rpc.msg.ts +31 -0
- package/src/cosmos/auth/v1beta1/tx.ts +219 -0
- package/src/cosmos/authz/module/v1/module.ts +80 -0
- package/src/cosmos/authz/v1beta1/authz.d.ts +177 -0
- package/src/cosmos/authz/v1beta1/authz.ts +481 -0
- package/src/cosmos/authz/v1beta1/event.ts +259 -0
- package/src/cosmos/authz/v1beta1/genesis.ts +100 -0
- package/src/cosmos/authz/v1beta1/query.lcd.ts +59 -0
- package/src/cosmos/authz/v1beta1/query.rpc.Query.ts +64 -0
- package/src/cosmos/authz/v1beta1/query.rpc.func.ts +23 -0
- package/src/cosmos/authz/v1beta1/query.ts +707 -0
- package/src/cosmos/authz/v1beta1/tx.amino.ts +18 -0
- package/src/cosmos/authz/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/authz/v1beta1/tx.rpc.func.ts +21 -0
- package/src/cosmos/authz/v1beta1/tx.rpc.msg.ts +57 -0
- package/src/cosmos/authz/v1beta1/tx.ts +647 -0
- package/src/cosmos/autocli/v1/options.ts +1145 -0
- package/src/cosmos/autocli/v1/query.rpc.Query.ts +31 -0
- package/src/cosmos/autocli/v1/query.rpc.func.ts +9 -0
- package/src/cosmos/autocli/v1/query.ts +288 -0
- package/src/cosmos/bank/module/v1/module.ts +153 -0
- package/src/cosmos/bank/v1beta1/authz.ts +138 -0
- package/src/cosmos/bank/v1beta1/bank.ts +974 -0
- package/src/cosmos/bank/v1beta1/genesis.ts +307 -0
- package/src/cosmos/bank/v1beta1/query.lcd.ts +194 -0
- package/src/cosmos/bank/v1beta1/query.rpc.Query.ts +258 -0
- package/src/cosmos/bank/v1beta1/query.rpc.func.ts +93 -0
- package/src/cosmos/bank/v1beta1/query.ts +3027 -0
- package/src/cosmos/bank/v1beta1/tx.amino.ts +23 -0
- package/src/cosmos/bank/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/bank/v1beta1/tx.rpc.func.ts +27 -0
- package/src/cosmos/bank/v1beta1/tx.rpc.msg.ts +67 -0
- package/src/cosmos/bank/v1beta1/tx.ts +861 -0
- package/src/cosmos/base/abci/v1beta1/abci.ts +1698 -0
- package/src/cosmos/base/grpc/v2/service.rpc.Service.ts +41 -0
- package/src/cosmos/base/grpc/v2/service.rpc.func.ts +16 -0
- package/src/cosmos/base/grpc/v2/service.ts +473 -0
- package/src/cosmos/base/node/v1beta1/query.lcd.ts +22 -0
- package/src/cosmos/base/node/v1beta1/query.rpc.Service.ts +41 -0
- package/src/cosmos/base/node/v1beta1/query.rpc.func.ts +16 -0
- package/src/cosmos/base/node/v1beta1/query.ts +454 -0
- package/src/cosmos/base/query/v1beta1/pagination.ts +361 -0
- package/src/cosmos/base/reflection/v1beta1/reflection.rpc.func.ts +16 -0
- package/src/cosmos/base/reflection/v1beta1/reflection.ts +382 -0
- package/src/cosmos/base/reflection/v2alpha1/reflection.rpc.func.ts +44 -0
- package/src/cosmos/base/reflection/v2alpha1/reflection.ts +2727 -0
- package/src/cosmos/base/tendermint/v1beta1/query.lcd.ts +81 -0
- package/src/cosmos/base/tendermint/v1beta1/query.rpc.Service.ts +108 -0
- package/src/cosmos/base/tendermint/v1beta1/query.rpc.func.ts +51 -0
- package/src/cosmos/base/tendermint/v1beta1/query.ts +2302 -0
- package/src/cosmos/base/tendermint/v1beta1/types.ts +455 -0
- package/src/cosmos/base/v1beta1/coin.ts +439 -0
- package/src/cosmos/circuit/module/v1/module.ts +99 -0
- package/src/cosmos/circuit/v1/query.lcd.ts +36 -0
- package/src/cosmos/circuit/v1/query.rpc.Query.ts +54 -0
- package/src/cosmos/circuit/v1/query.rpc.func.ts +23 -0
- package/src/cosmos/circuit/v1/query.ts +574 -0
- package/src/cosmos/circuit/v1/tx.amino.ts +18 -0
- package/src/cosmos/circuit/v1/tx.registry.ts +3 -0
- package/src/cosmos/circuit/v1/tx.rpc.func.ts +21 -0
- package/src/cosmos/circuit/v1/tx.rpc.msg.ts +47 -0
- package/src/cosmos/circuit/v1/tx.ts +676 -0
- package/src/cosmos/circuit/v1/types.ts +413 -0
- package/src/cosmos/consensus/module/v1/module.ts +99 -0
- package/src/cosmos/consensus/v1/query.lcd.ts +17 -0
- package/src/cosmos/consensus/v1/query.rpc.Query.ts +30 -0
- package/src/cosmos/consensus/v1/query.rpc.func.ts +9 -0
- package/src/cosmos/consensus/v1/query.ts +185 -0
- package/src/cosmos/consensus/v1/tx.amino.ts +8 -0
- package/src/cosmos/consensus/v1/tx.registry.ts +3 -0
- package/src/cosmos/consensus/v1/tx.rpc.func.ts +9 -0
- package/src/cosmos/consensus/v1/tx.rpc.msg.ts +31 -0
- package/src/cosmos/consensus/v1/tx.ts +255 -0
- package/src/cosmos/crisis/module/v1/module.ts +115 -0
- package/src/cosmos/crisis/v1beta1/genesis.ts +106 -0
- package/src/cosmos/crisis/v1beta1/tx.amino.ts +13 -0
- package/src/cosmos/crisis/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/crisis/v1beta1/tx.rpc.func.ts +15 -0
- package/src/cosmos/crisis/v1beta1/tx.rpc.msg.ts +39 -0
- package/src/cosmos/crisis/v1beta1/tx.ts +416 -0
- package/src/cosmos/crypto/ed25519/keys.ts +209 -0
- package/src/cosmos/crypto/hd/v1/hd.ts +169 -0
- package/src/cosmos/crypto/keyring/v1/record.ts +529 -0
- package/src/cosmos/crypto/multisig/keys.ts +122 -0
- package/src/cosmos/crypto/multisig/v1beta1/multisig.ts +225 -0
- package/src/cosmos/crypto/secp256k1/keys.ts +203 -0
- package/src/cosmos/crypto/secp256r1/keys.ts +201 -0
- package/src/cosmos/distribution/module/v1/module.ts +113 -0
- package/src/cosmos/distribution/v1beta1/distribution.ts +1494 -0
- package/src/cosmos/distribution/v1beta1/genesis.ts +1129 -0
- package/src/cosmos/distribution/v1beta1/query.lcd.ts +76 -0
- package/src/cosmos/distribution/v1beta1/query.rpc.Query.ts +133 -0
- package/src/cosmos/distribution/v1beta1/query.rpc.func.ts +72 -0
- package/src/cosmos/distribution/v1beta1/query.ts +2126 -0
- package/src/cosmos/distribution/v1beta1/tx.amino.ts +38 -0
- package/src/cosmos/distribution/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/distribution/v1beta1/tx.rpc.func.ts +45 -0
- package/src/cosmos/distribution/v1beta1/tx.rpc.msg.ts +115 -0
- package/src/cosmos/distribution/v1beta1/tx.ts +1478 -0
- package/src/cosmos/evidence/module/v1/module.ts +80 -0
- package/src/cosmos/evidence/v1beta1/evidence.ts +154 -0
- package/src/cosmos/evidence/v1beta1/genesis.ts +102 -0
- package/src/cosmos/evidence/v1beta1/query.lcd.ts +37 -0
- package/src/cosmos/evidence/v1beta1/query.rpc.Query.ts +43 -0
- package/src/cosmos/evidence/v1beta1/query.rpc.func.ts +16 -0
- package/src/cosmos/evidence/v1beta1/query.ts +451 -0
- package/src/cosmos/evidence/v1beta1/tx.amino.ts +8 -0
- package/src/cosmos/evidence/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/evidence/v1beta1/tx.rpc.func.ts +9 -0
- package/src/cosmos/evidence/v1beta1/tx.rpc.msg.ts +27 -0
- package/src/cosmos/evidence/v1beta1/tx.ts +221 -0
- package/src/cosmos/feegrant/module/v1/module.ts +80 -0
- package/src/cosmos/feegrant/v1beta1/feegrant.ts +573 -0
- package/src/cosmos/feegrant/v1beta1/genesis.ts +100 -0
- package/src/cosmos/feegrant/v1beta1/query.lcd.ts +42 -0
- package/src/cosmos/feegrant/v1beta1/query.rpc.Query.ts +58 -0
- package/src/cosmos/feegrant/v1beta1/query.rpc.func.ts +23 -0
- package/src/cosmos/feegrant/v1beta1/query.ts +677 -0
- package/src/cosmos/feegrant/v1beta1/tx.amino.ts +18 -0
- package/src/cosmos/feegrant/v1beta1/tx.d.ts +232 -0
- package/src/cosmos/feegrant/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/feegrant/v1beta1/tx.rpc.func.ts +21 -0
- package/src/cosmos/feegrant/v1beta1/tx.rpc.msg.ts +53 -0
- package/src/cosmos/feegrant/v1beta1/tx.ts +597 -0
- package/src/cosmos/genutil/module/v1/module.ts +80 -0
- package/src/cosmos/genutil/v1beta1/genesis.ts +101 -0
- package/src/cosmos/gov/module/v1/module.ts +121 -0
- package/src/cosmos/gov/v1/genesis.ts +280 -0
- package/src/cosmos/gov/v1/gov.ts +1843 -0
- package/src/cosmos/gov/v1/query.lcd.ts +85 -0
- package/src/cosmos/gov/v1/query.rpc.Query.ts +118 -0
- package/src/cosmos/gov/v1/query.rpc.func.ts +65 -0
- package/src/cosmos/gov/v1/query.ts +1970 -0
- package/src/cosmos/gov/v1/tx.amino.ts +38 -0
- package/src/cosmos/gov/v1/tx.d.ts +624 -0
- package/src/cosmos/gov/v1/tx.registry.ts +3 -0
- package/src/cosmos/gov/v1/tx.rpc.func.ts +45 -0
- package/src/cosmos/gov/v1/tx.rpc.msg.ts +89 -0
- package/src/cosmos/gov/v1/tx.ts +1657 -0
- package/src/cosmos/gov/v1beta1/genesis.ts +202 -0
- package/src/cosmos/gov/v1beta1/gov.d.ts +522 -0
- package/src/cosmos/gov/v1beta1/gov.ts +1425 -0
- package/src/cosmos/gov/v1beta1/query.lcd.ts +80 -0
- package/src/cosmos/gov/v1beta1/query.rpc.Query.ts +107 -0
- package/src/cosmos/gov/v1beta1/query.rpc.func.ts +58 -0
- package/src/cosmos/gov/v1beta1/query.ts +1749 -0
- package/src/cosmos/gov/v1beta1/tx.amino.ts +23 -0
- package/src/cosmos/gov/v1beta1/tx.d.ts +325 -0
- package/src/cosmos/gov/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/gov/v1beta1/tx.rpc.func.ts +27 -0
- package/src/cosmos/gov/v1beta1/tx.rpc.msg.ts +53 -0
- package/src/cosmos/gov/v1beta1/tx.ts +881 -0
- package/src/cosmos/group/module/v1/module.ts +128 -0
- package/src/cosmos/group/v1/events.ts +1044 -0
- package/src/cosmos/group/v1/genesis.ts +240 -0
- package/src/cosmos/group/v1/query.lcd.ts +145 -0
- package/src/cosmos/group/v1/query.rpc.Query.ts +191 -0
- package/src/cosmos/group/v1/query.rpc.func.ts +100 -0
- package/src/cosmos/group/v1/query.ts +3015 -0
- package/src/cosmos/group/v1/tx.amino.ts +73 -0
- package/src/cosmos/group/v1/tx.registry.ts +3 -0
- package/src/cosmos/group/v1/tx.rpc.func.ts +87 -0
- package/src/cosmos/group/v1/tx.rpc.msg.ts +127 -0
- package/src/cosmos/group/v1/tx.ts +3207 -0
- package/src/cosmos/group/v1/types.ts +2081 -0
- package/src/cosmos/ics23/v1/proofs.ts +2060 -0
- package/src/cosmos/mint/module/v1/module.ts +113 -0
- package/src/cosmos/mint/v1beta1/genesis.ts +116 -0
- package/src/cosmos/mint/v1beta1/mint.ts +291 -0
- package/src/cosmos/mint/v1beta1/query.lcd.ts +27 -0
- package/src/cosmos/mint/v1beta1/query.rpc.Query.ts +52 -0
- package/src/cosmos/mint/v1beta1/query.rpc.func.ts +23 -0
- package/src/cosmos/mint/v1beta1/query.ts +541 -0
- package/src/cosmos/mint/v1beta1/tx.amino.ts +8 -0
- package/src/cosmos/mint/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/mint/v1beta1/tx.rpc.func.ts +9 -0
- package/src/cosmos/mint/v1beta1/tx.rpc.msg.ts +31 -0
- package/src/cosmos/mint/v1beta1/tx.ts +219 -0
- package/src/cosmos/msg/textual/v1/textual.ts +1 -0
- package/src/cosmos/msg/v1/msg.ts +1 -0
- package/src/cosmos/nft/module/v1/module.ts +80 -0
- package/src/cosmos/nft/v1beta1/event.ts +403 -0
- package/src/cosmos/nft/v1beta1/genesis.ts +234 -0
- package/src/cosmos/nft/v1beta1/nft.ts +356 -0
- package/src/cosmos/nft/v1beta1/query.lcd.ts +69 -0
- package/src/cosmos/nft/v1beta1/query.rpc.Query.ts +102 -0
- package/src/cosmos/nft/v1beta1/query.rpc.func.ts +51 -0
- package/src/cosmos/nft/v1beta1/query.ts +1465 -0
- package/src/cosmos/nft/v1beta1/tx.amino.ts +8 -0
- package/src/cosmos/nft/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/nft/v1beta1/tx.rpc.func.ts +9 -0
- package/src/cosmos/nft/v1beta1/tx.rpc.msg.ts +23 -0
- package/src/cosmos/nft/v1beta1/tx.ts +224 -0
- package/src/cosmos/orm/module/v1alpha1/module.ts +88 -0
- package/src/cosmos/orm/query/v1alpha1/query.rpc.Query.ts +41 -0
- package/src/cosmos/orm/query/v1alpha1/query.rpc.func.ts +16 -0
- package/src/cosmos/orm/query/v1alpha1/query.ts +993 -0
- package/src/cosmos/orm/v1/orm.ts +589 -0
- package/src/cosmos/orm/v1alpha1/schema.ts +325 -0
- package/src/cosmos/params/module/v1/module.ts +80 -0
- package/src/cosmos/params/v1beta1/params.ts +255 -0
- package/src/cosmos/params/v1beta1/query.lcd.ts +34 -0
- package/src/cosmos/params/v1beta1/query.rpc.Query.ts +51 -0
- package/src/cosmos/params/v1beta1/query.rpc.func.ts +16 -0
- package/src/cosmos/params/v1beta1/query.ts +525 -0
- package/src/cosmos/query/v1/query.ts +1 -0
- package/src/cosmos/reflection/v1/reflection.rpc.func.ts +9 -0
- package/src/cosmos/reflection/v1/reflection.ts +179 -0
- package/src/cosmos/rpc.query.ts +29 -0
- package/src/cosmos/rpc.tx.ts +34 -0
- package/src/cosmos/slashing/module/v1/module.ts +99 -0
- package/src/cosmos/slashing/v1beta1/genesis.ts +492 -0
- package/src/cosmos/slashing/v1beta1/query.lcd.ts +36 -0
- package/src/cosmos/slashing/v1beta1/query.rpc.Query.ts +54 -0
- package/src/cosmos/slashing/v1beta1/query.rpc.func.ts +23 -0
- package/src/cosmos/slashing/v1beta1/query.ts +598 -0
- package/src/cosmos/slashing/v1beta1/slashing.ts +357 -0
- package/src/cosmos/slashing/v1beta1/tx.amino.ts +13 -0
- package/src/cosmos/slashing/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/slashing/v1beta1/tx.rpc.func.ts +15 -0
- package/src/cosmos/slashing/v1beta1/tx.rpc.msg.ts +45 -0
- package/src/cosmos/slashing/v1beta1/tx.ts +390 -0
- package/src/cosmos/staking/module/v1/module.ts +157 -0
- package/src/cosmos/staking/v1beta1/authz.ts +323 -0
- package/src/cosmos/staking/v1beta1/genesis.ts +346 -0
- package/src/cosmos/staking/v1beta1/query.lcd.ts +159 -0
- package/src/cosmos/staking/v1beta1/query.rpc.Query.ts +241 -0
- package/src/cosmos/staking/v1beta1/query.rpc.func.ts +100 -0
- package/src/cosmos/staking/v1beta1/query.ts +3073 -0
- package/src/cosmos/staking/v1beta1/staking.ts +3005 -0
- package/src/cosmos/staking/v1beta1/tx.amino.ts +38 -0
- package/src/cosmos/staking/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/staking/v1beta1/tx.rpc.func.ts +45 -0
- package/src/cosmos/staking/v1beta1/tx.rpc.msg.ts +97 -0
- package/src/cosmos/staking/v1beta1/tx.ts +1638 -0
- package/src/cosmos/store/internal/kv/v1beta1/kv.ts +207 -0
- package/src/cosmos/store/snapshots/v1/snapshot.ts +863 -0
- package/src/cosmos/store/snapshots/v2/snapshot.ts +823 -0
- package/src/cosmos/store/streaming/abci/grpc.ts +393 -0
- package/src/cosmos/store/v1beta1/commit_info.ts +362 -0
- package/src/cosmos/store/v1beta1/listening.ts +286 -0
- package/src/cosmos/streaming/v1/grpc.ts +985 -0
- package/src/cosmos/tx/config/v1/config.ts +127 -0
- package/src/cosmos/tx/signing/v1beta1/signing.ts +688 -0
- package/src/cosmos/tx/v1beta1/service.lcd.ts +57 -0
- package/src/cosmos/tx/v1beta1/service.rpc.Service.ts +148 -0
- package/src/cosmos/tx/v1beta1/service.rpc.func.ts +65 -0
- package/src/cosmos/tx/v1beta1/service.ts +2294 -0
- package/src/cosmos/tx/v1beta1/tx.ts +2029 -0
- package/src/cosmos/upgrade/module/v1/module.ts +99 -0
- package/src/cosmos/upgrade/v1beta1/query.lcd.ts +52 -0
- package/src/cosmos/upgrade/v1beta1/query.rpc.Query.ts +98 -0
- package/src/cosmos/upgrade/v1beta1/query.rpc.func.ts +37 -0
- package/src/cosmos/upgrade/v1beta1/query.ts +1016 -0
- package/src/cosmos/upgrade/v1beta1/tx.amino.ts +13 -0
- package/src/cosmos/upgrade/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/upgrade/v1beta1/tx.rpc.func.ts +15 -0
- package/src/cosmos/upgrade/v1beta1/tx.rpc.msg.ts +45 -0
- package/src/cosmos/upgrade/v1beta1/tx.ts +398 -0
- package/src/cosmos/upgrade/v1beta1/upgrade.ts +591 -0
- package/src/cosmos/validate/module/v1/module.ts +80 -0
- package/src/cosmos/vesting/module/v1/module.ts +80 -0
- package/src/cosmos/vesting/v1beta1/tx.amino.ts +18 -0
- package/src/cosmos/vesting/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/vesting/v1beta1/tx.rpc.func.ts +21 -0
- package/src/cosmos/vesting/v1beta1/tx.rpc.msg.ts +59 -0
- package/src/cosmos/vesting/v1beta1/tx.ts +698 -0
- package/src/cosmos/vesting/v1beta1/vesting.ts +735 -0
- package/src/cosmos_proto/cosmos.ts +341 -0
- package/src/cosmwasm/wasm/v1/authz.ts +1231 -0
- package/src/cosmwasm/wasm/v1/genesis.ts +532 -0
- package/src/cosmwasm/wasm/v1/ibc.ts +355 -0
- package/src/cosmwasm/wasm/v1/proposal_legacy.ts +2432 -0
- package/src/cosmwasm/wasm/v1/query.lcd.ts +108 -0
- package/src/cosmwasm/wasm/v1/query.rpc.Query.ts +144 -0
- package/src/cosmwasm/wasm/v1/query.rpc.func.ts +79 -0
- package/src/cosmwasm/wasm/v1/query.ts +2560 -0
- package/src/cosmwasm/wasm/v1/tx.amino.ts +88 -0
- package/src/cosmwasm/wasm/v1/tx.registry.ts +3 -0
- package/src/cosmwasm/wasm/v1/tx.rpc.func.ts +105 -0
- package/src/cosmwasm/wasm/v1/tx.rpc.msg.ts +225 -0
- package/src/cosmwasm/wasm/v1/tx.ts +4191 -0
- package/src/cosmwasm/wasm/v1/types.ts +1120 -0
- package/src/ethermint/crypto/v1/ethsecp256k1/keys.ts +193 -0
- package/src/ethermint/evm/v1/events.ts +485 -0
- package/src/ethermint/evm/v1/evm.ts +1590 -0
- package/src/ethermint/evm/v1/genesis.ts +240 -0
- package/src/ethermint/evm/v1/query.lcd.ts +157 -0
- package/src/ethermint/evm/v1/query.rpc.Query.ts +164 -0
- package/src/ethermint/evm/v1/query.rpc.func.ts +87 -0
- package/src/ethermint/evm/v1/query.ts +2535 -0
- package/src/ethermint/evm/v1/tx.amino.ts +13 -0
- package/src/ethermint/evm/v1/tx.registry.ts +3 -0
- package/src/ethermint/evm/v1/tx.rpc.func.ts +15 -0
- package/src/ethermint/evm/v1/tx.rpc.msg.ts +35 -0
- package/src/ethermint/evm/v1/tx.ts +1333 -0
- package/src/ethermint/feemarket/v1/events.ts +195 -0
- package/src/ethermint/feemarket/v1/feemarket.ts +213 -0
- package/src/ethermint/feemarket/v1/genesis.ts +114 -0
- package/src/ethermint/feemarket/v1/query.lcd.ts +27 -0
- package/src/ethermint/feemarket/v1/query.rpc.Query.ts +52 -0
- package/src/ethermint/feemarket/v1/query.rpc.func.ts +23 -0
- package/src/ethermint/feemarket/v1/query.ts +487 -0
- package/src/ethermint/feemarket/v1/tx.amino.ts +8 -0
- package/src/ethermint/feemarket/v1/tx.registry.ts +3 -0
- package/src/ethermint/feemarket/v1/tx.rpc.func.ts +9 -0
- package/src/ethermint/feemarket/v1/tx.rpc.msg.ts +27 -0
- package/src/ethermint/feemarket/v1/tx.ts +197 -0
- package/src/ethermint/types/v1/account.ts +114 -0
- package/src/ethermint/types/v1/dynamic_fee.ts +91 -0
- package/src/ethermint/types/v1/indexer.ts +205 -0
- package/src/ethermint/types/v1/web3.ts +147 -0
- package/src/extern.d.ts +10 -0
- package/src/extern.js +36 -0
- package/src/extern.ts +38 -0
- package/src/gogoproto/gogo.ts +1 -0
- package/src/google/api/annotations.ts +1 -0
- package/src/google/api/http.ts +1069 -0
- package/src/google/protobuf/any.ts +331 -0
- package/src/google/protobuf/descriptor.ts +7177 -0
- package/src/google/protobuf/duration.ts +225 -0
- package/src/google/protobuf/timestamp.ts +281 -0
- package/src/helper-func-types.d.ts +117 -0
- package/src/helper-func-types.js +55 -0
- package/src/helper-func-types.ts +191 -0
- package/src/helpers.d.ts +82 -0
- package/src/helpers.js +143 -0
- package/src/helpers.ts +259 -0
- package/src/ibc/applications/fee/v1/ack.ts +131 -0
- package/src/ibc/applications/fee/v1/fee.ts +481 -0
- package/src/ibc/applications/fee/v1/genesis.ts +661 -0
- package/src/ibc/applications/fee/v1/metadata.ts +121 -0
- package/src/ibc/applications/fee/v1/query.lcd.ts +117 -0
- package/src/ibc/applications/fee/v1/query.rpc.Query.ts +129 -0
- package/src/ibc/applications/fee/v1/query.rpc.func.ts +72 -0
- package/src/ibc/applications/fee/v1/query.ts +2134 -0
- package/src/ibc/applications/fee/v1/tx.amino.ts +23 -0
- package/src/ibc/applications/fee/v1/tx.registry.ts +3 -0
- package/src/ibc/applications/fee/v1/tx.rpc.func.ts +27 -0
- package/src/ibc/applications/fee/v1/tx.rpc.msg.ts +83 -0
- package/src/ibc/applications/fee/v1/tx.ts +889 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/controller.ts +105 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/query.lcd.ts +22 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/query.rpc.Query.ts +41 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.ts +16 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/query.ts +379 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.amino.ts +18 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.registry.ts +3 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.ts +21 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.msg.ts +39 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.ts +685 -0
- package/src/ibc/applications/interchain_accounts/genesis/v1/genesis.ts +661 -0
- package/src/ibc/applications/interchain_accounts/host/v1/host.ts +253 -0
- package/src/ibc/applications/interchain_accounts/host/v1/query.lcd.ts +17 -0
- package/src/ibc/applications/interchain_accounts/host/v1/query.rpc.Query.ts +30 -0
- package/src/ibc/applications/interchain_accounts/host/v1/query.rpc.func.ts +9 -0
- package/src/ibc/applications/interchain_accounts/host/v1/query.ts +177 -0
- package/src/ibc/applications/interchain_accounts/host/v1/tx.amino.ts +13 -0
- package/src/ibc/applications/interchain_accounts/host/v1/tx.registry.ts +3 -0
- package/src/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.ts +15 -0
- package/src/ibc/applications/interchain_accounts/host/v1/tx.rpc.msg.ts +31 -0
- package/src/ibc/applications/interchain_accounts/host/v1/tx.ts +429 -0
- package/src/ibc/applications/interchain_accounts/v1/account.ts +112 -0
- package/src/ibc/applications/interchain_accounts/v1/metadata.ts +191 -0
- package/src/ibc/applications/interchain_accounts/v1/packet.ts +259 -0
- package/src/ibc/applications/transfer/v1/authz.ts +280 -0
- package/src/ibc/applications/transfer/v1/genesis.ts +153 -0
- package/src/ibc/applications/transfer/v1/query.lcd.ts +69 -0
- package/src/ibc/applications/transfer/v1/query.rpc.Query.ts +87 -0
- package/src/ibc/applications/transfer/v1/query.rpc.func.ts +44 -0
- package/src/ibc/applications/transfer/v1/query.ts +1205 -0
- package/src/ibc/applications/transfer/v1/transfer.ts +261 -0
- package/src/ibc/applications/transfer/v1/tx.amino.ts +13 -0
- package/src/ibc/applications/transfer/v1/tx.registry.ts +3 -0
- package/src/ibc/applications/transfer/v1/tx.rpc.func.ts +15 -0
- package/src/ibc/applications/transfer/v1/tx.rpc.msg.ts +31 -0
- package/src/ibc/applications/transfer/v1/tx.ts +532 -0
- package/src/ibc/applications/transfer/v2/packet.ts +171 -0
- package/src/ibc/core/channel/v1/channel.ts +1510 -0
- package/src/ibc/core/channel/v1/genesis.ts +354 -0
- package/src/ibc/core/channel/v1/query.lcd.ts +135 -0
- package/src/ibc/core/channel/v1/query.rpc.Query.ts +240 -0
- package/src/ibc/core/channel/v1/query.rpc.func.ts +121 -0
- package/src/ibc/core/channel/v1/query.ts +4354 -0
- package/src/ibc/core/channel/v1/tx.amino.ts +98 -0
- package/src/ibc/core/channel/v1/tx.registry.ts +3 -0
- package/src/ibc/core/channel/v1/tx.rpc.func.ts +117 -0
- package/src/ibc/core/channel/v1/tx.rpc.msg.ts +171 -0
- package/src/ibc/core/channel/v1/tx.ts +4866 -0
- package/src/ibc/core/channel/v1/upgrade.ts +388 -0
- package/src/ibc/core/client/v1/client.ts +927 -0
- package/src/ibc/core/client/v1/genesis.ts +426 -0
- package/src/ibc/core/client/v1/query.lcd.ts +86 -0
- package/src/ibc/core/client/v1/query.rpc.Query.ts +139 -0
- package/src/ibc/core/client/v1/query.rpc.func.ts +72 -0
- package/src/ibc/core/client/v1/query.ts +2280 -0
- package/src/ibc/core/client/v1/tx.amino.ts +38 -0
- package/src/ibc/core/client/v1/tx.registry.ts +3 -0
- package/src/ibc/core/client/v1/tx.rpc.func.ts +45 -0
- package/src/ibc/core/client/v1/tx.rpc.msg.ts +71 -0
- package/src/ibc/core/client/v1/tx.ts +1543 -0
- package/src/ibc/core/commitment/v1/commitment.ts +418 -0
- package/src/ibc/core/connection/v1/connection.ts +1010 -0
- package/src/ibc/core/connection/v1/genesis.ts +146 -0
- package/src/ibc/core/connection/v1/query.lcd.ts +54 -0
- package/src/ibc/core/connection/v1/query.rpc.Query.ts +99 -0
- package/src/ibc/core/connection/v1/query.rpc.func.ts +44 -0
- package/src/ibc/core/connection/v1/query.ts +1408 -0
- package/src/ibc/core/connection/v1/tx.amino.ts +28 -0
- package/src/ibc/core/connection/v1/tx.registry.ts +3 -0
- package/src/ibc/core/connection/v1/tx.rpc.func.ts +33 -0
- package/src/ibc/core/connection/v1/tx.rpc.msg.ts +63 -0
- package/src/ibc/core/connection/v1/tx.ts +1365 -0
- package/src/ibc/core/types/v1/genesis.ts +137 -0
- package/src/ibc/lightclients/localhost/v2/localhost.ts +100 -0
- package/src/ibc/lightclients/solomachine/v2/solomachine.ts +2103 -0
- package/src/ibc/lightclients/solomachine/v3/solomachine.ts +1070 -0
- package/src/ibc/lightclients/tendermint/v1/tendermint.ts +838 -0
- package/src/ibc/lightclients/wasm/v1/genesis.ts +197 -0
- package/src/ibc/lightclients/wasm/v1/query.lcd.ts +31 -0
- package/src/ibc/lightclients/wasm/v1/query.rpc.Query.ts +43 -0
- package/src/ibc/lightclients/wasm/v1/query.rpc.func.ts +16 -0
- package/src/ibc/lightclients/wasm/v1/query.ts +404 -0
- package/src/ibc/lightclients/wasm/v1/tx.amino.ts +18 -0
- package/src/ibc/lightclients/wasm/v1/tx.registry.ts +3 -0
- package/src/ibc/lightclients/wasm/v1/tx.rpc.func.ts +21 -0
- package/src/ibc/lightclients/wasm/v1/tx.rpc.msg.ts +39 -0
- package/src/ibc/lightclients/wasm/v1/tx.ts +621 -0
- package/src/ibc/lightclients/wasm/v1/wasm.ts +438 -0
- package/src/registry.d.ts +33 -0
- package/src/registry.js +158 -0
- package/src/registry.ts +218 -0
- package/src/tendermint/abci/types.ts +6283 -0
- package/src/tendermint/crypto/keys.ts +103 -0
- package/src/tendermint/crypto/proof.ts +555 -0
- package/src/tendermint/p2p/types.ts +507 -0
- package/src/tendermint/types/block.ts +131 -0
- package/src/tendermint/types/evidence.ts +476 -0
- package/src/tendermint/types/params.ts +814 -0
- package/src/tendermint/types/types.ts +2157 -0
- package/src/tendermint/types/validator.ts +389 -0
- package/src/tendermint/version/types.ts +219 -0
- package/src/types.d.ts +124 -0
- package/src/types.js +7 -0
- package/src/types.ts +155 -0
- package/src/utf8.d.ts +27 -0
- package/src/utf8.js +140 -0
- package/src/utf8.ts +148 -0
- package/src/varint.d.ts +105 -0
- package/src/varint.js +425 -0
- package/src/varint.ts +488 -0
- package/src/xpla/lcd.ts +180 -0
- package/src/xpla/reward/v1beta1/genesis.ts +92 -0
- package/src/xpla/reward/v1beta1/query.lcd.ts +22 -0
- package/src/xpla/reward/v1beta1/query.rpc.Query.ts +41 -0
- package/src/xpla/reward/v1beta1/query.rpc.func.ts +16 -0
- package/src/xpla/reward/v1beta1/query.ts +333 -0
- package/src/xpla/reward/v1beta1/reward.ts +153 -0
- package/src/xpla/reward/v1beta1/tx.amino.ts +13 -0
- package/src/xpla/reward/v1beta1/tx.registry.ts +3 -0
- package/src/xpla/reward/v1beta1/tx.rpc.func.ts +15 -0
- package/src/xpla/reward/v1beta1/tx.rpc.msg.ts +41 -0
- package/src/xpla/reward/v1beta1/tx.ts +391 -0
- package/src/xpla/rpc.query.ts +129 -0
- package/src/xpla/rpc.tx.ts +6 -0
- package/src/xpla/volunteer/v1beta1/genesis.ts +92 -0
- package/src/xpla/volunteer/v1beta1/proposal.ts +649 -0
- package/src/xpla/volunteer/v1beta1/query.lcd.ts +17 -0
- package/src/xpla/volunteer/v1beta1/query.rpc.Query.ts +30 -0
- package/src/xpla/volunteer/v1beta1/query.rpc.func.ts +9 -0
- package/src/xpla/volunteer/v1beta1/query.ts +160 -0
- package/src/xpla/volunteer/v1beta1/tx.amino.ts +13 -0
- package/src/xpla/volunteer/v1beta1/tx.registry.ts +3 -0
- package/src/xpla/volunteer/v1beta1/tx.rpc.func.ts +15 -0
- package/src/xpla/volunteer/v1beta1/tx.rpc.msg.ts +35 -0
- package/src/xpla/volunteer/v1beta1/tx.ts +448 -0
- package/src/xpla/volunteer/v1beta1/volunteervalidator.ts +107 -0
- package/tsconfig.esm.json +10 -0
- package/tsconfig.json +10 -0
- package/dist/binary.d.ts +0 -130
- package/dist/binary.js +0 -370
- package/dist/cosmos/app/runtime/v1alpha1/module.d.ts +0 -174
- package/dist/cosmos/app/runtime/v1alpha1/module.js +0 -293
- package/dist/cosmos/app/runtime/v2/module.d.ts +0 -228
- package/dist/cosmos/app/runtime/v2/module.js +0 -422
- package/dist/cosmos/app/v1alpha1/config.d.ts +0 -181
- package/dist/cosmos/app/v1alpha1/config.js +0 -297
- package/dist/cosmos/app/v1alpha1/module.d.ts +0 -234
- package/dist/cosmos/app/v1alpha1/module.js +0 -281
- package/dist/cosmos/app/v1alpha1/query.d.ts +0 -67
- package/dist/cosmos/app/v1alpha1/query.js +0 -149
- package/dist/cosmos/app/v1alpha1/query.rpc.Query.d.ts +0 -16
- package/dist/cosmos/app/v1alpha1/query.rpc.Query.js +0 -29
- package/dist/cosmos/app/v1alpha1/query.rpc.func.d.ts +0 -3
- package/dist/cosmos/app/v1alpha1/query.rpc.func.js +0 -13
- package/dist/cosmos/auth/module/v1/module.d.ts +0 -88
- package/dist/cosmos/auth/module/v1/module.js +0 -203
- package/dist/cosmos/auth/v1beta1/accounts.d.ts +0 -104
- package/dist/cosmos/auth/v1beta1/accounts.js +0 -162
- package/dist/cosmos/auth/v1beta1/genesis.d.ts +0 -42
- package/dist/cosmos/auth/v1beta1/genesis.js +0 -100
- package/dist/cosmos/auth/v1beta1/query.lcd.d.ts +0 -18
- package/dist/cosmos/auth/v1beta1/query.lcd.js +0 -92
- package/dist/cosmos/auth/v1beta1/query.rpc.Query.d.ts +0 -83
- package/dist/cosmos/auth/v1beta1/query.rpc.Query.js +0 -129
- package/dist/cosmos/auth/v1beta1/tx.amino.d.ts +0 -8
- package/dist/cosmos/auth/v1beta1/tx.amino.js +0 -11
- package/dist/cosmos/auth/v1beta1/tx.d.ts +0 -97
- package/dist/cosmos/auth/v1beta1/tx.js +0 -161
- package/dist/cosmos/auth/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/auth/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -18
- package/dist/cosmos/auth/v1beta1/tx.rpc.msg.js +0 -25
- package/dist/cosmos/authz/module/v1/module.d.ts +0 -32
- package/dist/cosmos/authz/module/v1/module.js +0 -70
- package/dist/cosmos/authz/v1beta1/authz.d.ts +0 -181
- package/dist/cosmos/authz/v1beta1/event.d.ts +0 -86
- package/dist/cosmos/authz/v1beta1/event.js +0 -209
- package/dist/cosmos/authz/v1beta1/genesis.d.ts +0 -35
- package/dist/cosmos/authz/v1beta1/genesis.js +0 -87
- package/dist/cosmos/authz/v1beta1/query.d.ts +0 -232
- package/dist/cosmos/authz/v1beta1/query.js +0 -580
- package/dist/cosmos/authz/v1beta1/query.lcd.d.ts +0 -11
- package/dist/cosmos/authz/v1beta1/query.lcd.js +0 -57
- package/dist/cosmos/authz/v1beta1/query.rpc.Query.d.ts +0 -32
- package/dist/cosmos/authz/v1beta1/query.rpc.Query.js +0 -51
- package/dist/cosmos/authz/v1beta1/query.rpc.func.d.ts +0 -5
- package/dist/cosmos/authz/v1beta1/query.rpc.func.js +0 -29
- package/dist/cosmos/authz/v1beta1/tx.amino.d.ts +0 -18
- package/dist/cosmos/authz/v1beta1/tx.amino.js +0 -21
- package/dist/cosmos/authz/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/authz/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/authz/v1beta1/tx.rpc.msg.d.ts +0 -31
- package/dist/cosmos/authz/v1beta1/tx.rpc.msg.js +0 -40
- package/dist/cosmos/autocli/v1/options.d.ts +0 -412
- package/dist/cosmos/autocli/v1/options.js +0 -834
- package/dist/cosmos/autocli/v1/query.d.ts +0 -97
- package/dist/cosmos/autocli/v1/query.js +0 -237
- package/dist/cosmos/autocli/v1/query.rpc.Query.d.ts +0 -17
- package/dist/cosmos/autocli/v1/query.rpc.Query.js +0 -29
- package/dist/cosmos/autocli/v1/query.rpc.func.d.ts +0 -3
- package/dist/cosmos/autocli/v1/query.rpc.func.js +0 -13
- package/dist/cosmos/bank/module/v1/module.d.ts +0 -62
- package/dist/cosmos/bank/module/v1/module.js +0 -113
- package/dist/cosmos/bank/v1beta1/authz.d.ts +0 -59
- package/dist/cosmos/bank/v1beta1/authz.js +0 -102
- package/dist/cosmos/bank/v1beta1/genesis.d.ts +0 -112
- package/dist/cosmos/bank/v1beta1/genesis.js +0 -238
- package/dist/cosmos/bank/v1beta1/query.lcd.d.ts +0 -21
- package/dist/cosmos/bank/v1beta1/query.lcd.js +0 -192
- package/dist/cosmos/bank/v1beta1/query.rpc.Query.d.ts +0 -119
- package/dist/cosmos/bank/v1beta1/query.rpc.Query.js +0 -178
- package/dist/cosmos/bank/v1beta1/tx.amino.d.ts +0 -23
- package/dist/cosmos/bank/v1beta1/tx.amino.js +0 -26
- package/dist/cosmos/bank/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/bank/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -34
- package/dist/cosmos/bank/v1beta1/tx.rpc.msg.js +0 -48
- package/dist/cosmos/base/grpc/v2/service.d.ts +0 -163
- package/dist/cosmos/base/grpc/v2/service.js +0 -398
- package/dist/cosmos/base/grpc/v2/service.rpc.Service.d.ts +0 -20
- package/dist/cosmos/base/grpc/v2/service.rpc.Service.js +0 -38
- package/dist/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
- package/dist/cosmos/base/grpc/v2/service.rpc.func.js +0 -21
- package/dist/cosmos/base/node/v1beta1/query.d.ts +0 -150
- package/dist/cosmos/base/node/v1beta1/query.js +0 -377
- package/dist/cosmos/base/node/v1beta1/query.lcd.d.ts +0 -10
- package/dist/cosmos/base/node/v1beta1/query.lcd.js +0 -20
- package/dist/cosmos/base/node/v1beta1/query.rpc.Service.d.ts +0 -20
- package/dist/cosmos/base/node/v1beta1/query.rpc.Service.js +0 -38
- package/dist/cosmos/base/node/v1beta1/query.rpc.func.d.ts +0 -4
- package/dist/cosmos/base/node/v1beta1/query.rpc.func.js +0 -21
- package/dist/cosmos/base/reflection/v1beta1/reflection.d.ts +0 -144
- package/dist/cosmos/base/reflection/v1beta1/reflection.js +0 -310
- package/dist/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +0 -4
- package/dist/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +0 -21
- package/dist/cosmos/base/reflection/v2alpha1/reflection.d.ts +0 -1008
- package/dist/cosmos/base/reflection/v2alpha1/reflection.js +0 -2159
- package/dist/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +0 -8
- package/dist/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +0 -53
- package/dist/cosmos/base/tendermint/v1beta1/query.d.ts +0 -740
- package/dist/cosmos/base/tendermint/v1beta1/query.js +0 -1887
- package/dist/cosmos/base/tendermint/v1beta1/query.lcd.d.ts +0 -15
- package/dist/cosmos/base/tendermint/v1beta1/query.lcd.js +0 -79
- package/dist/cosmos/base/tendermint/v1beta1/query.rpc.Service.d.ts +0 -46
- package/dist/cosmos/base/tendermint/v1beta1/query.rpc.Service.js +0 -89
- package/dist/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +0 -9
- package/dist/cosmos/base/tendermint/v1beta1/query.rpc.func.js +0 -61
- package/dist/cosmos/base/tendermint/v1beta1/types.d.ts +0 -137
- package/dist/cosmos/base/tendermint/v1beta1/types.js +0 -358
- package/dist/cosmos/circuit/module/v1/module.d.ts +0 -36
- package/dist/cosmos/circuit/module/v1/module.js +0 -83
- package/dist/cosmos/circuit/v1/query.d.ts +0 -200
- package/dist/cosmos/circuit/v1/query.js +0 -480
- package/dist/cosmos/circuit/v1/query.lcd.d.ts +0 -11
- package/dist/cosmos/circuit/v1/query.lcd.js +0 -34
- package/dist/cosmos/circuit/v1/query.rpc.Query.d.ts +0 -24
- package/dist/cosmos/circuit/v1/query.rpc.Query.js +0 -49
- package/dist/cosmos/circuit/v1/query.rpc.func.d.ts +0 -5
- package/dist/cosmos/circuit/v1/query.rpc.func.js +0 -29
- package/dist/cosmos/circuit/v1/tx.amino.d.ts +0 -18
- package/dist/cosmos/circuit/v1/tx.amino.js +0 -21
- package/dist/cosmos/circuit/v1/tx.d.ts +0 -251
- package/dist/cosmos/circuit/v1/tx.js +0 -528
- package/dist/cosmos/circuit/v1/tx.registry.d.ts +0 -2
- package/dist/cosmos/circuit/v1/tx.registry.js +0 -5
- package/dist/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -5
- package/dist/cosmos/circuit/v1/tx.rpc.func.js +0 -27
- package/dist/cosmos/circuit/v1/tx.rpc.msg.d.ts +0 -25
- package/dist/cosmos/circuit/v1/tx.rpc.msg.js +0 -36
- package/dist/cosmos/circuit/v1/types.d.ts +0 -151
- package/dist/cosmos/circuit/v1/types.js +0 -350
- package/dist/cosmos/consensus/module/v1/module.d.ts +0 -36
- package/dist/cosmos/consensus/module/v1/module.js +0 -83
- package/dist/cosmos/consensus/v1/query.d.ts +0 -75
- package/dist/cosmos/consensus/v1/query.js +0 -149
- package/dist/cosmos/consensus/v1/query.lcd.d.ts +0 -9
- package/dist/cosmos/consensus/v1/query.lcd.js +0 -15
- package/dist/cosmos/consensus/v1/query.rpc.Query.d.ts +0 -16
- package/dist/cosmos/consensus/v1/query.rpc.Query.js +0 -29
- package/dist/cosmos/consensus/v1/query.rpc.func.d.ts +0 -3
- package/dist/cosmos/consensus/v1/query.rpc.func.js +0 -13
- package/dist/cosmos/consensus/v1/tx.amino.d.ts +0 -8
- package/dist/cosmos/consensus/v1/tx.amino.js +0 -11
- package/dist/cosmos/consensus/v1/tx.d.ts +0 -97
- package/dist/cosmos/consensus/v1/tx.js +0 -197
- package/dist/cosmos/consensus/v1/tx.registry.d.ts +0 -2
- package/dist/cosmos/consensus/v1/tx.registry.js +0 -5
- package/dist/cosmos/consensus/v1/tx.rpc.func.d.ts +0 -3
- package/dist/cosmos/consensus/v1/tx.rpc.func.js +0 -13
- package/dist/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -18
- package/dist/cosmos/consensus/v1/tx.rpc.msg.js +0 -25
- package/dist/cosmos/crisis/module/v1/module.d.ts +0 -40
- package/dist/cosmos/crisis/module/v1/module.js +0 -95
- package/dist/cosmos/crisis/v1beta1/genesis.d.ts +0 -43
- package/dist/cosmos/crisis/v1beta1/genesis.js +0 -84
- package/dist/cosmos/crisis/v1beta1/tx.amino.d.ts +0 -13
- package/dist/cosmos/crisis/v1beta1/tx.amino.js +0 -16
- package/dist/cosmos/crisis/v1beta1/tx.d.ts +0 -161
- package/dist/cosmos/crisis/v1beta1/tx.js +0 -328
- package/dist/cosmos/crisis/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/crisis/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -4
- package/dist/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -20
- package/dist/cosmos/crisis/v1beta1/tx.rpc.msg.d.ts +0 -21
- package/dist/cosmos/crisis/v1beta1/tx.rpc.msg.js +0 -31
- package/dist/cosmos/crypto/hd/v1/hd.d.ts +0 -58
- package/dist/cosmos/crypto/hd/v1/hd.js +0 -131
- package/dist/cosmos/crypto/keyring/v1/record.d.ts +0 -188
- package/dist/cosmos/crypto/keyring/v1/record.js +0 -431
- package/dist/cosmos/crypto/multisig/keys.d.ts +0 -45
- package/dist/cosmos/crypto/multisig/keys.js +0 -99
- package/dist/cosmos/distribution/module/v1/module.d.ts +0 -38
- package/dist/cosmos/distribution/module/v1/module.js +0 -95
- package/dist/cosmos/distribution/v1beta1/genesis.d.ts +0 -376
- package/dist/cosmos/distribution/v1beta1/genesis.js +0 -895
- package/dist/cosmos/distribution/v1beta1/query.d.ts +0 -803
- package/dist/cosmos/distribution/v1beta1/query.js +0 -1662
- package/dist/cosmos/distribution/v1beta1/query.lcd.d.ts +0 -18
- package/dist/cosmos/distribution/v1beta1/query.lcd.js +0 -74
- package/dist/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +0 -55
- package/dist/cosmos/distribution/v1beta1/query.rpc.Query.js +0 -111
- package/dist/cosmos/distribution/v1beta1/query.rpc.func.d.ts +0 -12
- package/dist/cosmos/distribution/v1beta1/query.rpc.func.js +0 -85
- package/dist/cosmos/distribution/v1beta1/tx.amino.d.ts +0 -38
- package/dist/cosmos/distribution/v1beta1/tx.amino.js +0 -41
- package/dist/cosmos/distribution/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/distribution/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +0 -60
- package/dist/cosmos/distribution/v1beta1/tx.rpc.msg.js +0 -73
- package/dist/cosmos/evidence/module/v1/module.d.ts +0 -32
- package/dist/cosmos/evidence/module/v1/module.js +0 -70
- package/dist/cosmos/evidence/v1beta1/evidence.d.ts +0 -54
- package/dist/cosmos/evidence/v1beta1/evidence.js +0 -121
- package/dist/cosmos/evidence/v1beta1/genesis.d.ts +0 -37
- package/dist/cosmos/evidence/v1beta1/genesis.js +0 -87
- package/dist/cosmos/evidence/v1beta1/query.d.ts +0 -176
- package/dist/cosmos/evidence/v1beta1/query.js +0 -347
- package/dist/cosmos/evidence/v1beta1/query.lcd.d.ts +0 -10
- package/dist/cosmos/evidence/v1beta1/query.lcd.js +0 -35
- package/dist/cosmos/evidence/v1beta1/query.rpc.Query.d.ts +0 -20
- package/dist/cosmos/evidence/v1beta1/query.rpc.Query.js +0 -40
- package/dist/cosmos/evidence/v1beta1/query.rpc.func.d.ts +0 -4
- package/dist/cosmos/evidence/v1beta1/query.rpc.func.js +0 -21
- package/dist/cosmos/evidence/v1beta1/tx.amino.d.ts +0 -8
- package/dist/cosmos/evidence/v1beta1/tx.amino.js +0 -11
- package/dist/cosmos/evidence/v1beta1/tx.d.ts +0 -84
- package/dist/cosmos/evidence/v1beta1/tx.js +0 -175
- package/dist/cosmos/evidence/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/evidence/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +0 -3
- package/dist/cosmos/evidence/v1beta1/tx.rpc.func.js +0 -13
- package/dist/cosmos/evidence/v1beta1/tx.rpc.msg.d.ts +0 -16
- package/dist/cosmos/evidence/v1beta1/tx.rpc.msg.js +0 -23
- package/dist/cosmos/feegrant/module/v1/module.d.ts +0 -32
- package/dist/cosmos/feegrant/module/v1/module.js +0 -70
- package/dist/cosmos/feegrant/v1beta1/feegrant.d.ts +0 -219
- package/dist/cosmos/feegrant/v1beta1/feegrant.js +0 -430
- package/dist/cosmos/feegrant/v1beta1/genesis.d.ts +0 -35
- package/dist/cosmos/feegrant/v1beta1/genesis.js +0 -87
- package/dist/cosmos/feegrant/v1beta1/query.d.ts +0 -240
- package/dist/cosmos/feegrant/v1beta1/query.js +0 -541
- package/dist/cosmos/feegrant/v1beta1/query.lcd.d.ts +0 -11
- package/dist/cosmos/feegrant/v1beta1/query.lcd.js +0 -40
- package/dist/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +0 -28
- package/dist/cosmos/feegrant/v1beta1/query.rpc.Query.js +0 -49
- package/dist/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +0 -5
- package/dist/cosmos/feegrant/v1beta1/query.rpc.func.js +0 -29
- package/dist/cosmos/feegrant/v1beta1/tx.amino.d.ts +0 -18
- package/dist/cosmos/feegrant/v1beta1/tx.amino.js +0 -21
- package/dist/cosmos/feegrant/v1beta1/tx.d.ts +0 -233
- package/dist/cosmos/feegrant/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/feegrant/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +0 -29
- package/dist/cosmos/feegrant/v1beta1/tx.rpc.msg.js +0 -38
- package/dist/cosmos/genutil/module/v1/module.d.ts +0 -32
- package/dist/cosmos/genutil/module/v1/module.js +0 -70
- package/dist/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
- package/dist/cosmos/genutil/v1beta1/genesis.js +0 -87
- package/dist/cosmos/gov/module/v1/module.d.ts +0 -46
- package/dist/cosmos/gov/module/v1/module.js +0 -95
- package/dist/cosmos/gov/v1/genesis.d.ts +0 -115
- package/dist/cosmos/gov/v1/genesis.js +0 -189
- package/dist/cosmos/gov/v1/query.d.ts +0 -706
- package/dist/cosmos/gov/v1/query.js +0 -1564
- package/dist/cosmos/gov/v1/query.lcd.d.ts +0 -17
- package/dist/cosmos/gov/v1/query.lcd.js +0 -83
- package/dist/cosmos/gov/v1/query.rpc.Query.d.ts +0 -48
- package/dist/cosmos/gov/v1/query.rpc.Query.js +0 -101
- package/dist/cosmos/gov/v1/query.rpc.func.d.ts +0 -11
- package/dist/cosmos/gov/v1/query.rpc.func.js +0 -77
- package/dist/cosmos/gov/v1/tx.amino.d.ts +0 -38
- package/dist/cosmos/gov/v1/tx.amino.js +0 -41
- package/dist/cosmos/gov/v1/tx.d.ts +0 -626
- package/dist/cosmos/gov/v1/tx.registry.d.ts +0 -2
- package/dist/cosmos/gov/v1/tx.registry.js +0 -5
- package/dist/cosmos/gov/v1/tx.rpc.msg.d.ts +0 -43
- package/dist/cosmos/gov/v1/tx.rpc.msg.js +0 -64
- package/dist/cosmos/gov/v1beta1/genesis.d.ts +0 -61
- package/dist/cosmos/gov/v1beta1/genesis.js +0 -165
- package/dist/cosmos/gov/v1beta1/gov.d.ts +0 -524
- package/dist/cosmos/gov/v1beta1/query.lcd.d.ts +0 -16
- package/dist/cosmos/gov/v1beta1/query.lcd.js +0 -78
- package/dist/cosmos/gov/v1beta1/query.rpc.Query.d.ts +0 -44
- package/dist/cosmos/gov/v1beta1/query.rpc.Query.js +0 -92
- package/dist/cosmos/gov/v1beta1/tx.amino.d.ts +0 -23
- package/dist/cosmos/gov/v1beta1/tx.amino.js +0 -26
- package/dist/cosmos/gov/v1beta1/tx.d.ts +0 -327
- package/dist/cosmos/gov/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/gov/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +0 -26
- package/dist/cosmos/gov/v1beta1/tx.rpc.msg.js +0 -42
- package/dist/cosmos/group/module/v1/module.d.ts +0 -53
- package/dist/cosmos/group/module/v1/module.js +0 -96
- package/dist/cosmos/group/v1/events.d.ts +0 -363
- package/dist/cosmos/group/v1/events.js +0 -847
- package/dist/cosmos/group/v1/genesis.d.ts +0 -83
- package/dist/cosmos/group/v1/genesis.js +0 -183
- package/dist/cosmos/group/v1/query.d.ts +0 -1044
- package/dist/cosmos/group/v1/query.js +0 -2434
- package/dist/cosmos/group/v1/query.lcd.d.ts +0 -22
- package/dist/cosmos/group/v1/query.lcd.js +0 -143
- package/dist/cosmos/group/v1/query.rpc.Query.d.ts +0 -78
- package/dist/cosmos/group/v1/query.rpc.Query.js +0 -154
- package/dist/cosmos/group/v1/query.rpc.func.d.ts +0 -16
- package/dist/cosmos/group/v1/query.rpc.func.js +0 -117
- package/dist/cosmos/group/v1/tx.amino.d.ts +0 -73
- package/dist/cosmos/group/v1/tx.amino.js +0 -76
- package/dist/cosmos/group/v1/tx.registry.d.ts +0 -2
- package/dist/cosmos/group/v1/tx.registry.js +0 -5
- package/dist/cosmos/group/v1/tx.rpc.msg.d.ts +0 -52
- package/dist/cosmos/group/v1/tx.rpc.msg.js +0 -100
- package/dist/cosmos/mint/module/v1/module.d.ts +0 -38
- package/dist/cosmos/mint/module/v1/module.js +0 -95
- package/dist/cosmos/mint/v1beta1/genesis.d.ts +0 -41
- package/dist/cosmos/mint/v1beta1/genesis.js +0 -96
- package/dist/cosmos/mint/v1beta1/mint.d.ts +0 -94
- package/dist/cosmos/mint/v1beta1/mint.js +0 -233
- package/dist/cosmos/mint/v1beta1/query.d.ts +0 -213
- package/dist/cosmos/mint/v1beta1/query.js +0 -436
- package/dist/cosmos/mint/v1beta1/query.lcd.d.ts +0 -11
- package/dist/cosmos/mint/v1beta1/query.lcd.js +0 -25
- package/dist/cosmos/mint/v1beta1/query.rpc.Query.d.ts +0 -24
- package/dist/cosmos/mint/v1beta1/query.rpc.Query.js +0 -47
- package/dist/cosmos/mint/v1beta1/query.rpc.func.d.ts +0 -5
- package/dist/cosmos/mint/v1beta1/query.rpc.func.js +0 -29
- package/dist/cosmos/mint/v1beta1/tx.amino.d.ts +0 -8
- package/dist/cosmos/mint/v1beta1/tx.amino.js +0 -11
- package/dist/cosmos/mint/v1beta1/tx.d.ts +0 -97
- package/dist/cosmos/mint/v1beta1/tx.js +0 -161
- package/dist/cosmos/mint/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/mint/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/mint/v1beta1/tx.rpc.func.d.ts +0 -3
- package/dist/cosmos/mint/v1beta1/tx.rpc.func.js +0 -13
- package/dist/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -18
- package/dist/cosmos/mint/v1beta1/tx.rpc.msg.js +0 -25
- package/dist/cosmos/msg/textual/v1/textual.d.ts +0 -1
- package/dist/cosmos/msg/textual/v1/textual.js +0 -2
- package/dist/cosmos/nft/module/v1/module.d.ts +0 -32
- package/dist/cosmos/nft/module/v1/module.js +0 -70
- package/dist/cosmos/nft/v1beta1/event.d.ts +0 -132
- package/dist/cosmos/nft/v1beta1/event.js +0 -323
- package/dist/cosmos/nft/v1beta1/genesis.d.ts +0 -79
- package/dist/cosmos/nft/v1beta1/genesis.js +0 -195
- package/dist/cosmos/nft/v1beta1/nft.d.ts +0 -111
- package/dist/cosmos/nft/v1beta1/nft.js +0 -282
- package/dist/cosmos/nft/v1beta1/query.d.ts +0 -508
- package/dist/cosmos/nft/v1beta1/query.js +0 -1189
- package/dist/cosmos/nft/v1beta1/query.lcd.d.ts +0 -15
- package/dist/cosmos/nft/v1beta1/query.lcd.js +0 -67
- package/dist/cosmos/nft/v1beta1/query.rpc.Query.d.ts +0 -43
- package/dist/cosmos/nft/v1beta1/query.rpc.Query.js +0 -86
- package/dist/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -9
- package/dist/cosmos/nft/v1beta1/query.rpc.func.js +0 -61
- package/dist/cosmos/nft/v1beta1/tx.amino.d.ts +0 -8
- package/dist/cosmos/nft/v1beta1/tx.amino.js +0 -11
- package/dist/cosmos/nft/v1beta1/tx.d.ts +0 -78
- package/dist/cosmos/nft/v1beta1/tx.js +0 -184
- package/dist/cosmos/nft/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/nft/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -3
- package/dist/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
- package/dist/cosmos/nft/v1beta1/tx.rpc.msg.d.ts +0 -13
- package/dist/cosmos/nft/v1beta1/tx.rpc.msg.js +0 -22
- package/dist/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
- package/dist/cosmos/orm/module/v1alpha1/module.js +0 -70
- package/dist/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
- package/dist/cosmos/orm/query/v1alpha1/query.js +0 -751
- package/dist/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/dist/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/dist/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -4
- package/dist/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -21
- package/dist/cosmos/orm/v1/orm.d.ts +0 -278
- package/dist/cosmos/orm/v1/orm.js +0 -380
- package/dist/cosmos/orm/v1alpha1/schema.d.ts +0 -134
- package/dist/cosmos/orm/v1alpha1/schema.js +0 -258
- package/dist/cosmos/params/module/v1/module.d.ts +0 -32
- package/dist/cosmos/params/module/v1/module.js +0 -70
- package/dist/cosmos/params/v1beta1/params.d.ts +0 -80
- package/dist/cosmos/params/v1beta1/params.js +0 -212
- package/dist/cosmos/params/v1beta1/query.d.ts +0 -201
- package/dist/cosmos/params/v1beta1/query.js +0 -413
- package/dist/cosmos/params/v1beta1/query.lcd.d.ts +0 -10
- package/dist/cosmos/params/v1beta1/query.lcd.js +0 -32
- package/dist/cosmos/params/v1beta1/query.rpc.Query.d.ts +0 -27
- package/dist/cosmos/params/v1beta1/query.rpc.Query.js +0 -41
- package/dist/cosmos/params/v1beta1/query.rpc.func.d.ts +0 -4
- package/dist/cosmos/params/v1beta1/query.rpc.func.js +0 -21
- package/dist/cosmos/reflection/v1/reflection.d.ts +0 -67
- package/dist/cosmos/reflection/v1/reflection.js +0 -152
- package/dist/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -3
- package/dist/cosmos/reflection/v1/reflection.rpc.func.js +0 -13
- package/dist/cosmos/rpc.query.d.ts +0 -81
- package/dist/cosmos/rpc.query.js +0 -62
- package/dist/cosmos/rpc.tx.d.ts +0 -32
- package/dist/cosmos/rpc.tx.js +0 -66
- package/dist/cosmos/slashing/module/v1/module.d.ts +0 -36
- package/dist/cosmos/slashing/module/v1/module.js +0 -83
- package/dist/cosmos/slashing/v1beta1/genesis.d.ts +0 -177
- package/dist/cosmos/slashing/v1beta1/genesis.js +0 -387
- package/dist/cosmos/slashing/v1beta1/query.d.ts +0 -226
- package/dist/cosmos/slashing/v1beta1/query.js +0 -477
- package/dist/cosmos/slashing/v1beta1/query.lcd.d.ts +0 -11
- package/dist/cosmos/slashing/v1beta1/query.lcd.js +0 -34
- package/dist/cosmos/slashing/v1beta1/query.rpc.Query.d.ts +0 -24
- package/dist/cosmos/slashing/v1beta1/query.rpc.Query.js +0 -49
- package/dist/cosmos/slashing/v1beta1/query.rpc.func.d.ts +0 -5
- package/dist/cosmos/slashing/v1beta1/query.rpc.func.js +0 -29
- package/dist/cosmos/slashing/v1beta1/slashing.d.ts +0 -123
- package/dist/cosmos/slashing/v1beta1/slashing.js +0 -272
- package/dist/cosmos/slashing/v1beta1/tx.amino.d.ts +0 -13
- package/dist/cosmos/slashing/v1beta1/tx.amino.js +0 -16
- package/dist/cosmos/slashing/v1beta1/tx.d.ts +0 -159
- package/dist/cosmos/slashing/v1beta1/tx.js +0 -304
- package/dist/cosmos/slashing/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/slashing/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +0 -4
- package/dist/cosmos/slashing/v1beta1/tx.rpc.func.js +0 -20
- package/dist/cosmos/slashing/v1beta1/tx.rpc.msg.d.ts +0 -25
- package/dist/cosmos/slashing/v1beta1/tx.rpc.msg.js +0 -33
- package/dist/cosmos/staking/module/v1/module.d.ts +0 -56
- package/dist/cosmos/staking/module/v1/module.js +0 -122
- package/dist/cosmos/staking/v1beta1/authz.d.ts +0 -122
- package/dist/cosmos/staking/v1beta1/authz.js +0 -264
- package/dist/cosmos/staking/v1beta1/genesis.d.ts +0 -115
- package/dist/cosmos/staking/v1beta1/genesis.js +0 -274
- package/dist/cosmos/staking/v1beta1/query.lcd.d.ts +0 -22
- package/dist/cosmos/staking/v1beta1/query.lcd.js +0 -157
- package/dist/cosmos/staking/v1beta1/query.rpc.Query.d.ts +0 -111
- package/dist/cosmos/staking/v1beta1/query.rpc.Query.js +0 -171
- package/dist/cosmos/staking/v1beta1/tx.amino.d.ts +0 -38
- package/dist/cosmos/staking/v1beta1/tx.amino.js +0 -41
- package/dist/cosmos/staking/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/staking/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -49
- package/dist/cosmos/staking/v1beta1/tx.rpc.msg.js +0 -66
- package/dist/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
- package/dist/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
- package/dist/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
- package/dist/cosmos/store/snapshots/v1/snapshot.js +0 -687
- package/dist/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
- package/dist/cosmos/store/snapshots/v2/snapshot.js +0 -687
- package/dist/cosmos/store/streaming/abci/grpc.d.ts +0 -136
- package/dist/cosmos/store/streaming/abci/grpc.js +0 -332
- package/dist/cosmos/store/v1beta1/commit_info.d.ts +0 -124
- package/dist/cosmos/store/v1beta1/commit_info.js +0 -292
- package/dist/cosmos/store/v1beta1/listening.d.ts +0 -101
- package/dist/cosmos/store/v1beta1/listening.js +0 -223
- package/dist/cosmos/streaming/v1/grpc.d.ts +0 -302
- package/dist/cosmos/streaming/v1/grpc.js +0 -826
- package/dist/cosmos/tx/config/v1/config.d.ts +0 -52
- package/dist/cosmos/tx/config/v1/config.js +0 -95
- package/dist/cosmos/tx/v1beta1/service.lcd.d.ts +0 -11
- package/dist/cosmos/tx/v1beta1/service.lcd.js +0 -55
- package/dist/cosmos/tx/v1beta1/service.rpc.Service.d.ts +0 -68
- package/dist/cosmos/tx/v1beta1/service.rpc.Service.js +0 -111
- package/dist/cosmos/upgrade/module/v1/module.d.ts +0 -36
- package/dist/cosmos/upgrade/module/v1/module.js +0 -83
- package/dist/cosmos/upgrade/v1beta1/query.d.ts +0 -423
- package/dist/cosmos/upgrade/v1beta1/query.js +0 -764
- package/dist/cosmos/upgrade/v1beta1/query.lcd.d.ts +0 -13
- package/dist/cosmos/upgrade/v1beta1/query.lcd.js +0 -50
- package/dist/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +0 -47
- package/dist/cosmos/upgrade/v1beta1/query.rpc.Query.js +0 -74
- package/dist/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +0 -7
- package/dist/cosmos/upgrade/v1beta1/query.rpc.func.js +0 -45
- package/dist/cosmos/upgrade/v1beta1/tx.amino.d.ts +0 -13
- package/dist/cosmos/upgrade/v1beta1/tx.amino.js +0 -16
- package/dist/cosmos/upgrade/v1beta1/tx.d.ts +0 -167
- package/dist/cosmos/upgrade/v1beta1/tx.js +0 -304
- package/dist/cosmos/upgrade/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/upgrade/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +0 -4
- package/dist/cosmos/upgrade/v1beta1/tx.rpc.func.js +0 -20
- package/dist/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +0 -25
- package/dist/cosmos/upgrade/v1beta1/tx.rpc.msg.js +0 -33
- package/dist/cosmos/validate/module/v1/module.d.ts +0 -32
- package/dist/cosmos/validate/module/v1/module.js +0 -70
- package/dist/cosmos/vesting/module/v1/module.d.ts +0 -32
- package/dist/cosmos/vesting/module/v1/module.js +0 -70
- package/dist/cosmos/vesting/v1beta1/tx.amino.d.ts +0 -18
- package/dist/cosmos/vesting/v1beta1/tx.amino.js +0 -21
- package/dist/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -2
- package/dist/cosmos/vesting/v1beta1/tx.registry.js +0 -5
- package/dist/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -32
- package/dist/cosmos/vesting/v1beta1/tx.rpc.msg.js +0 -41
- package/dist/cosmwasm/wasm/v1/authz.d.ts +0 -500
- package/dist/cosmwasm/wasm/v1/authz.js +0 -924
- package/dist/cosmwasm/wasm/v1/genesis.d.ts +0 -153
- package/dist/cosmwasm/wasm/v1/genesis.js +0 -454
- package/dist/cosmwasm/wasm/v1/ibc.d.ts +0 -132
- package/dist/cosmwasm/wasm/v1/ibc.js +0 -276
- package/dist/cosmwasm/wasm/v1/proposal_legacy.d.ts +0 -872
- package/dist/cosmwasm/wasm/v1/proposal_legacy.js +0 -1784
- package/dist/cosmwasm/wasm/v1/query.d.ts +0 -922
- package/dist/cosmwasm/wasm/v1/query.js +0 -2022
- package/dist/cosmwasm/wasm/v1/query.lcd.d.ts +0 -19
- package/dist/cosmwasm/wasm/v1/query.lcd.js +0 -106
- package/dist/cosmwasm/wasm/v1/query.rpc.Query.d.ts +0 -56
- package/dist/cosmwasm/wasm/v1/query.rpc.Query.js +0 -123
- package/dist/cosmwasm/wasm/v1/query.rpc.func.d.ts +0 -13
- package/dist/cosmwasm/wasm/v1/query.rpc.func.js +0 -93
- package/dist/cosmwasm/wasm/v1/tx.amino.d.ts +0 -88
- package/dist/cosmwasm/wasm/v1/tx.amino.js +0 -91
- package/dist/cosmwasm/wasm/v1/tx.d.ts +0 -1534
- package/dist/cosmwasm/wasm/v1/tx.js +0 -3236
- package/dist/cosmwasm/wasm/v1/tx.registry.d.ts +0 -2
- package/dist/cosmwasm/wasm/v1/tx.registry.js +0 -5
- package/dist/cosmwasm/wasm/v1/tx.rpc.func.d.ts +0 -19
- package/dist/cosmwasm/wasm/v1/tx.rpc.func.js +0 -125
- package/dist/cosmwasm/wasm/v1/tx.rpc.msg.d.ts +0 -109
- package/dist/cosmwasm/wasm/v1/tx.rpc.msg.js +0 -144
- package/dist/cosmwasm/wasm/v1/types.d.ts +0 -374
- package/dist/cosmwasm/wasm/v1/types.js +0 -917
- package/dist/esm/amino/amino.js +0 -1
- package/dist/esm/binary.js +0 -365
- package/dist/esm/cosmos/app/runtime/v1alpha1/module.js +0 -290
- package/dist/esm/cosmos/app/runtime/v2/module.js +0 -419
- package/dist/esm/cosmos/app/v1alpha1/config.js +0 -294
- package/dist/esm/cosmos/app/v1alpha1/module.js +0 -278
- package/dist/esm/cosmos/app/v1alpha1/query.js +0 -146
- package/dist/esm/cosmos/app/v1alpha1/query.rpc.Query.js +0 -24
- package/dist/esm/cosmos/app/v1alpha1/query.rpc.func.js +0 -9
- package/dist/esm/cosmos/auth/module/v1/module.js +0 -200
- package/dist/esm/cosmos/auth/v1beta1/accounts.js +0 -159
- package/dist/esm/cosmos/auth/v1beta1/auth.js +0 -442
- package/dist/esm/cosmos/auth/v1beta1/genesis.js +0 -97
- package/dist/esm/cosmos/auth/v1beta1/query.js +0 -1558
- package/dist/esm/cosmos/auth/v1beta1/query.lcd.js +0 -88
- package/dist/esm/cosmos/auth/v1beta1/query.rpc.Query.js +0 -124
- package/dist/esm/cosmos/auth/v1beta1/query.rpc.func.js +0 -72
- package/dist/esm/cosmos/auth/v1beta1/tx.amino.js +0 -8
- package/dist/esm/cosmos/auth/v1beta1/tx.js +0 -158
- package/dist/esm/cosmos/auth/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/auth/v1beta1/tx.rpc.func.js +0 -9
- package/dist/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +0 -20
- package/dist/esm/cosmos/authz/module/v1/module.js +0 -67
- package/dist/esm/cosmos/authz/v1beta1/authz.js +0 -368
- package/dist/esm/cosmos/authz/v1beta1/event.js +0 -206
- package/dist/esm/cosmos/authz/v1beta1/genesis.js +0 -84
- package/dist/esm/cosmos/authz/v1beta1/query.js +0 -577
- package/dist/esm/cosmos/authz/v1beta1/query.lcd.js +0 -53
- package/dist/esm/cosmos/authz/v1beta1/query.rpc.Query.js +0 -46
- package/dist/esm/cosmos/authz/v1beta1/query.rpc.func.js +0 -23
- package/dist/esm/cosmos/authz/v1beta1/tx.amino.js +0 -18
- package/dist/esm/cosmos/authz/v1beta1/tx.js +0 -513
- package/dist/esm/cosmos/authz/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/authz/v1beta1/tx.rpc.func.js +0 -21
- package/dist/esm/cosmos/authz/v1beta1/tx.rpc.msg.js +0 -35
- package/dist/esm/cosmos/autocli/v1/options.js +0 -831
- package/dist/esm/cosmos/autocli/v1/query.js +0 -234
- package/dist/esm/cosmos/autocli/v1/query.rpc.Query.js +0 -24
- package/dist/esm/cosmos/autocli/v1/query.rpc.func.js +0 -9
- package/dist/esm/cosmos/bank/module/v1/module.js +0 -110
- package/dist/esm/cosmos/bank/v1beta1/authz.js +0 -99
- package/dist/esm/cosmos/bank/v1beta1/bank.js +0 -723
- package/dist/esm/cosmos/bank/v1beta1/genesis.js +0 -235
- package/dist/esm/cosmos/bank/v1beta1/query.js +0 -2314
- package/dist/esm/cosmos/bank/v1beta1/query.lcd.js +0 -188
- package/dist/esm/cosmos/bank/v1beta1/query.rpc.Query.js +0 -173
- package/dist/esm/cosmos/bank/v1beta1/query.rpc.func.js +0 -93
- package/dist/esm/cosmos/bank/v1beta1/tx.amino.js +0 -23
- package/dist/esm/cosmos/bank/v1beta1/tx.js +0 -663
- package/dist/esm/cosmos/bank/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/bank/v1beta1/tx.rpc.func.js +0 -27
- package/dist/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +0 -43
- package/dist/esm/cosmos/base/abci/v1beta1/abci.js +0 -1290
- package/dist/esm/cosmos/base/grpc/v2/service.js +0 -395
- package/dist/esm/cosmos/base/grpc/v2/service.rpc.Service.js +0 -33
- package/dist/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -16
- package/dist/esm/cosmos/base/node/v1beta1/query.js +0 -374
- package/dist/esm/cosmos/base/node/v1beta1/query.lcd.js +0 -16
- package/dist/esm/cosmos/base/node/v1beta1/query.rpc.Service.js +0 -33
- package/dist/esm/cosmos/base/node/v1beta1/query.rpc.func.js +0 -16
- package/dist/esm/cosmos/base/query/v1beta1/pagination.js +0 -219
- package/dist/esm/cosmos/base/reflection/v1beta1/reflection.js +0 -307
- package/dist/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +0 -16
- package/dist/esm/cosmos/base/reflection/v2alpha1/reflection.js +0 -2156
- package/dist/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +0 -44
- package/dist/esm/cosmos/base/tendermint/v1beta1/query.js +0 -1884
- package/dist/esm/cosmos/base/tendermint/v1beta1/query.lcd.js +0 -75
- package/dist/esm/cosmos/base/tendermint/v1beta1/query.rpc.Service.js +0 -84
- package/dist/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +0 -51
- package/dist/esm/cosmos/base/tendermint/v1beta1/types.js +0 -355
- package/dist/esm/cosmos/base/v1beta1/coin.js +0 -338
- package/dist/esm/cosmos/circuit/module/v1/module.js +0 -80
- package/dist/esm/cosmos/circuit/v1/query.js +0 -477
- package/dist/esm/cosmos/circuit/v1/query.lcd.js +0 -30
- package/dist/esm/cosmos/circuit/v1/query.rpc.Query.js +0 -44
- package/dist/esm/cosmos/circuit/v1/query.rpc.func.js +0 -23
- package/dist/esm/cosmos/circuit/v1/tx.amino.js +0 -18
- package/dist/esm/cosmos/circuit/v1/tx.js +0 -525
- package/dist/esm/cosmos/circuit/v1/tx.registry.js +0 -2
- package/dist/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -21
- package/dist/esm/cosmos/circuit/v1/tx.rpc.msg.js +0 -31
- package/dist/esm/cosmos/circuit/v1/types.js +0 -345
- package/dist/esm/cosmos/consensus/module/v1/module.js +0 -80
- package/dist/esm/cosmos/consensus/v1/query.js +0 -146
- package/dist/esm/cosmos/consensus/v1/query.lcd.js +0 -11
- package/dist/esm/cosmos/consensus/v1/query.rpc.Query.js +0 -24
- package/dist/esm/cosmos/consensus/v1/query.rpc.func.js +0 -9
- package/dist/esm/cosmos/consensus/v1/tx.amino.js +0 -8
- package/dist/esm/cosmos/consensus/v1/tx.js +0 -194
- package/dist/esm/cosmos/consensus/v1/tx.registry.js +0 -2
- package/dist/esm/cosmos/consensus/v1/tx.rpc.func.js +0 -9
- package/dist/esm/cosmos/consensus/v1/tx.rpc.msg.js +0 -20
- package/dist/esm/cosmos/crisis/module/v1/module.js +0 -92
- package/dist/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
- package/dist/esm/cosmos/crisis/v1beta1/tx.amino.js +0 -13
- package/dist/esm/cosmos/crisis/v1beta1/tx.js +0 -325
- package/dist/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -15
- package/dist/esm/cosmos/crisis/v1beta1/tx.rpc.msg.js +0 -26
- package/dist/esm/cosmos/crypto/ed25519/keys.js +0 -159
- package/dist/esm/cosmos/crypto/hd/v1/hd.js +0 -128
- package/dist/esm/cosmos/crypto/keyring/v1/record.js +0 -428
- package/dist/esm/cosmos/crypto/multisig/keys.js +0 -96
- package/dist/esm/cosmos/crypto/multisig/v1beta1/multisig.js +0 -174
- package/dist/esm/cosmos/crypto/secp256k1/keys.js +0 -159
- package/dist/esm/cosmos/crypto/secp256r1/keys.js +0 -159
- package/dist/esm/cosmos/distribution/module/v1/module.js +0 -92
- package/dist/esm/cosmos/distribution/v1beta1/distribution.js +0 -1155
- package/dist/esm/cosmos/distribution/v1beta1/genesis.js +0 -892
- package/dist/esm/cosmos/distribution/v1beta1/query.js +0 -1659
- package/dist/esm/cosmos/distribution/v1beta1/query.lcd.js +0 -70
- package/dist/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +0 -106
- package/dist/esm/cosmos/distribution/v1beta1/query.rpc.func.js +0 -72
- package/dist/esm/cosmos/distribution/v1beta1/tx.amino.js +0 -38
- package/dist/esm/cosmos/distribution/v1beta1/tx.js +0 -1142
- package/dist/esm/cosmos/distribution/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +0 -45
- package/dist/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +0 -68
- package/dist/esm/cosmos/evidence/module/v1/module.js +0 -67
- package/dist/esm/cosmos/evidence/v1beta1/evidence.js +0 -118
- package/dist/esm/cosmos/evidence/v1beta1/genesis.js +0 -84
- package/dist/esm/cosmos/evidence/v1beta1/query.js +0 -344
- package/dist/esm/cosmos/evidence/v1beta1/query.lcd.js +0 -31
- package/dist/esm/cosmos/evidence/v1beta1/query.rpc.Query.js +0 -35
- package/dist/esm/cosmos/evidence/v1beta1/query.rpc.func.js +0 -16
- package/dist/esm/cosmos/evidence/v1beta1/tx.amino.js +0 -8
- package/dist/esm/cosmos/evidence/v1beta1/tx.js +0 -172
- package/dist/esm/cosmos/evidence/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +0 -9
- package/dist/esm/cosmos/evidence/v1beta1/tx.rpc.msg.js +0 -18
- package/dist/esm/cosmos/feegrant/module/v1/module.js +0 -67
- package/dist/esm/cosmos/feegrant/v1beta1/feegrant.js +0 -427
- package/dist/esm/cosmos/feegrant/v1beta1/genesis.js +0 -84
- package/dist/esm/cosmos/feegrant/v1beta1/query.js +0 -538
- package/dist/esm/cosmos/feegrant/v1beta1/query.lcd.js +0 -36
- package/dist/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +0 -44
- package/dist/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +0 -23
- package/dist/esm/cosmos/feegrant/v1beta1/tx.amino.js +0 -18
- package/dist/esm/cosmos/feegrant/v1beta1/tx.js +0 -468
- package/dist/esm/cosmos/feegrant/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +0 -21
- package/dist/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +0 -33
- package/dist/esm/cosmos/genutil/module/v1/module.js +0 -67
- package/dist/esm/cosmos/genutil/v1beta1/genesis.js +0 -84
- package/dist/esm/cosmos/gov/module/v1/module.js +0 -92
- package/dist/esm/cosmos/gov/v1/genesis.js +0 -186
- package/dist/esm/cosmos/gov/v1/gov.js +0 -1356
- package/dist/esm/cosmos/gov/v1/query.js +0 -1561
- package/dist/esm/cosmos/gov/v1/query.lcd.js +0 -79
- package/dist/esm/cosmos/gov/v1/query.rpc.Query.js +0 -96
- package/dist/esm/cosmos/gov/v1/query.rpc.func.js +0 -65
- package/dist/esm/cosmos/gov/v1/tx.amino.js +0 -38
- package/dist/esm/cosmos/gov/v1/tx.js +0 -1274
- package/dist/esm/cosmos/gov/v1/tx.registry.js +0 -2
- package/dist/esm/cosmos/gov/v1/tx.rpc.func.js +0 -45
- package/dist/esm/cosmos/gov/v1/tx.rpc.msg.js +0 -59
- package/dist/esm/cosmos/gov/v1beta1/genesis.js +0 -162
- package/dist/esm/cosmos/gov/v1beta1/gov.js +0 -1107
- package/dist/esm/cosmos/gov/v1beta1/query.js +0 -1406
- package/dist/esm/cosmos/gov/v1beta1/query.lcd.js +0 -74
- package/dist/esm/cosmos/gov/v1beta1/query.rpc.Query.js +0 -87
- package/dist/esm/cosmos/gov/v1beta1/query.rpc.func.js +0 -58
- package/dist/esm/cosmos/gov/v1beta1/tx.amino.js +0 -23
- package/dist/esm/cosmos/gov/v1beta1/tx.js +0 -696
- package/dist/esm/cosmos/gov/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/gov/v1beta1/tx.rpc.func.js +0 -27
- package/dist/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +0 -37
- package/dist/esm/cosmos/group/module/v1/module.js +0 -93
- package/dist/esm/cosmos/group/v1/events.js +0 -844
- package/dist/esm/cosmos/group/v1/genesis.js +0 -180
- package/dist/esm/cosmos/group/v1/query.js +0 -2431
- package/dist/esm/cosmos/group/v1/query.lcd.js +0 -139
- package/dist/esm/cosmos/group/v1/query.rpc.Query.js +0 -149
- package/dist/esm/cosmos/group/v1/query.rpc.func.js +0 -100
- package/dist/esm/cosmos/group/v1/tx.amino.js +0 -73
- package/dist/esm/cosmos/group/v1/tx.js +0 -2562
- package/dist/esm/cosmos/group/v1/tx.registry.js +0 -2
- package/dist/esm/cosmos/group/v1/tx.rpc.func.js +0 -87
- package/dist/esm/cosmos/group/v1/tx.rpc.msg.js +0 -95
- package/dist/esm/cosmos/group/v1/types.js +0 -1533
- package/dist/esm/cosmos/ics23/v1/proofs.js +0 -1598
- package/dist/esm/cosmos/mint/module/v1/module.js +0 -92
- package/dist/esm/cosmos/mint/v1beta1/genesis.js +0 -93
- package/dist/esm/cosmos/mint/v1beta1/mint.js +0 -230
- package/dist/esm/cosmos/mint/v1beta1/query.js +0 -433
- package/dist/esm/cosmos/mint/v1beta1/query.lcd.js +0 -21
- package/dist/esm/cosmos/mint/v1beta1/query.rpc.Query.js +0 -42
- package/dist/esm/cosmos/mint/v1beta1/query.rpc.func.js +0 -23
- package/dist/esm/cosmos/mint/v1beta1/tx.amino.js +0 -8
- package/dist/esm/cosmos/mint/v1beta1/tx.js +0 -158
- package/dist/esm/cosmos/mint/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/mint/v1beta1/tx.rpc.func.js +0 -9
- package/dist/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +0 -20
- package/dist/esm/cosmos/msg/textual/v1/textual.js +0 -1
- package/dist/esm/cosmos/msg/v1/msg.js +0 -1
- package/dist/esm/cosmos/nft/module/v1/module.js +0 -67
- package/dist/esm/cosmos/nft/v1beta1/event.js +0 -320
- package/dist/esm/cosmos/nft/v1beta1/genesis.js +0 -192
- package/dist/esm/cosmos/nft/v1beta1/nft.js +0 -279
- package/dist/esm/cosmos/nft/v1beta1/query.js +0 -1186
- package/dist/esm/cosmos/nft/v1beta1/query.lcd.js +0 -63
- package/dist/esm/cosmos/nft/v1beta1/query.rpc.Query.js +0 -81
- package/dist/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -51
- package/dist/esm/cosmos/nft/v1beta1/tx.amino.js +0 -8
- package/dist/esm/cosmos/nft/v1beta1/tx.js +0 -181
- package/dist/esm/cosmos/nft/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -9
- package/dist/esm/cosmos/nft/v1beta1/tx.rpc.msg.js +0 -17
- package/dist/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
- package/dist/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
- package/dist/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
- package/dist/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -16
- package/dist/esm/cosmos/orm/v1/orm.js +0 -377
- package/dist/esm/cosmos/orm/v1alpha1/schema.js +0 -253
- package/dist/esm/cosmos/params/module/v1/module.js +0 -67
- package/dist/esm/cosmos/params/v1beta1/params.js +0 -209
- package/dist/esm/cosmos/params/v1beta1/query.js +0 -410
- package/dist/esm/cosmos/params/v1beta1/query.lcd.js +0 -28
- package/dist/esm/cosmos/params/v1beta1/query.rpc.Query.js +0 -36
- package/dist/esm/cosmos/params/v1beta1/query.rpc.func.js +0 -16
- package/dist/esm/cosmos/query/v1/query.js +0 -1
- package/dist/esm/cosmos/reflection/v1/reflection.js +0 -149
- package/dist/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -9
- package/dist/esm/cosmos/rpc.query.js +0 -25
- package/dist/esm/cosmos/rpc.tx.js +0 -29
- package/dist/esm/cosmos/slashing/module/v1/module.js +0 -80
- package/dist/esm/cosmos/slashing/v1beta1/genesis.js +0 -384
- package/dist/esm/cosmos/slashing/v1beta1/query.js +0 -474
- package/dist/esm/cosmos/slashing/v1beta1/query.lcd.js +0 -30
- package/dist/esm/cosmos/slashing/v1beta1/query.rpc.Query.js +0 -44
- package/dist/esm/cosmos/slashing/v1beta1/query.rpc.func.js +0 -23
- package/dist/esm/cosmos/slashing/v1beta1/slashing.js +0 -269
- package/dist/esm/cosmos/slashing/v1beta1/tx.amino.js +0 -13
- package/dist/esm/cosmos/slashing/v1beta1/tx.js +0 -301
- package/dist/esm/cosmos/slashing/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +0 -15
- package/dist/esm/cosmos/slashing/v1beta1/tx.rpc.msg.js +0 -28
- package/dist/esm/cosmos/staking/module/v1/module.js +0 -119
- package/dist/esm/cosmos/staking/v1beta1/authz.js +0 -259
- package/dist/esm/cosmos/staking/v1beta1/genesis.js +0 -271
- package/dist/esm/cosmos/staking/v1beta1/query.js +0 -2411
- package/dist/esm/cosmos/staking/v1beta1/query.lcd.js +0 -153
- package/dist/esm/cosmos/staking/v1beta1/query.rpc.Query.js +0 -166
- package/dist/esm/cosmos/staking/v1beta1/query.rpc.func.js +0 -100
- package/dist/esm/cosmos/staking/v1beta1/staking.js +0 -2364
- package/dist/esm/cosmos/staking/v1beta1/tx.amino.js +0 -38
- package/dist/esm/cosmos/staking/v1beta1/tx.js +0 -1287
- package/dist/esm/cosmos/staking/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/staking/v1beta1/tx.rpc.func.js +0 -45
- package/dist/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +0 -61
- package/dist/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
- package/dist/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
- package/dist/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
- package/dist/esm/cosmos/store/streaming/abci/grpc.js +0 -329
- package/dist/esm/cosmos/store/v1beta1/commit_info.js +0 -289
- package/dist/esm/cosmos/store/v1beta1/listening.js +0 -220
- package/dist/esm/cosmos/streaming/v1/grpc.js +0 -823
- package/dist/esm/cosmos/tx/config/v1/config.js +0 -92
- package/dist/esm/cosmos/tx/signing/v1beta1/signing.js +0 -565
- package/dist/esm/cosmos/tx/v1beta1/service.js +0 -1722
- package/dist/esm/cosmos/tx/v1beta1/service.lcd.js +0 -51
- package/dist/esm/cosmos/tx/v1beta1/service.rpc.Service.js +0 -106
- package/dist/esm/cosmos/tx/v1beta1/service.rpc.func.js +0 -65
- package/dist/esm/cosmos/tx/v1beta1/tx.js +0 -1395
- package/dist/esm/cosmos/upgrade/module/v1/module.js +0 -80
- package/dist/esm/cosmos/upgrade/v1beta1/query.js +0 -761
- package/dist/esm/cosmos/upgrade/v1beta1/query.lcd.js +0 -46
- package/dist/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +0 -69
- package/dist/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +0 -37
- package/dist/esm/cosmos/upgrade/v1beta1/tx.amino.js +0 -13
- package/dist/esm/cosmos/upgrade/v1beta1/tx.js +0 -301
- package/dist/esm/cosmos/upgrade/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +0 -15
- package/dist/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +0 -28
- package/dist/esm/cosmos/upgrade/v1beta1/upgrade.js +0 -413
- package/dist/esm/cosmos/validate/module/v1/module.js +0 -67
- package/dist/esm/cosmos/vesting/module/v1/module.js +0 -67
- package/dist/esm/cosmos/vesting/v1beta1/tx.amino.js +0 -18
- package/dist/esm/cosmos/vesting/v1beta1/tx.js +0 -550
- package/dist/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -2
- package/dist/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -21
- package/dist/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +0 -36
- package/dist/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
- package/dist/esm/cosmos_proto/cosmos.js +0 -229
- package/dist/esm/cosmwasm/wasm/v1/authz.js +0 -921
- package/dist/esm/cosmwasm/wasm/v1/genesis.js +0 -451
- package/dist/esm/cosmwasm/wasm/v1/ibc.js +0 -273
- package/dist/esm/cosmwasm/wasm/v1/proposal_legacy.js +0 -1781
- package/dist/esm/cosmwasm/wasm/v1/query.js +0 -2019
- package/dist/esm/cosmwasm/wasm/v1/query.lcd.js +0 -102
- package/dist/esm/cosmwasm/wasm/v1/query.rpc.Query.js +0 -118
- package/dist/esm/cosmwasm/wasm/v1/query.rpc.func.js +0 -79
- package/dist/esm/cosmwasm/wasm/v1/tx.amino.js +0 -88
- package/dist/esm/cosmwasm/wasm/v1/tx.js +0 -3233
- package/dist/esm/cosmwasm/wasm/v1/tx.registry.js +0 -2
- package/dist/esm/cosmwasm/wasm/v1/tx.rpc.func.js +0 -105
- package/dist/esm/cosmwasm/wasm/v1/tx.rpc.msg.js +0 -139
- package/dist/esm/cosmwasm/wasm/v1/types.js +0 -910
- package/dist/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +0 -143
- package/dist/esm/ethermint/evm/v1/events.js +0 -381
- package/dist/esm/ethermint/evm/v1/evm.js +0 -1181
- package/dist/esm/ethermint/evm/v1/genesis.js +0 -185
- package/dist/esm/ethermint/evm/v1/query.js +0 -1970
- package/dist/esm/ethermint/evm/v1/query.lcd.js +0 -150
- package/dist/esm/ethermint/evm/v1/query.rpc.Query.js +0 -127
- package/dist/esm/ethermint/evm/v1/query.rpc.func.js +0 -87
- package/dist/esm/ethermint/evm/v1/tx.amino.js +0 -13
- package/dist/esm/ethermint/evm/v1/tx.js +0 -1008
- package/dist/esm/ethermint/evm/v1/tx.registry.js +0 -2
- package/dist/esm/ethermint/evm/v1/tx.rpc.func.js +0 -15
- package/dist/esm/ethermint/evm/v1/tx.rpc.msg.js +0 -24
- package/dist/esm/ethermint/feemarket/v1/events.js +0 -154
- package/dist/esm/ethermint/feemarket/v1/feemarket.js +0 -152
- package/dist/esm/ethermint/feemarket/v1/genesis.js +0 -85
- package/dist/esm/ethermint/feemarket/v1/query.js +0 -384
- package/dist/esm/ethermint/feemarket/v1/query.lcd.js +0 -21
- package/dist/esm/ethermint/feemarket/v1/query.rpc.Query.js +0 -42
- package/dist/esm/ethermint/feemarket/v1/query.rpc.func.js +0 -23
- package/dist/esm/ethermint/feemarket/v1/tx.amino.js +0 -8
- package/dist/esm/ethermint/feemarket/v1/tx.js +0 -150
- package/dist/esm/ethermint/feemarket/v1/tx.registry.js +0 -2
- package/dist/esm/ethermint/feemarket/v1/tx.rpc.func.js +0 -9
- package/dist/esm/ethermint/feemarket/v1/tx.rpc.msg.js +0 -18
- package/dist/esm/ethermint/types/v1/account.js +0 -85
- package/dist/esm/ethermint/types/v1/dynamic_fee.js +0 -72
- package/dist/esm/ethermint/types/v1/indexer.js +0 -144
- package/dist/esm/ethermint/types/v1/web3.js +0 -97
- package/dist/esm/extern.js +0 -30
- package/dist/esm/gogoproto/gogo.js +0 -1
- package/dist/esm/google/api/annotations.js +0 -1
- package/dist/esm/google/api/http.js +0 -350
- package/dist/esm/google/protobuf/any.js +0 -78
- package/dist/esm/google/protobuf/descriptor.js +0 -5062
- package/dist/esm/google/protobuf/duration.js +0 -78
- package/dist/esm/google/protobuf/timestamp.js +0 -75
- package/dist/esm/helper-func-types.js +0 -50
- package/dist/esm/helpers.js +0 -128
- package/dist/esm/ibc/applications/fee/v1/ack.js +0 -105
- package/dist/esm/ibc/applications/fee/v1/fee.js +0 -394
- package/dist/esm/ibc/applications/fee/v1/genesis.js +0 -529
- package/dist/esm/ibc/applications/fee/v1/metadata.js +0 -92
- package/dist/esm/ibc/applications/fee/v1/query.js +0 -1729
- package/dist/esm/ibc/applications/fee/v1/query.lcd.js +0 -111
- package/dist/esm/ibc/applications/fee/v1/query.rpc.Query.js +0 -105
- package/dist/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -72
- package/dist/esm/ibc/applications/fee/v1/tx.amino.js +0 -23
- package/dist/esm/ibc/applications/fee/v1/tx.js +0 -711
- package/dist/esm/ibc/applications/fee/v1/tx.registry.js +0 -2
- package/dist/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -27
- package/dist/esm/ibc/applications/fee/v1/tx.rpc.msg.js +0 -49
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +0 -80
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/query.js +0 -314
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/query.lcd.js +0 -16
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.Query.js +0 -33
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +0 -16
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/tx.amino.js +0 -18
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +0 -556
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +0 -2
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +0 -21
- package/dist/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.msg.js +0 -29
- package/dist/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +0 -553
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/host.js +0 -186
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/query.js +0 -146
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/query.lcd.js +0 -11
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.Query.js +0 -24
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +0 -9
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/tx.amino.js +0 -13
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/tx.js +0 -345
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +0 -2
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +0 -15
- package/dist/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.msg.js +0 -23
- package/dist/esm/ibc/applications/interchain_accounts/v1/account.js +0 -93
- package/dist/esm/ibc/applications/interchain_accounts/v1/metadata.js +0 -140
- package/dist/esm/ibc/applications/interchain_accounts/v1/packet.js +0 -225
- package/dist/esm/ibc/applications/transfer/v1/authz.js +0 -219
- package/dist/esm/ibc/applications/transfer/v1/genesis.js +0 -124
- package/dist/esm/ibc/applications/transfer/v1/query.js +0 -955
- package/dist/esm/ibc/applications/transfer/v1/query.lcd.js +0 -63
- package/dist/esm/ibc/applications/transfer/v1/query.rpc.Query.js +0 -71
- package/dist/esm/ibc/applications/transfer/v1/query.rpc.func.js +0 -44
- package/dist/esm/ibc/applications/transfer/v1/transfer.js +0 -182
- package/dist/esm/ibc/applications/transfer/v1/tx.amino.js +0 -13
- package/dist/esm/ibc/applications/transfer/v1/tx.js +0 -399
- package/dist/esm/ibc/applications/transfer/v1/tx.registry.js +0 -2
- package/dist/esm/ibc/applications/transfer/v1/tx.rpc.func.js +0 -15
- package/dist/esm/ibc/applications/transfer/v1/tx.rpc.msg.js +0 -23
- package/dist/esm/ibc/applications/transfer/v2/packet.js +0 -128
- package/dist/esm/ibc/core/channel/v1/channel.js +0 -1160
- package/dist/esm/ibc/core/channel/v1/genesis.js +0 -300
- package/dist/esm/ibc/core/channel/v1/query.js +0 -3396
- package/dist/esm/ibc/core/channel/v1/query.lcd.js +0 -129
- package/dist/esm/ibc/core/channel/v1/query.rpc.Query.js +0 -178
- package/dist/esm/ibc/core/channel/v1/query.rpc.func.js +0 -121
- package/dist/esm/ibc/core/channel/v1/tx.amino.js +0 -98
- package/dist/esm/ibc/core/channel/v1/tx.js +0 -4022
- package/dist/esm/ibc/core/channel/v1/tx.registry.js +0 -2
- package/dist/esm/ibc/core/channel/v1/tx.rpc.func.js +0 -117
- package/dist/esm/ibc/core/channel/v1/tx.rpc.msg.js +0 -126
- package/dist/esm/ibc/core/channel/v1/upgrade.js +0 -301
- package/dist/esm/ibc/core/client/v1/client.js +0 -672
- package/dist/esm/ibc/core/client/v1/genesis.js +0 -334
- package/dist/esm/ibc/core/client/v1/query.js +0 -1753
- package/dist/esm/ibc/core/client/v1/query.lcd.js +0 -80
- package/dist/esm/ibc/core/client/v1/query.rpc.Query.js +0 -109
- package/dist/esm/ibc/core/client/v1/query.rpc.func.js +0 -72
- package/dist/esm/ibc/core/client/v1/tx.amino.js +0 -38
- package/dist/esm/ibc/core/client/v1/tx.js +0 -1199
- package/dist/esm/ibc/core/client/v1/tx.registry.js +0 -2
- package/dist/esm/ibc/core/client/v1/tx.rpc.func.js +0 -45
- package/dist/esm/ibc/core/client/v1/tx.rpc.msg.js +0 -53
- package/dist/esm/ibc/core/commitment/v1/commitment.js +0 -322
- package/dist/esm/ibc/core/connection/v1/connection.js +0 -776
- package/dist/esm/ibc/core/connection/v1/genesis.js +0 -123
- package/dist/esm/ibc/core/connection/v1/query.js +0 -1092
- package/dist/esm/ibc/core/connection/v1/query.lcd.js +0 -48
- package/dist/esm/ibc/core/connection/v1/query.rpc.Query.js +0 -74
- package/dist/esm/ibc/core/connection/v1/query.rpc.func.js +0 -44
- package/dist/esm/ibc/core/connection/v1/tx.amino.js +0 -28
- package/dist/esm/ibc/core/connection/v1/tx.js +0 -1084
- package/dist/esm/ibc/core/connection/v1/tx.registry.js +0 -2
- package/dist/esm/ibc/core/connection/v1/tx.rpc.func.js +0 -33
- package/dist/esm/ibc/core/connection/v1/tx.rpc.msg.js +0 -43
- package/dist/esm/ibc/core/types/v1/genesis.js +0 -107
- package/dist/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
- package/dist/esm/ibc/lightclients/solomachine/v2/solomachine.js +0 -1684
- package/dist/esm/ibc/lightclients/solomachine/v3/solomachine.js +0 -844
- package/dist/esm/ibc/lightclients/tendermint/v1/tendermint.js +0 -622
- package/dist/esm/ibc/lightclients/wasm/v1/genesis.js +0 -162
- package/dist/esm/ibc/lightclients/wasm/v1/query.js +0 -331
- package/dist/esm/ibc/lightclients/wasm/v1/query.lcd.js +0 -25
- package/dist/esm/ibc/lightclients/wasm/v1/query.rpc.Query.js +0 -35
- package/dist/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +0 -16
- package/dist/esm/ibc/lightclients/wasm/v1/tx.amino.js +0 -18
- package/dist/esm/ibc/lightclients/wasm/v1/tx.js +0 -505
- package/dist/esm/ibc/lightclients/wasm/v1/tx.registry.js +0 -2
- package/dist/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +0 -21
- package/dist/esm/ibc/lightclients/wasm/v1/tx.rpc.msg.js +0 -29
- package/dist/esm/ibc/lightclients/wasm/v1/wasm.js +0 -343
- package/dist/esm/registry.js +0 -154
- package/dist/esm/tendermint/abci/types.js +0 -5217
- package/dist/esm/tendermint/crypto/keys.js +0 -85
- package/dist/esm/tendermint/crypto/proof.js +0 -455
- package/dist/esm/tendermint/p2p/types.js +0 -427
- package/dist/esm/tendermint/types/block.js +0 -110
- package/dist/esm/tendermint/types/evidence.js +0 -400
- package/dist/esm/tendermint/types/params.js +0 -592
- package/dist/esm/tendermint/types/types.js +0 -1749
- package/dist/esm/tendermint/types/validator.js +0 -337
- package/dist/esm/tendermint/version/types.js +0 -166
- package/dist/esm/types.js +0 -6
- package/dist/esm/utf8.js +0 -136
- package/dist/esm/varint.js +0 -407
- package/dist/esm/xpla/lcd.js +0 -176
- package/dist/esm/xpla/reward/v1beta1/genesis.js +0 -73
- package/dist/esm/xpla/reward/v1beta1/query.js +0 -261
- package/dist/esm/xpla/reward/v1beta1/query.lcd.js +0 -16
- package/dist/esm/xpla/reward/v1beta1/query.rpc.Query.js +0 -33
- package/dist/esm/xpla/reward/v1beta1/query.rpc.func.js +0 -16
- package/dist/esm/xpla/reward/v1beta1/reward.js +0 -128
- package/dist/esm/xpla/reward/v1beta1/tx.amino.js +0 -13
- package/dist/esm/xpla/reward/v1beta1/tx.js +0 -301
- package/dist/esm/xpla/reward/v1beta1/tx.registry.js +0 -2
- package/dist/esm/xpla/reward/v1beta1/tx.rpc.func.js +0 -15
- package/dist/esm/xpla/reward/v1beta1/tx.rpc.msg.js +0 -26
- package/dist/esm/xpla/rpc.query.js +0 -125
- package/dist/esm/xpla/rpc.tx.js +0 -1
- package/dist/esm/xpla/volunteer/v1beta1/genesis.js +0 -76
- package/dist/esm/xpla/volunteer/v1beta1/proposal.js +0 -534
- package/dist/esm/xpla/volunteer/v1beta1/query.js +0 -132
- package/dist/esm/xpla/volunteer/v1beta1/query.lcd.js +0 -11
- package/dist/esm/xpla/volunteer/v1beta1/query.rpc.Query.js +0 -24
- package/dist/esm/xpla/volunteer/v1beta1/query.rpc.func.js +0 -9
- package/dist/esm/xpla/volunteer/v1beta1/tx.amino.js +0 -13
- package/dist/esm/xpla/volunteer/v1beta1/tx.js +0 -348
- package/dist/esm/xpla/volunteer/v1beta1/tx.registry.js +0 -2
- package/dist/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +0 -15
- package/dist/esm/xpla/volunteer/v1beta1/tx.rpc.msg.js +0 -24
- package/dist/esm/xpla/volunteer/v1beta1/volunteervalidator.js +0 -84
- package/dist/ethermint/evm/v1/query.lcd.d.ts +0 -21
- package/dist/ethermint/evm/v1/query.lcd.js +0 -154
- package/dist/ethermint/evm/v1/query.rpc.Query.d.ts +0 -70
- package/dist/ethermint/evm/v1/query.rpc.Query.js +0 -132
- package/dist/ethermint/evm/v1/tx.amino.d.ts +0 -13
- package/dist/ethermint/evm/v1/tx.amino.js +0 -16
- package/dist/ethermint/evm/v1/tx.registry.d.ts +0 -2
- package/dist/ethermint/evm/v1/tx.registry.js +0 -5
- package/dist/ethermint/evm/v1/tx.rpc.msg.d.ts +0 -19
- package/dist/ethermint/evm/v1/tx.rpc.msg.js +0 -29
- package/dist/ethermint/feemarket/v1/query.lcd.d.ts +0 -11
- package/dist/ethermint/feemarket/v1/query.lcd.js +0 -25
- package/dist/ethermint/feemarket/v1/query.rpc.Query.d.ts +0 -24
- package/dist/ethermint/feemarket/v1/query.rpc.Query.js +0 -47
- package/dist/ethermint/feemarket/v1/tx.amino.d.ts +0 -8
- package/dist/ethermint/feemarket/v1/tx.amino.js +0 -11
- package/dist/ethermint/feemarket/v1/tx.registry.d.ts +0 -2
- package/dist/ethermint/feemarket/v1/tx.registry.js +0 -5
- package/dist/ethermint/feemarket/v1/tx.rpc.func.d.ts +0 -3
- package/dist/ethermint/feemarket/v1/tx.rpc.func.js +0 -13
- package/dist/ethermint/feemarket/v1/tx.rpc.msg.d.ts +0 -16
- package/dist/ethermint/feemarket/v1/tx.rpc.msg.js +0 -23
- package/dist/extern.d.ts +0 -10
- package/dist/extern.js +0 -36
- package/dist/helper-func-types.d.ts +0 -117
- package/dist/helper-func-types.js +0 -55
- package/dist/helpers.d.ts +0 -82
- package/dist/helpers.js +0 -143
- package/dist/ibc/applications/fee/v1/ack.d.ts +0 -44
- package/dist/ibc/applications/fee/v1/ack.js +0 -108
- package/dist/ibc/applications/fee/v1/fee.d.ts +0 -160
- package/dist/ibc/applications/fee/v1/fee.js +0 -397
- package/dist/ibc/applications/fee/v1/genesis.d.ts +0 -220
- package/dist/ibc/applications/fee/v1/genesis.js +0 -532
- package/dist/ibc/applications/fee/v1/metadata.d.ts +0 -46
- package/dist/ibc/applications/fee/v1/metadata.js +0 -95
- package/dist/ibc/applications/fee/v1/query.d.ts +0 -737
- package/dist/ibc/applications/fee/v1/query.js +0 -1732
- package/dist/ibc/applications/fee/v1/query.lcd.d.ts +0 -18
- package/dist/ibc/applications/fee/v1/query.lcd.js +0 -115
- package/dist/ibc/applications/fee/v1/query.rpc.Query.d.ts +0 -52
- package/dist/ibc/applications/fee/v1/query.rpc.Query.js +0 -110
- package/dist/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
- package/dist/ibc/applications/fee/v1/query.rpc.func.js +0 -85
- package/dist/ibc/applications/fee/v1/tx.amino.d.ts +0 -23
- package/dist/ibc/applications/fee/v1/tx.amino.js +0 -26
- package/dist/ibc/applications/fee/v1/tx.d.ts +0 -318
- package/dist/ibc/applications/fee/v1/tx.js +0 -714
- package/dist/ibc/applications/fee/v1/tx.registry.d.ts +0 -2
- package/dist/ibc/applications/fee/v1/tx.registry.js +0 -5
- package/dist/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
- package/dist/ibc/applications/fee/v1/tx.rpc.func.js +0 -34
- package/dist/ibc/applications/fee/v1/tx.rpc.msg.d.ts +0 -44
- package/dist/ibc/applications/fee/v1/tx.rpc.msg.js +0 -54
- package/dist/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +0 -42
- package/dist/ibc/applications/interchain_accounts/controller/v1/controller.js +0 -83
- package/dist/ibc/applications/interchain_accounts/controller/v1/query.d.ts +0 -133
- package/dist/ibc/applications/interchain_accounts/controller/v1/query.js +0 -317
- package/dist/ibc/applications/interchain_accounts/controller/v1/query.lcd.d.ts +0 -10
- package/dist/ibc/applications/interchain_accounts/controller/v1/query.lcd.js +0 -20
- package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.Query.d.ts +0 -20
- package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.Query.js +0 -38
- package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +0 -4
- package/dist/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +0 -21
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.amino.d.ts +0 -18
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.amino.js +0 -21
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +0 -231
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.js +0 -559
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +0 -2
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +0 -5
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +0 -5
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +0 -27
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.msg.d.ts +0 -19
- package/dist/ibc/applications/interchain_accounts/controller/v1/tx.rpc.msg.js +0 -34
- package/dist/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +0 -196
- package/dist/ibc/applications/interchain_accounts/genesis/v1/genesis.js +0 -556
- package/dist/ibc/applications/interchain_accounts/host/v1/host.d.ts +0 -102
- package/dist/ibc/applications/interchain_accounts/host/v1/host.js +0 -189
- package/dist/ibc/applications/interchain_accounts/host/v1/query.d.ts +0 -67
- package/dist/ibc/applications/interchain_accounts/host/v1/query.js +0 -149
- package/dist/ibc/applications/interchain_accounts/host/v1/query.lcd.d.ts +0 -9
- package/dist/ibc/applications/interchain_accounts/host/v1/query.lcd.js +0 -15
- package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.Query.d.ts +0 -16
- package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.Query.js +0 -29
- package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +0 -3
- package/dist/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +0 -13
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.amino.d.ts +0 -13
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.amino.js +0 -16
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.d.ts +0 -155
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.js +0 -348
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +0 -2
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.registry.js +0 -5
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +0 -4
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +0 -20
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.msg.d.ts +0 -16
- package/dist/ibc/applications/interchain_accounts/host/v1/tx.rpc.msg.js +0 -28
- package/dist/ibc/applications/interchain_accounts/v1/account.d.ts +0 -37
- package/dist/ibc/applications/interchain_accounts/v1/account.js +0 -96
- package/dist/ibc/applications/interchain_accounts/v1/metadata.d.ts +0 -68
- package/dist/ibc/applications/interchain_accounts/v1/metadata.js +0 -143
- package/dist/ibc/applications/interchain_accounts/v1/packet.d.ts +0 -85
- package/dist/ibc/applications/interchain_accounts/v1/packet.js +0 -230
- package/dist/ibc/applications/transfer/v1/authz.d.ts +0 -99
- package/dist/ibc/applications/transfer/v1/authz.js +0 -222
- package/dist/ibc/applications/transfer/v1/genesis.d.ts +0 -50
- package/dist/ibc/applications/transfer/v1/genesis.js +0 -127
- package/dist/ibc/applications/transfer/v1/query.d.ts +0 -449
- package/dist/ibc/applications/transfer/v1/query.js +0 -958
- package/dist/ibc/applications/transfer/v1/query.lcd.d.ts +0 -14
- package/dist/ibc/applications/transfer/v1/query.lcd.js +0 -67
- package/dist/ibc/applications/transfer/v1/query.rpc.Query.d.ts +0 -36
- package/dist/ibc/applications/transfer/v1/query.rpc.Query.js +0 -76
- package/dist/ibc/applications/transfer/v1/query.rpc.func.d.ts +0 -8
- package/dist/ibc/applications/transfer/v1/query.rpc.func.js +0 -53
- package/dist/ibc/applications/transfer/v1/tx.amino.d.ts +0 -13
- package/dist/ibc/applications/transfer/v1/tx.amino.js +0 -16
- package/dist/ibc/applications/transfer/v1/tx.registry.d.ts +0 -2
- package/dist/ibc/applications/transfer/v1/tx.registry.js +0 -5
- package/dist/ibc/applications/transfer/v1/tx.rpc.msg.d.ts +0 -16
- package/dist/ibc/applications/transfer/v1/tx.rpc.msg.js +0 -28
- package/dist/ibc/applications/transfer/v2/packet.d.ts +0 -60
- package/dist/ibc/applications/transfer/v2/packet.js +0 -131
- package/dist/ibc/core/channel/v1/genesis.d.ts +0 -95
- package/dist/ibc/core/channel/v1/genesis.js +0 -303
- package/dist/ibc/core/channel/v1/query.d.ts +0 -1525
- package/dist/ibc/core/channel/v1/query.js +0 -3399
- package/dist/ibc/core/channel/v1/query.lcd.d.ts +0 -25
- package/dist/ibc/core/channel/v1/query.lcd.js +0 -133
- package/dist/ibc/core/channel/v1/query.rpc.Query.d.ts +0 -104
- package/dist/ibc/core/channel/v1/query.rpc.Query.js +0 -183
- package/dist/ibc/core/channel/v1/query.rpc.func.d.ts +0 -19
- package/dist/ibc/core/channel/v1/query.rpc.func.js +0 -141
- package/dist/ibc/core/channel/v1/tx.amino.d.ts +0 -98
- package/dist/ibc/core/channel/v1/tx.amino.js +0 -101
- package/dist/ibc/core/channel/v1/tx.registry.d.ts +0 -2
- package/dist/ibc/core/channel/v1/tx.registry.js +0 -5
- package/dist/ibc/core/channel/v1/tx.rpc.msg.d.ts +0 -70
- package/dist/ibc/core/channel/v1/tx.rpc.msg.js +0 -131
- package/dist/ibc/core/client/v1/genesis.d.ts +0 -147
- package/dist/ibc/core/client/v1/genesis.js +0 -337
- package/dist/ibc/core/client/v1/query.d.ts +0 -862
- package/dist/ibc/core/client/v1/query.js +0 -1756
- package/dist/ibc/core/client/v1/query.lcd.d.ts +0 -17
- package/dist/ibc/core/client/v1/query.lcd.js +0 -84
- package/dist/ibc/core/client/v1/query.rpc.Query.d.ts +0 -58
- package/dist/ibc/core/client/v1/query.rpc.Query.js +0 -114
- package/dist/ibc/core/client/v1/query.rpc.func.d.ts +0 -12
- package/dist/ibc/core/client/v1/query.rpc.func.js +0 -85
- package/dist/ibc/core/client/v1/tx.amino.d.ts +0 -38
- package/dist/ibc/core/client/v1/tx.amino.js +0 -41
- package/dist/ibc/core/client/v1/tx.registry.d.ts +0 -2
- package/dist/ibc/core/client/v1/tx.registry.js +0 -5
- package/dist/ibc/core/client/v1/tx.rpc.msg.d.ts +0 -31
- package/dist/ibc/core/client/v1/tx.rpc.msg.js +0 -58
- package/dist/ibc/core/connection/v1/genesis.d.ts +0 -43
- package/dist/ibc/core/connection/v1/genesis.js +0 -126
- package/dist/ibc/core/connection/v1/query.d.ts +0 -518
- package/dist/ibc/core/connection/v1/query.js +0 -1095
- package/dist/ibc/core/connection/v1/query.lcd.d.ts +0 -14
- package/dist/ibc/core/connection/v1/query.lcd.js +0 -52
- package/dist/ibc/core/connection/v1/query.rpc.Query.d.ts +0 -45
- package/dist/ibc/core/connection/v1/query.rpc.Query.js +0 -79
- package/dist/ibc/core/connection/v1/query.rpc.func.d.ts +0 -8
- package/dist/ibc/core/connection/v1/query.rpc.func.js +0 -53
- package/dist/ibc/core/connection/v1/tx.amino.d.ts +0 -28
- package/dist/ibc/core/connection/v1/tx.amino.js +0 -31
- package/dist/ibc/core/connection/v1/tx.registry.d.ts +0 -2
- package/dist/ibc/core/connection/v1/tx.registry.js +0 -5
- package/dist/ibc/core/connection/v1/tx.rpc.msg.d.ts +0 -31
- package/dist/ibc/core/connection/v1/tx.rpc.msg.js +0 -48
- package/dist/ibc/core/types/v1/genesis.d.ts +0 -50
- package/dist/ibc/core/types/v1/genesis.js +0 -110
- package/dist/ibc/lightclients/localhost/v2/localhost.d.ts +0 -37
- package/dist/ibc/lightclients/localhost/v2/localhost.js +0 -84
- package/dist/ibc/lightclients/solomachine/v2/solomachine.d.ts +0 -711
- package/dist/ibc/lightclients/solomachine/v2/solomachine.js +0 -1689
- package/dist/ibc/lightclients/solomachine/v3/solomachine.d.ts +0 -357
- package/dist/ibc/lightclients/solomachine/v3/solomachine.js +0 -847
- package/dist/ibc/lightclients/tendermint/v1/tendermint.d.ts +0 -306
- package/dist/ibc/lightclients/tendermint/v1/tendermint.js +0 -625
- package/dist/ibc/lightclients/wasm/v1/genesis.d.ts +0 -70
- package/dist/ibc/lightclients/wasm/v1/genesis.js +0 -165
- package/dist/ibc/lightclients/wasm/v1/query.d.ts +0 -141
- package/dist/ibc/lightclients/wasm/v1/query.js +0 -334
- package/dist/ibc/lightclients/wasm/v1/query.lcd.d.ts +0 -10
- package/dist/ibc/lightclients/wasm/v1/query.lcd.js +0 -29
- package/dist/ibc/lightclients/wasm/v1/query.rpc.Query.d.ts +0 -20
- package/dist/ibc/lightclients/wasm/v1/query.rpc.Query.js +0 -40
- package/dist/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +0 -4
- package/dist/ibc/lightclients/wasm/v1/query.rpc.func.js +0 -21
- package/dist/ibc/lightclients/wasm/v1/tx.amino.d.ts +0 -18
- package/dist/ibc/lightclients/wasm/v1/tx.amino.js +0 -21
- package/dist/ibc/lightclients/wasm/v1/tx.d.ts +0 -218
- package/dist/ibc/lightclients/wasm/v1/tx.js +0 -508
- package/dist/ibc/lightclients/wasm/v1/tx.registry.d.ts +0 -2
- package/dist/ibc/lightclients/wasm/v1/tx.registry.js +0 -5
- package/dist/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +0 -5
- package/dist/ibc/lightclients/wasm/v1/tx.rpc.func.js +0 -27
- package/dist/ibc/lightclients/wasm/v1/tx.rpc.msg.d.ts +0 -19
- package/dist/ibc/lightclients/wasm/v1/tx.rpc.msg.js +0 -34
- package/dist/ibc/lightclients/wasm/v1/wasm.d.ts +0 -163
- package/dist/ibc/lightclients/wasm/v1/wasm.js +0 -346
- package/dist/registry.d.ts +0 -33
- package/dist/registry.js +0 -158
- package/dist/tendermint/p2p/types.d.ts +0 -138
- package/dist/tendermint/p2p/types.js +0 -430
- package/dist/types.d.ts +0 -124
- package/dist/types.js +0 -7
- package/dist/utf8.d.ts +0 -27
- package/dist/utf8.js +0 -140
- package/dist/varint.d.ts +0 -105
- package/dist/varint.js +0 -425
- package/dist/xpla/lcd.d.ts +0 -112
- package/dist/xpla/lcd.js +0 -213
- package/dist/xpla/reward/v1beta1/query.lcd.d.ts +0 -10
- package/dist/xpla/reward/v1beta1/query.lcd.js +0 -20
- package/dist/xpla/reward/v1beta1/query.rpc.Query.d.ts +0 -20
- package/dist/xpla/reward/v1beta1/query.rpc.Query.js +0 -38
- package/dist/xpla/reward/v1beta1/tx.amino.d.ts +0 -13
- package/dist/xpla/reward/v1beta1/tx.amino.js +0 -16
- package/dist/xpla/reward/v1beta1/tx.registry.d.ts +0 -2
- package/dist/xpla/reward/v1beta1/tx.registry.js +0 -5
- package/dist/xpla/reward/v1beta1/tx.rpc.msg.d.ts +0 -23
- package/dist/xpla/reward/v1beta1/tx.rpc.msg.js +0 -31
- package/dist/xpla/rpc.query.d.ts +0 -346
- package/dist/xpla/rpc.query.js +0 -162
- package/dist/xpla/rpc.tx.d.ts +0 -4
- package/dist/xpla/rpc.tx.js +0 -5
- package/dist/xpla/volunteer/v1beta1/query.lcd.d.ts +0 -9
- package/dist/xpla/volunteer/v1beta1/query.lcd.js +0 -15
- package/dist/xpla/volunteer/v1beta1/query.rpc.Query.d.ts +0 -16
- package/dist/xpla/volunteer/v1beta1/query.rpc.Query.js +0 -29
- package/dist/xpla/volunteer/v1beta1/tx.amino.d.ts +0 -13
- package/dist/xpla/volunteer/v1beta1/tx.amino.js +0 -16
- package/dist/xpla/volunteer/v1beta1/tx.registry.d.ts +0 -2
- package/dist/xpla/volunteer/v1beta1/tx.registry.js +0 -5
- package/dist/xpla/volunteer/v1beta1/tx.rpc.msg.d.ts +0 -19
- package/dist/xpla/volunteer/v1beta1/tx.rpc.msg.js +0 -29
- /package/{dist → src}/amino/amino.d.ts +0 -0
- /package/{dist → src}/amino/amino.js +0 -0
- /package/{dist → src}/cosmos/auth/v1beta1/auth.d.ts +0 -0
- /package/{dist → src}/cosmos/auth/v1beta1/auth.js +0 -0
- /package/{dist → src}/cosmos/auth/v1beta1/query.d.ts +0 -0
- /package/{dist → src}/cosmos/auth/v1beta1/query.js +0 -0
- /package/{dist → src}/cosmos/auth/v1beta1/query.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/auth/v1beta1/query.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/authz/v1beta1/authz.js +0 -0
- /package/{dist → src}/cosmos/authz/v1beta1/tx.d.ts +0 -0
- /package/{dist → src}/cosmos/authz/v1beta1/tx.js +0 -0
- /package/{dist → src}/cosmos/authz/v1beta1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/authz/v1beta1/tx.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/bank.d.ts +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/bank.js +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/query.d.ts +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/query.js +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/query.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/query.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/tx.d.ts +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/tx.js +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/bank/v1beta1/tx.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/base/abci/v1beta1/abci.d.ts +0 -0
- /package/{dist → src}/cosmos/base/abci/v1beta1/abci.js +0 -0
- /package/{dist → src}/cosmos/base/query/v1beta1/pagination.d.ts +0 -0
- /package/{dist → src}/cosmos/base/query/v1beta1/pagination.js +0 -0
- /package/{dist → src}/cosmos/base/v1beta1/coin.d.ts +0 -0
- /package/{dist → src}/cosmos/base/v1beta1/coin.js +0 -0
- /package/{dist → src}/cosmos/crypto/ed25519/keys.d.ts +0 -0
- /package/{dist → src}/cosmos/crypto/ed25519/keys.js +0 -0
- /package/{dist → src}/cosmos/crypto/multisig/v1beta1/multisig.d.ts +0 -0
- /package/{dist → src}/cosmos/crypto/multisig/v1beta1/multisig.js +0 -0
- /package/{dist → src}/cosmos/crypto/secp256k1/keys.d.ts +0 -0
- /package/{dist → src}/cosmos/crypto/secp256k1/keys.js +0 -0
- /package/{dist → src}/cosmos/crypto/secp256r1/keys.d.ts +0 -0
- /package/{dist → src}/cosmos/crypto/secp256r1/keys.js +0 -0
- /package/{dist → src}/cosmos/distribution/v1beta1/distribution.d.ts +0 -0
- /package/{dist → src}/cosmos/distribution/v1beta1/distribution.js +0 -0
- /package/{dist → src}/cosmos/distribution/v1beta1/tx.d.ts +0 -0
- /package/{dist → src}/cosmos/distribution/v1beta1/tx.js +0 -0
- /package/{dist → src}/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/distribution/v1beta1/tx.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/feegrant/v1beta1/tx.js +0 -0
- /package/{dist → src}/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/feegrant/v1beta1/tx.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/gov/v1/gov.d.ts +0 -0
- /package/{dist → src}/cosmos/gov/v1/gov.js +0 -0
- /package/{dist → src}/cosmos/gov/v1/tx.js +0 -0
- /package/{dist → src}/cosmos/gov/v1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/gov/v1/tx.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/gov/v1beta1/gov.js +0 -0
- /package/{dist → src}/cosmos/gov/v1beta1/query.d.ts +0 -0
- /package/{dist → src}/cosmos/gov/v1beta1/query.js +0 -0
- /package/{dist → src}/cosmos/gov/v1beta1/query.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/gov/v1beta1/query.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/gov/v1beta1/tx.js +0 -0
- /package/{dist → src}/cosmos/gov/v1beta1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/gov/v1beta1/tx.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/group/v1/tx.d.ts +0 -0
- /package/{dist → src}/cosmos/group/v1/tx.js +0 -0
- /package/{dist → src}/cosmos/group/v1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/group/v1/tx.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/group/v1/types.d.ts +0 -0
- /package/{dist → src}/cosmos/group/v1/types.js +0 -0
- /package/{dist → src}/cosmos/ics23/v1/proofs.d.ts +0 -0
- /package/{dist → src}/cosmos/ics23/v1/proofs.js +0 -0
- /package/{dist → src}/cosmos/msg/v1/msg.d.ts +0 -0
- /package/{dist → src}/cosmos/msg/v1/msg.js +0 -0
- /package/{dist → src}/cosmos/query/v1/query.d.ts +0 -0
- /package/{dist → src}/cosmos/query/v1/query.js +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/query.d.ts +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/query.js +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/query.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/query.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/staking.d.ts +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/staking.js +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/tx.d.ts +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/tx.js +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/staking/v1beta1/tx.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/tx/signing/v1beta1/signing.d.ts +0 -0
- /package/{dist → src}/cosmos/tx/signing/v1beta1/signing.js +0 -0
- /package/{dist → src}/cosmos/tx/v1beta1/service.d.ts +0 -0
- /package/{dist → src}/cosmos/tx/v1beta1/service.js +0 -0
- /package/{dist → src}/cosmos/tx/v1beta1/service.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/tx/v1beta1/service.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/tx/v1beta1/tx.d.ts +0 -0
- /package/{dist → src}/cosmos/tx/v1beta1/tx.js +0 -0
- /package/{dist → src}/cosmos/upgrade/v1beta1/upgrade.d.ts +0 -0
- /package/{dist → src}/cosmos/upgrade/v1beta1/upgrade.js +0 -0
- /package/{dist → src}/cosmos/vesting/v1beta1/tx.d.ts +0 -0
- /package/{dist → src}/cosmos/vesting/v1beta1/tx.js +0 -0
- /package/{dist → src}/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -0
- /package/{dist → src}/cosmos/vesting/v1beta1/vesting.d.ts +0 -0
- /package/{dist → src}/cosmos/vesting/v1beta1/vesting.js +0 -0
- /package/{dist → src}/cosmos_proto/cosmos.d.ts +0 -0
- /package/{dist → src}/cosmos_proto/cosmos.js +0 -0
- /package/{dist → src}/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +0 -0
- /package/{dist → src}/ethermint/crypto/v1/ethsecp256k1/keys.js +0 -0
- /package/{dist → src}/ethermint/evm/v1/events.d.ts +0 -0
- /package/{dist → src}/ethermint/evm/v1/events.js +0 -0
- /package/{dist → src}/ethermint/evm/v1/evm.d.ts +0 -0
- /package/{dist → src}/ethermint/evm/v1/evm.js +0 -0
- /package/{dist → src}/ethermint/evm/v1/genesis.d.ts +0 -0
- /package/{dist → src}/ethermint/evm/v1/genesis.js +0 -0
- /package/{dist → src}/ethermint/evm/v1/query.d.ts +0 -0
- /package/{dist → src}/ethermint/evm/v1/query.js +0 -0
- /package/{dist → src}/ethermint/evm/v1/query.rpc.func.d.ts +0 -0
- /package/{dist → src}/ethermint/evm/v1/query.rpc.func.js +0 -0
- /package/{dist → src}/ethermint/evm/v1/tx.d.ts +0 -0
- /package/{dist → src}/ethermint/evm/v1/tx.js +0 -0
- /package/{dist → src}/ethermint/evm/v1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/ethermint/evm/v1/tx.rpc.func.js +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/events.d.ts +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/events.js +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/feemarket.d.ts +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/feemarket.js +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/genesis.d.ts +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/genesis.js +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/query.d.ts +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/query.js +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/query.rpc.func.d.ts +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/query.rpc.func.js +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/tx.d.ts +0 -0
- /package/{dist → src}/ethermint/feemarket/v1/tx.js +0 -0
- /package/{dist/cosmos/auth/v1beta1 → src/ethermint/feemarket/v1}/tx.rpc.func.d.ts +0 -0
- /package/{dist/cosmos/auth/v1beta1 → src/ethermint/feemarket/v1}/tx.rpc.func.js +0 -0
- /package/{dist → src}/ethermint/types/v1/account.d.ts +0 -0
- /package/{dist → src}/ethermint/types/v1/account.js +0 -0
- /package/{dist → src}/ethermint/types/v1/dynamic_fee.d.ts +0 -0
- /package/{dist → src}/ethermint/types/v1/dynamic_fee.js +0 -0
- /package/{dist → src}/ethermint/types/v1/indexer.d.ts +0 -0
- /package/{dist → src}/ethermint/types/v1/indexer.js +0 -0
- /package/{dist → src}/ethermint/types/v1/web3.d.ts +0 -0
- /package/{dist → src}/ethermint/types/v1/web3.js +0 -0
- /package/{dist → src}/gogoproto/gogo.d.ts +0 -0
- /package/{dist → src}/gogoproto/gogo.js +0 -0
- /package/{dist → src}/google/api/annotations.d.ts +0 -0
- /package/{dist → src}/google/api/annotations.js +0 -0
- /package/{dist → src}/google/api/http.d.ts +0 -0
- /package/{dist → src}/google/api/http.js +0 -0
- /package/{dist → src}/google/protobuf/any.d.ts +0 -0
- /package/{dist → src}/google/protobuf/any.js +0 -0
- /package/{dist → src}/google/protobuf/descriptor.d.ts +0 -0
- /package/{dist → src}/google/protobuf/descriptor.js +0 -0
- /package/{dist → src}/google/protobuf/duration.d.ts +0 -0
- /package/{dist → src}/google/protobuf/duration.js +0 -0
- /package/{dist → src}/google/protobuf/timestamp.d.ts +0 -0
- /package/{dist → src}/google/protobuf/timestamp.js +0 -0
- /package/{dist → src}/ibc/applications/transfer/v1/transfer.d.ts +0 -0
- /package/{dist → src}/ibc/applications/transfer/v1/transfer.js +0 -0
- /package/{dist → src}/ibc/applications/transfer/v1/tx.d.ts +0 -0
- /package/{dist → src}/ibc/applications/transfer/v1/tx.js +0 -0
- /package/{dist → src}/ibc/applications/transfer/v1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/ibc/applications/transfer/v1/tx.rpc.func.js +0 -0
- /package/{dist → src}/ibc/core/channel/v1/channel.d.ts +0 -0
- /package/{dist → src}/ibc/core/channel/v1/channel.js +0 -0
- /package/{dist → src}/ibc/core/channel/v1/tx.d.ts +0 -0
- /package/{dist → src}/ibc/core/channel/v1/tx.js +0 -0
- /package/{dist → src}/ibc/core/channel/v1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/ibc/core/channel/v1/tx.rpc.func.js +0 -0
- /package/{dist → src}/ibc/core/channel/v1/upgrade.d.ts +0 -0
- /package/{dist → src}/ibc/core/channel/v1/upgrade.js +0 -0
- /package/{dist → src}/ibc/core/client/v1/client.d.ts +0 -0
- /package/{dist → src}/ibc/core/client/v1/client.js +0 -0
- /package/{dist → src}/ibc/core/client/v1/tx.d.ts +0 -0
- /package/{dist → src}/ibc/core/client/v1/tx.js +0 -0
- /package/{dist → src}/ibc/core/client/v1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/ibc/core/client/v1/tx.rpc.func.js +0 -0
- /package/{dist → src}/ibc/core/commitment/v1/commitment.d.ts +0 -0
- /package/{dist → src}/ibc/core/commitment/v1/commitment.js +0 -0
- /package/{dist → src}/ibc/core/connection/v1/connection.d.ts +0 -0
- /package/{dist → src}/ibc/core/connection/v1/connection.js +0 -0
- /package/{dist → src}/ibc/core/connection/v1/tx.d.ts +0 -0
- /package/{dist → src}/ibc/core/connection/v1/tx.js +0 -0
- /package/{dist → src}/ibc/core/connection/v1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/ibc/core/connection/v1/tx.rpc.func.js +0 -0
- /package/{dist → src}/tendermint/abci/types.d.ts +0 -0
- /package/{dist → src}/tendermint/abci/types.js +0 -0
- /package/{dist → src}/tendermint/crypto/keys.d.ts +0 -0
- /package/{dist → src}/tendermint/crypto/keys.js +0 -0
- /package/{dist → src}/tendermint/crypto/proof.d.ts +0 -0
- /package/{dist → src}/tendermint/crypto/proof.js +0 -0
- /package/{dist → src}/tendermint/types/block.d.ts +0 -0
- /package/{dist → src}/tendermint/types/block.js +0 -0
- /package/{dist → src}/tendermint/types/evidence.d.ts +0 -0
- /package/{dist → src}/tendermint/types/evidence.js +0 -0
- /package/{dist → src}/tendermint/types/params.d.ts +0 -0
- /package/{dist → src}/tendermint/types/params.js +0 -0
- /package/{dist → src}/tendermint/types/types.d.ts +0 -0
- /package/{dist → src}/tendermint/types/types.js +0 -0
- /package/{dist → src}/tendermint/types/validator.d.ts +0 -0
- /package/{dist → src}/tendermint/types/validator.js +0 -0
- /package/{dist → src}/tendermint/version/types.d.ts +0 -0
- /package/{dist → src}/tendermint/version/types.js +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/genesis.d.ts +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/genesis.js +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/query.d.ts +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/query.js +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/query.rpc.func.d.ts +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/query.rpc.func.js +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/reward.d.ts +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/reward.js +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/tx.d.ts +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/tx.js +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/xpla/reward/v1beta1/tx.rpc.func.js +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/genesis.d.ts +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/genesis.js +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/proposal.d.ts +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/proposal.js +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/query.d.ts +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/query.js +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/query.rpc.func.d.ts +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/query.rpc.func.js +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/tx.d.ts +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/tx.js +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/tx.rpc.func.js +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/volunteervalidator.d.ts +0 -0
- /package/{dist → src}/xpla/volunteer/v1beta1/volunteervalidator.js +0 -0
|
@@ -0,0 +1,3027 @@
|
|
|
1
|
+
import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../base/query/v1beta1/pagination";
|
|
2
|
+
import { Coin, CoinAmino } from "../../base/v1beta1/coin";
|
|
3
|
+
import { Params, ParamsAmino, Metadata, MetadataAmino, SendEnabled, SendEnabledAmino } from "./bank";
|
|
4
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
5
|
+
import { DeepPartial } from "../../../helpers";
|
|
6
|
+
import { GlobalDecoderRegistry } from "../../../registry";
|
|
7
|
+
/** QueryBalanceRequest is the request type for the Query/Balance RPC method. */
|
|
8
|
+
export interface QueryBalanceRequest {
|
|
9
|
+
/** address is the address to query balances for. */
|
|
10
|
+
address: string;
|
|
11
|
+
/** denom is the coin denom to query balances for. */
|
|
12
|
+
denom: string;
|
|
13
|
+
}
|
|
14
|
+
export interface QueryBalanceRequestProtoMsg {
|
|
15
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceRequest";
|
|
16
|
+
value: Uint8Array;
|
|
17
|
+
}
|
|
18
|
+
/** QueryBalanceRequest is the request type for the Query/Balance RPC method. */
|
|
19
|
+
export interface QueryBalanceRequestAmino {
|
|
20
|
+
/** address is the address to query balances for. */
|
|
21
|
+
address: string;
|
|
22
|
+
/** denom is the coin denom to query balances for. */
|
|
23
|
+
denom: string;
|
|
24
|
+
}
|
|
25
|
+
export interface QueryBalanceRequestAminoMsg {
|
|
26
|
+
type: "cosmos-sdk/QueryBalanceRequest";
|
|
27
|
+
value: QueryBalanceRequestAmino;
|
|
28
|
+
}
|
|
29
|
+
/** QueryBalanceResponse is the response type for the Query/Balance RPC method. */
|
|
30
|
+
export interface QueryBalanceResponse {
|
|
31
|
+
/** balance is the balance of the coin. */
|
|
32
|
+
balance?: Coin;
|
|
33
|
+
}
|
|
34
|
+
export interface QueryBalanceResponseProtoMsg {
|
|
35
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceResponse";
|
|
36
|
+
value: Uint8Array;
|
|
37
|
+
}
|
|
38
|
+
/** QueryBalanceResponse is the response type for the Query/Balance RPC method. */
|
|
39
|
+
export interface QueryBalanceResponseAmino {
|
|
40
|
+
/** balance is the balance of the coin. */
|
|
41
|
+
balance?: CoinAmino;
|
|
42
|
+
}
|
|
43
|
+
export interface QueryBalanceResponseAminoMsg {
|
|
44
|
+
type: "cosmos-sdk/QueryBalanceResponse";
|
|
45
|
+
value: QueryBalanceResponseAmino;
|
|
46
|
+
}
|
|
47
|
+
/** QueryBalanceRequest is the request type for the Query/AllBalances RPC method. */
|
|
48
|
+
export interface QueryAllBalancesRequest {
|
|
49
|
+
/** address is the address to query balances for. */
|
|
50
|
+
address: string;
|
|
51
|
+
/** pagination defines an optional pagination for the request. */
|
|
52
|
+
pagination?: PageRequest;
|
|
53
|
+
/**
|
|
54
|
+
* resolve_denom is the flag to resolve the denom into a human-readable form from the metadata.
|
|
55
|
+
*
|
|
56
|
+
* Since: cosmos-sdk 0.50
|
|
57
|
+
*/
|
|
58
|
+
resolveDenom: boolean;
|
|
59
|
+
}
|
|
60
|
+
export interface QueryAllBalancesRequestProtoMsg {
|
|
61
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesRequest";
|
|
62
|
+
value: Uint8Array;
|
|
63
|
+
}
|
|
64
|
+
/** QueryBalanceRequest is the request type for the Query/AllBalances RPC method. */
|
|
65
|
+
export interface QueryAllBalancesRequestAmino {
|
|
66
|
+
/** address is the address to query balances for. */
|
|
67
|
+
address: string;
|
|
68
|
+
/** pagination defines an optional pagination for the request. */
|
|
69
|
+
pagination?: PageRequestAmino;
|
|
70
|
+
/**
|
|
71
|
+
* resolve_denom is the flag to resolve the denom into a human-readable form from the metadata.
|
|
72
|
+
*
|
|
73
|
+
* Since: cosmos-sdk 0.50
|
|
74
|
+
*/
|
|
75
|
+
resolve_denom: boolean;
|
|
76
|
+
}
|
|
77
|
+
export interface QueryAllBalancesRequestAminoMsg {
|
|
78
|
+
type: "cosmos-sdk/QueryAllBalancesRequest";
|
|
79
|
+
value: QueryAllBalancesRequestAmino;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* QueryAllBalancesResponse is the response type for the Query/AllBalances RPC
|
|
83
|
+
* method.
|
|
84
|
+
*/
|
|
85
|
+
export interface QueryAllBalancesResponse {
|
|
86
|
+
/** balances is the balances of all the coins. */
|
|
87
|
+
balances: Coin[];
|
|
88
|
+
/** pagination defines the pagination in the response. */
|
|
89
|
+
pagination?: PageResponse;
|
|
90
|
+
}
|
|
91
|
+
export interface QueryAllBalancesResponseProtoMsg {
|
|
92
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesResponse";
|
|
93
|
+
value: Uint8Array;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* QueryAllBalancesResponse is the response type for the Query/AllBalances RPC
|
|
97
|
+
* method.
|
|
98
|
+
*/
|
|
99
|
+
export interface QueryAllBalancesResponseAmino {
|
|
100
|
+
/** balances is the balances of all the coins. */
|
|
101
|
+
balances: CoinAmino[];
|
|
102
|
+
/** pagination defines the pagination in the response. */
|
|
103
|
+
pagination?: PageResponseAmino;
|
|
104
|
+
}
|
|
105
|
+
export interface QueryAllBalancesResponseAminoMsg {
|
|
106
|
+
type: "cosmos-sdk/QueryAllBalancesResponse";
|
|
107
|
+
value: QueryAllBalancesResponseAmino;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* QuerySpendableBalancesRequest defines the gRPC request structure for querying
|
|
111
|
+
* an account's spendable balances.
|
|
112
|
+
*
|
|
113
|
+
* Since: cosmos-sdk 0.46
|
|
114
|
+
*/
|
|
115
|
+
export interface QuerySpendableBalancesRequest {
|
|
116
|
+
/** address is the address to query spendable balances for. */
|
|
117
|
+
address: string;
|
|
118
|
+
/** pagination defines an optional pagination for the request. */
|
|
119
|
+
pagination?: PageRequest;
|
|
120
|
+
}
|
|
121
|
+
export interface QuerySpendableBalancesRequestProtoMsg {
|
|
122
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesRequest";
|
|
123
|
+
value: Uint8Array;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* QuerySpendableBalancesRequest defines the gRPC request structure for querying
|
|
127
|
+
* an account's spendable balances.
|
|
128
|
+
*
|
|
129
|
+
* Since: cosmos-sdk 0.46
|
|
130
|
+
*/
|
|
131
|
+
export interface QuerySpendableBalancesRequestAmino {
|
|
132
|
+
/** address is the address to query spendable balances for. */
|
|
133
|
+
address: string;
|
|
134
|
+
/** pagination defines an optional pagination for the request. */
|
|
135
|
+
pagination?: PageRequestAmino;
|
|
136
|
+
}
|
|
137
|
+
export interface QuerySpendableBalancesRequestAminoMsg {
|
|
138
|
+
type: "cosmos-sdk/QuerySpendableBalancesRequest";
|
|
139
|
+
value: QuerySpendableBalancesRequestAmino;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* QuerySpendableBalancesResponse defines the gRPC response structure for querying
|
|
143
|
+
* an account's spendable balances.
|
|
144
|
+
*
|
|
145
|
+
* Since: cosmos-sdk 0.46
|
|
146
|
+
*/
|
|
147
|
+
export interface QuerySpendableBalancesResponse {
|
|
148
|
+
/** balances is the spendable balances of all the coins. */
|
|
149
|
+
balances: Coin[];
|
|
150
|
+
/** pagination defines the pagination in the response. */
|
|
151
|
+
pagination?: PageResponse;
|
|
152
|
+
}
|
|
153
|
+
export interface QuerySpendableBalancesResponseProtoMsg {
|
|
154
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesResponse";
|
|
155
|
+
value: Uint8Array;
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* QuerySpendableBalancesResponse defines the gRPC response structure for querying
|
|
159
|
+
* an account's spendable balances.
|
|
160
|
+
*
|
|
161
|
+
* Since: cosmos-sdk 0.46
|
|
162
|
+
*/
|
|
163
|
+
export interface QuerySpendableBalancesResponseAmino {
|
|
164
|
+
/** balances is the spendable balances of all the coins. */
|
|
165
|
+
balances: CoinAmino[];
|
|
166
|
+
/** pagination defines the pagination in the response. */
|
|
167
|
+
pagination?: PageResponseAmino;
|
|
168
|
+
}
|
|
169
|
+
export interface QuerySpendableBalancesResponseAminoMsg {
|
|
170
|
+
type: "cosmos-sdk/QuerySpendableBalancesResponse";
|
|
171
|
+
value: QuerySpendableBalancesResponseAmino;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* QuerySpendableBalanceByDenomRequest defines the gRPC request structure for
|
|
175
|
+
* querying an account's spendable balance for a specific denom.
|
|
176
|
+
*
|
|
177
|
+
* Since: cosmos-sdk 0.47
|
|
178
|
+
*/
|
|
179
|
+
export interface QuerySpendableBalanceByDenomRequest {
|
|
180
|
+
/** address is the address to query balances for. */
|
|
181
|
+
address: string;
|
|
182
|
+
/** denom is the coin denom to query balances for. */
|
|
183
|
+
denom: string;
|
|
184
|
+
}
|
|
185
|
+
export interface QuerySpendableBalanceByDenomRequestProtoMsg {
|
|
186
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest";
|
|
187
|
+
value: Uint8Array;
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* QuerySpendableBalanceByDenomRequest defines the gRPC request structure for
|
|
191
|
+
* querying an account's spendable balance for a specific denom.
|
|
192
|
+
*
|
|
193
|
+
* Since: cosmos-sdk 0.47
|
|
194
|
+
*/
|
|
195
|
+
export interface QuerySpendableBalanceByDenomRequestAmino {
|
|
196
|
+
/** address is the address to query balances for. */
|
|
197
|
+
address: string;
|
|
198
|
+
/** denom is the coin denom to query balances for. */
|
|
199
|
+
denom: string;
|
|
200
|
+
}
|
|
201
|
+
export interface QuerySpendableBalanceByDenomRequestAminoMsg {
|
|
202
|
+
type: "cosmos-sdk/QuerySpendableBalanceByDenomRequest";
|
|
203
|
+
value: QuerySpendableBalanceByDenomRequestAmino;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* QuerySpendableBalanceByDenomResponse defines the gRPC response structure for
|
|
207
|
+
* querying an account's spendable balance for a specific denom.
|
|
208
|
+
*
|
|
209
|
+
* Since: cosmos-sdk 0.47
|
|
210
|
+
*/
|
|
211
|
+
export interface QuerySpendableBalanceByDenomResponse {
|
|
212
|
+
/** balance is the balance of the coin. */
|
|
213
|
+
balance?: Coin;
|
|
214
|
+
}
|
|
215
|
+
export interface QuerySpendableBalanceByDenomResponseProtoMsg {
|
|
216
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse";
|
|
217
|
+
value: Uint8Array;
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* QuerySpendableBalanceByDenomResponse defines the gRPC response structure for
|
|
221
|
+
* querying an account's spendable balance for a specific denom.
|
|
222
|
+
*
|
|
223
|
+
* Since: cosmos-sdk 0.47
|
|
224
|
+
*/
|
|
225
|
+
export interface QuerySpendableBalanceByDenomResponseAmino {
|
|
226
|
+
/** balance is the balance of the coin. */
|
|
227
|
+
balance?: CoinAmino;
|
|
228
|
+
}
|
|
229
|
+
export interface QuerySpendableBalanceByDenomResponseAminoMsg {
|
|
230
|
+
type: "cosmos-sdk/QuerySpendableBalanceByDenomResponse";
|
|
231
|
+
value: QuerySpendableBalanceByDenomResponseAmino;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC
|
|
235
|
+
* method.
|
|
236
|
+
*/
|
|
237
|
+
export interface QueryTotalSupplyRequest {
|
|
238
|
+
/**
|
|
239
|
+
* pagination defines an optional pagination for the request.
|
|
240
|
+
*
|
|
241
|
+
* Since: cosmos-sdk 0.43
|
|
242
|
+
*/
|
|
243
|
+
pagination?: PageRequest;
|
|
244
|
+
}
|
|
245
|
+
export interface QueryTotalSupplyRequestProtoMsg {
|
|
246
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyRequest";
|
|
247
|
+
value: Uint8Array;
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC
|
|
251
|
+
* method.
|
|
252
|
+
*/
|
|
253
|
+
export interface QueryTotalSupplyRequestAmino {
|
|
254
|
+
/**
|
|
255
|
+
* pagination defines an optional pagination for the request.
|
|
256
|
+
*
|
|
257
|
+
* Since: cosmos-sdk 0.43
|
|
258
|
+
*/
|
|
259
|
+
pagination?: PageRequestAmino;
|
|
260
|
+
}
|
|
261
|
+
export interface QueryTotalSupplyRequestAminoMsg {
|
|
262
|
+
type: "cosmos-sdk/QueryTotalSupplyRequest";
|
|
263
|
+
value: QueryTotalSupplyRequestAmino;
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC
|
|
267
|
+
* method
|
|
268
|
+
*/
|
|
269
|
+
export interface QueryTotalSupplyResponse {
|
|
270
|
+
/** supply is the supply of the coins */
|
|
271
|
+
supply: Coin[];
|
|
272
|
+
/**
|
|
273
|
+
* pagination defines the pagination in the response.
|
|
274
|
+
*
|
|
275
|
+
* Since: cosmos-sdk 0.43
|
|
276
|
+
*/
|
|
277
|
+
pagination?: PageResponse;
|
|
278
|
+
}
|
|
279
|
+
export interface QueryTotalSupplyResponseProtoMsg {
|
|
280
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyResponse";
|
|
281
|
+
value: Uint8Array;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC
|
|
285
|
+
* method
|
|
286
|
+
*/
|
|
287
|
+
export interface QueryTotalSupplyResponseAmino {
|
|
288
|
+
/** supply is the supply of the coins */
|
|
289
|
+
supply: CoinAmino[];
|
|
290
|
+
/**
|
|
291
|
+
* pagination defines the pagination in the response.
|
|
292
|
+
*
|
|
293
|
+
* Since: cosmos-sdk 0.43
|
|
294
|
+
*/
|
|
295
|
+
pagination?: PageResponseAmino;
|
|
296
|
+
}
|
|
297
|
+
export interface QueryTotalSupplyResponseAminoMsg {
|
|
298
|
+
type: "cosmos-sdk/QueryTotalSupplyResponse";
|
|
299
|
+
value: QueryTotalSupplyResponseAmino;
|
|
300
|
+
}
|
|
301
|
+
/** QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method. */
|
|
302
|
+
export interface QuerySupplyOfRequest {
|
|
303
|
+
/** denom is the coin denom to query balances for. */
|
|
304
|
+
denom: string;
|
|
305
|
+
}
|
|
306
|
+
export interface QuerySupplyOfRequestProtoMsg {
|
|
307
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfRequest";
|
|
308
|
+
value: Uint8Array;
|
|
309
|
+
}
|
|
310
|
+
/** QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method. */
|
|
311
|
+
export interface QuerySupplyOfRequestAmino {
|
|
312
|
+
/** denom is the coin denom to query balances for. */
|
|
313
|
+
denom: string;
|
|
314
|
+
}
|
|
315
|
+
export interface QuerySupplyOfRequestAminoMsg {
|
|
316
|
+
type: "cosmos-sdk/QuerySupplyOfRequest";
|
|
317
|
+
value: QuerySupplyOfRequestAmino;
|
|
318
|
+
}
|
|
319
|
+
/** QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method. */
|
|
320
|
+
export interface QuerySupplyOfResponse {
|
|
321
|
+
/** amount is the supply of the coin. */
|
|
322
|
+
amount: Coin;
|
|
323
|
+
}
|
|
324
|
+
export interface QuerySupplyOfResponseProtoMsg {
|
|
325
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfResponse";
|
|
326
|
+
value: Uint8Array;
|
|
327
|
+
}
|
|
328
|
+
/** QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method. */
|
|
329
|
+
export interface QuerySupplyOfResponseAmino {
|
|
330
|
+
/** amount is the supply of the coin. */
|
|
331
|
+
amount: CoinAmino;
|
|
332
|
+
}
|
|
333
|
+
export interface QuerySupplyOfResponseAminoMsg {
|
|
334
|
+
type: "cosmos-sdk/QuerySupplyOfResponse";
|
|
335
|
+
value: QuerySupplyOfResponseAmino;
|
|
336
|
+
}
|
|
337
|
+
/** QueryParamsRequest defines the request type for querying x/bank parameters. */
|
|
338
|
+
export interface QueryParamsRequest {}
|
|
339
|
+
export interface QueryParamsRequestProtoMsg {
|
|
340
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryParamsRequest";
|
|
341
|
+
value: Uint8Array;
|
|
342
|
+
}
|
|
343
|
+
/** QueryParamsRequest defines the request type for querying x/bank parameters. */
|
|
344
|
+
export interface QueryParamsRequestAmino {}
|
|
345
|
+
export interface QueryParamsRequestAminoMsg {
|
|
346
|
+
type: "cosmos-sdk/QueryParamsRequest";
|
|
347
|
+
value: QueryParamsRequestAmino;
|
|
348
|
+
}
|
|
349
|
+
/** QueryParamsResponse defines the response type for querying x/bank parameters. */
|
|
350
|
+
export interface QueryParamsResponse {
|
|
351
|
+
/** params provides the parameters of the bank module. */
|
|
352
|
+
params: Params;
|
|
353
|
+
}
|
|
354
|
+
export interface QueryParamsResponseProtoMsg {
|
|
355
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryParamsResponse";
|
|
356
|
+
value: Uint8Array;
|
|
357
|
+
}
|
|
358
|
+
/** QueryParamsResponse defines the response type for querying x/bank parameters. */
|
|
359
|
+
export interface QueryParamsResponseAmino {
|
|
360
|
+
/** params provides the parameters of the bank module. */
|
|
361
|
+
params: ParamsAmino;
|
|
362
|
+
}
|
|
363
|
+
export interface QueryParamsResponseAminoMsg {
|
|
364
|
+
type: "cosmos-sdk/QueryParamsResponse";
|
|
365
|
+
value: QueryParamsResponseAmino;
|
|
366
|
+
}
|
|
367
|
+
/** QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method. */
|
|
368
|
+
export interface QueryDenomsMetadataRequest {
|
|
369
|
+
/** pagination defines an optional pagination for the request. */
|
|
370
|
+
pagination?: PageRequest;
|
|
371
|
+
}
|
|
372
|
+
export interface QueryDenomsMetadataRequestProtoMsg {
|
|
373
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataRequest";
|
|
374
|
+
value: Uint8Array;
|
|
375
|
+
}
|
|
376
|
+
/** QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method. */
|
|
377
|
+
export interface QueryDenomsMetadataRequestAmino {
|
|
378
|
+
/** pagination defines an optional pagination for the request. */
|
|
379
|
+
pagination?: PageRequestAmino;
|
|
380
|
+
}
|
|
381
|
+
export interface QueryDenomsMetadataRequestAminoMsg {
|
|
382
|
+
type: "cosmos-sdk/QueryDenomsMetadataRequest";
|
|
383
|
+
value: QueryDenomsMetadataRequestAmino;
|
|
384
|
+
}
|
|
385
|
+
/**
|
|
386
|
+
* QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC
|
|
387
|
+
* method.
|
|
388
|
+
*/
|
|
389
|
+
export interface QueryDenomsMetadataResponse {
|
|
390
|
+
/** metadata provides the client information for all the registered tokens. */
|
|
391
|
+
metadatas: Metadata[];
|
|
392
|
+
/** pagination defines the pagination in the response. */
|
|
393
|
+
pagination?: PageResponse;
|
|
394
|
+
}
|
|
395
|
+
export interface QueryDenomsMetadataResponseProtoMsg {
|
|
396
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataResponse";
|
|
397
|
+
value: Uint8Array;
|
|
398
|
+
}
|
|
399
|
+
/**
|
|
400
|
+
* QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC
|
|
401
|
+
* method.
|
|
402
|
+
*/
|
|
403
|
+
export interface QueryDenomsMetadataResponseAmino {
|
|
404
|
+
/** metadata provides the client information for all the registered tokens. */
|
|
405
|
+
metadatas: MetadataAmino[];
|
|
406
|
+
/** pagination defines the pagination in the response. */
|
|
407
|
+
pagination?: PageResponseAmino;
|
|
408
|
+
}
|
|
409
|
+
export interface QueryDenomsMetadataResponseAminoMsg {
|
|
410
|
+
type: "cosmos-sdk/QueryDenomsMetadataResponse";
|
|
411
|
+
value: QueryDenomsMetadataResponseAmino;
|
|
412
|
+
}
|
|
413
|
+
/** QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method. */
|
|
414
|
+
export interface QueryDenomMetadataRequest {
|
|
415
|
+
/** denom is the coin denom to query the metadata for. */
|
|
416
|
+
denom: string;
|
|
417
|
+
}
|
|
418
|
+
export interface QueryDenomMetadataRequestProtoMsg {
|
|
419
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataRequest";
|
|
420
|
+
value: Uint8Array;
|
|
421
|
+
}
|
|
422
|
+
/** QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method. */
|
|
423
|
+
export interface QueryDenomMetadataRequestAmino {
|
|
424
|
+
/** denom is the coin denom to query the metadata for. */
|
|
425
|
+
denom: string;
|
|
426
|
+
}
|
|
427
|
+
export interface QueryDenomMetadataRequestAminoMsg {
|
|
428
|
+
type: "cosmos-sdk/QueryDenomMetadataRequest";
|
|
429
|
+
value: QueryDenomMetadataRequestAmino;
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC
|
|
433
|
+
* method.
|
|
434
|
+
*/
|
|
435
|
+
export interface QueryDenomMetadataResponse {
|
|
436
|
+
/** metadata describes and provides all the client information for the requested token. */
|
|
437
|
+
metadata: Metadata;
|
|
438
|
+
}
|
|
439
|
+
export interface QueryDenomMetadataResponseProtoMsg {
|
|
440
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataResponse";
|
|
441
|
+
value: Uint8Array;
|
|
442
|
+
}
|
|
443
|
+
/**
|
|
444
|
+
* QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC
|
|
445
|
+
* method.
|
|
446
|
+
*/
|
|
447
|
+
export interface QueryDenomMetadataResponseAmino {
|
|
448
|
+
/** metadata describes and provides all the client information for the requested token. */
|
|
449
|
+
metadata: MetadataAmino;
|
|
450
|
+
}
|
|
451
|
+
export interface QueryDenomMetadataResponseAminoMsg {
|
|
452
|
+
type: "cosmos-sdk/QueryDenomMetadataResponse";
|
|
453
|
+
value: QueryDenomMetadataResponseAmino;
|
|
454
|
+
}
|
|
455
|
+
/**
|
|
456
|
+
* QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method.
|
|
457
|
+
* Identical with QueryDenomMetadataRequest but receives denom as query string.
|
|
458
|
+
*/
|
|
459
|
+
export interface QueryDenomMetadataByQueryStringRequest {
|
|
460
|
+
/** denom is the coin denom to query the metadata for. */
|
|
461
|
+
denom: string;
|
|
462
|
+
}
|
|
463
|
+
export interface QueryDenomMetadataByQueryStringRequestProtoMsg {
|
|
464
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest";
|
|
465
|
+
value: Uint8Array;
|
|
466
|
+
}
|
|
467
|
+
/**
|
|
468
|
+
* QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method.
|
|
469
|
+
* Identical with QueryDenomMetadataRequest but receives denom as query string.
|
|
470
|
+
*/
|
|
471
|
+
export interface QueryDenomMetadataByQueryStringRequestAmino {
|
|
472
|
+
/** denom is the coin denom to query the metadata for. */
|
|
473
|
+
denom: string;
|
|
474
|
+
}
|
|
475
|
+
export interface QueryDenomMetadataByQueryStringRequestAminoMsg {
|
|
476
|
+
type: "cosmos-sdk/QueryDenomMetadataByQueryStringRequest";
|
|
477
|
+
value: QueryDenomMetadataByQueryStringRequestAmino;
|
|
478
|
+
}
|
|
479
|
+
/**
|
|
480
|
+
* QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC
|
|
481
|
+
* method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.
|
|
482
|
+
*/
|
|
483
|
+
export interface QueryDenomMetadataByQueryStringResponse {
|
|
484
|
+
/** metadata describes and provides all the client information for the requested token. */
|
|
485
|
+
metadata: Metadata;
|
|
486
|
+
}
|
|
487
|
+
export interface QueryDenomMetadataByQueryStringResponseProtoMsg {
|
|
488
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse";
|
|
489
|
+
value: Uint8Array;
|
|
490
|
+
}
|
|
491
|
+
/**
|
|
492
|
+
* QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC
|
|
493
|
+
* method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.
|
|
494
|
+
*/
|
|
495
|
+
export interface QueryDenomMetadataByQueryStringResponseAmino {
|
|
496
|
+
/** metadata describes and provides all the client information for the requested token. */
|
|
497
|
+
metadata: MetadataAmino;
|
|
498
|
+
}
|
|
499
|
+
export interface QueryDenomMetadataByQueryStringResponseAminoMsg {
|
|
500
|
+
type: "cosmos-sdk/QueryDenomMetadataByQueryStringResponse";
|
|
501
|
+
value: QueryDenomMetadataByQueryStringResponseAmino;
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
* QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query,
|
|
505
|
+
* which queries for a paginated set of all account holders of a particular
|
|
506
|
+
* denomination.
|
|
507
|
+
*/
|
|
508
|
+
export interface QueryDenomOwnersRequest {
|
|
509
|
+
/** denom defines the coin denomination to query all account holders for. */
|
|
510
|
+
denom: string;
|
|
511
|
+
/** pagination defines an optional pagination for the request. */
|
|
512
|
+
pagination?: PageRequest;
|
|
513
|
+
}
|
|
514
|
+
export interface QueryDenomOwnersRequestProtoMsg {
|
|
515
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersRequest";
|
|
516
|
+
value: Uint8Array;
|
|
517
|
+
}
|
|
518
|
+
/**
|
|
519
|
+
* QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query,
|
|
520
|
+
* which queries for a paginated set of all account holders of a particular
|
|
521
|
+
* denomination.
|
|
522
|
+
*/
|
|
523
|
+
export interface QueryDenomOwnersRequestAmino {
|
|
524
|
+
/** denom defines the coin denomination to query all account holders for. */
|
|
525
|
+
denom: string;
|
|
526
|
+
/** pagination defines an optional pagination for the request. */
|
|
527
|
+
pagination?: PageRequestAmino;
|
|
528
|
+
}
|
|
529
|
+
export interface QueryDenomOwnersRequestAminoMsg {
|
|
530
|
+
type: "cosmos-sdk/QueryDenomOwnersRequest";
|
|
531
|
+
value: QueryDenomOwnersRequestAmino;
|
|
532
|
+
}
|
|
533
|
+
/**
|
|
534
|
+
* DenomOwner defines structure representing an account that owns or holds a
|
|
535
|
+
* particular denominated token. It contains the account address and account
|
|
536
|
+
* balance of the denominated token.
|
|
537
|
+
*
|
|
538
|
+
* Since: cosmos-sdk 0.46
|
|
539
|
+
*/
|
|
540
|
+
export interface DenomOwner {
|
|
541
|
+
/** address defines the address that owns a particular denomination. */
|
|
542
|
+
address: string;
|
|
543
|
+
/** balance is the balance of the denominated coin for an account. */
|
|
544
|
+
balance: Coin;
|
|
545
|
+
}
|
|
546
|
+
export interface DenomOwnerProtoMsg {
|
|
547
|
+
typeUrl: "/cosmos.bank.v1beta1.DenomOwner";
|
|
548
|
+
value: Uint8Array;
|
|
549
|
+
}
|
|
550
|
+
/**
|
|
551
|
+
* DenomOwner defines structure representing an account that owns or holds a
|
|
552
|
+
* particular denominated token. It contains the account address and account
|
|
553
|
+
* balance of the denominated token.
|
|
554
|
+
*
|
|
555
|
+
* Since: cosmos-sdk 0.46
|
|
556
|
+
*/
|
|
557
|
+
export interface DenomOwnerAmino {
|
|
558
|
+
/** address defines the address that owns a particular denomination. */
|
|
559
|
+
address: string;
|
|
560
|
+
/** balance is the balance of the denominated coin for an account. */
|
|
561
|
+
balance: CoinAmino;
|
|
562
|
+
}
|
|
563
|
+
export interface DenomOwnerAminoMsg {
|
|
564
|
+
type: "cosmos-sdk/DenomOwner";
|
|
565
|
+
value: DenomOwnerAmino;
|
|
566
|
+
}
|
|
567
|
+
/**
|
|
568
|
+
* QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.
|
|
569
|
+
*
|
|
570
|
+
* Since: cosmos-sdk 0.46
|
|
571
|
+
*/
|
|
572
|
+
export interface QueryDenomOwnersResponse {
|
|
573
|
+
denomOwners: DenomOwner[];
|
|
574
|
+
/** pagination defines the pagination in the response. */
|
|
575
|
+
pagination?: PageResponse;
|
|
576
|
+
}
|
|
577
|
+
export interface QueryDenomOwnersResponseProtoMsg {
|
|
578
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersResponse";
|
|
579
|
+
value: Uint8Array;
|
|
580
|
+
}
|
|
581
|
+
/**
|
|
582
|
+
* QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.
|
|
583
|
+
*
|
|
584
|
+
* Since: cosmos-sdk 0.46
|
|
585
|
+
*/
|
|
586
|
+
export interface QueryDenomOwnersResponseAmino {
|
|
587
|
+
denom_owners: DenomOwnerAmino[];
|
|
588
|
+
/** pagination defines the pagination in the response. */
|
|
589
|
+
pagination?: PageResponseAmino;
|
|
590
|
+
}
|
|
591
|
+
export interface QueryDenomOwnersResponseAminoMsg {
|
|
592
|
+
type: "cosmos-sdk/QueryDenomOwnersResponse";
|
|
593
|
+
value: QueryDenomOwnersResponseAmino;
|
|
594
|
+
}
|
|
595
|
+
/**
|
|
596
|
+
* QueryDenomOwnersByQueryRequest defines the request type for the DenomOwnersByQuery RPC query,
|
|
597
|
+
* which queries for a paginated set of all account holders of a particular
|
|
598
|
+
* denomination.
|
|
599
|
+
*
|
|
600
|
+
* Since: cosmos-sdk 0.50.3
|
|
601
|
+
*/
|
|
602
|
+
export interface QueryDenomOwnersByQueryRequest {
|
|
603
|
+
/** denom defines the coin denomination to query all account holders for. */
|
|
604
|
+
denom: string;
|
|
605
|
+
/** pagination defines an optional pagination for the request. */
|
|
606
|
+
pagination?: PageRequest;
|
|
607
|
+
}
|
|
608
|
+
export interface QueryDenomOwnersByQueryRequestProtoMsg {
|
|
609
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest";
|
|
610
|
+
value: Uint8Array;
|
|
611
|
+
}
|
|
612
|
+
/**
|
|
613
|
+
* QueryDenomOwnersByQueryRequest defines the request type for the DenomOwnersByQuery RPC query,
|
|
614
|
+
* which queries for a paginated set of all account holders of a particular
|
|
615
|
+
* denomination.
|
|
616
|
+
*
|
|
617
|
+
* Since: cosmos-sdk 0.50.3
|
|
618
|
+
*/
|
|
619
|
+
export interface QueryDenomOwnersByQueryRequestAmino {
|
|
620
|
+
/** denom defines the coin denomination to query all account holders for. */
|
|
621
|
+
denom: string;
|
|
622
|
+
/** pagination defines an optional pagination for the request. */
|
|
623
|
+
pagination?: PageRequestAmino;
|
|
624
|
+
}
|
|
625
|
+
export interface QueryDenomOwnersByQueryRequestAminoMsg {
|
|
626
|
+
type: "cosmos-sdk/QueryDenomOwnersByQueryRequest";
|
|
627
|
+
value: QueryDenomOwnersByQueryRequestAmino;
|
|
628
|
+
}
|
|
629
|
+
/**
|
|
630
|
+
* QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.
|
|
631
|
+
*
|
|
632
|
+
* Since: cosmos-sdk 0.50.3
|
|
633
|
+
*/
|
|
634
|
+
export interface QueryDenomOwnersByQueryResponse {
|
|
635
|
+
denomOwners: DenomOwner[];
|
|
636
|
+
/** pagination defines the pagination in the response. */
|
|
637
|
+
pagination?: PageResponse;
|
|
638
|
+
}
|
|
639
|
+
export interface QueryDenomOwnersByQueryResponseProtoMsg {
|
|
640
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse";
|
|
641
|
+
value: Uint8Array;
|
|
642
|
+
}
|
|
643
|
+
/**
|
|
644
|
+
* QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.
|
|
645
|
+
*
|
|
646
|
+
* Since: cosmos-sdk 0.50.3
|
|
647
|
+
*/
|
|
648
|
+
export interface QueryDenomOwnersByQueryResponseAmino {
|
|
649
|
+
denom_owners: DenomOwnerAmino[];
|
|
650
|
+
/** pagination defines the pagination in the response. */
|
|
651
|
+
pagination?: PageResponseAmino;
|
|
652
|
+
}
|
|
653
|
+
export interface QueryDenomOwnersByQueryResponseAminoMsg {
|
|
654
|
+
type: "cosmos-sdk/QueryDenomOwnersByQueryResponse";
|
|
655
|
+
value: QueryDenomOwnersByQueryResponseAmino;
|
|
656
|
+
}
|
|
657
|
+
/**
|
|
658
|
+
* QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.
|
|
659
|
+
*
|
|
660
|
+
* Since: cosmos-sdk 0.47
|
|
661
|
+
*/
|
|
662
|
+
export interface QuerySendEnabledRequest {
|
|
663
|
+
/** denoms is the specific denoms you want look up. Leave empty to get all entries. */
|
|
664
|
+
denoms: string[];
|
|
665
|
+
/**
|
|
666
|
+
* pagination defines an optional pagination for the request. This field is
|
|
667
|
+
* only read if the denoms field is empty.
|
|
668
|
+
*/
|
|
669
|
+
pagination?: PageRequest;
|
|
670
|
+
}
|
|
671
|
+
export interface QuerySendEnabledRequestProtoMsg {
|
|
672
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySendEnabledRequest";
|
|
673
|
+
value: Uint8Array;
|
|
674
|
+
}
|
|
675
|
+
/**
|
|
676
|
+
* QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.
|
|
677
|
+
*
|
|
678
|
+
* Since: cosmos-sdk 0.47
|
|
679
|
+
*/
|
|
680
|
+
export interface QuerySendEnabledRequestAmino {
|
|
681
|
+
/** denoms is the specific denoms you want look up. Leave empty to get all entries. */
|
|
682
|
+
denoms: string[];
|
|
683
|
+
/**
|
|
684
|
+
* pagination defines an optional pagination for the request. This field is
|
|
685
|
+
* only read if the denoms field is empty.
|
|
686
|
+
*/
|
|
687
|
+
pagination?: PageRequestAmino;
|
|
688
|
+
}
|
|
689
|
+
export interface QuerySendEnabledRequestAminoMsg {
|
|
690
|
+
type: "cosmos-sdk/QuerySendEnabledRequest";
|
|
691
|
+
value: QuerySendEnabledRequestAmino;
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
* QuerySendEnabledResponse defines the RPC response of a SendEnable query.
|
|
695
|
+
*
|
|
696
|
+
* Since: cosmos-sdk 0.47
|
|
697
|
+
*/
|
|
698
|
+
export interface QuerySendEnabledResponse {
|
|
699
|
+
sendEnabled: SendEnabled[];
|
|
700
|
+
/**
|
|
701
|
+
* pagination defines the pagination in the response. This field is only
|
|
702
|
+
* populated if the denoms field in the request is empty.
|
|
703
|
+
*/
|
|
704
|
+
pagination?: PageResponse;
|
|
705
|
+
}
|
|
706
|
+
export interface QuerySendEnabledResponseProtoMsg {
|
|
707
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySendEnabledResponse";
|
|
708
|
+
value: Uint8Array;
|
|
709
|
+
}
|
|
710
|
+
/**
|
|
711
|
+
* QuerySendEnabledResponse defines the RPC response of a SendEnable query.
|
|
712
|
+
*
|
|
713
|
+
* Since: cosmos-sdk 0.47
|
|
714
|
+
*/
|
|
715
|
+
export interface QuerySendEnabledResponseAmino {
|
|
716
|
+
send_enabled: SendEnabledAmino[];
|
|
717
|
+
/**
|
|
718
|
+
* pagination defines the pagination in the response. This field is only
|
|
719
|
+
* populated if the denoms field in the request is empty.
|
|
720
|
+
*/
|
|
721
|
+
pagination?: PageResponseAmino;
|
|
722
|
+
}
|
|
723
|
+
export interface QuerySendEnabledResponseAminoMsg {
|
|
724
|
+
type: "cosmos-sdk/QuerySendEnabledResponse";
|
|
725
|
+
value: QuerySendEnabledResponseAmino;
|
|
726
|
+
}
|
|
727
|
+
function createBaseQueryBalanceRequest(): QueryBalanceRequest {
|
|
728
|
+
return {
|
|
729
|
+
address: "",
|
|
730
|
+
denom: ""
|
|
731
|
+
};
|
|
732
|
+
}
|
|
733
|
+
export const QueryBalanceRequest = {
|
|
734
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceRequest",
|
|
735
|
+
aminoType: "cosmos-sdk/QueryBalanceRequest",
|
|
736
|
+
is(o: any): o is QueryBalanceRequest {
|
|
737
|
+
return o && (o.$typeUrl === QueryBalanceRequest.typeUrl || typeof o.address === "string" && typeof o.denom === "string");
|
|
738
|
+
},
|
|
739
|
+
isAmino(o: any): o is QueryBalanceRequestAmino {
|
|
740
|
+
return o && (o.$typeUrl === QueryBalanceRequest.typeUrl || typeof o.address === "string" && typeof o.denom === "string");
|
|
741
|
+
},
|
|
742
|
+
encode(message: QueryBalanceRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
743
|
+
if (message.address !== "") {
|
|
744
|
+
writer.uint32(10).string(message.address);
|
|
745
|
+
}
|
|
746
|
+
if (message.denom !== "") {
|
|
747
|
+
writer.uint32(18).string(message.denom);
|
|
748
|
+
}
|
|
749
|
+
return writer;
|
|
750
|
+
},
|
|
751
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceRequest {
|
|
752
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
753
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
754
|
+
const message = createBaseQueryBalanceRequest();
|
|
755
|
+
while (reader.pos < end) {
|
|
756
|
+
const tag = reader.uint32();
|
|
757
|
+
switch (tag >>> 3) {
|
|
758
|
+
case 1:
|
|
759
|
+
message.address = reader.string();
|
|
760
|
+
break;
|
|
761
|
+
case 2:
|
|
762
|
+
message.denom = reader.string();
|
|
763
|
+
break;
|
|
764
|
+
default:
|
|
765
|
+
reader.skipType(tag & 7);
|
|
766
|
+
break;
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
return message;
|
|
770
|
+
},
|
|
771
|
+
fromPartial(object: DeepPartial<QueryBalanceRequest>): QueryBalanceRequest {
|
|
772
|
+
const message = createBaseQueryBalanceRequest();
|
|
773
|
+
message.address = object.address ?? "";
|
|
774
|
+
message.denom = object.denom ?? "";
|
|
775
|
+
return message;
|
|
776
|
+
},
|
|
777
|
+
fromAmino(object: QueryBalanceRequestAmino): QueryBalanceRequest {
|
|
778
|
+
const message = createBaseQueryBalanceRequest();
|
|
779
|
+
if (object.address !== undefined && object.address !== null) {
|
|
780
|
+
message.address = object.address;
|
|
781
|
+
}
|
|
782
|
+
if (object.denom !== undefined && object.denom !== null) {
|
|
783
|
+
message.denom = object.denom;
|
|
784
|
+
}
|
|
785
|
+
return message;
|
|
786
|
+
},
|
|
787
|
+
toAmino(message: QueryBalanceRequest): QueryBalanceRequestAmino {
|
|
788
|
+
const obj: any = {};
|
|
789
|
+
obj.address = message.address === "" ? undefined : message.address;
|
|
790
|
+
obj.denom = message.denom === "" ? undefined : message.denom;
|
|
791
|
+
return obj;
|
|
792
|
+
},
|
|
793
|
+
fromAminoMsg(object: QueryBalanceRequestAminoMsg): QueryBalanceRequest {
|
|
794
|
+
return QueryBalanceRequest.fromAmino(object.value);
|
|
795
|
+
},
|
|
796
|
+
toAminoMsg(message: QueryBalanceRequest): QueryBalanceRequestAminoMsg {
|
|
797
|
+
return {
|
|
798
|
+
type: "cosmos-sdk/QueryBalanceRequest",
|
|
799
|
+
value: QueryBalanceRequest.toAmino(message)
|
|
800
|
+
};
|
|
801
|
+
},
|
|
802
|
+
fromProtoMsg(message: QueryBalanceRequestProtoMsg): QueryBalanceRequest {
|
|
803
|
+
return QueryBalanceRequest.decode(message.value);
|
|
804
|
+
},
|
|
805
|
+
toProto(message: QueryBalanceRequest): Uint8Array {
|
|
806
|
+
return QueryBalanceRequest.encode(message).finish();
|
|
807
|
+
},
|
|
808
|
+
toProtoMsg(message: QueryBalanceRequest): QueryBalanceRequestProtoMsg {
|
|
809
|
+
return {
|
|
810
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceRequest",
|
|
811
|
+
value: QueryBalanceRequest.encode(message).finish()
|
|
812
|
+
};
|
|
813
|
+
}
|
|
814
|
+
};
|
|
815
|
+
GlobalDecoderRegistry.register(QueryBalanceRequest.typeUrl, QueryBalanceRequest);
|
|
816
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryBalanceRequest.aminoType, QueryBalanceRequest.typeUrl);
|
|
817
|
+
function createBaseQueryBalanceResponse(): QueryBalanceResponse {
|
|
818
|
+
return {
|
|
819
|
+
balance: undefined
|
|
820
|
+
};
|
|
821
|
+
}
|
|
822
|
+
export const QueryBalanceResponse = {
|
|
823
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceResponse",
|
|
824
|
+
aminoType: "cosmos-sdk/QueryBalanceResponse",
|
|
825
|
+
is(o: any): o is QueryBalanceResponse {
|
|
826
|
+
return o && o.$typeUrl === QueryBalanceResponse.typeUrl;
|
|
827
|
+
},
|
|
828
|
+
isAmino(o: any): o is QueryBalanceResponseAmino {
|
|
829
|
+
return o && o.$typeUrl === QueryBalanceResponse.typeUrl;
|
|
830
|
+
},
|
|
831
|
+
encode(message: QueryBalanceResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
832
|
+
if (message.balance !== undefined) {
|
|
833
|
+
Coin.encode(message.balance, writer.uint32(10).fork()).ldelim();
|
|
834
|
+
}
|
|
835
|
+
return writer;
|
|
836
|
+
},
|
|
837
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceResponse {
|
|
838
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
839
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
840
|
+
const message = createBaseQueryBalanceResponse();
|
|
841
|
+
while (reader.pos < end) {
|
|
842
|
+
const tag = reader.uint32();
|
|
843
|
+
switch (tag >>> 3) {
|
|
844
|
+
case 1:
|
|
845
|
+
message.balance = Coin.decode(reader, reader.uint32());
|
|
846
|
+
break;
|
|
847
|
+
default:
|
|
848
|
+
reader.skipType(tag & 7);
|
|
849
|
+
break;
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
return message;
|
|
853
|
+
},
|
|
854
|
+
fromPartial(object: DeepPartial<QueryBalanceResponse>): QueryBalanceResponse {
|
|
855
|
+
const message = createBaseQueryBalanceResponse();
|
|
856
|
+
message.balance = object.balance !== undefined && object.balance !== null ? Coin.fromPartial(object.balance) : undefined;
|
|
857
|
+
return message;
|
|
858
|
+
},
|
|
859
|
+
fromAmino(object: QueryBalanceResponseAmino): QueryBalanceResponse {
|
|
860
|
+
const message = createBaseQueryBalanceResponse();
|
|
861
|
+
if (object.balance !== undefined && object.balance !== null) {
|
|
862
|
+
message.balance = Coin.fromAmino(object.balance);
|
|
863
|
+
}
|
|
864
|
+
return message;
|
|
865
|
+
},
|
|
866
|
+
toAmino(message: QueryBalanceResponse): QueryBalanceResponseAmino {
|
|
867
|
+
const obj: any = {};
|
|
868
|
+
obj.balance = message.balance ? Coin.toAmino(message.balance) : undefined;
|
|
869
|
+
return obj;
|
|
870
|
+
},
|
|
871
|
+
fromAminoMsg(object: QueryBalanceResponseAminoMsg): QueryBalanceResponse {
|
|
872
|
+
return QueryBalanceResponse.fromAmino(object.value);
|
|
873
|
+
},
|
|
874
|
+
toAminoMsg(message: QueryBalanceResponse): QueryBalanceResponseAminoMsg {
|
|
875
|
+
return {
|
|
876
|
+
type: "cosmos-sdk/QueryBalanceResponse",
|
|
877
|
+
value: QueryBalanceResponse.toAmino(message)
|
|
878
|
+
};
|
|
879
|
+
},
|
|
880
|
+
fromProtoMsg(message: QueryBalanceResponseProtoMsg): QueryBalanceResponse {
|
|
881
|
+
return QueryBalanceResponse.decode(message.value);
|
|
882
|
+
},
|
|
883
|
+
toProto(message: QueryBalanceResponse): Uint8Array {
|
|
884
|
+
return QueryBalanceResponse.encode(message).finish();
|
|
885
|
+
},
|
|
886
|
+
toProtoMsg(message: QueryBalanceResponse): QueryBalanceResponseProtoMsg {
|
|
887
|
+
return {
|
|
888
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceResponse",
|
|
889
|
+
value: QueryBalanceResponse.encode(message).finish()
|
|
890
|
+
};
|
|
891
|
+
}
|
|
892
|
+
};
|
|
893
|
+
GlobalDecoderRegistry.register(QueryBalanceResponse.typeUrl, QueryBalanceResponse);
|
|
894
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryBalanceResponse.aminoType, QueryBalanceResponse.typeUrl);
|
|
895
|
+
function createBaseQueryAllBalancesRequest(): QueryAllBalancesRequest {
|
|
896
|
+
return {
|
|
897
|
+
address: "",
|
|
898
|
+
pagination: undefined,
|
|
899
|
+
resolveDenom: false
|
|
900
|
+
};
|
|
901
|
+
}
|
|
902
|
+
export const QueryAllBalancesRequest = {
|
|
903
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesRequest",
|
|
904
|
+
aminoType: "cosmos-sdk/QueryAllBalancesRequest",
|
|
905
|
+
is(o: any): o is QueryAllBalancesRequest {
|
|
906
|
+
return o && (o.$typeUrl === QueryAllBalancesRequest.typeUrl || typeof o.address === "string" && typeof o.resolveDenom === "boolean");
|
|
907
|
+
},
|
|
908
|
+
isAmino(o: any): o is QueryAllBalancesRequestAmino {
|
|
909
|
+
return o && (o.$typeUrl === QueryAllBalancesRequest.typeUrl || typeof o.address === "string" && typeof o.resolve_denom === "boolean");
|
|
910
|
+
},
|
|
911
|
+
encode(message: QueryAllBalancesRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
912
|
+
if (message.address !== "") {
|
|
913
|
+
writer.uint32(10).string(message.address);
|
|
914
|
+
}
|
|
915
|
+
if (message.pagination !== undefined) {
|
|
916
|
+
PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
917
|
+
}
|
|
918
|
+
if (message.resolveDenom === true) {
|
|
919
|
+
writer.uint32(24).bool(message.resolveDenom);
|
|
920
|
+
}
|
|
921
|
+
return writer;
|
|
922
|
+
},
|
|
923
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAllBalancesRequest {
|
|
924
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
925
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
926
|
+
const message = createBaseQueryAllBalancesRequest();
|
|
927
|
+
while (reader.pos < end) {
|
|
928
|
+
const tag = reader.uint32();
|
|
929
|
+
switch (tag >>> 3) {
|
|
930
|
+
case 1:
|
|
931
|
+
message.address = reader.string();
|
|
932
|
+
break;
|
|
933
|
+
case 2:
|
|
934
|
+
message.pagination = PageRequest.decode(reader, reader.uint32());
|
|
935
|
+
break;
|
|
936
|
+
case 3:
|
|
937
|
+
message.resolveDenom = reader.bool();
|
|
938
|
+
break;
|
|
939
|
+
default:
|
|
940
|
+
reader.skipType(tag & 7);
|
|
941
|
+
break;
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
return message;
|
|
945
|
+
},
|
|
946
|
+
fromPartial(object: DeepPartial<QueryAllBalancesRequest>): QueryAllBalancesRequest {
|
|
947
|
+
const message = createBaseQueryAllBalancesRequest();
|
|
948
|
+
message.address = object.address ?? "";
|
|
949
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageRequest.fromPartial(object.pagination) : undefined;
|
|
950
|
+
message.resolveDenom = object.resolveDenom ?? false;
|
|
951
|
+
return message;
|
|
952
|
+
},
|
|
953
|
+
fromAmino(object: QueryAllBalancesRequestAmino): QueryAllBalancesRequest {
|
|
954
|
+
const message = createBaseQueryAllBalancesRequest();
|
|
955
|
+
if (object.address !== undefined && object.address !== null) {
|
|
956
|
+
message.address = object.address;
|
|
957
|
+
}
|
|
958
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
959
|
+
message.pagination = PageRequest.fromAmino(object.pagination);
|
|
960
|
+
}
|
|
961
|
+
if (object.resolve_denom !== undefined && object.resolve_denom !== null) {
|
|
962
|
+
message.resolveDenom = object.resolve_denom;
|
|
963
|
+
}
|
|
964
|
+
return message;
|
|
965
|
+
},
|
|
966
|
+
toAmino(message: QueryAllBalancesRequest): QueryAllBalancesRequestAmino {
|
|
967
|
+
const obj: any = {};
|
|
968
|
+
obj.address = message.address === "" ? undefined : message.address;
|
|
969
|
+
obj.pagination = message.pagination ? PageRequest.toAmino(message.pagination) : undefined;
|
|
970
|
+
obj.resolve_denom = message.resolveDenom === false ? undefined : message.resolveDenom;
|
|
971
|
+
return obj;
|
|
972
|
+
},
|
|
973
|
+
fromAminoMsg(object: QueryAllBalancesRequestAminoMsg): QueryAllBalancesRequest {
|
|
974
|
+
return QueryAllBalancesRequest.fromAmino(object.value);
|
|
975
|
+
},
|
|
976
|
+
toAminoMsg(message: QueryAllBalancesRequest): QueryAllBalancesRequestAminoMsg {
|
|
977
|
+
return {
|
|
978
|
+
type: "cosmos-sdk/QueryAllBalancesRequest",
|
|
979
|
+
value: QueryAllBalancesRequest.toAmino(message)
|
|
980
|
+
};
|
|
981
|
+
},
|
|
982
|
+
fromProtoMsg(message: QueryAllBalancesRequestProtoMsg): QueryAllBalancesRequest {
|
|
983
|
+
return QueryAllBalancesRequest.decode(message.value);
|
|
984
|
+
},
|
|
985
|
+
toProto(message: QueryAllBalancesRequest): Uint8Array {
|
|
986
|
+
return QueryAllBalancesRequest.encode(message).finish();
|
|
987
|
+
},
|
|
988
|
+
toProtoMsg(message: QueryAllBalancesRequest): QueryAllBalancesRequestProtoMsg {
|
|
989
|
+
return {
|
|
990
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesRequest",
|
|
991
|
+
value: QueryAllBalancesRequest.encode(message).finish()
|
|
992
|
+
};
|
|
993
|
+
}
|
|
994
|
+
};
|
|
995
|
+
GlobalDecoderRegistry.register(QueryAllBalancesRequest.typeUrl, QueryAllBalancesRequest);
|
|
996
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryAllBalancesRequest.aminoType, QueryAllBalancesRequest.typeUrl);
|
|
997
|
+
function createBaseQueryAllBalancesResponse(): QueryAllBalancesResponse {
|
|
998
|
+
return {
|
|
999
|
+
balances: [],
|
|
1000
|
+
pagination: undefined
|
|
1001
|
+
};
|
|
1002
|
+
}
|
|
1003
|
+
export const QueryAllBalancesResponse = {
|
|
1004
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesResponse",
|
|
1005
|
+
aminoType: "cosmos-sdk/QueryAllBalancesResponse",
|
|
1006
|
+
is(o: any): o is QueryAllBalancesResponse {
|
|
1007
|
+
return o && (o.$typeUrl === QueryAllBalancesResponse.typeUrl || Array.isArray(o.balances) && (!o.balances.length || Coin.is(o.balances[0])));
|
|
1008
|
+
},
|
|
1009
|
+
isAmino(o: any): o is QueryAllBalancesResponseAmino {
|
|
1010
|
+
return o && (o.$typeUrl === QueryAllBalancesResponse.typeUrl || Array.isArray(o.balances) && (!o.balances.length || Coin.isAmino(o.balances[0])));
|
|
1011
|
+
},
|
|
1012
|
+
encode(message: QueryAllBalancesResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1013
|
+
for (const v of message.balances) {
|
|
1014
|
+
Coin.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
1015
|
+
}
|
|
1016
|
+
if (message.pagination !== undefined) {
|
|
1017
|
+
PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
1018
|
+
}
|
|
1019
|
+
return writer;
|
|
1020
|
+
},
|
|
1021
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAllBalancesResponse {
|
|
1022
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1023
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1024
|
+
const message = createBaseQueryAllBalancesResponse();
|
|
1025
|
+
while (reader.pos < end) {
|
|
1026
|
+
const tag = reader.uint32();
|
|
1027
|
+
switch (tag >>> 3) {
|
|
1028
|
+
case 1:
|
|
1029
|
+
message.balances.push(Coin.decode(reader, reader.uint32()));
|
|
1030
|
+
break;
|
|
1031
|
+
case 2:
|
|
1032
|
+
message.pagination = PageResponse.decode(reader, reader.uint32());
|
|
1033
|
+
break;
|
|
1034
|
+
default:
|
|
1035
|
+
reader.skipType(tag & 7);
|
|
1036
|
+
break;
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
1039
|
+
return message;
|
|
1040
|
+
},
|
|
1041
|
+
fromPartial(object: DeepPartial<QueryAllBalancesResponse>): QueryAllBalancesResponse {
|
|
1042
|
+
const message = createBaseQueryAllBalancesResponse();
|
|
1043
|
+
message.balances = object.balances?.map(e => Coin.fromPartial(e)) || [];
|
|
1044
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageResponse.fromPartial(object.pagination) : undefined;
|
|
1045
|
+
return message;
|
|
1046
|
+
},
|
|
1047
|
+
fromAmino(object: QueryAllBalancesResponseAmino): QueryAllBalancesResponse {
|
|
1048
|
+
const message = createBaseQueryAllBalancesResponse();
|
|
1049
|
+
message.balances = object.balances?.map(e => Coin.fromAmino(e)) || [];
|
|
1050
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
1051
|
+
message.pagination = PageResponse.fromAmino(object.pagination);
|
|
1052
|
+
}
|
|
1053
|
+
return message;
|
|
1054
|
+
},
|
|
1055
|
+
toAmino(message: QueryAllBalancesResponse): QueryAllBalancesResponseAmino {
|
|
1056
|
+
const obj: any = {};
|
|
1057
|
+
if (message.balances) {
|
|
1058
|
+
obj.balances = message.balances.map(e => e ? Coin.toAmino(e) : undefined);
|
|
1059
|
+
} else {
|
|
1060
|
+
obj.balances = message.balances;
|
|
1061
|
+
}
|
|
1062
|
+
obj.pagination = message.pagination ? PageResponse.toAmino(message.pagination) : undefined;
|
|
1063
|
+
return obj;
|
|
1064
|
+
},
|
|
1065
|
+
fromAminoMsg(object: QueryAllBalancesResponseAminoMsg): QueryAllBalancesResponse {
|
|
1066
|
+
return QueryAllBalancesResponse.fromAmino(object.value);
|
|
1067
|
+
},
|
|
1068
|
+
toAminoMsg(message: QueryAllBalancesResponse): QueryAllBalancesResponseAminoMsg {
|
|
1069
|
+
return {
|
|
1070
|
+
type: "cosmos-sdk/QueryAllBalancesResponse",
|
|
1071
|
+
value: QueryAllBalancesResponse.toAmino(message)
|
|
1072
|
+
};
|
|
1073
|
+
},
|
|
1074
|
+
fromProtoMsg(message: QueryAllBalancesResponseProtoMsg): QueryAllBalancesResponse {
|
|
1075
|
+
return QueryAllBalancesResponse.decode(message.value);
|
|
1076
|
+
},
|
|
1077
|
+
toProto(message: QueryAllBalancesResponse): Uint8Array {
|
|
1078
|
+
return QueryAllBalancesResponse.encode(message).finish();
|
|
1079
|
+
},
|
|
1080
|
+
toProtoMsg(message: QueryAllBalancesResponse): QueryAllBalancesResponseProtoMsg {
|
|
1081
|
+
return {
|
|
1082
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesResponse",
|
|
1083
|
+
value: QueryAllBalancesResponse.encode(message).finish()
|
|
1084
|
+
};
|
|
1085
|
+
}
|
|
1086
|
+
};
|
|
1087
|
+
GlobalDecoderRegistry.register(QueryAllBalancesResponse.typeUrl, QueryAllBalancesResponse);
|
|
1088
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryAllBalancesResponse.aminoType, QueryAllBalancesResponse.typeUrl);
|
|
1089
|
+
function createBaseQuerySpendableBalancesRequest(): QuerySpendableBalancesRequest {
|
|
1090
|
+
return {
|
|
1091
|
+
address: "",
|
|
1092
|
+
pagination: undefined
|
|
1093
|
+
};
|
|
1094
|
+
}
|
|
1095
|
+
export const QuerySpendableBalancesRequest = {
|
|
1096
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesRequest",
|
|
1097
|
+
aminoType: "cosmos-sdk/QuerySpendableBalancesRequest",
|
|
1098
|
+
is(o: any): o is QuerySpendableBalancesRequest {
|
|
1099
|
+
return o && (o.$typeUrl === QuerySpendableBalancesRequest.typeUrl || typeof o.address === "string");
|
|
1100
|
+
},
|
|
1101
|
+
isAmino(o: any): o is QuerySpendableBalancesRequestAmino {
|
|
1102
|
+
return o && (o.$typeUrl === QuerySpendableBalancesRequest.typeUrl || typeof o.address === "string");
|
|
1103
|
+
},
|
|
1104
|
+
encode(message: QuerySpendableBalancesRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1105
|
+
if (message.address !== "") {
|
|
1106
|
+
writer.uint32(10).string(message.address);
|
|
1107
|
+
}
|
|
1108
|
+
if (message.pagination !== undefined) {
|
|
1109
|
+
PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
1110
|
+
}
|
|
1111
|
+
return writer;
|
|
1112
|
+
},
|
|
1113
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QuerySpendableBalancesRequest {
|
|
1114
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1115
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1116
|
+
const message = createBaseQuerySpendableBalancesRequest();
|
|
1117
|
+
while (reader.pos < end) {
|
|
1118
|
+
const tag = reader.uint32();
|
|
1119
|
+
switch (tag >>> 3) {
|
|
1120
|
+
case 1:
|
|
1121
|
+
message.address = reader.string();
|
|
1122
|
+
break;
|
|
1123
|
+
case 2:
|
|
1124
|
+
message.pagination = PageRequest.decode(reader, reader.uint32());
|
|
1125
|
+
break;
|
|
1126
|
+
default:
|
|
1127
|
+
reader.skipType(tag & 7);
|
|
1128
|
+
break;
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
return message;
|
|
1132
|
+
},
|
|
1133
|
+
fromPartial(object: DeepPartial<QuerySpendableBalancesRequest>): QuerySpendableBalancesRequest {
|
|
1134
|
+
const message = createBaseQuerySpendableBalancesRequest();
|
|
1135
|
+
message.address = object.address ?? "";
|
|
1136
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageRequest.fromPartial(object.pagination) : undefined;
|
|
1137
|
+
return message;
|
|
1138
|
+
},
|
|
1139
|
+
fromAmino(object: QuerySpendableBalancesRequestAmino): QuerySpendableBalancesRequest {
|
|
1140
|
+
const message = createBaseQuerySpendableBalancesRequest();
|
|
1141
|
+
if (object.address !== undefined && object.address !== null) {
|
|
1142
|
+
message.address = object.address;
|
|
1143
|
+
}
|
|
1144
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
1145
|
+
message.pagination = PageRequest.fromAmino(object.pagination);
|
|
1146
|
+
}
|
|
1147
|
+
return message;
|
|
1148
|
+
},
|
|
1149
|
+
toAmino(message: QuerySpendableBalancesRequest): QuerySpendableBalancesRequestAmino {
|
|
1150
|
+
const obj: any = {};
|
|
1151
|
+
obj.address = message.address === "" ? undefined : message.address;
|
|
1152
|
+
obj.pagination = message.pagination ? PageRequest.toAmino(message.pagination) : undefined;
|
|
1153
|
+
return obj;
|
|
1154
|
+
},
|
|
1155
|
+
fromAminoMsg(object: QuerySpendableBalancesRequestAminoMsg): QuerySpendableBalancesRequest {
|
|
1156
|
+
return QuerySpendableBalancesRequest.fromAmino(object.value);
|
|
1157
|
+
},
|
|
1158
|
+
toAminoMsg(message: QuerySpendableBalancesRequest): QuerySpendableBalancesRequestAminoMsg {
|
|
1159
|
+
return {
|
|
1160
|
+
type: "cosmos-sdk/QuerySpendableBalancesRequest",
|
|
1161
|
+
value: QuerySpendableBalancesRequest.toAmino(message)
|
|
1162
|
+
};
|
|
1163
|
+
},
|
|
1164
|
+
fromProtoMsg(message: QuerySpendableBalancesRequestProtoMsg): QuerySpendableBalancesRequest {
|
|
1165
|
+
return QuerySpendableBalancesRequest.decode(message.value);
|
|
1166
|
+
},
|
|
1167
|
+
toProto(message: QuerySpendableBalancesRequest): Uint8Array {
|
|
1168
|
+
return QuerySpendableBalancesRequest.encode(message).finish();
|
|
1169
|
+
},
|
|
1170
|
+
toProtoMsg(message: QuerySpendableBalancesRequest): QuerySpendableBalancesRequestProtoMsg {
|
|
1171
|
+
return {
|
|
1172
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesRequest",
|
|
1173
|
+
value: QuerySpendableBalancesRequest.encode(message).finish()
|
|
1174
|
+
};
|
|
1175
|
+
}
|
|
1176
|
+
};
|
|
1177
|
+
GlobalDecoderRegistry.register(QuerySpendableBalancesRequest.typeUrl, QuerySpendableBalancesRequest);
|
|
1178
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QuerySpendableBalancesRequest.aminoType, QuerySpendableBalancesRequest.typeUrl);
|
|
1179
|
+
function createBaseQuerySpendableBalancesResponse(): QuerySpendableBalancesResponse {
|
|
1180
|
+
return {
|
|
1181
|
+
balances: [],
|
|
1182
|
+
pagination: undefined
|
|
1183
|
+
};
|
|
1184
|
+
}
|
|
1185
|
+
export const QuerySpendableBalancesResponse = {
|
|
1186
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesResponse",
|
|
1187
|
+
aminoType: "cosmos-sdk/QuerySpendableBalancesResponse",
|
|
1188
|
+
is(o: any): o is QuerySpendableBalancesResponse {
|
|
1189
|
+
return o && (o.$typeUrl === QuerySpendableBalancesResponse.typeUrl || Array.isArray(o.balances) && (!o.balances.length || Coin.is(o.balances[0])));
|
|
1190
|
+
},
|
|
1191
|
+
isAmino(o: any): o is QuerySpendableBalancesResponseAmino {
|
|
1192
|
+
return o && (o.$typeUrl === QuerySpendableBalancesResponse.typeUrl || Array.isArray(o.balances) && (!o.balances.length || Coin.isAmino(o.balances[0])));
|
|
1193
|
+
},
|
|
1194
|
+
encode(message: QuerySpendableBalancesResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1195
|
+
for (const v of message.balances) {
|
|
1196
|
+
Coin.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
1197
|
+
}
|
|
1198
|
+
if (message.pagination !== undefined) {
|
|
1199
|
+
PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
1200
|
+
}
|
|
1201
|
+
return writer;
|
|
1202
|
+
},
|
|
1203
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QuerySpendableBalancesResponse {
|
|
1204
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1205
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1206
|
+
const message = createBaseQuerySpendableBalancesResponse();
|
|
1207
|
+
while (reader.pos < end) {
|
|
1208
|
+
const tag = reader.uint32();
|
|
1209
|
+
switch (tag >>> 3) {
|
|
1210
|
+
case 1:
|
|
1211
|
+
message.balances.push(Coin.decode(reader, reader.uint32()));
|
|
1212
|
+
break;
|
|
1213
|
+
case 2:
|
|
1214
|
+
message.pagination = PageResponse.decode(reader, reader.uint32());
|
|
1215
|
+
break;
|
|
1216
|
+
default:
|
|
1217
|
+
reader.skipType(tag & 7);
|
|
1218
|
+
break;
|
|
1219
|
+
}
|
|
1220
|
+
}
|
|
1221
|
+
return message;
|
|
1222
|
+
},
|
|
1223
|
+
fromPartial(object: DeepPartial<QuerySpendableBalancesResponse>): QuerySpendableBalancesResponse {
|
|
1224
|
+
const message = createBaseQuerySpendableBalancesResponse();
|
|
1225
|
+
message.balances = object.balances?.map(e => Coin.fromPartial(e)) || [];
|
|
1226
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageResponse.fromPartial(object.pagination) : undefined;
|
|
1227
|
+
return message;
|
|
1228
|
+
},
|
|
1229
|
+
fromAmino(object: QuerySpendableBalancesResponseAmino): QuerySpendableBalancesResponse {
|
|
1230
|
+
const message = createBaseQuerySpendableBalancesResponse();
|
|
1231
|
+
message.balances = object.balances?.map(e => Coin.fromAmino(e)) || [];
|
|
1232
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
1233
|
+
message.pagination = PageResponse.fromAmino(object.pagination);
|
|
1234
|
+
}
|
|
1235
|
+
return message;
|
|
1236
|
+
},
|
|
1237
|
+
toAmino(message: QuerySpendableBalancesResponse): QuerySpendableBalancesResponseAmino {
|
|
1238
|
+
const obj: any = {};
|
|
1239
|
+
if (message.balances) {
|
|
1240
|
+
obj.balances = message.balances.map(e => e ? Coin.toAmino(e) : undefined);
|
|
1241
|
+
} else {
|
|
1242
|
+
obj.balances = message.balances;
|
|
1243
|
+
}
|
|
1244
|
+
obj.pagination = message.pagination ? PageResponse.toAmino(message.pagination) : undefined;
|
|
1245
|
+
return obj;
|
|
1246
|
+
},
|
|
1247
|
+
fromAminoMsg(object: QuerySpendableBalancesResponseAminoMsg): QuerySpendableBalancesResponse {
|
|
1248
|
+
return QuerySpendableBalancesResponse.fromAmino(object.value);
|
|
1249
|
+
},
|
|
1250
|
+
toAminoMsg(message: QuerySpendableBalancesResponse): QuerySpendableBalancesResponseAminoMsg {
|
|
1251
|
+
return {
|
|
1252
|
+
type: "cosmos-sdk/QuerySpendableBalancesResponse",
|
|
1253
|
+
value: QuerySpendableBalancesResponse.toAmino(message)
|
|
1254
|
+
};
|
|
1255
|
+
},
|
|
1256
|
+
fromProtoMsg(message: QuerySpendableBalancesResponseProtoMsg): QuerySpendableBalancesResponse {
|
|
1257
|
+
return QuerySpendableBalancesResponse.decode(message.value);
|
|
1258
|
+
},
|
|
1259
|
+
toProto(message: QuerySpendableBalancesResponse): Uint8Array {
|
|
1260
|
+
return QuerySpendableBalancesResponse.encode(message).finish();
|
|
1261
|
+
},
|
|
1262
|
+
toProtoMsg(message: QuerySpendableBalancesResponse): QuerySpendableBalancesResponseProtoMsg {
|
|
1263
|
+
return {
|
|
1264
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesResponse",
|
|
1265
|
+
value: QuerySpendableBalancesResponse.encode(message).finish()
|
|
1266
|
+
};
|
|
1267
|
+
}
|
|
1268
|
+
};
|
|
1269
|
+
GlobalDecoderRegistry.register(QuerySpendableBalancesResponse.typeUrl, QuerySpendableBalancesResponse);
|
|
1270
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QuerySpendableBalancesResponse.aminoType, QuerySpendableBalancesResponse.typeUrl);
|
|
1271
|
+
function createBaseQuerySpendableBalanceByDenomRequest(): QuerySpendableBalanceByDenomRequest {
|
|
1272
|
+
return {
|
|
1273
|
+
address: "",
|
|
1274
|
+
denom: ""
|
|
1275
|
+
};
|
|
1276
|
+
}
|
|
1277
|
+
export const QuerySpendableBalanceByDenomRequest = {
|
|
1278
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest",
|
|
1279
|
+
aminoType: "cosmos-sdk/QuerySpendableBalanceByDenomRequest",
|
|
1280
|
+
is(o: any): o is QuerySpendableBalanceByDenomRequest {
|
|
1281
|
+
return o && (o.$typeUrl === QuerySpendableBalanceByDenomRequest.typeUrl || typeof o.address === "string" && typeof o.denom === "string");
|
|
1282
|
+
},
|
|
1283
|
+
isAmino(o: any): o is QuerySpendableBalanceByDenomRequestAmino {
|
|
1284
|
+
return o && (o.$typeUrl === QuerySpendableBalanceByDenomRequest.typeUrl || typeof o.address === "string" && typeof o.denom === "string");
|
|
1285
|
+
},
|
|
1286
|
+
encode(message: QuerySpendableBalanceByDenomRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1287
|
+
if (message.address !== "") {
|
|
1288
|
+
writer.uint32(10).string(message.address);
|
|
1289
|
+
}
|
|
1290
|
+
if (message.denom !== "") {
|
|
1291
|
+
writer.uint32(18).string(message.denom);
|
|
1292
|
+
}
|
|
1293
|
+
return writer;
|
|
1294
|
+
},
|
|
1295
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QuerySpendableBalanceByDenomRequest {
|
|
1296
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1297
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1298
|
+
const message = createBaseQuerySpendableBalanceByDenomRequest();
|
|
1299
|
+
while (reader.pos < end) {
|
|
1300
|
+
const tag = reader.uint32();
|
|
1301
|
+
switch (tag >>> 3) {
|
|
1302
|
+
case 1:
|
|
1303
|
+
message.address = reader.string();
|
|
1304
|
+
break;
|
|
1305
|
+
case 2:
|
|
1306
|
+
message.denom = reader.string();
|
|
1307
|
+
break;
|
|
1308
|
+
default:
|
|
1309
|
+
reader.skipType(tag & 7);
|
|
1310
|
+
break;
|
|
1311
|
+
}
|
|
1312
|
+
}
|
|
1313
|
+
return message;
|
|
1314
|
+
},
|
|
1315
|
+
fromPartial(object: DeepPartial<QuerySpendableBalanceByDenomRequest>): QuerySpendableBalanceByDenomRequest {
|
|
1316
|
+
const message = createBaseQuerySpendableBalanceByDenomRequest();
|
|
1317
|
+
message.address = object.address ?? "";
|
|
1318
|
+
message.denom = object.denom ?? "";
|
|
1319
|
+
return message;
|
|
1320
|
+
},
|
|
1321
|
+
fromAmino(object: QuerySpendableBalanceByDenomRequestAmino): QuerySpendableBalanceByDenomRequest {
|
|
1322
|
+
const message = createBaseQuerySpendableBalanceByDenomRequest();
|
|
1323
|
+
if (object.address !== undefined && object.address !== null) {
|
|
1324
|
+
message.address = object.address;
|
|
1325
|
+
}
|
|
1326
|
+
if (object.denom !== undefined && object.denom !== null) {
|
|
1327
|
+
message.denom = object.denom;
|
|
1328
|
+
}
|
|
1329
|
+
return message;
|
|
1330
|
+
},
|
|
1331
|
+
toAmino(message: QuerySpendableBalanceByDenomRequest): QuerySpendableBalanceByDenomRequestAmino {
|
|
1332
|
+
const obj: any = {};
|
|
1333
|
+
obj.address = message.address === "" ? undefined : message.address;
|
|
1334
|
+
obj.denom = message.denom === "" ? undefined : message.denom;
|
|
1335
|
+
return obj;
|
|
1336
|
+
},
|
|
1337
|
+
fromAminoMsg(object: QuerySpendableBalanceByDenomRequestAminoMsg): QuerySpendableBalanceByDenomRequest {
|
|
1338
|
+
return QuerySpendableBalanceByDenomRequest.fromAmino(object.value);
|
|
1339
|
+
},
|
|
1340
|
+
toAminoMsg(message: QuerySpendableBalanceByDenomRequest): QuerySpendableBalanceByDenomRequestAminoMsg {
|
|
1341
|
+
return {
|
|
1342
|
+
type: "cosmos-sdk/QuerySpendableBalanceByDenomRequest",
|
|
1343
|
+
value: QuerySpendableBalanceByDenomRequest.toAmino(message)
|
|
1344
|
+
};
|
|
1345
|
+
},
|
|
1346
|
+
fromProtoMsg(message: QuerySpendableBalanceByDenomRequestProtoMsg): QuerySpendableBalanceByDenomRequest {
|
|
1347
|
+
return QuerySpendableBalanceByDenomRequest.decode(message.value);
|
|
1348
|
+
},
|
|
1349
|
+
toProto(message: QuerySpendableBalanceByDenomRequest): Uint8Array {
|
|
1350
|
+
return QuerySpendableBalanceByDenomRequest.encode(message).finish();
|
|
1351
|
+
},
|
|
1352
|
+
toProtoMsg(message: QuerySpendableBalanceByDenomRequest): QuerySpendableBalanceByDenomRequestProtoMsg {
|
|
1353
|
+
return {
|
|
1354
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest",
|
|
1355
|
+
value: QuerySpendableBalanceByDenomRequest.encode(message).finish()
|
|
1356
|
+
};
|
|
1357
|
+
}
|
|
1358
|
+
};
|
|
1359
|
+
GlobalDecoderRegistry.register(QuerySpendableBalanceByDenomRequest.typeUrl, QuerySpendableBalanceByDenomRequest);
|
|
1360
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QuerySpendableBalanceByDenomRequest.aminoType, QuerySpendableBalanceByDenomRequest.typeUrl);
|
|
1361
|
+
function createBaseQuerySpendableBalanceByDenomResponse(): QuerySpendableBalanceByDenomResponse {
|
|
1362
|
+
return {
|
|
1363
|
+
balance: undefined
|
|
1364
|
+
};
|
|
1365
|
+
}
|
|
1366
|
+
export const QuerySpendableBalanceByDenomResponse = {
|
|
1367
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse",
|
|
1368
|
+
aminoType: "cosmos-sdk/QuerySpendableBalanceByDenomResponse",
|
|
1369
|
+
is(o: any): o is QuerySpendableBalanceByDenomResponse {
|
|
1370
|
+
return o && o.$typeUrl === QuerySpendableBalanceByDenomResponse.typeUrl;
|
|
1371
|
+
},
|
|
1372
|
+
isAmino(o: any): o is QuerySpendableBalanceByDenomResponseAmino {
|
|
1373
|
+
return o && o.$typeUrl === QuerySpendableBalanceByDenomResponse.typeUrl;
|
|
1374
|
+
},
|
|
1375
|
+
encode(message: QuerySpendableBalanceByDenomResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1376
|
+
if (message.balance !== undefined) {
|
|
1377
|
+
Coin.encode(message.balance, writer.uint32(10).fork()).ldelim();
|
|
1378
|
+
}
|
|
1379
|
+
return writer;
|
|
1380
|
+
},
|
|
1381
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QuerySpendableBalanceByDenomResponse {
|
|
1382
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1383
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1384
|
+
const message = createBaseQuerySpendableBalanceByDenomResponse();
|
|
1385
|
+
while (reader.pos < end) {
|
|
1386
|
+
const tag = reader.uint32();
|
|
1387
|
+
switch (tag >>> 3) {
|
|
1388
|
+
case 1:
|
|
1389
|
+
message.balance = Coin.decode(reader, reader.uint32());
|
|
1390
|
+
break;
|
|
1391
|
+
default:
|
|
1392
|
+
reader.skipType(tag & 7);
|
|
1393
|
+
break;
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
return message;
|
|
1397
|
+
},
|
|
1398
|
+
fromPartial(object: DeepPartial<QuerySpendableBalanceByDenomResponse>): QuerySpendableBalanceByDenomResponse {
|
|
1399
|
+
const message = createBaseQuerySpendableBalanceByDenomResponse();
|
|
1400
|
+
message.balance = object.balance !== undefined && object.balance !== null ? Coin.fromPartial(object.balance) : undefined;
|
|
1401
|
+
return message;
|
|
1402
|
+
},
|
|
1403
|
+
fromAmino(object: QuerySpendableBalanceByDenomResponseAmino): QuerySpendableBalanceByDenomResponse {
|
|
1404
|
+
const message = createBaseQuerySpendableBalanceByDenomResponse();
|
|
1405
|
+
if (object.balance !== undefined && object.balance !== null) {
|
|
1406
|
+
message.balance = Coin.fromAmino(object.balance);
|
|
1407
|
+
}
|
|
1408
|
+
return message;
|
|
1409
|
+
},
|
|
1410
|
+
toAmino(message: QuerySpendableBalanceByDenomResponse): QuerySpendableBalanceByDenomResponseAmino {
|
|
1411
|
+
const obj: any = {};
|
|
1412
|
+
obj.balance = message.balance ? Coin.toAmino(message.balance) : undefined;
|
|
1413
|
+
return obj;
|
|
1414
|
+
},
|
|
1415
|
+
fromAminoMsg(object: QuerySpendableBalanceByDenomResponseAminoMsg): QuerySpendableBalanceByDenomResponse {
|
|
1416
|
+
return QuerySpendableBalanceByDenomResponse.fromAmino(object.value);
|
|
1417
|
+
},
|
|
1418
|
+
toAminoMsg(message: QuerySpendableBalanceByDenomResponse): QuerySpendableBalanceByDenomResponseAminoMsg {
|
|
1419
|
+
return {
|
|
1420
|
+
type: "cosmos-sdk/QuerySpendableBalanceByDenomResponse",
|
|
1421
|
+
value: QuerySpendableBalanceByDenomResponse.toAmino(message)
|
|
1422
|
+
};
|
|
1423
|
+
},
|
|
1424
|
+
fromProtoMsg(message: QuerySpendableBalanceByDenomResponseProtoMsg): QuerySpendableBalanceByDenomResponse {
|
|
1425
|
+
return QuerySpendableBalanceByDenomResponse.decode(message.value);
|
|
1426
|
+
},
|
|
1427
|
+
toProto(message: QuerySpendableBalanceByDenomResponse): Uint8Array {
|
|
1428
|
+
return QuerySpendableBalanceByDenomResponse.encode(message).finish();
|
|
1429
|
+
},
|
|
1430
|
+
toProtoMsg(message: QuerySpendableBalanceByDenomResponse): QuerySpendableBalanceByDenomResponseProtoMsg {
|
|
1431
|
+
return {
|
|
1432
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse",
|
|
1433
|
+
value: QuerySpendableBalanceByDenomResponse.encode(message).finish()
|
|
1434
|
+
};
|
|
1435
|
+
}
|
|
1436
|
+
};
|
|
1437
|
+
GlobalDecoderRegistry.register(QuerySpendableBalanceByDenomResponse.typeUrl, QuerySpendableBalanceByDenomResponse);
|
|
1438
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QuerySpendableBalanceByDenomResponse.aminoType, QuerySpendableBalanceByDenomResponse.typeUrl);
|
|
1439
|
+
function createBaseQueryTotalSupplyRequest(): QueryTotalSupplyRequest {
|
|
1440
|
+
return {
|
|
1441
|
+
pagination: undefined
|
|
1442
|
+
};
|
|
1443
|
+
}
|
|
1444
|
+
export const QueryTotalSupplyRequest = {
|
|
1445
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyRequest",
|
|
1446
|
+
aminoType: "cosmos-sdk/QueryTotalSupplyRequest",
|
|
1447
|
+
is(o: any): o is QueryTotalSupplyRequest {
|
|
1448
|
+
return o && o.$typeUrl === QueryTotalSupplyRequest.typeUrl;
|
|
1449
|
+
},
|
|
1450
|
+
isAmino(o: any): o is QueryTotalSupplyRequestAmino {
|
|
1451
|
+
return o && o.$typeUrl === QueryTotalSupplyRequest.typeUrl;
|
|
1452
|
+
},
|
|
1453
|
+
encode(message: QueryTotalSupplyRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1454
|
+
if (message.pagination !== undefined) {
|
|
1455
|
+
PageRequest.encode(message.pagination, writer.uint32(10).fork()).ldelim();
|
|
1456
|
+
}
|
|
1457
|
+
return writer;
|
|
1458
|
+
},
|
|
1459
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryTotalSupplyRequest {
|
|
1460
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1461
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1462
|
+
const message = createBaseQueryTotalSupplyRequest();
|
|
1463
|
+
while (reader.pos < end) {
|
|
1464
|
+
const tag = reader.uint32();
|
|
1465
|
+
switch (tag >>> 3) {
|
|
1466
|
+
case 1:
|
|
1467
|
+
message.pagination = PageRequest.decode(reader, reader.uint32());
|
|
1468
|
+
break;
|
|
1469
|
+
default:
|
|
1470
|
+
reader.skipType(tag & 7);
|
|
1471
|
+
break;
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1474
|
+
return message;
|
|
1475
|
+
},
|
|
1476
|
+
fromPartial(object: DeepPartial<QueryTotalSupplyRequest>): QueryTotalSupplyRequest {
|
|
1477
|
+
const message = createBaseQueryTotalSupplyRequest();
|
|
1478
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageRequest.fromPartial(object.pagination) : undefined;
|
|
1479
|
+
return message;
|
|
1480
|
+
},
|
|
1481
|
+
fromAmino(object: QueryTotalSupplyRequestAmino): QueryTotalSupplyRequest {
|
|
1482
|
+
const message = createBaseQueryTotalSupplyRequest();
|
|
1483
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
1484
|
+
message.pagination = PageRequest.fromAmino(object.pagination);
|
|
1485
|
+
}
|
|
1486
|
+
return message;
|
|
1487
|
+
},
|
|
1488
|
+
toAmino(message: QueryTotalSupplyRequest): QueryTotalSupplyRequestAmino {
|
|
1489
|
+
const obj: any = {};
|
|
1490
|
+
obj.pagination = message.pagination ? PageRequest.toAmino(message.pagination) : undefined;
|
|
1491
|
+
return obj;
|
|
1492
|
+
},
|
|
1493
|
+
fromAminoMsg(object: QueryTotalSupplyRequestAminoMsg): QueryTotalSupplyRequest {
|
|
1494
|
+
return QueryTotalSupplyRequest.fromAmino(object.value);
|
|
1495
|
+
},
|
|
1496
|
+
toAminoMsg(message: QueryTotalSupplyRequest): QueryTotalSupplyRequestAminoMsg {
|
|
1497
|
+
return {
|
|
1498
|
+
type: "cosmos-sdk/QueryTotalSupplyRequest",
|
|
1499
|
+
value: QueryTotalSupplyRequest.toAmino(message)
|
|
1500
|
+
};
|
|
1501
|
+
},
|
|
1502
|
+
fromProtoMsg(message: QueryTotalSupplyRequestProtoMsg): QueryTotalSupplyRequest {
|
|
1503
|
+
return QueryTotalSupplyRequest.decode(message.value);
|
|
1504
|
+
},
|
|
1505
|
+
toProto(message: QueryTotalSupplyRequest): Uint8Array {
|
|
1506
|
+
return QueryTotalSupplyRequest.encode(message).finish();
|
|
1507
|
+
},
|
|
1508
|
+
toProtoMsg(message: QueryTotalSupplyRequest): QueryTotalSupplyRequestProtoMsg {
|
|
1509
|
+
return {
|
|
1510
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyRequest",
|
|
1511
|
+
value: QueryTotalSupplyRequest.encode(message).finish()
|
|
1512
|
+
};
|
|
1513
|
+
}
|
|
1514
|
+
};
|
|
1515
|
+
GlobalDecoderRegistry.register(QueryTotalSupplyRequest.typeUrl, QueryTotalSupplyRequest);
|
|
1516
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryTotalSupplyRequest.aminoType, QueryTotalSupplyRequest.typeUrl);
|
|
1517
|
+
function createBaseQueryTotalSupplyResponse(): QueryTotalSupplyResponse {
|
|
1518
|
+
return {
|
|
1519
|
+
supply: [],
|
|
1520
|
+
pagination: undefined
|
|
1521
|
+
};
|
|
1522
|
+
}
|
|
1523
|
+
export const QueryTotalSupplyResponse = {
|
|
1524
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyResponse",
|
|
1525
|
+
aminoType: "cosmos-sdk/QueryTotalSupplyResponse",
|
|
1526
|
+
is(o: any): o is QueryTotalSupplyResponse {
|
|
1527
|
+
return o && (o.$typeUrl === QueryTotalSupplyResponse.typeUrl || Array.isArray(o.supply) && (!o.supply.length || Coin.is(o.supply[0])));
|
|
1528
|
+
},
|
|
1529
|
+
isAmino(o: any): o is QueryTotalSupplyResponseAmino {
|
|
1530
|
+
return o && (o.$typeUrl === QueryTotalSupplyResponse.typeUrl || Array.isArray(o.supply) && (!o.supply.length || Coin.isAmino(o.supply[0])));
|
|
1531
|
+
},
|
|
1532
|
+
encode(message: QueryTotalSupplyResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1533
|
+
for (const v of message.supply) {
|
|
1534
|
+
Coin.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
1535
|
+
}
|
|
1536
|
+
if (message.pagination !== undefined) {
|
|
1537
|
+
PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
1538
|
+
}
|
|
1539
|
+
return writer;
|
|
1540
|
+
},
|
|
1541
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryTotalSupplyResponse {
|
|
1542
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1543
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1544
|
+
const message = createBaseQueryTotalSupplyResponse();
|
|
1545
|
+
while (reader.pos < end) {
|
|
1546
|
+
const tag = reader.uint32();
|
|
1547
|
+
switch (tag >>> 3) {
|
|
1548
|
+
case 1:
|
|
1549
|
+
message.supply.push(Coin.decode(reader, reader.uint32()));
|
|
1550
|
+
break;
|
|
1551
|
+
case 2:
|
|
1552
|
+
message.pagination = PageResponse.decode(reader, reader.uint32());
|
|
1553
|
+
break;
|
|
1554
|
+
default:
|
|
1555
|
+
reader.skipType(tag & 7);
|
|
1556
|
+
break;
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
return message;
|
|
1560
|
+
},
|
|
1561
|
+
fromPartial(object: DeepPartial<QueryTotalSupplyResponse>): QueryTotalSupplyResponse {
|
|
1562
|
+
const message = createBaseQueryTotalSupplyResponse();
|
|
1563
|
+
message.supply = object.supply?.map(e => Coin.fromPartial(e)) || [];
|
|
1564
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageResponse.fromPartial(object.pagination) : undefined;
|
|
1565
|
+
return message;
|
|
1566
|
+
},
|
|
1567
|
+
fromAmino(object: QueryTotalSupplyResponseAmino): QueryTotalSupplyResponse {
|
|
1568
|
+
const message = createBaseQueryTotalSupplyResponse();
|
|
1569
|
+
message.supply = object.supply?.map(e => Coin.fromAmino(e)) || [];
|
|
1570
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
1571
|
+
message.pagination = PageResponse.fromAmino(object.pagination);
|
|
1572
|
+
}
|
|
1573
|
+
return message;
|
|
1574
|
+
},
|
|
1575
|
+
toAmino(message: QueryTotalSupplyResponse): QueryTotalSupplyResponseAmino {
|
|
1576
|
+
const obj: any = {};
|
|
1577
|
+
if (message.supply) {
|
|
1578
|
+
obj.supply = message.supply.map(e => e ? Coin.toAmino(e) : undefined);
|
|
1579
|
+
} else {
|
|
1580
|
+
obj.supply = message.supply;
|
|
1581
|
+
}
|
|
1582
|
+
obj.pagination = message.pagination ? PageResponse.toAmino(message.pagination) : undefined;
|
|
1583
|
+
return obj;
|
|
1584
|
+
},
|
|
1585
|
+
fromAminoMsg(object: QueryTotalSupplyResponseAminoMsg): QueryTotalSupplyResponse {
|
|
1586
|
+
return QueryTotalSupplyResponse.fromAmino(object.value);
|
|
1587
|
+
},
|
|
1588
|
+
toAminoMsg(message: QueryTotalSupplyResponse): QueryTotalSupplyResponseAminoMsg {
|
|
1589
|
+
return {
|
|
1590
|
+
type: "cosmos-sdk/QueryTotalSupplyResponse",
|
|
1591
|
+
value: QueryTotalSupplyResponse.toAmino(message)
|
|
1592
|
+
};
|
|
1593
|
+
},
|
|
1594
|
+
fromProtoMsg(message: QueryTotalSupplyResponseProtoMsg): QueryTotalSupplyResponse {
|
|
1595
|
+
return QueryTotalSupplyResponse.decode(message.value);
|
|
1596
|
+
},
|
|
1597
|
+
toProto(message: QueryTotalSupplyResponse): Uint8Array {
|
|
1598
|
+
return QueryTotalSupplyResponse.encode(message).finish();
|
|
1599
|
+
},
|
|
1600
|
+
toProtoMsg(message: QueryTotalSupplyResponse): QueryTotalSupplyResponseProtoMsg {
|
|
1601
|
+
return {
|
|
1602
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyResponse",
|
|
1603
|
+
value: QueryTotalSupplyResponse.encode(message).finish()
|
|
1604
|
+
};
|
|
1605
|
+
}
|
|
1606
|
+
};
|
|
1607
|
+
GlobalDecoderRegistry.register(QueryTotalSupplyResponse.typeUrl, QueryTotalSupplyResponse);
|
|
1608
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryTotalSupplyResponse.aminoType, QueryTotalSupplyResponse.typeUrl);
|
|
1609
|
+
function createBaseQuerySupplyOfRequest(): QuerySupplyOfRequest {
|
|
1610
|
+
return {
|
|
1611
|
+
denom: ""
|
|
1612
|
+
};
|
|
1613
|
+
}
|
|
1614
|
+
export const QuerySupplyOfRequest = {
|
|
1615
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfRequest",
|
|
1616
|
+
aminoType: "cosmos-sdk/QuerySupplyOfRequest",
|
|
1617
|
+
is(o: any): o is QuerySupplyOfRequest {
|
|
1618
|
+
return o && (o.$typeUrl === QuerySupplyOfRequest.typeUrl || typeof o.denom === "string");
|
|
1619
|
+
},
|
|
1620
|
+
isAmino(o: any): o is QuerySupplyOfRequestAmino {
|
|
1621
|
+
return o && (o.$typeUrl === QuerySupplyOfRequest.typeUrl || typeof o.denom === "string");
|
|
1622
|
+
},
|
|
1623
|
+
encode(message: QuerySupplyOfRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1624
|
+
if (message.denom !== "") {
|
|
1625
|
+
writer.uint32(10).string(message.denom);
|
|
1626
|
+
}
|
|
1627
|
+
return writer;
|
|
1628
|
+
},
|
|
1629
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyOfRequest {
|
|
1630
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1631
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1632
|
+
const message = createBaseQuerySupplyOfRequest();
|
|
1633
|
+
while (reader.pos < end) {
|
|
1634
|
+
const tag = reader.uint32();
|
|
1635
|
+
switch (tag >>> 3) {
|
|
1636
|
+
case 1:
|
|
1637
|
+
message.denom = reader.string();
|
|
1638
|
+
break;
|
|
1639
|
+
default:
|
|
1640
|
+
reader.skipType(tag & 7);
|
|
1641
|
+
break;
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
return message;
|
|
1645
|
+
},
|
|
1646
|
+
fromPartial(object: DeepPartial<QuerySupplyOfRequest>): QuerySupplyOfRequest {
|
|
1647
|
+
const message = createBaseQuerySupplyOfRequest();
|
|
1648
|
+
message.denom = object.denom ?? "";
|
|
1649
|
+
return message;
|
|
1650
|
+
},
|
|
1651
|
+
fromAmino(object: QuerySupplyOfRequestAmino): QuerySupplyOfRequest {
|
|
1652
|
+
const message = createBaseQuerySupplyOfRequest();
|
|
1653
|
+
if (object.denom !== undefined && object.denom !== null) {
|
|
1654
|
+
message.denom = object.denom;
|
|
1655
|
+
}
|
|
1656
|
+
return message;
|
|
1657
|
+
},
|
|
1658
|
+
toAmino(message: QuerySupplyOfRequest): QuerySupplyOfRequestAmino {
|
|
1659
|
+
const obj: any = {};
|
|
1660
|
+
obj.denom = message.denom === "" ? undefined : message.denom;
|
|
1661
|
+
return obj;
|
|
1662
|
+
},
|
|
1663
|
+
fromAminoMsg(object: QuerySupplyOfRequestAminoMsg): QuerySupplyOfRequest {
|
|
1664
|
+
return QuerySupplyOfRequest.fromAmino(object.value);
|
|
1665
|
+
},
|
|
1666
|
+
toAminoMsg(message: QuerySupplyOfRequest): QuerySupplyOfRequestAminoMsg {
|
|
1667
|
+
return {
|
|
1668
|
+
type: "cosmos-sdk/QuerySupplyOfRequest",
|
|
1669
|
+
value: QuerySupplyOfRequest.toAmino(message)
|
|
1670
|
+
};
|
|
1671
|
+
},
|
|
1672
|
+
fromProtoMsg(message: QuerySupplyOfRequestProtoMsg): QuerySupplyOfRequest {
|
|
1673
|
+
return QuerySupplyOfRequest.decode(message.value);
|
|
1674
|
+
},
|
|
1675
|
+
toProto(message: QuerySupplyOfRequest): Uint8Array {
|
|
1676
|
+
return QuerySupplyOfRequest.encode(message).finish();
|
|
1677
|
+
},
|
|
1678
|
+
toProtoMsg(message: QuerySupplyOfRequest): QuerySupplyOfRequestProtoMsg {
|
|
1679
|
+
return {
|
|
1680
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfRequest",
|
|
1681
|
+
value: QuerySupplyOfRequest.encode(message).finish()
|
|
1682
|
+
};
|
|
1683
|
+
}
|
|
1684
|
+
};
|
|
1685
|
+
GlobalDecoderRegistry.register(QuerySupplyOfRequest.typeUrl, QuerySupplyOfRequest);
|
|
1686
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QuerySupplyOfRequest.aminoType, QuerySupplyOfRequest.typeUrl);
|
|
1687
|
+
function createBaseQuerySupplyOfResponse(): QuerySupplyOfResponse {
|
|
1688
|
+
return {
|
|
1689
|
+
amount: Coin.fromPartial({})
|
|
1690
|
+
};
|
|
1691
|
+
}
|
|
1692
|
+
export const QuerySupplyOfResponse = {
|
|
1693
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfResponse",
|
|
1694
|
+
aminoType: "cosmos-sdk/QuerySupplyOfResponse",
|
|
1695
|
+
is(o: any): o is QuerySupplyOfResponse {
|
|
1696
|
+
return o && (o.$typeUrl === QuerySupplyOfResponse.typeUrl || Coin.is(o.amount));
|
|
1697
|
+
},
|
|
1698
|
+
isAmino(o: any): o is QuerySupplyOfResponseAmino {
|
|
1699
|
+
return o && (o.$typeUrl === QuerySupplyOfResponse.typeUrl || Coin.isAmino(o.amount));
|
|
1700
|
+
},
|
|
1701
|
+
encode(message: QuerySupplyOfResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1702
|
+
if (message.amount !== undefined) {
|
|
1703
|
+
Coin.encode(message.amount, writer.uint32(10).fork()).ldelim();
|
|
1704
|
+
}
|
|
1705
|
+
return writer;
|
|
1706
|
+
},
|
|
1707
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyOfResponse {
|
|
1708
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1709
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1710
|
+
const message = createBaseQuerySupplyOfResponse();
|
|
1711
|
+
while (reader.pos < end) {
|
|
1712
|
+
const tag = reader.uint32();
|
|
1713
|
+
switch (tag >>> 3) {
|
|
1714
|
+
case 1:
|
|
1715
|
+
message.amount = Coin.decode(reader, reader.uint32());
|
|
1716
|
+
break;
|
|
1717
|
+
default:
|
|
1718
|
+
reader.skipType(tag & 7);
|
|
1719
|
+
break;
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
return message;
|
|
1723
|
+
},
|
|
1724
|
+
fromPartial(object: DeepPartial<QuerySupplyOfResponse>): QuerySupplyOfResponse {
|
|
1725
|
+
const message = createBaseQuerySupplyOfResponse();
|
|
1726
|
+
message.amount = object.amount !== undefined && object.amount !== null ? Coin.fromPartial(object.amount) : undefined;
|
|
1727
|
+
return message;
|
|
1728
|
+
},
|
|
1729
|
+
fromAmino(object: QuerySupplyOfResponseAmino): QuerySupplyOfResponse {
|
|
1730
|
+
const message = createBaseQuerySupplyOfResponse();
|
|
1731
|
+
if (object.amount !== undefined && object.amount !== null) {
|
|
1732
|
+
message.amount = Coin.fromAmino(object.amount);
|
|
1733
|
+
}
|
|
1734
|
+
return message;
|
|
1735
|
+
},
|
|
1736
|
+
toAmino(message: QuerySupplyOfResponse): QuerySupplyOfResponseAmino {
|
|
1737
|
+
const obj: any = {};
|
|
1738
|
+
obj.amount = message.amount ? Coin.toAmino(message.amount) : Coin.toAmino(Coin.fromPartial({}));
|
|
1739
|
+
return obj;
|
|
1740
|
+
},
|
|
1741
|
+
fromAminoMsg(object: QuerySupplyOfResponseAminoMsg): QuerySupplyOfResponse {
|
|
1742
|
+
return QuerySupplyOfResponse.fromAmino(object.value);
|
|
1743
|
+
},
|
|
1744
|
+
toAminoMsg(message: QuerySupplyOfResponse): QuerySupplyOfResponseAminoMsg {
|
|
1745
|
+
return {
|
|
1746
|
+
type: "cosmos-sdk/QuerySupplyOfResponse",
|
|
1747
|
+
value: QuerySupplyOfResponse.toAmino(message)
|
|
1748
|
+
};
|
|
1749
|
+
},
|
|
1750
|
+
fromProtoMsg(message: QuerySupplyOfResponseProtoMsg): QuerySupplyOfResponse {
|
|
1751
|
+
return QuerySupplyOfResponse.decode(message.value);
|
|
1752
|
+
},
|
|
1753
|
+
toProto(message: QuerySupplyOfResponse): Uint8Array {
|
|
1754
|
+
return QuerySupplyOfResponse.encode(message).finish();
|
|
1755
|
+
},
|
|
1756
|
+
toProtoMsg(message: QuerySupplyOfResponse): QuerySupplyOfResponseProtoMsg {
|
|
1757
|
+
return {
|
|
1758
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfResponse",
|
|
1759
|
+
value: QuerySupplyOfResponse.encode(message).finish()
|
|
1760
|
+
};
|
|
1761
|
+
}
|
|
1762
|
+
};
|
|
1763
|
+
GlobalDecoderRegistry.register(QuerySupplyOfResponse.typeUrl, QuerySupplyOfResponse);
|
|
1764
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QuerySupplyOfResponse.aminoType, QuerySupplyOfResponse.typeUrl);
|
|
1765
|
+
function createBaseQueryParamsRequest(): QueryParamsRequest {
|
|
1766
|
+
return {};
|
|
1767
|
+
}
|
|
1768
|
+
export const QueryParamsRequest = {
|
|
1769
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryParamsRequest",
|
|
1770
|
+
aminoType: "cosmos-sdk/QueryParamsRequest",
|
|
1771
|
+
is(o: any): o is QueryParamsRequest {
|
|
1772
|
+
return o && o.$typeUrl === QueryParamsRequest.typeUrl;
|
|
1773
|
+
},
|
|
1774
|
+
isAmino(o: any): o is QueryParamsRequestAmino {
|
|
1775
|
+
return o && o.$typeUrl === QueryParamsRequest.typeUrl;
|
|
1776
|
+
},
|
|
1777
|
+
encode(_: QueryParamsRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1778
|
+
return writer;
|
|
1779
|
+
},
|
|
1780
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest {
|
|
1781
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1782
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1783
|
+
const message = createBaseQueryParamsRequest();
|
|
1784
|
+
while (reader.pos < end) {
|
|
1785
|
+
const tag = reader.uint32();
|
|
1786
|
+
switch (tag >>> 3) {
|
|
1787
|
+
default:
|
|
1788
|
+
reader.skipType(tag & 7);
|
|
1789
|
+
break;
|
|
1790
|
+
}
|
|
1791
|
+
}
|
|
1792
|
+
return message;
|
|
1793
|
+
},
|
|
1794
|
+
fromPartial(_: DeepPartial<QueryParamsRequest>): QueryParamsRequest {
|
|
1795
|
+
const message = createBaseQueryParamsRequest();
|
|
1796
|
+
return message;
|
|
1797
|
+
},
|
|
1798
|
+
fromAmino(_: QueryParamsRequestAmino): QueryParamsRequest {
|
|
1799
|
+
const message = createBaseQueryParamsRequest();
|
|
1800
|
+
return message;
|
|
1801
|
+
},
|
|
1802
|
+
toAmino(_: QueryParamsRequest): QueryParamsRequestAmino {
|
|
1803
|
+
const obj: any = {};
|
|
1804
|
+
return obj;
|
|
1805
|
+
},
|
|
1806
|
+
fromAminoMsg(object: QueryParamsRequestAminoMsg): QueryParamsRequest {
|
|
1807
|
+
return QueryParamsRequest.fromAmino(object.value);
|
|
1808
|
+
},
|
|
1809
|
+
toAminoMsg(message: QueryParamsRequest): QueryParamsRequestAminoMsg {
|
|
1810
|
+
return {
|
|
1811
|
+
type: "cosmos-sdk/QueryParamsRequest",
|
|
1812
|
+
value: QueryParamsRequest.toAmino(message)
|
|
1813
|
+
};
|
|
1814
|
+
},
|
|
1815
|
+
fromProtoMsg(message: QueryParamsRequestProtoMsg): QueryParamsRequest {
|
|
1816
|
+
return QueryParamsRequest.decode(message.value);
|
|
1817
|
+
},
|
|
1818
|
+
toProto(message: QueryParamsRequest): Uint8Array {
|
|
1819
|
+
return QueryParamsRequest.encode(message).finish();
|
|
1820
|
+
},
|
|
1821
|
+
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg {
|
|
1822
|
+
return {
|
|
1823
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryParamsRequest",
|
|
1824
|
+
value: QueryParamsRequest.encode(message).finish()
|
|
1825
|
+
};
|
|
1826
|
+
}
|
|
1827
|
+
};
|
|
1828
|
+
GlobalDecoderRegistry.register(QueryParamsRequest.typeUrl, QueryParamsRequest);
|
|
1829
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryParamsRequest.aminoType, QueryParamsRequest.typeUrl);
|
|
1830
|
+
function createBaseQueryParamsResponse(): QueryParamsResponse {
|
|
1831
|
+
return {
|
|
1832
|
+
params: Params.fromPartial({})
|
|
1833
|
+
};
|
|
1834
|
+
}
|
|
1835
|
+
export const QueryParamsResponse = {
|
|
1836
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryParamsResponse",
|
|
1837
|
+
aminoType: "cosmos-sdk/QueryParamsResponse",
|
|
1838
|
+
is(o: any): o is QueryParamsResponse {
|
|
1839
|
+
return o && (o.$typeUrl === QueryParamsResponse.typeUrl || Params.is(o.params));
|
|
1840
|
+
},
|
|
1841
|
+
isAmino(o: any): o is QueryParamsResponseAmino {
|
|
1842
|
+
return o && (o.$typeUrl === QueryParamsResponse.typeUrl || Params.isAmino(o.params));
|
|
1843
|
+
},
|
|
1844
|
+
encode(message: QueryParamsResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1845
|
+
if (message.params !== undefined) {
|
|
1846
|
+
Params.encode(message.params, writer.uint32(10).fork()).ldelim();
|
|
1847
|
+
}
|
|
1848
|
+
return writer;
|
|
1849
|
+
},
|
|
1850
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse {
|
|
1851
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1852
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1853
|
+
const message = createBaseQueryParamsResponse();
|
|
1854
|
+
while (reader.pos < end) {
|
|
1855
|
+
const tag = reader.uint32();
|
|
1856
|
+
switch (tag >>> 3) {
|
|
1857
|
+
case 1:
|
|
1858
|
+
message.params = Params.decode(reader, reader.uint32());
|
|
1859
|
+
break;
|
|
1860
|
+
default:
|
|
1861
|
+
reader.skipType(tag & 7);
|
|
1862
|
+
break;
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
return message;
|
|
1866
|
+
},
|
|
1867
|
+
fromPartial(object: DeepPartial<QueryParamsResponse>): QueryParamsResponse {
|
|
1868
|
+
const message = createBaseQueryParamsResponse();
|
|
1869
|
+
message.params = object.params !== undefined && object.params !== null ? Params.fromPartial(object.params) : undefined;
|
|
1870
|
+
return message;
|
|
1871
|
+
},
|
|
1872
|
+
fromAmino(object: QueryParamsResponseAmino): QueryParamsResponse {
|
|
1873
|
+
const message = createBaseQueryParamsResponse();
|
|
1874
|
+
if (object.params !== undefined && object.params !== null) {
|
|
1875
|
+
message.params = Params.fromAmino(object.params);
|
|
1876
|
+
}
|
|
1877
|
+
return message;
|
|
1878
|
+
},
|
|
1879
|
+
toAmino(message: QueryParamsResponse): QueryParamsResponseAmino {
|
|
1880
|
+
const obj: any = {};
|
|
1881
|
+
obj.params = message.params ? Params.toAmino(message.params) : Params.toAmino(Params.fromPartial({}));
|
|
1882
|
+
return obj;
|
|
1883
|
+
},
|
|
1884
|
+
fromAminoMsg(object: QueryParamsResponseAminoMsg): QueryParamsResponse {
|
|
1885
|
+
return QueryParamsResponse.fromAmino(object.value);
|
|
1886
|
+
},
|
|
1887
|
+
toAminoMsg(message: QueryParamsResponse): QueryParamsResponseAminoMsg {
|
|
1888
|
+
return {
|
|
1889
|
+
type: "cosmos-sdk/QueryParamsResponse",
|
|
1890
|
+
value: QueryParamsResponse.toAmino(message)
|
|
1891
|
+
};
|
|
1892
|
+
},
|
|
1893
|
+
fromProtoMsg(message: QueryParamsResponseProtoMsg): QueryParamsResponse {
|
|
1894
|
+
return QueryParamsResponse.decode(message.value);
|
|
1895
|
+
},
|
|
1896
|
+
toProto(message: QueryParamsResponse): Uint8Array {
|
|
1897
|
+
return QueryParamsResponse.encode(message).finish();
|
|
1898
|
+
},
|
|
1899
|
+
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg {
|
|
1900
|
+
return {
|
|
1901
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryParamsResponse",
|
|
1902
|
+
value: QueryParamsResponse.encode(message).finish()
|
|
1903
|
+
};
|
|
1904
|
+
}
|
|
1905
|
+
};
|
|
1906
|
+
GlobalDecoderRegistry.register(QueryParamsResponse.typeUrl, QueryParamsResponse);
|
|
1907
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryParamsResponse.aminoType, QueryParamsResponse.typeUrl);
|
|
1908
|
+
function createBaseQueryDenomsMetadataRequest(): QueryDenomsMetadataRequest {
|
|
1909
|
+
return {
|
|
1910
|
+
pagination: undefined
|
|
1911
|
+
};
|
|
1912
|
+
}
|
|
1913
|
+
export const QueryDenomsMetadataRequest = {
|
|
1914
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataRequest",
|
|
1915
|
+
aminoType: "cosmos-sdk/QueryDenomsMetadataRequest",
|
|
1916
|
+
is(o: any): o is QueryDenomsMetadataRequest {
|
|
1917
|
+
return o && o.$typeUrl === QueryDenomsMetadataRequest.typeUrl;
|
|
1918
|
+
},
|
|
1919
|
+
isAmino(o: any): o is QueryDenomsMetadataRequestAmino {
|
|
1920
|
+
return o && o.$typeUrl === QueryDenomsMetadataRequest.typeUrl;
|
|
1921
|
+
},
|
|
1922
|
+
encode(message: QueryDenomsMetadataRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1923
|
+
if (message.pagination !== undefined) {
|
|
1924
|
+
PageRequest.encode(message.pagination, writer.uint32(10).fork()).ldelim();
|
|
1925
|
+
}
|
|
1926
|
+
return writer;
|
|
1927
|
+
},
|
|
1928
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomsMetadataRequest {
|
|
1929
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1930
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1931
|
+
const message = createBaseQueryDenomsMetadataRequest();
|
|
1932
|
+
while (reader.pos < end) {
|
|
1933
|
+
const tag = reader.uint32();
|
|
1934
|
+
switch (tag >>> 3) {
|
|
1935
|
+
case 1:
|
|
1936
|
+
message.pagination = PageRequest.decode(reader, reader.uint32());
|
|
1937
|
+
break;
|
|
1938
|
+
default:
|
|
1939
|
+
reader.skipType(tag & 7);
|
|
1940
|
+
break;
|
|
1941
|
+
}
|
|
1942
|
+
}
|
|
1943
|
+
return message;
|
|
1944
|
+
},
|
|
1945
|
+
fromPartial(object: DeepPartial<QueryDenomsMetadataRequest>): QueryDenomsMetadataRequest {
|
|
1946
|
+
const message = createBaseQueryDenomsMetadataRequest();
|
|
1947
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageRequest.fromPartial(object.pagination) : undefined;
|
|
1948
|
+
return message;
|
|
1949
|
+
},
|
|
1950
|
+
fromAmino(object: QueryDenomsMetadataRequestAmino): QueryDenomsMetadataRequest {
|
|
1951
|
+
const message = createBaseQueryDenomsMetadataRequest();
|
|
1952
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
1953
|
+
message.pagination = PageRequest.fromAmino(object.pagination);
|
|
1954
|
+
}
|
|
1955
|
+
return message;
|
|
1956
|
+
},
|
|
1957
|
+
toAmino(message: QueryDenomsMetadataRequest): QueryDenomsMetadataRequestAmino {
|
|
1958
|
+
const obj: any = {};
|
|
1959
|
+
obj.pagination = message.pagination ? PageRequest.toAmino(message.pagination) : undefined;
|
|
1960
|
+
return obj;
|
|
1961
|
+
},
|
|
1962
|
+
fromAminoMsg(object: QueryDenomsMetadataRequestAminoMsg): QueryDenomsMetadataRequest {
|
|
1963
|
+
return QueryDenomsMetadataRequest.fromAmino(object.value);
|
|
1964
|
+
},
|
|
1965
|
+
toAminoMsg(message: QueryDenomsMetadataRequest): QueryDenomsMetadataRequestAminoMsg {
|
|
1966
|
+
return {
|
|
1967
|
+
type: "cosmos-sdk/QueryDenomsMetadataRequest",
|
|
1968
|
+
value: QueryDenomsMetadataRequest.toAmino(message)
|
|
1969
|
+
};
|
|
1970
|
+
},
|
|
1971
|
+
fromProtoMsg(message: QueryDenomsMetadataRequestProtoMsg): QueryDenomsMetadataRequest {
|
|
1972
|
+
return QueryDenomsMetadataRequest.decode(message.value);
|
|
1973
|
+
},
|
|
1974
|
+
toProto(message: QueryDenomsMetadataRequest): Uint8Array {
|
|
1975
|
+
return QueryDenomsMetadataRequest.encode(message).finish();
|
|
1976
|
+
},
|
|
1977
|
+
toProtoMsg(message: QueryDenomsMetadataRequest): QueryDenomsMetadataRequestProtoMsg {
|
|
1978
|
+
return {
|
|
1979
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataRequest",
|
|
1980
|
+
value: QueryDenomsMetadataRequest.encode(message).finish()
|
|
1981
|
+
};
|
|
1982
|
+
}
|
|
1983
|
+
};
|
|
1984
|
+
GlobalDecoderRegistry.register(QueryDenomsMetadataRequest.typeUrl, QueryDenomsMetadataRequest);
|
|
1985
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomsMetadataRequest.aminoType, QueryDenomsMetadataRequest.typeUrl);
|
|
1986
|
+
function createBaseQueryDenomsMetadataResponse(): QueryDenomsMetadataResponse {
|
|
1987
|
+
return {
|
|
1988
|
+
metadatas: [],
|
|
1989
|
+
pagination: undefined
|
|
1990
|
+
};
|
|
1991
|
+
}
|
|
1992
|
+
export const QueryDenomsMetadataResponse = {
|
|
1993
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataResponse",
|
|
1994
|
+
aminoType: "cosmos-sdk/QueryDenomsMetadataResponse",
|
|
1995
|
+
is(o: any): o is QueryDenomsMetadataResponse {
|
|
1996
|
+
return o && (o.$typeUrl === QueryDenomsMetadataResponse.typeUrl || Array.isArray(o.metadatas) && (!o.metadatas.length || Metadata.is(o.metadatas[0])));
|
|
1997
|
+
},
|
|
1998
|
+
isAmino(o: any): o is QueryDenomsMetadataResponseAmino {
|
|
1999
|
+
return o && (o.$typeUrl === QueryDenomsMetadataResponse.typeUrl || Array.isArray(o.metadatas) && (!o.metadatas.length || Metadata.isAmino(o.metadatas[0])));
|
|
2000
|
+
},
|
|
2001
|
+
encode(message: QueryDenomsMetadataResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2002
|
+
for (const v of message.metadatas) {
|
|
2003
|
+
Metadata.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
2004
|
+
}
|
|
2005
|
+
if (message.pagination !== undefined) {
|
|
2006
|
+
PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
2007
|
+
}
|
|
2008
|
+
return writer;
|
|
2009
|
+
},
|
|
2010
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomsMetadataResponse {
|
|
2011
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2012
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2013
|
+
const message = createBaseQueryDenomsMetadataResponse();
|
|
2014
|
+
while (reader.pos < end) {
|
|
2015
|
+
const tag = reader.uint32();
|
|
2016
|
+
switch (tag >>> 3) {
|
|
2017
|
+
case 1:
|
|
2018
|
+
message.metadatas.push(Metadata.decode(reader, reader.uint32()));
|
|
2019
|
+
break;
|
|
2020
|
+
case 2:
|
|
2021
|
+
message.pagination = PageResponse.decode(reader, reader.uint32());
|
|
2022
|
+
break;
|
|
2023
|
+
default:
|
|
2024
|
+
reader.skipType(tag & 7);
|
|
2025
|
+
break;
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
2028
|
+
return message;
|
|
2029
|
+
},
|
|
2030
|
+
fromPartial(object: DeepPartial<QueryDenomsMetadataResponse>): QueryDenomsMetadataResponse {
|
|
2031
|
+
const message = createBaseQueryDenomsMetadataResponse();
|
|
2032
|
+
message.metadatas = object.metadatas?.map(e => Metadata.fromPartial(e)) || [];
|
|
2033
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageResponse.fromPartial(object.pagination) : undefined;
|
|
2034
|
+
return message;
|
|
2035
|
+
},
|
|
2036
|
+
fromAmino(object: QueryDenomsMetadataResponseAmino): QueryDenomsMetadataResponse {
|
|
2037
|
+
const message = createBaseQueryDenomsMetadataResponse();
|
|
2038
|
+
message.metadatas = object.metadatas?.map(e => Metadata.fromAmino(e)) || [];
|
|
2039
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
2040
|
+
message.pagination = PageResponse.fromAmino(object.pagination);
|
|
2041
|
+
}
|
|
2042
|
+
return message;
|
|
2043
|
+
},
|
|
2044
|
+
toAmino(message: QueryDenomsMetadataResponse): QueryDenomsMetadataResponseAmino {
|
|
2045
|
+
const obj: any = {};
|
|
2046
|
+
if (message.metadatas) {
|
|
2047
|
+
obj.metadatas = message.metadatas.map(e => e ? Metadata.toAmino(e) : undefined);
|
|
2048
|
+
} else {
|
|
2049
|
+
obj.metadatas = message.metadatas;
|
|
2050
|
+
}
|
|
2051
|
+
obj.pagination = message.pagination ? PageResponse.toAmino(message.pagination) : undefined;
|
|
2052
|
+
return obj;
|
|
2053
|
+
},
|
|
2054
|
+
fromAminoMsg(object: QueryDenomsMetadataResponseAminoMsg): QueryDenomsMetadataResponse {
|
|
2055
|
+
return QueryDenomsMetadataResponse.fromAmino(object.value);
|
|
2056
|
+
},
|
|
2057
|
+
toAminoMsg(message: QueryDenomsMetadataResponse): QueryDenomsMetadataResponseAminoMsg {
|
|
2058
|
+
return {
|
|
2059
|
+
type: "cosmos-sdk/QueryDenomsMetadataResponse",
|
|
2060
|
+
value: QueryDenomsMetadataResponse.toAmino(message)
|
|
2061
|
+
};
|
|
2062
|
+
},
|
|
2063
|
+
fromProtoMsg(message: QueryDenomsMetadataResponseProtoMsg): QueryDenomsMetadataResponse {
|
|
2064
|
+
return QueryDenomsMetadataResponse.decode(message.value);
|
|
2065
|
+
},
|
|
2066
|
+
toProto(message: QueryDenomsMetadataResponse): Uint8Array {
|
|
2067
|
+
return QueryDenomsMetadataResponse.encode(message).finish();
|
|
2068
|
+
},
|
|
2069
|
+
toProtoMsg(message: QueryDenomsMetadataResponse): QueryDenomsMetadataResponseProtoMsg {
|
|
2070
|
+
return {
|
|
2071
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataResponse",
|
|
2072
|
+
value: QueryDenomsMetadataResponse.encode(message).finish()
|
|
2073
|
+
};
|
|
2074
|
+
}
|
|
2075
|
+
};
|
|
2076
|
+
GlobalDecoderRegistry.register(QueryDenomsMetadataResponse.typeUrl, QueryDenomsMetadataResponse);
|
|
2077
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomsMetadataResponse.aminoType, QueryDenomsMetadataResponse.typeUrl);
|
|
2078
|
+
function createBaseQueryDenomMetadataRequest(): QueryDenomMetadataRequest {
|
|
2079
|
+
return {
|
|
2080
|
+
denom: ""
|
|
2081
|
+
};
|
|
2082
|
+
}
|
|
2083
|
+
export const QueryDenomMetadataRequest = {
|
|
2084
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataRequest",
|
|
2085
|
+
aminoType: "cosmos-sdk/QueryDenomMetadataRequest",
|
|
2086
|
+
is(o: any): o is QueryDenomMetadataRequest {
|
|
2087
|
+
return o && (o.$typeUrl === QueryDenomMetadataRequest.typeUrl || typeof o.denom === "string");
|
|
2088
|
+
},
|
|
2089
|
+
isAmino(o: any): o is QueryDenomMetadataRequestAmino {
|
|
2090
|
+
return o && (o.$typeUrl === QueryDenomMetadataRequest.typeUrl || typeof o.denom === "string");
|
|
2091
|
+
},
|
|
2092
|
+
encode(message: QueryDenomMetadataRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2093
|
+
if (message.denom !== "") {
|
|
2094
|
+
writer.uint32(10).string(message.denom);
|
|
2095
|
+
}
|
|
2096
|
+
return writer;
|
|
2097
|
+
},
|
|
2098
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomMetadataRequest {
|
|
2099
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2100
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2101
|
+
const message = createBaseQueryDenomMetadataRequest();
|
|
2102
|
+
while (reader.pos < end) {
|
|
2103
|
+
const tag = reader.uint32();
|
|
2104
|
+
switch (tag >>> 3) {
|
|
2105
|
+
case 1:
|
|
2106
|
+
message.denom = reader.string();
|
|
2107
|
+
break;
|
|
2108
|
+
default:
|
|
2109
|
+
reader.skipType(tag & 7);
|
|
2110
|
+
break;
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
return message;
|
|
2114
|
+
},
|
|
2115
|
+
fromPartial(object: DeepPartial<QueryDenomMetadataRequest>): QueryDenomMetadataRequest {
|
|
2116
|
+
const message = createBaseQueryDenomMetadataRequest();
|
|
2117
|
+
message.denom = object.denom ?? "";
|
|
2118
|
+
return message;
|
|
2119
|
+
},
|
|
2120
|
+
fromAmino(object: QueryDenomMetadataRequestAmino): QueryDenomMetadataRequest {
|
|
2121
|
+
const message = createBaseQueryDenomMetadataRequest();
|
|
2122
|
+
if (object.denom !== undefined && object.denom !== null) {
|
|
2123
|
+
message.denom = object.denom;
|
|
2124
|
+
}
|
|
2125
|
+
return message;
|
|
2126
|
+
},
|
|
2127
|
+
toAmino(message: QueryDenomMetadataRequest): QueryDenomMetadataRequestAmino {
|
|
2128
|
+
const obj: any = {};
|
|
2129
|
+
obj.denom = message.denom === "" ? undefined : message.denom;
|
|
2130
|
+
return obj;
|
|
2131
|
+
},
|
|
2132
|
+
fromAminoMsg(object: QueryDenomMetadataRequestAminoMsg): QueryDenomMetadataRequest {
|
|
2133
|
+
return QueryDenomMetadataRequest.fromAmino(object.value);
|
|
2134
|
+
},
|
|
2135
|
+
toAminoMsg(message: QueryDenomMetadataRequest): QueryDenomMetadataRequestAminoMsg {
|
|
2136
|
+
return {
|
|
2137
|
+
type: "cosmos-sdk/QueryDenomMetadataRequest",
|
|
2138
|
+
value: QueryDenomMetadataRequest.toAmino(message)
|
|
2139
|
+
};
|
|
2140
|
+
},
|
|
2141
|
+
fromProtoMsg(message: QueryDenomMetadataRequestProtoMsg): QueryDenomMetadataRequest {
|
|
2142
|
+
return QueryDenomMetadataRequest.decode(message.value);
|
|
2143
|
+
},
|
|
2144
|
+
toProto(message: QueryDenomMetadataRequest): Uint8Array {
|
|
2145
|
+
return QueryDenomMetadataRequest.encode(message).finish();
|
|
2146
|
+
},
|
|
2147
|
+
toProtoMsg(message: QueryDenomMetadataRequest): QueryDenomMetadataRequestProtoMsg {
|
|
2148
|
+
return {
|
|
2149
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataRequest",
|
|
2150
|
+
value: QueryDenomMetadataRequest.encode(message).finish()
|
|
2151
|
+
};
|
|
2152
|
+
}
|
|
2153
|
+
};
|
|
2154
|
+
GlobalDecoderRegistry.register(QueryDenomMetadataRequest.typeUrl, QueryDenomMetadataRequest);
|
|
2155
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomMetadataRequest.aminoType, QueryDenomMetadataRequest.typeUrl);
|
|
2156
|
+
function createBaseQueryDenomMetadataResponse(): QueryDenomMetadataResponse {
|
|
2157
|
+
return {
|
|
2158
|
+
metadata: Metadata.fromPartial({})
|
|
2159
|
+
};
|
|
2160
|
+
}
|
|
2161
|
+
export const QueryDenomMetadataResponse = {
|
|
2162
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataResponse",
|
|
2163
|
+
aminoType: "cosmos-sdk/QueryDenomMetadataResponse",
|
|
2164
|
+
is(o: any): o is QueryDenomMetadataResponse {
|
|
2165
|
+
return o && (o.$typeUrl === QueryDenomMetadataResponse.typeUrl || Metadata.is(o.metadata));
|
|
2166
|
+
},
|
|
2167
|
+
isAmino(o: any): o is QueryDenomMetadataResponseAmino {
|
|
2168
|
+
return o && (o.$typeUrl === QueryDenomMetadataResponse.typeUrl || Metadata.isAmino(o.metadata));
|
|
2169
|
+
},
|
|
2170
|
+
encode(message: QueryDenomMetadataResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2171
|
+
if (message.metadata !== undefined) {
|
|
2172
|
+
Metadata.encode(message.metadata, writer.uint32(10).fork()).ldelim();
|
|
2173
|
+
}
|
|
2174
|
+
return writer;
|
|
2175
|
+
},
|
|
2176
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomMetadataResponse {
|
|
2177
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2178
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2179
|
+
const message = createBaseQueryDenomMetadataResponse();
|
|
2180
|
+
while (reader.pos < end) {
|
|
2181
|
+
const tag = reader.uint32();
|
|
2182
|
+
switch (tag >>> 3) {
|
|
2183
|
+
case 1:
|
|
2184
|
+
message.metadata = Metadata.decode(reader, reader.uint32());
|
|
2185
|
+
break;
|
|
2186
|
+
default:
|
|
2187
|
+
reader.skipType(tag & 7);
|
|
2188
|
+
break;
|
|
2189
|
+
}
|
|
2190
|
+
}
|
|
2191
|
+
return message;
|
|
2192
|
+
},
|
|
2193
|
+
fromPartial(object: DeepPartial<QueryDenomMetadataResponse>): QueryDenomMetadataResponse {
|
|
2194
|
+
const message = createBaseQueryDenomMetadataResponse();
|
|
2195
|
+
message.metadata = object.metadata !== undefined && object.metadata !== null ? Metadata.fromPartial(object.metadata) : undefined;
|
|
2196
|
+
return message;
|
|
2197
|
+
},
|
|
2198
|
+
fromAmino(object: QueryDenomMetadataResponseAmino): QueryDenomMetadataResponse {
|
|
2199
|
+
const message = createBaseQueryDenomMetadataResponse();
|
|
2200
|
+
if (object.metadata !== undefined && object.metadata !== null) {
|
|
2201
|
+
message.metadata = Metadata.fromAmino(object.metadata);
|
|
2202
|
+
}
|
|
2203
|
+
return message;
|
|
2204
|
+
},
|
|
2205
|
+
toAmino(message: QueryDenomMetadataResponse): QueryDenomMetadataResponseAmino {
|
|
2206
|
+
const obj: any = {};
|
|
2207
|
+
obj.metadata = message.metadata ? Metadata.toAmino(message.metadata) : Metadata.toAmino(Metadata.fromPartial({}));
|
|
2208
|
+
return obj;
|
|
2209
|
+
},
|
|
2210
|
+
fromAminoMsg(object: QueryDenomMetadataResponseAminoMsg): QueryDenomMetadataResponse {
|
|
2211
|
+
return QueryDenomMetadataResponse.fromAmino(object.value);
|
|
2212
|
+
},
|
|
2213
|
+
toAminoMsg(message: QueryDenomMetadataResponse): QueryDenomMetadataResponseAminoMsg {
|
|
2214
|
+
return {
|
|
2215
|
+
type: "cosmos-sdk/QueryDenomMetadataResponse",
|
|
2216
|
+
value: QueryDenomMetadataResponse.toAmino(message)
|
|
2217
|
+
};
|
|
2218
|
+
},
|
|
2219
|
+
fromProtoMsg(message: QueryDenomMetadataResponseProtoMsg): QueryDenomMetadataResponse {
|
|
2220
|
+
return QueryDenomMetadataResponse.decode(message.value);
|
|
2221
|
+
},
|
|
2222
|
+
toProto(message: QueryDenomMetadataResponse): Uint8Array {
|
|
2223
|
+
return QueryDenomMetadataResponse.encode(message).finish();
|
|
2224
|
+
},
|
|
2225
|
+
toProtoMsg(message: QueryDenomMetadataResponse): QueryDenomMetadataResponseProtoMsg {
|
|
2226
|
+
return {
|
|
2227
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataResponse",
|
|
2228
|
+
value: QueryDenomMetadataResponse.encode(message).finish()
|
|
2229
|
+
};
|
|
2230
|
+
}
|
|
2231
|
+
};
|
|
2232
|
+
GlobalDecoderRegistry.register(QueryDenomMetadataResponse.typeUrl, QueryDenomMetadataResponse);
|
|
2233
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomMetadataResponse.aminoType, QueryDenomMetadataResponse.typeUrl);
|
|
2234
|
+
function createBaseQueryDenomMetadataByQueryStringRequest(): QueryDenomMetadataByQueryStringRequest {
|
|
2235
|
+
return {
|
|
2236
|
+
denom: ""
|
|
2237
|
+
};
|
|
2238
|
+
}
|
|
2239
|
+
export const QueryDenomMetadataByQueryStringRequest = {
|
|
2240
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest",
|
|
2241
|
+
aminoType: "cosmos-sdk/QueryDenomMetadataByQueryStringRequest",
|
|
2242
|
+
is(o: any): o is QueryDenomMetadataByQueryStringRequest {
|
|
2243
|
+
return o && (o.$typeUrl === QueryDenomMetadataByQueryStringRequest.typeUrl || typeof o.denom === "string");
|
|
2244
|
+
},
|
|
2245
|
+
isAmino(o: any): o is QueryDenomMetadataByQueryStringRequestAmino {
|
|
2246
|
+
return o && (o.$typeUrl === QueryDenomMetadataByQueryStringRequest.typeUrl || typeof o.denom === "string");
|
|
2247
|
+
},
|
|
2248
|
+
encode(message: QueryDenomMetadataByQueryStringRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2249
|
+
if (message.denom !== "") {
|
|
2250
|
+
writer.uint32(10).string(message.denom);
|
|
2251
|
+
}
|
|
2252
|
+
return writer;
|
|
2253
|
+
},
|
|
2254
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomMetadataByQueryStringRequest {
|
|
2255
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2256
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2257
|
+
const message = createBaseQueryDenomMetadataByQueryStringRequest();
|
|
2258
|
+
while (reader.pos < end) {
|
|
2259
|
+
const tag = reader.uint32();
|
|
2260
|
+
switch (tag >>> 3) {
|
|
2261
|
+
case 1:
|
|
2262
|
+
message.denom = reader.string();
|
|
2263
|
+
break;
|
|
2264
|
+
default:
|
|
2265
|
+
reader.skipType(tag & 7);
|
|
2266
|
+
break;
|
|
2267
|
+
}
|
|
2268
|
+
}
|
|
2269
|
+
return message;
|
|
2270
|
+
},
|
|
2271
|
+
fromPartial(object: DeepPartial<QueryDenomMetadataByQueryStringRequest>): QueryDenomMetadataByQueryStringRequest {
|
|
2272
|
+
const message = createBaseQueryDenomMetadataByQueryStringRequest();
|
|
2273
|
+
message.denom = object.denom ?? "";
|
|
2274
|
+
return message;
|
|
2275
|
+
},
|
|
2276
|
+
fromAmino(object: QueryDenomMetadataByQueryStringRequestAmino): QueryDenomMetadataByQueryStringRequest {
|
|
2277
|
+
const message = createBaseQueryDenomMetadataByQueryStringRequest();
|
|
2278
|
+
if (object.denom !== undefined && object.denom !== null) {
|
|
2279
|
+
message.denom = object.denom;
|
|
2280
|
+
}
|
|
2281
|
+
return message;
|
|
2282
|
+
},
|
|
2283
|
+
toAmino(message: QueryDenomMetadataByQueryStringRequest): QueryDenomMetadataByQueryStringRequestAmino {
|
|
2284
|
+
const obj: any = {};
|
|
2285
|
+
obj.denom = message.denom === "" ? undefined : message.denom;
|
|
2286
|
+
return obj;
|
|
2287
|
+
},
|
|
2288
|
+
fromAminoMsg(object: QueryDenomMetadataByQueryStringRequestAminoMsg): QueryDenomMetadataByQueryStringRequest {
|
|
2289
|
+
return QueryDenomMetadataByQueryStringRequest.fromAmino(object.value);
|
|
2290
|
+
},
|
|
2291
|
+
toAminoMsg(message: QueryDenomMetadataByQueryStringRequest): QueryDenomMetadataByQueryStringRequestAminoMsg {
|
|
2292
|
+
return {
|
|
2293
|
+
type: "cosmos-sdk/QueryDenomMetadataByQueryStringRequest",
|
|
2294
|
+
value: QueryDenomMetadataByQueryStringRequest.toAmino(message)
|
|
2295
|
+
};
|
|
2296
|
+
},
|
|
2297
|
+
fromProtoMsg(message: QueryDenomMetadataByQueryStringRequestProtoMsg): QueryDenomMetadataByQueryStringRequest {
|
|
2298
|
+
return QueryDenomMetadataByQueryStringRequest.decode(message.value);
|
|
2299
|
+
},
|
|
2300
|
+
toProto(message: QueryDenomMetadataByQueryStringRequest): Uint8Array {
|
|
2301
|
+
return QueryDenomMetadataByQueryStringRequest.encode(message).finish();
|
|
2302
|
+
},
|
|
2303
|
+
toProtoMsg(message: QueryDenomMetadataByQueryStringRequest): QueryDenomMetadataByQueryStringRequestProtoMsg {
|
|
2304
|
+
return {
|
|
2305
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest",
|
|
2306
|
+
value: QueryDenomMetadataByQueryStringRequest.encode(message).finish()
|
|
2307
|
+
};
|
|
2308
|
+
}
|
|
2309
|
+
};
|
|
2310
|
+
GlobalDecoderRegistry.register(QueryDenomMetadataByQueryStringRequest.typeUrl, QueryDenomMetadataByQueryStringRequest);
|
|
2311
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomMetadataByQueryStringRequest.aminoType, QueryDenomMetadataByQueryStringRequest.typeUrl);
|
|
2312
|
+
function createBaseQueryDenomMetadataByQueryStringResponse(): QueryDenomMetadataByQueryStringResponse {
|
|
2313
|
+
return {
|
|
2314
|
+
metadata: Metadata.fromPartial({})
|
|
2315
|
+
};
|
|
2316
|
+
}
|
|
2317
|
+
export const QueryDenomMetadataByQueryStringResponse = {
|
|
2318
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse",
|
|
2319
|
+
aminoType: "cosmos-sdk/QueryDenomMetadataByQueryStringResponse",
|
|
2320
|
+
is(o: any): o is QueryDenomMetadataByQueryStringResponse {
|
|
2321
|
+
return o && (o.$typeUrl === QueryDenomMetadataByQueryStringResponse.typeUrl || Metadata.is(o.metadata));
|
|
2322
|
+
},
|
|
2323
|
+
isAmino(o: any): o is QueryDenomMetadataByQueryStringResponseAmino {
|
|
2324
|
+
return o && (o.$typeUrl === QueryDenomMetadataByQueryStringResponse.typeUrl || Metadata.isAmino(o.metadata));
|
|
2325
|
+
},
|
|
2326
|
+
encode(message: QueryDenomMetadataByQueryStringResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2327
|
+
if (message.metadata !== undefined) {
|
|
2328
|
+
Metadata.encode(message.metadata, writer.uint32(10).fork()).ldelim();
|
|
2329
|
+
}
|
|
2330
|
+
return writer;
|
|
2331
|
+
},
|
|
2332
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomMetadataByQueryStringResponse {
|
|
2333
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2334
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2335
|
+
const message = createBaseQueryDenomMetadataByQueryStringResponse();
|
|
2336
|
+
while (reader.pos < end) {
|
|
2337
|
+
const tag = reader.uint32();
|
|
2338
|
+
switch (tag >>> 3) {
|
|
2339
|
+
case 1:
|
|
2340
|
+
message.metadata = Metadata.decode(reader, reader.uint32());
|
|
2341
|
+
break;
|
|
2342
|
+
default:
|
|
2343
|
+
reader.skipType(tag & 7);
|
|
2344
|
+
break;
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
return message;
|
|
2348
|
+
},
|
|
2349
|
+
fromPartial(object: DeepPartial<QueryDenomMetadataByQueryStringResponse>): QueryDenomMetadataByQueryStringResponse {
|
|
2350
|
+
const message = createBaseQueryDenomMetadataByQueryStringResponse();
|
|
2351
|
+
message.metadata = object.metadata !== undefined && object.metadata !== null ? Metadata.fromPartial(object.metadata) : undefined;
|
|
2352
|
+
return message;
|
|
2353
|
+
},
|
|
2354
|
+
fromAmino(object: QueryDenomMetadataByQueryStringResponseAmino): QueryDenomMetadataByQueryStringResponse {
|
|
2355
|
+
const message = createBaseQueryDenomMetadataByQueryStringResponse();
|
|
2356
|
+
if (object.metadata !== undefined && object.metadata !== null) {
|
|
2357
|
+
message.metadata = Metadata.fromAmino(object.metadata);
|
|
2358
|
+
}
|
|
2359
|
+
return message;
|
|
2360
|
+
},
|
|
2361
|
+
toAmino(message: QueryDenomMetadataByQueryStringResponse): QueryDenomMetadataByQueryStringResponseAmino {
|
|
2362
|
+
const obj: any = {};
|
|
2363
|
+
obj.metadata = message.metadata ? Metadata.toAmino(message.metadata) : Metadata.toAmino(Metadata.fromPartial({}));
|
|
2364
|
+
return obj;
|
|
2365
|
+
},
|
|
2366
|
+
fromAminoMsg(object: QueryDenomMetadataByQueryStringResponseAminoMsg): QueryDenomMetadataByQueryStringResponse {
|
|
2367
|
+
return QueryDenomMetadataByQueryStringResponse.fromAmino(object.value);
|
|
2368
|
+
},
|
|
2369
|
+
toAminoMsg(message: QueryDenomMetadataByQueryStringResponse): QueryDenomMetadataByQueryStringResponseAminoMsg {
|
|
2370
|
+
return {
|
|
2371
|
+
type: "cosmos-sdk/QueryDenomMetadataByQueryStringResponse",
|
|
2372
|
+
value: QueryDenomMetadataByQueryStringResponse.toAmino(message)
|
|
2373
|
+
};
|
|
2374
|
+
},
|
|
2375
|
+
fromProtoMsg(message: QueryDenomMetadataByQueryStringResponseProtoMsg): QueryDenomMetadataByQueryStringResponse {
|
|
2376
|
+
return QueryDenomMetadataByQueryStringResponse.decode(message.value);
|
|
2377
|
+
},
|
|
2378
|
+
toProto(message: QueryDenomMetadataByQueryStringResponse): Uint8Array {
|
|
2379
|
+
return QueryDenomMetadataByQueryStringResponse.encode(message).finish();
|
|
2380
|
+
},
|
|
2381
|
+
toProtoMsg(message: QueryDenomMetadataByQueryStringResponse): QueryDenomMetadataByQueryStringResponseProtoMsg {
|
|
2382
|
+
return {
|
|
2383
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse",
|
|
2384
|
+
value: QueryDenomMetadataByQueryStringResponse.encode(message).finish()
|
|
2385
|
+
};
|
|
2386
|
+
}
|
|
2387
|
+
};
|
|
2388
|
+
GlobalDecoderRegistry.register(QueryDenomMetadataByQueryStringResponse.typeUrl, QueryDenomMetadataByQueryStringResponse);
|
|
2389
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomMetadataByQueryStringResponse.aminoType, QueryDenomMetadataByQueryStringResponse.typeUrl);
|
|
2390
|
+
function createBaseQueryDenomOwnersRequest(): QueryDenomOwnersRequest {
|
|
2391
|
+
return {
|
|
2392
|
+
denom: "",
|
|
2393
|
+
pagination: undefined
|
|
2394
|
+
};
|
|
2395
|
+
}
|
|
2396
|
+
export const QueryDenomOwnersRequest = {
|
|
2397
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersRequest",
|
|
2398
|
+
aminoType: "cosmos-sdk/QueryDenomOwnersRequest",
|
|
2399
|
+
is(o: any): o is QueryDenomOwnersRequest {
|
|
2400
|
+
return o && (o.$typeUrl === QueryDenomOwnersRequest.typeUrl || typeof o.denom === "string");
|
|
2401
|
+
},
|
|
2402
|
+
isAmino(o: any): o is QueryDenomOwnersRequestAmino {
|
|
2403
|
+
return o && (o.$typeUrl === QueryDenomOwnersRequest.typeUrl || typeof o.denom === "string");
|
|
2404
|
+
},
|
|
2405
|
+
encode(message: QueryDenomOwnersRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2406
|
+
if (message.denom !== "") {
|
|
2407
|
+
writer.uint32(10).string(message.denom);
|
|
2408
|
+
}
|
|
2409
|
+
if (message.pagination !== undefined) {
|
|
2410
|
+
PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
2411
|
+
}
|
|
2412
|
+
return writer;
|
|
2413
|
+
},
|
|
2414
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomOwnersRequest {
|
|
2415
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2416
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2417
|
+
const message = createBaseQueryDenomOwnersRequest();
|
|
2418
|
+
while (reader.pos < end) {
|
|
2419
|
+
const tag = reader.uint32();
|
|
2420
|
+
switch (tag >>> 3) {
|
|
2421
|
+
case 1:
|
|
2422
|
+
message.denom = reader.string();
|
|
2423
|
+
break;
|
|
2424
|
+
case 2:
|
|
2425
|
+
message.pagination = PageRequest.decode(reader, reader.uint32());
|
|
2426
|
+
break;
|
|
2427
|
+
default:
|
|
2428
|
+
reader.skipType(tag & 7);
|
|
2429
|
+
break;
|
|
2430
|
+
}
|
|
2431
|
+
}
|
|
2432
|
+
return message;
|
|
2433
|
+
},
|
|
2434
|
+
fromPartial(object: DeepPartial<QueryDenomOwnersRequest>): QueryDenomOwnersRequest {
|
|
2435
|
+
const message = createBaseQueryDenomOwnersRequest();
|
|
2436
|
+
message.denom = object.denom ?? "";
|
|
2437
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageRequest.fromPartial(object.pagination) : undefined;
|
|
2438
|
+
return message;
|
|
2439
|
+
},
|
|
2440
|
+
fromAmino(object: QueryDenomOwnersRequestAmino): QueryDenomOwnersRequest {
|
|
2441
|
+
const message = createBaseQueryDenomOwnersRequest();
|
|
2442
|
+
if (object.denom !== undefined && object.denom !== null) {
|
|
2443
|
+
message.denom = object.denom;
|
|
2444
|
+
}
|
|
2445
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
2446
|
+
message.pagination = PageRequest.fromAmino(object.pagination);
|
|
2447
|
+
}
|
|
2448
|
+
return message;
|
|
2449
|
+
},
|
|
2450
|
+
toAmino(message: QueryDenomOwnersRequest): QueryDenomOwnersRequestAmino {
|
|
2451
|
+
const obj: any = {};
|
|
2452
|
+
obj.denom = message.denom === "" ? undefined : message.denom;
|
|
2453
|
+
obj.pagination = message.pagination ? PageRequest.toAmino(message.pagination) : undefined;
|
|
2454
|
+
return obj;
|
|
2455
|
+
},
|
|
2456
|
+
fromAminoMsg(object: QueryDenomOwnersRequestAminoMsg): QueryDenomOwnersRequest {
|
|
2457
|
+
return QueryDenomOwnersRequest.fromAmino(object.value);
|
|
2458
|
+
},
|
|
2459
|
+
toAminoMsg(message: QueryDenomOwnersRequest): QueryDenomOwnersRequestAminoMsg {
|
|
2460
|
+
return {
|
|
2461
|
+
type: "cosmos-sdk/QueryDenomOwnersRequest",
|
|
2462
|
+
value: QueryDenomOwnersRequest.toAmino(message)
|
|
2463
|
+
};
|
|
2464
|
+
},
|
|
2465
|
+
fromProtoMsg(message: QueryDenomOwnersRequestProtoMsg): QueryDenomOwnersRequest {
|
|
2466
|
+
return QueryDenomOwnersRequest.decode(message.value);
|
|
2467
|
+
},
|
|
2468
|
+
toProto(message: QueryDenomOwnersRequest): Uint8Array {
|
|
2469
|
+
return QueryDenomOwnersRequest.encode(message).finish();
|
|
2470
|
+
},
|
|
2471
|
+
toProtoMsg(message: QueryDenomOwnersRequest): QueryDenomOwnersRequestProtoMsg {
|
|
2472
|
+
return {
|
|
2473
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersRequest",
|
|
2474
|
+
value: QueryDenomOwnersRequest.encode(message).finish()
|
|
2475
|
+
};
|
|
2476
|
+
}
|
|
2477
|
+
};
|
|
2478
|
+
GlobalDecoderRegistry.register(QueryDenomOwnersRequest.typeUrl, QueryDenomOwnersRequest);
|
|
2479
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomOwnersRequest.aminoType, QueryDenomOwnersRequest.typeUrl);
|
|
2480
|
+
function createBaseDenomOwner(): DenomOwner {
|
|
2481
|
+
return {
|
|
2482
|
+
address: "",
|
|
2483
|
+
balance: Coin.fromPartial({})
|
|
2484
|
+
};
|
|
2485
|
+
}
|
|
2486
|
+
export const DenomOwner = {
|
|
2487
|
+
typeUrl: "/cosmos.bank.v1beta1.DenomOwner",
|
|
2488
|
+
aminoType: "cosmos-sdk/DenomOwner",
|
|
2489
|
+
is(o: any): o is DenomOwner {
|
|
2490
|
+
return o && (o.$typeUrl === DenomOwner.typeUrl || typeof o.address === "string" && Coin.is(o.balance));
|
|
2491
|
+
},
|
|
2492
|
+
isAmino(o: any): o is DenomOwnerAmino {
|
|
2493
|
+
return o && (o.$typeUrl === DenomOwner.typeUrl || typeof o.address === "string" && Coin.isAmino(o.balance));
|
|
2494
|
+
},
|
|
2495
|
+
encode(message: DenomOwner, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2496
|
+
if (message.address !== "") {
|
|
2497
|
+
writer.uint32(10).string(message.address);
|
|
2498
|
+
}
|
|
2499
|
+
if (message.balance !== undefined) {
|
|
2500
|
+
Coin.encode(message.balance, writer.uint32(18).fork()).ldelim();
|
|
2501
|
+
}
|
|
2502
|
+
return writer;
|
|
2503
|
+
},
|
|
2504
|
+
decode(input: BinaryReader | Uint8Array, length?: number): DenomOwner {
|
|
2505
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2506
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2507
|
+
const message = createBaseDenomOwner();
|
|
2508
|
+
while (reader.pos < end) {
|
|
2509
|
+
const tag = reader.uint32();
|
|
2510
|
+
switch (tag >>> 3) {
|
|
2511
|
+
case 1:
|
|
2512
|
+
message.address = reader.string();
|
|
2513
|
+
break;
|
|
2514
|
+
case 2:
|
|
2515
|
+
message.balance = Coin.decode(reader, reader.uint32());
|
|
2516
|
+
break;
|
|
2517
|
+
default:
|
|
2518
|
+
reader.skipType(tag & 7);
|
|
2519
|
+
break;
|
|
2520
|
+
}
|
|
2521
|
+
}
|
|
2522
|
+
return message;
|
|
2523
|
+
},
|
|
2524
|
+
fromPartial(object: DeepPartial<DenomOwner>): DenomOwner {
|
|
2525
|
+
const message = createBaseDenomOwner();
|
|
2526
|
+
message.address = object.address ?? "";
|
|
2527
|
+
message.balance = object.balance !== undefined && object.balance !== null ? Coin.fromPartial(object.balance) : undefined;
|
|
2528
|
+
return message;
|
|
2529
|
+
},
|
|
2530
|
+
fromAmino(object: DenomOwnerAmino): DenomOwner {
|
|
2531
|
+
const message = createBaseDenomOwner();
|
|
2532
|
+
if (object.address !== undefined && object.address !== null) {
|
|
2533
|
+
message.address = object.address;
|
|
2534
|
+
}
|
|
2535
|
+
if (object.balance !== undefined && object.balance !== null) {
|
|
2536
|
+
message.balance = Coin.fromAmino(object.balance);
|
|
2537
|
+
}
|
|
2538
|
+
return message;
|
|
2539
|
+
},
|
|
2540
|
+
toAmino(message: DenomOwner): DenomOwnerAmino {
|
|
2541
|
+
const obj: any = {};
|
|
2542
|
+
obj.address = message.address === "" ? undefined : message.address;
|
|
2543
|
+
obj.balance = message.balance ? Coin.toAmino(message.balance) : Coin.toAmino(Coin.fromPartial({}));
|
|
2544
|
+
return obj;
|
|
2545
|
+
},
|
|
2546
|
+
fromAminoMsg(object: DenomOwnerAminoMsg): DenomOwner {
|
|
2547
|
+
return DenomOwner.fromAmino(object.value);
|
|
2548
|
+
},
|
|
2549
|
+
toAminoMsg(message: DenomOwner): DenomOwnerAminoMsg {
|
|
2550
|
+
return {
|
|
2551
|
+
type: "cosmos-sdk/DenomOwner",
|
|
2552
|
+
value: DenomOwner.toAmino(message)
|
|
2553
|
+
};
|
|
2554
|
+
},
|
|
2555
|
+
fromProtoMsg(message: DenomOwnerProtoMsg): DenomOwner {
|
|
2556
|
+
return DenomOwner.decode(message.value);
|
|
2557
|
+
},
|
|
2558
|
+
toProto(message: DenomOwner): Uint8Array {
|
|
2559
|
+
return DenomOwner.encode(message).finish();
|
|
2560
|
+
},
|
|
2561
|
+
toProtoMsg(message: DenomOwner): DenomOwnerProtoMsg {
|
|
2562
|
+
return {
|
|
2563
|
+
typeUrl: "/cosmos.bank.v1beta1.DenomOwner",
|
|
2564
|
+
value: DenomOwner.encode(message).finish()
|
|
2565
|
+
};
|
|
2566
|
+
}
|
|
2567
|
+
};
|
|
2568
|
+
GlobalDecoderRegistry.register(DenomOwner.typeUrl, DenomOwner);
|
|
2569
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(DenomOwner.aminoType, DenomOwner.typeUrl);
|
|
2570
|
+
function createBaseQueryDenomOwnersResponse(): QueryDenomOwnersResponse {
|
|
2571
|
+
return {
|
|
2572
|
+
denomOwners: [],
|
|
2573
|
+
pagination: undefined
|
|
2574
|
+
};
|
|
2575
|
+
}
|
|
2576
|
+
export const QueryDenomOwnersResponse = {
|
|
2577
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersResponse",
|
|
2578
|
+
aminoType: "cosmos-sdk/QueryDenomOwnersResponse",
|
|
2579
|
+
is(o: any): o is QueryDenomOwnersResponse {
|
|
2580
|
+
return o && (o.$typeUrl === QueryDenomOwnersResponse.typeUrl || Array.isArray(o.denomOwners) && (!o.denomOwners.length || DenomOwner.is(o.denomOwners[0])));
|
|
2581
|
+
},
|
|
2582
|
+
isAmino(o: any): o is QueryDenomOwnersResponseAmino {
|
|
2583
|
+
return o && (o.$typeUrl === QueryDenomOwnersResponse.typeUrl || Array.isArray(o.denom_owners) && (!o.denom_owners.length || DenomOwner.isAmino(o.denom_owners[0])));
|
|
2584
|
+
},
|
|
2585
|
+
encode(message: QueryDenomOwnersResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2586
|
+
for (const v of message.denomOwners) {
|
|
2587
|
+
DenomOwner.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
2588
|
+
}
|
|
2589
|
+
if (message.pagination !== undefined) {
|
|
2590
|
+
PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
2591
|
+
}
|
|
2592
|
+
return writer;
|
|
2593
|
+
},
|
|
2594
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomOwnersResponse {
|
|
2595
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2596
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2597
|
+
const message = createBaseQueryDenomOwnersResponse();
|
|
2598
|
+
while (reader.pos < end) {
|
|
2599
|
+
const tag = reader.uint32();
|
|
2600
|
+
switch (tag >>> 3) {
|
|
2601
|
+
case 1:
|
|
2602
|
+
message.denomOwners.push(DenomOwner.decode(reader, reader.uint32()));
|
|
2603
|
+
break;
|
|
2604
|
+
case 2:
|
|
2605
|
+
message.pagination = PageResponse.decode(reader, reader.uint32());
|
|
2606
|
+
break;
|
|
2607
|
+
default:
|
|
2608
|
+
reader.skipType(tag & 7);
|
|
2609
|
+
break;
|
|
2610
|
+
}
|
|
2611
|
+
}
|
|
2612
|
+
return message;
|
|
2613
|
+
},
|
|
2614
|
+
fromPartial(object: DeepPartial<QueryDenomOwnersResponse>): QueryDenomOwnersResponse {
|
|
2615
|
+
const message = createBaseQueryDenomOwnersResponse();
|
|
2616
|
+
message.denomOwners = object.denomOwners?.map(e => DenomOwner.fromPartial(e)) || [];
|
|
2617
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageResponse.fromPartial(object.pagination) : undefined;
|
|
2618
|
+
return message;
|
|
2619
|
+
},
|
|
2620
|
+
fromAmino(object: QueryDenomOwnersResponseAmino): QueryDenomOwnersResponse {
|
|
2621
|
+
const message = createBaseQueryDenomOwnersResponse();
|
|
2622
|
+
message.denomOwners = object.denom_owners?.map(e => DenomOwner.fromAmino(e)) || [];
|
|
2623
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
2624
|
+
message.pagination = PageResponse.fromAmino(object.pagination);
|
|
2625
|
+
}
|
|
2626
|
+
return message;
|
|
2627
|
+
},
|
|
2628
|
+
toAmino(message: QueryDenomOwnersResponse): QueryDenomOwnersResponseAmino {
|
|
2629
|
+
const obj: any = {};
|
|
2630
|
+
if (message.denomOwners) {
|
|
2631
|
+
obj.denom_owners = message.denomOwners.map(e => e ? DenomOwner.toAmino(e) : undefined);
|
|
2632
|
+
} else {
|
|
2633
|
+
obj.denom_owners = message.denomOwners;
|
|
2634
|
+
}
|
|
2635
|
+
obj.pagination = message.pagination ? PageResponse.toAmino(message.pagination) : undefined;
|
|
2636
|
+
return obj;
|
|
2637
|
+
},
|
|
2638
|
+
fromAminoMsg(object: QueryDenomOwnersResponseAminoMsg): QueryDenomOwnersResponse {
|
|
2639
|
+
return QueryDenomOwnersResponse.fromAmino(object.value);
|
|
2640
|
+
},
|
|
2641
|
+
toAminoMsg(message: QueryDenomOwnersResponse): QueryDenomOwnersResponseAminoMsg {
|
|
2642
|
+
return {
|
|
2643
|
+
type: "cosmos-sdk/QueryDenomOwnersResponse",
|
|
2644
|
+
value: QueryDenomOwnersResponse.toAmino(message)
|
|
2645
|
+
};
|
|
2646
|
+
},
|
|
2647
|
+
fromProtoMsg(message: QueryDenomOwnersResponseProtoMsg): QueryDenomOwnersResponse {
|
|
2648
|
+
return QueryDenomOwnersResponse.decode(message.value);
|
|
2649
|
+
},
|
|
2650
|
+
toProto(message: QueryDenomOwnersResponse): Uint8Array {
|
|
2651
|
+
return QueryDenomOwnersResponse.encode(message).finish();
|
|
2652
|
+
},
|
|
2653
|
+
toProtoMsg(message: QueryDenomOwnersResponse): QueryDenomOwnersResponseProtoMsg {
|
|
2654
|
+
return {
|
|
2655
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersResponse",
|
|
2656
|
+
value: QueryDenomOwnersResponse.encode(message).finish()
|
|
2657
|
+
};
|
|
2658
|
+
}
|
|
2659
|
+
};
|
|
2660
|
+
GlobalDecoderRegistry.register(QueryDenomOwnersResponse.typeUrl, QueryDenomOwnersResponse);
|
|
2661
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomOwnersResponse.aminoType, QueryDenomOwnersResponse.typeUrl);
|
|
2662
|
+
function createBaseQueryDenomOwnersByQueryRequest(): QueryDenomOwnersByQueryRequest {
|
|
2663
|
+
return {
|
|
2664
|
+
denom: "",
|
|
2665
|
+
pagination: undefined
|
|
2666
|
+
};
|
|
2667
|
+
}
|
|
2668
|
+
export const QueryDenomOwnersByQueryRequest = {
|
|
2669
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest",
|
|
2670
|
+
aminoType: "cosmos-sdk/QueryDenomOwnersByQueryRequest",
|
|
2671
|
+
is(o: any): o is QueryDenomOwnersByQueryRequest {
|
|
2672
|
+
return o && (o.$typeUrl === QueryDenomOwnersByQueryRequest.typeUrl || typeof o.denom === "string");
|
|
2673
|
+
},
|
|
2674
|
+
isAmino(o: any): o is QueryDenomOwnersByQueryRequestAmino {
|
|
2675
|
+
return o && (o.$typeUrl === QueryDenomOwnersByQueryRequest.typeUrl || typeof o.denom === "string");
|
|
2676
|
+
},
|
|
2677
|
+
encode(message: QueryDenomOwnersByQueryRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2678
|
+
if (message.denom !== "") {
|
|
2679
|
+
writer.uint32(10).string(message.denom);
|
|
2680
|
+
}
|
|
2681
|
+
if (message.pagination !== undefined) {
|
|
2682
|
+
PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
2683
|
+
}
|
|
2684
|
+
return writer;
|
|
2685
|
+
},
|
|
2686
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomOwnersByQueryRequest {
|
|
2687
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2688
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2689
|
+
const message = createBaseQueryDenomOwnersByQueryRequest();
|
|
2690
|
+
while (reader.pos < end) {
|
|
2691
|
+
const tag = reader.uint32();
|
|
2692
|
+
switch (tag >>> 3) {
|
|
2693
|
+
case 1:
|
|
2694
|
+
message.denom = reader.string();
|
|
2695
|
+
break;
|
|
2696
|
+
case 2:
|
|
2697
|
+
message.pagination = PageRequest.decode(reader, reader.uint32());
|
|
2698
|
+
break;
|
|
2699
|
+
default:
|
|
2700
|
+
reader.skipType(tag & 7);
|
|
2701
|
+
break;
|
|
2702
|
+
}
|
|
2703
|
+
}
|
|
2704
|
+
return message;
|
|
2705
|
+
},
|
|
2706
|
+
fromPartial(object: DeepPartial<QueryDenomOwnersByQueryRequest>): QueryDenomOwnersByQueryRequest {
|
|
2707
|
+
const message = createBaseQueryDenomOwnersByQueryRequest();
|
|
2708
|
+
message.denom = object.denom ?? "";
|
|
2709
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageRequest.fromPartial(object.pagination) : undefined;
|
|
2710
|
+
return message;
|
|
2711
|
+
},
|
|
2712
|
+
fromAmino(object: QueryDenomOwnersByQueryRequestAmino): QueryDenomOwnersByQueryRequest {
|
|
2713
|
+
const message = createBaseQueryDenomOwnersByQueryRequest();
|
|
2714
|
+
if (object.denom !== undefined && object.denom !== null) {
|
|
2715
|
+
message.denom = object.denom;
|
|
2716
|
+
}
|
|
2717
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
2718
|
+
message.pagination = PageRequest.fromAmino(object.pagination);
|
|
2719
|
+
}
|
|
2720
|
+
return message;
|
|
2721
|
+
},
|
|
2722
|
+
toAmino(message: QueryDenomOwnersByQueryRequest): QueryDenomOwnersByQueryRequestAmino {
|
|
2723
|
+
const obj: any = {};
|
|
2724
|
+
obj.denom = message.denom === "" ? undefined : message.denom;
|
|
2725
|
+
obj.pagination = message.pagination ? PageRequest.toAmino(message.pagination) : undefined;
|
|
2726
|
+
return obj;
|
|
2727
|
+
},
|
|
2728
|
+
fromAminoMsg(object: QueryDenomOwnersByQueryRequestAminoMsg): QueryDenomOwnersByQueryRequest {
|
|
2729
|
+
return QueryDenomOwnersByQueryRequest.fromAmino(object.value);
|
|
2730
|
+
},
|
|
2731
|
+
toAminoMsg(message: QueryDenomOwnersByQueryRequest): QueryDenomOwnersByQueryRequestAminoMsg {
|
|
2732
|
+
return {
|
|
2733
|
+
type: "cosmos-sdk/QueryDenomOwnersByQueryRequest",
|
|
2734
|
+
value: QueryDenomOwnersByQueryRequest.toAmino(message)
|
|
2735
|
+
};
|
|
2736
|
+
},
|
|
2737
|
+
fromProtoMsg(message: QueryDenomOwnersByQueryRequestProtoMsg): QueryDenomOwnersByQueryRequest {
|
|
2738
|
+
return QueryDenomOwnersByQueryRequest.decode(message.value);
|
|
2739
|
+
},
|
|
2740
|
+
toProto(message: QueryDenomOwnersByQueryRequest): Uint8Array {
|
|
2741
|
+
return QueryDenomOwnersByQueryRequest.encode(message).finish();
|
|
2742
|
+
},
|
|
2743
|
+
toProtoMsg(message: QueryDenomOwnersByQueryRequest): QueryDenomOwnersByQueryRequestProtoMsg {
|
|
2744
|
+
return {
|
|
2745
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest",
|
|
2746
|
+
value: QueryDenomOwnersByQueryRequest.encode(message).finish()
|
|
2747
|
+
};
|
|
2748
|
+
}
|
|
2749
|
+
};
|
|
2750
|
+
GlobalDecoderRegistry.register(QueryDenomOwnersByQueryRequest.typeUrl, QueryDenomOwnersByQueryRequest);
|
|
2751
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomOwnersByQueryRequest.aminoType, QueryDenomOwnersByQueryRequest.typeUrl);
|
|
2752
|
+
function createBaseQueryDenomOwnersByQueryResponse(): QueryDenomOwnersByQueryResponse {
|
|
2753
|
+
return {
|
|
2754
|
+
denomOwners: [],
|
|
2755
|
+
pagination: undefined
|
|
2756
|
+
};
|
|
2757
|
+
}
|
|
2758
|
+
export const QueryDenomOwnersByQueryResponse = {
|
|
2759
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse",
|
|
2760
|
+
aminoType: "cosmos-sdk/QueryDenomOwnersByQueryResponse",
|
|
2761
|
+
is(o: any): o is QueryDenomOwnersByQueryResponse {
|
|
2762
|
+
return o && (o.$typeUrl === QueryDenomOwnersByQueryResponse.typeUrl || Array.isArray(o.denomOwners) && (!o.denomOwners.length || DenomOwner.is(o.denomOwners[0])));
|
|
2763
|
+
},
|
|
2764
|
+
isAmino(o: any): o is QueryDenomOwnersByQueryResponseAmino {
|
|
2765
|
+
return o && (o.$typeUrl === QueryDenomOwnersByQueryResponse.typeUrl || Array.isArray(o.denom_owners) && (!o.denom_owners.length || DenomOwner.isAmino(o.denom_owners[0])));
|
|
2766
|
+
},
|
|
2767
|
+
encode(message: QueryDenomOwnersByQueryResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2768
|
+
for (const v of message.denomOwners) {
|
|
2769
|
+
DenomOwner.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
2770
|
+
}
|
|
2771
|
+
if (message.pagination !== undefined) {
|
|
2772
|
+
PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
2773
|
+
}
|
|
2774
|
+
return writer;
|
|
2775
|
+
},
|
|
2776
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomOwnersByQueryResponse {
|
|
2777
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2778
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2779
|
+
const message = createBaseQueryDenomOwnersByQueryResponse();
|
|
2780
|
+
while (reader.pos < end) {
|
|
2781
|
+
const tag = reader.uint32();
|
|
2782
|
+
switch (tag >>> 3) {
|
|
2783
|
+
case 1:
|
|
2784
|
+
message.denomOwners.push(DenomOwner.decode(reader, reader.uint32()));
|
|
2785
|
+
break;
|
|
2786
|
+
case 2:
|
|
2787
|
+
message.pagination = PageResponse.decode(reader, reader.uint32());
|
|
2788
|
+
break;
|
|
2789
|
+
default:
|
|
2790
|
+
reader.skipType(tag & 7);
|
|
2791
|
+
break;
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
return message;
|
|
2795
|
+
},
|
|
2796
|
+
fromPartial(object: DeepPartial<QueryDenomOwnersByQueryResponse>): QueryDenomOwnersByQueryResponse {
|
|
2797
|
+
const message = createBaseQueryDenomOwnersByQueryResponse();
|
|
2798
|
+
message.denomOwners = object.denomOwners?.map(e => DenomOwner.fromPartial(e)) || [];
|
|
2799
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageResponse.fromPartial(object.pagination) : undefined;
|
|
2800
|
+
return message;
|
|
2801
|
+
},
|
|
2802
|
+
fromAmino(object: QueryDenomOwnersByQueryResponseAmino): QueryDenomOwnersByQueryResponse {
|
|
2803
|
+
const message = createBaseQueryDenomOwnersByQueryResponse();
|
|
2804
|
+
message.denomOwners = object.denom_owners?.map(e => DenomOwner.fromAmino(e)) || [];
|
|
2805
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
2806
|
+
message.pagination = PageResponse.fromAmino(object.pagination);
|
|
2807
|
+
}
|
|
2808
|
+
return message;
|
|
2809
|
+
},
|
|
2810
|
+
toAmino(message: QueryDenomOwnersByQueryResponse): QueryDenomOwnersByQueryResponseAmino {
|
|
2811
|
+
const obj: any = {};
|
|
2812
|
+
if (message.denomOwners) {
|
|
2813
|
+
obj.denom_owners = message.denomOwners.map(e => e ? DenomOwner.toAmino(e) : undefined);
|
|
2814
|
+
} else {
|
|
2815
|
+
obj.denom_owners = message.denomOwners;
|
|
2816
|
+
}
|
|
2817
|
+
obj.pagination = message.pagination ? PageResponse.toAmino(message.pagination) : undefined;
|
|
2818
|
+
return obj;
|
|
2819
|
+
},
|
|
2820
|
+
fromAminoMsg(object: QueryDenomOwnersByQueryResponseAminoMsg): QueryDenomOwnersByQueryResponse {
|
|
2821
|
+
return QueryDenomOwnersByQueryResponse.fromAmino(object.value);
|
|
2822
|
+
},
|
|
2823
|
+
toAminoMsg(message: QueryDenomOwnersByQueryResponse): QueryDenomOwnersByQueryResponseAminoMsg {
|
|
2824
|
+
return {
|
|
2825
|
+
type: "cosmos-sdk/QueryDenomOwnersByQueryResponse",
|
|
2826
|
+
value: QueryDenomOwnersByQueryResponse.toAmino(message)
|
|
2827
|
+
};
|
|
2828
|
+
},
|
|
2829
|
+
fromProtoMsg(message: QueryDenomOwnersByQueryResponseProtoMsg): QueryDenomOwnersByQueryResponse {
|
|
2830
|
+
return QueryDenomOwnersByQueryResponse.decode(message.value);
|
|
2831
|
+
},
|
|
2832
|
+
toProto(message: QueryDenomOwnersByQueryResponse): Uint8Array {
|
|
2833
|
+
return QueryDenomOwnersByQueryResponse.encode(message).finish();
|
|
2834
|
+
},
|
|
2835
|
+
toProtoMsg(message: QueryDenomOwnersByQueryResponse): QueryDenomOwnersByQueryResponseProtoMsg {
|
|
2836
|
+
return {
|
|
2837
|
+
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse",
|
|
2838
|
+
value: QueryDenomOwnersByQueryResponse.encode(message).finish()
|
|
2839
|
+
};
|
|
2840
|
+
}
|
|
2841
|
+
};
|
|
2842
|
+
GlobalDecoderRegistry.register(QueryDenomOwnersByQueryResponse.typeUrl, QueryDenomOwnersByQueryResponse);
|
|
2843
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QueryDenomOwnersByQueryResponse.aminoType, QueryDenomOwnersByQueryResponse.typeUrl);
|
|
2844
|
+
function createBaseQuerySendEnabledRequest(): QuerySendEnabledRequest {
|
|
2845
|
+
return {
|
|
2846
|
+
denoms: [],
|
|
2847
|
+
pagination: undefined
|
|
2848
|
+
};
|
|
2849
|
+
}
|
|
2850
|
+
export const QuerySendEnabledRequest = {
|
|
2851
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySendEnabledRequest",
|
|
2852
|
+
aminoType: "cosmos-sdk/QuerySendEnabledRequest",
|
|
2853
|
+
is(o: any): o is QuerySendEnabledRequest {
|
|
2854
|
+
return o && (o.$typeUrl === QuerySendEnabledRequest.typeUrl || Array.isArray(o.denoms) && (!o.denoms.length || typeof o.denoms[0] === "string"));
|
|
2855
|
+
},
|
|
2856
|
+
isAmino(o: any): o is QuerySendEnabledRequestAmino {
|
|
2857
|
+
return o && (o.$typeUrl === QuerySendEnabledRequest.typeUrl || Array.isArray(o.denoms) && (!o.denoms.length || typeof o.denoms[0] === "string"));
|
|
2858
|
+
},
|
|
2859
|
+
encode(message: QuerySendEnabledRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2860
|
+
for (const v of message.denoms) {
|
|
2861
|
+
writer.uint32(10).string(v!);
|
|
2862
|
+
}
|
|
2863
|
+
if (message.pagination !== undefined) {
|
|
2864
|
+
PageRequest.encode(message.pagination, writer.uint32(794).fork()).ldelim();
|
|
2865
|
+
}
|
|
2866
|
+
return writer;
|
|
2867
|
+
},
|
|
2868
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QuerySendEnabledRequest {
|
|
2869
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2870
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2871
|
+
const message = createBaseQuerySendEnabledRequest();
|
|
2872
|
+
while (reader.pos < end) {
|
|
2873
|
+
const tag = reader.uint32();
|
|
2874
|
+
switch (tag >>> 3) {
|
|
2875
|
+
case 1:
|
|
2876
|
+
message.denoms.push(reader.string());
|
|
2877
|
+
break;
|
|
2878
|
+
case 99:
|
|
2879
|
+
message.pagination = PageRequest.decode(reader, reader.uint32());
|
|
2880
|
+
break;
|
|
2881
|
+
default:
|
|
2882
|
+
reader.skipType(tag & 7);
|
|
2883
|
+
break;
|
|
2884
|
+
}
|
|
2885
|
+
}
|
|
2886
|
+
return message;
|
|
2887
|
+
},
|
|
2888
|
+
fromPartial(object: DeepPartial<QuerySendEnabledRequest>): QuerySendEnabledRequest {
|
|
2889
|
+
const message = createBaseQuerySendEnabledRequest();
|
|
2890
|
+
message.denoms = object.denoms?.map(e => e) || [];
|
|
2891
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageRequest.fromPartial(object.pagination) : undefined;
|
|
2892
|
+
return message;
|
|
2893
|
+
},
|
|
2894
|
+
fromAmino(object: QuerySendEnabledRequestAmino): QuerySendEnabledRequest {
|
|
2895
|
+
const message = createBaseQuerySendEnabledRequest();
|
|
2896
|
+
message.denoms = object.denoms?.map(e => e) || [];
|
|
2897
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
2898
|
+
message.pagination = PageRequest.fromAmino(object.pagination);
|
|
2899
|
+
}
|
|
2900
|
+
return message;
|
|
2901
|
+
},
|
|
2902
|
+
toAmino(message: QuerySendEnabledRequest): QuerySendEnabledRequestAmino {
|
|
2903
|
+
const obj: any = {};
|
|
2904
|
+
if (message.denoms) {
|
|
2905
|
+
obj.denoms = message.denoms.map(e => e);
|
|
2906
|
+
} else {
|
|
2907
|
+
obj.denoms = message.denoms;
|
|
2908
|
+
}
|
|
2909
|
+
obj.pagination = message.pagination ? PageRequest.toAmino(message.pagination) : undefined;
|
|
2910
|
+
return obj;
|
|
2911
|
+
},
|
|
2912
|
+
fromAminoMsg(object: QuerySendEnabledRequestAminoMsg): QuerySendEnabledRequest {
|
|
2913
|
+
return QuerySendEnabledRequest.fromAmino(object.value);
|
|
2914
|
+
},
|
|
2915
|
+
toAminoMsg(message: QuerySendEnabledRequest): QuerySendEnabledRequestAminoMsg {
|
|
2916
|
+
return {
|
|
2917
|
+
type: "cosmos-sdk/QuerySendEnabledRequest",
|
|
2918
|
+
value: QuerySendEnabledRequest.toAmino(message)
|
|
2919
|
+
};
|
|
2920
|
+
},
|
|
2921
|
+
fromProtoMsg(message: QuerySendEnabledRequestProtoMsg): QuerySendEnabledRequest {
|
|
2922
|
+
return QuerySendEnabledRequest.decode(message.value);
|
|
2923
|
+
},
|
|
2924
|
+
toProto(message: QuerySendEnabledRequest): Uint8Array {
|
|
2925
|
+
return QuerySendEnabledRequest.encode(message).finish();
|
|
2926
|
+
},
|
|
2927
|
+
toProtoMsg(message: QuerySendEnabledRequest): QuerySendEnabledRequestProtoMsg {
|
|
2928
|
+
return {
|
|
2929
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySendEnabledRequest",
|
|
2930
|
+
value: QuerySendEnabledRequest.encode(message).finish()
|
|
2931
|
+
};
|
|
2932
|
+
}
|
|
2933
|
+
};
|
|
2934
|
+
GlobalDecoderRegistry.register(QuerySendEnabledRequest.typeUrl, QuerySendEnabledRequest);
|
|
2935
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QuerySendEnabledRequest.aminoType, QuerySendEnabledRequest.typeUrl);
|
|
2936
|
+
function createBaseQuerySendEnabledResponse(): QuerySendEnabledResponse {
|
|
2937
|
+
return {
|
|
2938
|
+
sendEnabled: [],
|
|
2939
|
+
pagination: undefined
|
|
2940
|
+
};
|
|
2941
|
+
}
|
|
2942
|
+
export const QuerySendEnabledResponse = {
|
|
2943
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySendEnabledResponse",
|
|
2944
|
+
aminoType: "cosmos-sdk/QuerySendEnabledResponse",
|
|
2945
|
+
is(o: any): o is QuerySendEnabledResponse {
|
|
2946
|
+
return o && (o.$typeUrl === QuerySendEnabledResponse.typeUrl || Array.isArray(o.sendEnabled) && (!o.sendEnabled.length || SendEnabled.is(o.sendEnabled[0])));
|
|
2947
|
+
},
|
|
2948
|
+
isAmino(o: any): o is QuerySendEnabledResponseAmino {
|
|
2949
|
+
return o && (o.$typeUrl === QuerySendEnabledResponse.typeUrl || Array.isArray(o.send_enabled) && (!o.send_enabled.length || SendEnabled.isAmino(o.send_enabled[0])));
|
|
2950
|
+
},
|
|
2951
|
+
encode(message: QuerySendEnabledResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
2952
|
+
for (const v of message.sendEnabled) {
|
|
2953
|
+
SendEnabled.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
2954
|
+
}
|
|
2955
|
+
if (message.pagination !== undefined) {
|
|
2956
|
+
PageResponse.encode(message.pagination, writer.uint32(794).fork()).ldelim();
|
|
2957
|
+
}
|
|
2958
|
+
return writer;
|
|
2959
|
+
},
|
|
2960
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QuerySendEnabledResponse {
|
|
2961
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2962
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2963
|
+
const message = createBaseQuerySendEnabledResponse();
|
|
2964
|
+
while (reader.pos < end) {
|
|
2965
|
+
const tag = reader.uint32();
|
|
2966
|
+
switch (tag >>> 3) {
|
|
2967
|
+
case 1:
|
|
2968
|
+
message.sendEnabled.push(SendEnabled.decode(reader, reader.uint32()));
|
|
2969
|
+
break;
|
|
2970
|
+
case 99:
|
|
2971
|
+
message.pagination = PageResponse.decode(reader, reader.uint32());
|
|
2972
|
+
break;
|
|
2973
|
+
default:
|
|
2974
|
+
reader.skipType(tag & 7);
|
|
2975
|
+
break;
|
|
2976
|
+
}
|
|
2977
|
+
}
|
|
2978
|
+
return message;
|
|
2979
|
+
},
|
|
2980
|
+
fromPartial(object: DeepPartial<QuerySendEnabledResponse>): QuerySendEnabledResponse {
|
|
2981
|
+
const message = createBaseQuerySendEnabledResponse();
|
|
2982
|
+
message.sendEnabled = object.sendEnabled?.map(e => SendEnabled.fromPartial(e)) || [];
|
|
2983
|
+
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageResponse.fromPartial(object.pagination) : undefined;
|
|
2984
|
+
return message;
|
|
2985
|
+
},
|
|
2986
|
+
fromAmino(object: QuerySendEnabledResponseAmino): QuerySendEnabledResponse {
|
|
2987
|
+
const message = createBaseQuerySendEnabledResponse();
|
|
2988
|
+
message.sendEnabled = object.send_enabled?.map(e => SendEnabled.fromAmino(e)) || [];
|
|
2989
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
2990
|
+
message.pagination = PageResponse.fromAmino(object.pagination);
|
|
2991
|
+
}
|
|
2992
|
+
return message;
|
|
2993
|
+
},
|
|
2994
|
+
toAmino(message: QuerySendEnabledResponse): QuerySendEnabledResponseAmino {
|
|
2995
|
+
const obj: any = {};
|
|
2996
|
+
if (message.sendEnabled) {
|
|
2997
|
+
obj.send_enabled = message.sendEnabled.map(e => e ? SendEnabled.toAmino(e) : undefined);
|
|
2998
|
+
} else {
|
|
2999
|
+
obj.send_enabled = message.sendEnabled;
|
|
3000
|
+
}
|
|
3001
|
+
obj.pagination = message.pagination ? PageResponse.toAmino(message.pagination) : undefined;
|
|
3002
|
+
return obj;
|
|
3003
|
+
},
|
|
3004
|
+
fromAminoMsg(object: QuerySendEnabledResponseAminoMsg): QuerySendEnabledResponse {
|
|
3005
|
+
return QuerySendEnabledResponse.fromAmino(object.value);
|
|
3006
|
+
},
|
|
3007
|
+
toAminoMsg(message: QuerySendEnabledResponse): QuerySendEnabledResponseAminoMsg {
|
|
3008
|
+
return {
|
|
3009
|
+
type: "cosmos-sdk/QuerySendEnabledResponse",
|
|
3010
|
+
value: QuerySendEnabledResponse.toAmino(message)
|
|
3011
|
+
};
|
|
3012
|
+
},
|
|
3013
|
+
fromProtoMsg(message: QuerySendEnabledResponseProtoMsg): QuerySendEnabledResponse {
|
|
3014
|
+
return QuerySendEnabledResponse.decode(message.value);
|
|
3015
|
+
},
|
|
3016
|
+
toProto(message: QuerySendEnabledResponse): Uint8Array {
|
|
3017
|
+
return QuerySendEnabledResponse.encode(message).finish();
|
|
3018
|
+
},
|
|
3019
|
+
toProtoMsg(message: QuerySendEnabledResponse): QuerySendEnabledResponseProtoMsg {
|
|
3020
|
+
return {
|
|
3021
|
+
typeUrl: "/cosmos.bank.v1beta1.QuerySendEnabledResponse",
|
|
3022
|
+
value: QuerySendEnabledResponse.encode(message).finish()
|
|
3023
|
+
};
|
|
3024
|
+
}
|
|
3025
|
+
};
|
|
3026
|
+
GlobalDecoderRegistry.register(QuerySendEnabledResponse.typeUrl, QuerySendEnabledResponse);
|
|
3027
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(QuerySendEnabledResponse.aminoType, QuerySendEnabledResponse.typeUrl);
|