@xpla/xplajs 1.7.0-beta.0
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 +11 -0
- package/README.md +32 -0
- package/package.json +32 -0
- package/src/amino/amino.d.ts +1 -0
- package/src/amino/amino.js +2 -0
- 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.d.ts +177 -0
- package/src/cosmos/auth/v1beta1/auth.js +445 -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.d.ts +810 -0
- package/src/cosmos/auth/v1beta1/query.js +1561 -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.d.ts +12 -0
- package/src/cosmos/auth/v1beta1/query.rpc.func.js +85 -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.js +371 -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.d.ts +240 -0
- package/src/cosmos/authz/v1beta1/tx.js +516 -0
- package/src/cosmos/authz/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/authz/v1beta1/tx.rpc.func.d.ts +5 -0
- package/src/cosmos/authz/v1beta1/tx.rpc.func.js +27 -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.d.ts +371 -0
- package/src/cosmos/bank/v1beta1/bank.js +726 -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.d.ts +1159 -0
- package/src/cosmos/bank/v1beta1/query.js +2317 -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.d.ts +15 -0
- package/src/cosmos/bank/v1beta1/query.rpc.func.js +109 -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.d.ts +342 -0
- package/src/cosmos/bank/v1beta1/tx.js +666 -0
- package/src/cosmos/bank/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/bank/v1beta1/tx.rpc.func.d.ts +6 -0
- package/src/cosmos/bank/v1beta1/tx.rpc.func.js +34 -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.d.ts +599 -0
- package/src/cosmos/base/abci/v1beta1/abci.js +1293 -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.d.ts +176 -0
- package/src/cosmos/base/query/v1beta1/pagination.js +222 -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.d.ts +166 -0
- package/src/cosmos/base/v1beta1/coin.js +341 -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.d.ts +84 -0
- package/src/cosmos/crypto/ed25519/keys.js +162 -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.d.ts +86 -0
- package/src/cosmos/crypto/multisig/v1beta1/multisig.js +177 -0
- package/src/cosmos/crypto/multisig/v1beta1/multisig.ts +225 -0
- package/src/cosmos/crypto/secp256k1/keys.d.ts +78 -0
- package/src/cosmos/crypto/secp256k1/keys.js +162 -0
- package/src/cosmos/crypto/secp256k1/keys.ts +203 -0
- package/src/cosmos/crypto/secp256r1/keys.d.ts +76 -0
- package/src/cosmos/crypto/secp256r1/keys.js +162 -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.d.ts +541 -0
- package/src/cosmos/distribution/v1beta1/distribution.js +1158 -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.d.ts +578 -0
- package/src/cosmos/distribution/v1beta1/tx.js +1145 -0
- package/src/cosmos/distribution/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +9 -0
- package/src/cosmos/distribution/v1beta1/tx.rpc.func.js +55 -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.js +471 -0
- package/src/cosmos/feegrant/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +5 -0
- package/src/cosmos/feegrant/v1beta1/tx.rpc.func.js +27 -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.d.ts +696 -0
- package/src/cosmos/gov/v1/gov.js +1363 -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.js +1277 -0
- package/src/cosmos/gov/v1/tx.registry.ts +3 -0
- package/src/cosmos/gov/v1/tx.rpc.func.d.ts +9 -0
- package/src/cosmos/gov/v1/tx.rpc.func.js +55 -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.js +1114 -0
- package/src/cosmos/gov/v1beta1/gov.ts +1425 -0
- package/src/cosmos/gov/v1beta1/query.d.ts +606 -0
- package/src/cosmos/gov/v1beta1/query.js +1409 -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.d.ts +10 -0
- package/src/cosmos/gov/v1beta1/query.rpc.func.js +69 -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.js +699 -0
- package/src/cosmos/gov/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/gov/v1beta1/tx.rpc.func.d.ts +6 -0
- package/src/cosmos/gov/v1beta1/tx.rpc.func.js +34 -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.d.ts +1140 -0
- package/src/cosmos/group/v1/tx.js +2567 -0
- package/src/cosmos/group/v1/tx.registry.ts +3 -0
- package/src/cosmos/group/v1/tx.rpc.func.d.ts +16 -0
- package/src/cosmos/group/v1/tx.rpc.func.js +104 -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.d.ts +799 -0
- package/src/cosmos/group/v1/types.js +1542 -0
- package/src/cosmos/group/v1/types.ts +2081 -0
- package/src/cosmos/ics23/v1/proofs.d.ts +730 -0
- package/src/cosmos/ics23/v1/proofs.js +1605 -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.d.ts +1 -0
- package/src/cosmos/msg/v1/msg.js +2 -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.d.ts +1 -0
- package/src/cosmos/query/v1/query.js +2 -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.d.ts +1124 -0
- package/src/cosmos/staking/v1beta1/query.js +2414 -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.d.ts +16 -0
- package/src/cosmos/staking/v1beta1/query.rpc.func.js +117 -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.d.ts +1024 -0
- package/src/cosmos/staking/v1beta1/staking.js +2371 -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.d.ts +590 -0
- package/src/cosmos/staking/v1beta1/tx.js +1290 -0
- package/src/cosmos/staking/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/staking/v1beta1/tx.rpc.func.d.ts +9 -0
- package/src/cosmos/staking/v1beta1/tx.rpc.func.js +55 -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.d.ts +270 -0
- package/src/cosmos/tx/signing/v1beta1/signing.js +570 -0
- package/src/cosmos/tx/signing/v1beta1/signing.ts +688 -0
- package/src/cosmos/tx/v1beta1/service.d.ts +916 -0
- package/src/cosmos/tx/v1beta1/service.js +1729 -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.d.ts +11 -0
- package/src/cosmos/tx/v1beta1/service.rpc.func.js +77 -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.d.ts +856 -0
- package/src/cosmos/tx/v1beta1/tx.js +1398 -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.d.ts +245 -0
- package/src/cosmos/upgrade/v1beta1/upgrade.js +416 -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.d.ts +256 -0
- package/src/cosmos/vesting/v1beta1/tx.js +553 -0
- package/src/cosmos/vesting/v1beta1/tx.registry.ts +3 -0
- package/src/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +5 -0
- package/src/cosmos/vesting/v1beta1/tx.rpc.func.js +27 -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.d.ts +256 -0
- package/src/cosmos/vesting/v1beta1/vesting.js +586 -0
- package/src/cosmos/vesting/v1beta1/vesting.ts +735 -0
- package/src/cosmos_proto/cosmos.d.ts +153 -0
- package/src/cosmos_proto/cosmos.js +234 -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.d.ts +80 -0
- package/src/ethermint/crypto/v1/ethsecp256k1/keys.js +146 -0
- package/src/ethermint/crypto/v1/ethsecp256k1/keys.ts +193 -0
- package/src/ethermint/evm/v1/events.d.ts +162 -0
- package/src/ethermint/evm/v1/events.js +384 -0
- package/src/ethermint/evm/v1/events.ts +485 -0
- package/src/ethermint/evm/v1/evm.d.ts +530 -0
- package/src/ethermint/evm/v1/evm.js +1184 -0
- package/src/ethermint/evm/v1/evm.ts +1590 -0
- package/src/ethermint/evm/v1/genesis.d.ts +87 -0
- package/src/ethermint/evm/v1/genesis.js +188 -0
- package/src/ethermint/evm/v1/genesis.ts +240 -0
- package/src/ethermint/evm/v1/query.d.ts +913 -0
- package/src/ethermint/evm/v1/query.js +1973 -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.d.ts +15 -0
- package/src/ethermint/evm/v1/query.rpc.func.js +102 -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.d.ts +452 -0
- package/src/ethermint/evm/v1/tx.js +1011 -0
- package/src/ethermint/evm/v1/tx.registry.ts +3 -0
- package/src/ethermint/evm/v1/tx.rpc.func.d.ts +4 -0
- package/src/ethermint/evm/v1/tx.rpc.func.js +20 -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.d.ts +70 -0
- package/src/ethermint/feemarket/v1/events.js +157 -0
- package/src/ethermint/feemarket/v1/events.ts +195 -0
- package/src/ethermint/feemarket/v1/feemarket.d.ts +78 -0
- package/src/ethermint/feemarket/v1/feemarket.js +155 -0
- package/src/ethermint/feemarket/v1/feemarket.ts +213 -0
- package/src/ethermint/feemarket/v1/genesis.d.ts +45 -0
- package/src/ethermint/feemarket/v1/genesis.js +88 -0
- package/src/ethermint/feemarket/v1/genesis.ts +114 -0
- package/src/ethermint/feemarket/v1/query.d.ts +195 -0
- package/src/ethermint/feemarket/v1/query.js +387 -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.d.ts +5 -0
- package/src/ethermint/feemarket/v1/query.rpc.func.js +29 -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.d.ts +81 -0
- package/src/ethermint/feemarket/v1/tx.js +153 -0
- package/src/ethermint/feemarket/v1/tx.registry.ts +3 -0
- package/src/ethermint/feemarket/v1/tx.rpc.func.d.ts +3 -0
- package/src/ethermint/feemarket/v1/tx.rpc.func.js +13 -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.d.ts +45 -0
- package/src/ethermint/types/v1/account.js +88 -0
- package/src/ethermint/types/v1/account.ts +114 -0
- package/src/ethermint/types/v1/dynamic_fee.d.ts +34 -0
- package/src/ethermint/types/v1/dynamic_fee.js +75 -0
- package/src/ethermint/types/v1/dynamic_fee.ts +91 -0
- package/src/ethermint/types/v1/indexer.d.ts +76 -0
- package/src/ethermint/types/v1/indexer.js +147 -0
- package/src/ethermint/types/v1/indexer.ts +205 -0
- package/src/ethermint/types/v1/web3.d.ts +66 -0
- package/src/ethermint/types/v1/web3.js +100 -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.d.ts +1 -0
- package/src/gogoproto/gogo.js +2 -0
- package/src/gogoproto/gogo.ts +1 -0
- package/src/google/api/annotations.d.ts +1 -0
- package/src/google/api/annotations.js +2 -0
- package/src/google/api/annotations.ts +1 -0
- package/src/google/api/http.d.ts +764 -0
- package/src/google/api/http.js +353 -0
- package/src/google/api/http.ts +1069 -0
- package/src/google/protobuf/any.d.ts +268 -0
- package/src/google/protobuf/any.js +81 -0
- package/src/google/protobuf/any.ts +331 -0
- package/src/google/protobuf/descriptor.d.ts +2919 -0
- package/src/google/protobuf/descriptor.js +5100 -0
- package/src/google/protobuf/descriptor.ts +7177 -0
- package/src/google/protobuf/duration.d.ts +162 -0
- package/src/google/protobuf/duration.js +81 -0
- package/src/google/protobuf/duration.ts +225 -0
- package/src/google/protobuf/timestamp.d.ts +222 -0
- package/src/google/protobuf/timestamp.js +78 -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.d.ts +112 -0
- package/src/ibc/applications/transfer/v1/transfer.js +185 -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.d.ts +202 -0
- package/src/ibc/applications/transfer/v1/tx.js +402 -0
- package/src/ibc/applications/transfer/v1/tx.registry.ts +3 -0
- package/src/ibc/applications/transfer/v1/tx.rpc.func.d.ts +4 -0
- package/src/ibc/applications/transfer/v1/tx.rpc.func.js +20 -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.d.ts +547 -0
- package/src/ibc/core/channel/v1/channel.js +1167 -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.d.ts +1490 -0
- package/src/ibc/core/channel/v1/tx.js +4027 -0
- package/src/ibc/core/channel/v1/tx.registry.ts +3 -0
- package/src/ibc/core/channel/v1/tx.rpc.func.d.ts +21 -0
- package/src/ibc/core/channel/v1/tx.rpc.func.js +139 -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.d.ts +139 -0
- package/src/ibc/core/channel/v1/upgrade.js +304 -0
- package/src/ibc/core/channel/v1/upgrade.ts +388 -0
- package/src/ibc/core/client/v1/client.d.ts +372 -0
- package/src/ibc/core/client/v1/client.js +675 -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.d.ts +587 -0
- package/src/ibc/core/client/v1/tx.js +1202 -0
- package/src/ibc/core/client/v1/tx.registry.ts +3 -0
- package/src/ibc/core/client/v1/tx.rpc.func.d.ts +9 -0
- package/src/ibc/core/client/v1/tx.rpc.func.js +55 -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.d.ts +165 -0
- package/src/ibc/core/commitment/v1/commitment.js +325 -0
- package/src/ibc/core/commitment/v1/commitment.ts +418 -0
- package/src/ibc/core/connection/v1/connection.d.ts +376 -0
- package/src/ibc/core/connection/v1/connection.js +781 -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.d.ts +457 -0
- package/src/ibc/core/connection/v1/tx.js +1087 -0
- package/src/ibc/core/connection/v1/tx.registry.ts +3 -0
- package/src/ibc/core/connection/v1/tx.rpc.func.d.ts +7 -0
- package/src/ibc/core/connection/v1/tx.rpc.func.js +41 -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.d.ts +1843 -0
- package/src/tendermint/abci/types.js +5233 -0
- package/src/tendermint/abci/types.ts +6283 -0
- package/src/tendermint/crypto/keys.d.ts +34 -0
- package/src/tendermint/crypto/keys.js +88 -0
- package/src/tendermint/crypto/keys.ts +103 -0
- package/src/tendermint/crypto/proof.d.ts +174 -0
- package/src/tendermint/crypto/proof.js +458 -0
- package/src/tendermint/crypto/proof.ts +555 -0
- package/src/tendermint/p2p/types.ts +507 -0
- package/src/tendermint/types/block.d.ts +38 -0
- package/src/tendermint/types/block.js +113 -0
- package/src/tendermint/types/block.ts +131 -0
- package/src/tendermint/types/evidence.d.ts +138 -0
- package/src/tendermint/types/evidence.js +403 -0
- package/src/tendermint/types/evidence.ts +476 -0
- package/src/tendermint/types/params.d.ts +323 -0
- package/src/tendermint/types/params.js +595 -0
- package/src/tendermint/types/params.ts +814 -0
- package/src/tendermint/types/types.d.ts +640 -0
- package/src/tendermint/types/types.js +1754 -0
- package/src/tendermint/types/types.ts +2157 -0
- package/src/tendermint/types/validator.d.ts +113 -0
- package/src/tendermint/types/validator.js +342 -0
- package/src/tendermint/types/validator.ts +389 -0
- package/src/tendermint/version/types.d.ts +82 -0
- package/src/tendermint/version/types.js +169 -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.d.ts +35 -0
- package/src/xpla/reward/v1beta1/genesis.js +76 -0
- package/src/xpla/reward/v1beta1/genesis.ts +92 -0
- package/src/xpla/reward/v1beta1/query.d.ts +136 -0
- package/src/xpla/reward/v1beta1/query.js +264 -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.d.ts +4 -0
- package/src/xpla/reward/v1beta1/query.rpc.func.js +21 -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.d.ts +42 -0
- package/src/xpla/reward/v1beta1/reward.js +131 -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.d.ts +158 -0
- package/src/xpla/reward/v1beta1/tx.js +304 -0
- package/src/xpla/reward/v1beta1/tx.registry.ts +3 -0
- package/src/xpla/reward/v1beta1/tx.rpc.func.d.ts +4 -0
- package/src/xpla/reward/v1beta1/tx.rpc.func.js +20 -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.d.ts +33 -0
- package/src/xpla/volunteer/v1beta1/genesis.js +79 -0
- package/src/xpla/volunteer/v1beta1/genesis.ts +92 -0
- package/src/xpla/volunteer/v1beta1/proposal.d.ts +183 -0
- package/src/xpla/volunteer/v1beta1/proposal.js +537 -0
- package/src/xpla/volunteer/v1beta1/proposal.ts +649 -0
- package/src/xpla/volunteer/v1beta1/query.d.ts +60 -0
- package/src/xpla/volunteer/v1beta1/query.js +135 -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.d.ts +3 -0
- package/src/xpla/volunteer/v1beta1/query.rpc.func.js +13 -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.d.ts +168 -0
- package/src/xpla/volunteer/v1beta1/tx.js +351 -0
- package/src/xpla/volunteer/v1beta1/tx.registry.ts +3 -0
- package/src/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +4 -0
- package/src/xpla/volunteer/v1beta1/tx.rpc.func.js +20 -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.d.ts +38 -0
- package/src/xpla/volunteer/v1beta1/volunteervalidator.js +87 -0
- package/src/xpla/volunteer/v1beta1/volunteervalidator.ts +107 -0
- package/tsconfig.esm.json +10 -0
- package/tsconfig.json +10 -0
|
@@ -0,0 +1,810 @@
|
|
|
1
|
+
import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../base/query/v1beta1/pagination";
|
|
2
|
+
import { Any, AnyProtoMsg, AnyAmino } from "../../../google/protobuf/any";
|
|
3
|
+
import { Params, ParamsAmino, BaseAccount, BaseAccountProtoMsg, BaseAccountAmino, ModuleAccount, ModuleAccountProtoMsg } from "./auth";
|
|
4
|
+
import { EthAccount, EthAccountProtoMsg } from "../../../ethermint/types/v1/account";
|
|
5
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
6
|
+
import { DeepPartial } from "../../../helpers";
|
|
7
|
+
/**
|
|
8
|
+
* QueryAccountsRequest is the request type for the Query/Accounts RPC method.
|
|
9
|
+
*
|
|
10
|
+
* Since: cosmos-sdk 0.43
|
|
11
|
+
*/
|
|
12
|
+
export interface QueryAccountsRequest {
|
|
13
|
+
/** pagination defines an optional pagination for the request. */
|
|
14
|
+
pagination?: PageRequest;
|
|
15
|
+
}
|
|
16
|
+
export interface QueryAccountsRequestProtoMsg {
|
|
17
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryAccountsRequest";
|
|
18
|
+
value: Uint8Array;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* QueryAccountsRequest is the request type for the Query/Accounts RPC method.
|
|
22
|
+
*
|
|
23
|
+
* Since: cosmos-sdk 0.43
|
|
24
|
+
*/
|
|
25
|
+
export interface QueryAccountsRequestAmino {
|
|
26
|
+
/** pagination defines an optional pagination for the request. */
|
|
27
|
+
pagination?: PageRequestAmino;
|
|
28
|
+
}
|
|
29
|
+
export interface QueryAccountsRequestAminoMsg {
|
|
30
|
+
type: "cosmos-sdk/QueryAccountsRequest";
|
|
31
|
+
value: QueryAccountsRequestAmino;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* QueryAccountsResponse is the response type for the Query/Accounts RPC method.
|
|
35
|
+
*
|
|
36
|
+
* Since: cosmos-sdk 0.43
|
|
37
|
+
*/
|
|
38
|
+
export interface QueryAccountsResponse {
|
|
39
|
+
/** accounts are the existing accounts */
|
|
40
|
+
accounts: (BaseAccount | EthAccount | Any)[] | Any[];
|
|
41
|
+
/** pagination defines the pagination in the response. */
|
|
42
|
+
pagination?: PageResponse;
|
|
43
|
+
}
|
|
44
|
+
export interface QueryAccountsResponseProtoMsg {
|
|
45
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryAccountsResponse";
|
|
46
|
+
value: Uint8Array;
|
|
47
|
+
}
|
|
48
|
+
export type QueryAccountsResponseEncoded = Omit<QueryAccountsResponse, "accounts"> & {
|
|
49
|
+
/** accounts are the existing accounts */ accounts: (BaseAccountProtoMsg | EthAccountProtoMsg | AnyProtoMsg)[];
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* QueryAccountsResponse is the response type for the Query/Accounts RPC method.
|
|
53
|
+
*
|
|
54
|
+
* Since: cosmos-sdk 0.43
|
|
55
|
+
*/
|
|
56
|
+
export interface QueryAccountsResponseAmino {
|
|
57
|
+
/** accounts are the existing accounts */
|
|
58
|
+
accounts: AnyAmino[];
|
|
59
|
+
/** pagination defines the pagination in the response. */
|
|
60
|
+
pagination?: PageResponseAmino;
|
|
61
|
+
}
|
|
62
|
+
export interface QueryAccountsResponseAminoMsg {
|
|
63
|
+
type: "cosmos-sdk/QueryAccountsResponse";
|
|
64
|
+
value: QueryAccountsResponseAmino;
|
|
65
|
+
}
|
|
66
|
+
/** QueryAccountRequest is the request type for the Query/Account RPC method. */
|
|
67
|
+
export interface QueryAccountRequest {
|
|
68
|
+
/** address defines the address to query for. */
|
|
69
|
+
address: string;
|
|
70
|
+
}
|
|
71
|
+
export interface QueryAccountRequestProtoMsg {
|
|
72
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryAccountRequest";
|
|
73
|
+
value: Uint8Array;
|
|
74
|
+
}
|
|
75
|
+
/** QueryAccountRequest is the request type for the Query/Account RPC method. */
|
|
76
|
+
export interface QueryAccountRequestAmino {
|
|
77
|
+
/** address defines the address to query for. */
|
|
78
|
+
address: string;
|
|
79
|
+
}
|
|
80
|
+
export interface QueryAccountRequestAminoMsg {
|
|
81
|
+
type: "cosmos-sdk/QueryAccountRequest";
|
|
82
|
+
value: QueryAccountRequestAmino;
|
|
83
|
+
}
|
|
84
|
+
/** QueryAccountResponse is the response type for the Query/Account RPC method. */
|
|
85
|
+
export interface QueryAccountResponse {
|
|
86
|
+
/** account defines the account of the corresponding address. */
|
|
87
|
+
account?: BaseAccount | EthAccount | Any | undefined;
|
|
88
|
+
}
|
|
89
|
+
export interface QueryAccountResponseProtoMsg {
|
|
90
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryAccountResponse";
|
|
91
|
+
value: Uint8Array;
|
|
92
|
+
}
|
|
93
|
+
export type QueryAccountResponseEncoded = Omit<QueryAccountResponse, "account"> & {
|
|
94
|
+
/** account defines the account of the corresponding address. */ account?: BaseAccountProtoMsg | EthAccountProtoMsg | AnyProtoMsg | undefined;
|
|
95
|
+
};
|
|
96
|
+
/** QueryAccountResponse is the response type for the Query/Account RPC method. */
|
|
97
|
+
export interface QueryAccountResponseAmino {
|
|
98
|
+
/** account defines the account of the corresponding address. */
|
|
99
|
+
account?: AnyAmino;
|
|
100
|
+
}
|
|
101
|
+
export interface QueryAccountResponseAminoMsg {
|
|
102
|
+
type: "cosmos-sdk/QueryAccountResponse";
|
|
103
|
+
value: QueryAccountResponseAmino;
|
|
104
|
+
}
|
|
105
|
+
/** QueryParamsRequest is the request type for the Query/Params RPC method. */
|
|
106
|
+
export interface QueryParamsRequest {
|
|
107
|
+
}
|
|
108
|
+
export interface QueryParamsRequestProtoMsg {
|
|
109
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryParamsRequest";
|
|
110
|
+
value: Uint8Array;
|
|
111
|
+
}
|
|
112
|
+
/** QueryParamsRequest is the request type for the Query/Params RPC method. */
|
|
113
|
+
export interface QueryParamsRequestAmino {
|
|
114
|
+
}
|
|
115
|
+
export interface QueryParamsRequestAminoMsg {
|
|
116
|
+
type: "cosmos-sdk/QueryParamsRequest";
|
|
117
|
+
value: QueryParamsRequestAmino;
|
|
118
|
+
}
|
|
119
|
+
/** QueryParamsResponse is the response type for the Query/Params RPC method. */
|
|
120
|
+
export interface QueryParamsResponse {
|
|
121
|
+
/** params defines the parameters of the module. */
|
|
122
|
+
params: Params;
|
|
123
|
+
}
|
|
124
|
+
export interface QueryParamsResponseProtoMsg {
|
|
125
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryParamsResponse";
|
|
126
|
+
value: Uint8Array;
|
|
127
|
+
}
|
|
128
|
+
/** QueryParamsResponse is the response type for the Query/Params RPC method. */
|
|
129
|
+
export interface QueryParamsResponseAmino {
|
|
130
|
+
/** params defines the parameters of the module. */
|
|
131
|
+
params: ParamsAmino;
|
|
132
|
+
}
|
|
133
|
+
export interface QueryParamsResponseAminoMsg {
|
|
134
|
+
type: "cosmos-sdk/QueryParamsResponse";
|
|
135
|
+
value: QueryParamsResponseAmino;
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* QueryModuleAccountsRequest is the request type for the Query/ModuleAccounts RPC method.
|
|
139
|
+
*
|
|
140
|
+
* Since: cosmos-sdk 0.46
|
|
141
|
+
*/
|
|
142
|
+
export interface QueryModuleAccountsRequest {
|
|
143
|
+
}
|
|
144
|
+
export interface QueryModuleAccountsRequestProtoMsg {
|
|
145
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountsRequest";
|
|
146
|
+
value: Uint8Array;
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* QueryModuleAccountsRequest is the request type for the Query/ModuleAccounts RPC method.
|
|
150
|
+
*
|
|
151
|
+
* Since: cosmos-sdk 0.46
|
|
152
|
+
*/
|
|
153
|
+
export interface QueryModuleAccountsRequestAmino {
|
|
154
|
+
}
|
|
155
|
+
export interface QueryModuleAccountsRequestAminoMsg {
|
|
156
|
+
type: "cosmos-sdk/QueryModuleAccountsRequest";
|
|
157
|
+
value: QueryModuleAccountsRequestAmino;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* QueryModuleAccountsResponse is the response type for the Query/ModuleAccounts RPC method.
|
|
161
|
+
*
|
|
162
|
+
* Since: cosmos-sdk 0.46
|
|
163
|
+
*/
|
|
164
|
+
export interface QueryModuleAccountsResponse {
|
|
165
|
+
accounts: (ModuleAccount | Any)[] | Any[];
|
|
166
|
+
}
|
|
167
|
+
export interface QueryModuleAccountsResponseProtoMsg {
|
|
168
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountsResponse";
|
|
169
|
+
value: Uint8Array;
|
|
170
|
+
}
|
|
171
|
+
export type QueryModuleAccountsResponseEncoded = Omit<QueryModuleAccountsResponse, "accounts"> & {
|
|
172
|
+
accounts: (ModuleAccountProtoMsg | AnyProtoMsg)[];
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* QueryModuleAccountsResponse is the response type for the Query/ModuleAccounts RPC method.
|
|
176
|
+
*
|
|
177
|
+
* Since: cosmos-sdk 0.46
|
|
178
|
+
*/
|
|
179
|
+
export interface QueryModuleAccountsResponseAmino {
|
|
180
|
+
accounts: AnyAmino[];
|
|
181
|
+
}
|
|
182
|
+
export interface QueryModuleAccountsResponseAminoMsg {
|
|
183
|
+
type: "cosmos-sdk/QueryModuleAccountsResponse";
|
|
184
|
+
value: QueryModuleAccountsResponseAmino;
|
|
185
|
+
}
|
|
186
|
+
/** QueryModuleAccountByNameRequest is the request type for the Query/ModuleAccountByName RPC method. */
|
|
187
|
+
export interface QueryModuleAccountByNameRequest {
|
|
188
|
+
name: string;
|
|
189
|
+
}
|
|
190
|
+
export interface QueryModuleAccountByNameRequestProtoMsg {
|
|
191
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountByNameRequest";
|
|
192
|
+
value: Uint8Array;
|
|
193
|
+
}
|
|
194
|
+
/** QueryModuleAccountByNameRequest is the request type for the Query/ModuleAccountByName RPC method. */
|
|
195
|
+
export interface QueryModuleAccountByNameRequestAmino {
|
|
196
|
+
name: string;
|
|
197
|
+
}
|
|
198
|
+
export interface QueryModuleAccountByNameRequestAminoMsg {
|
|
199
|
+
type: "cosmos-sdk/QueryModuleAccountByNameRequest";
|
|
200
|
+
value: QueryModuleAccountByNameRequestAmino;
|
|
201
|
+
}
|
|
202
|
+
/** QueryModuleAccountByNameResponse is the response type for the Query/ModuleAccountByName RPC method. */
|
|
203
|
+
export interface QueryModuleAccountByNameResponse {
|
|
204
|
+
account?: ModuleAccount | Any | undefined;
|
|
205
|
+
}
|
|
206
|
+
export interface QueryModuleAccountByNameResponseProtoMsg {
|
|
207
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountByNameResponse";
|
|
208
|
+
value: Uint8Array;
|
|
209
|
+
}
|
|
210
|
+
export type QueryModuleAccountByNameResponseEncoded = Omit<QueryModuleAccountByNameResponse, "account"> & {
|
|
211
|
+
account?: ModuleAccountProtoMsg | AnyProtoMsg | undefined;
|
|
212
|
+
};
|
|
213
|
+
/** QueryModuleAccountByNameResponse is the response type for the Query/ModuleAccountByName RPC method. */
|
|
214
|
+
export interface QueryModuleAccountByNameResponseAmino {
|
|
215
|
+
account?: AnyAmino;
|
|
216
|
+
}
|
|
217
|
+
export interface QueryModuleAccountByNameResponseAminoMsg {
|
|
218
|
+
type: "cosmos-sdk/QueryModuleAccountByNameResponse";
|
|
219
|
+
value: QueryModuleAccountByNameResponseAmino;
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* Bech32PrefixRequest is the request type for Bech32Prefix rpc method.
|
|
223
|
+
*
|
|
224
|
+
* Since: cosmos-sdk 0.46
|
|
225
|
+
*/
|
|
226
|
+
export interface Bech32PrefixRequest {
|
|
227
|
+
}
|
|
228
|
+
export interface Bech32PrefixRequestProtoMsg {
|
|
229
|
+
typeUrl: "/cosmos.auth.v1beta1.Bech32PrefixRequest";
|
|
230
|
+
value: Uint8Array;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Bech32PrefixRequest is the request type for Bech32Prefix rpc method.
|
|
234
|
+
*
|
|
235
|
+
* Since: cosmos-sdk 0.46
|
|
236
|
+
*/
|
|
237
|
+
export interface Bech32PrefixRequestAmino {
|
|
238
|
+
}
|
|
239
|
+
export interface Bech32PrefixRequestAminoMsg {
|
|
240
|
+
type: "cosmos-sdk/Bech32PrefixRequest";
|
|
241
|
+
value: Bech32PrefixRequestAmino;
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* Bech32PrefixResponse is the response type for Bech32Prefix rpc method.
|
|
245
|
+
*
|
|
246
|
+
* Since: cosmos-sdk 0.46
|
|
247
|
+
*/
|
|
248
|
+
export interface Bech32PrefixResponse {
|
|
249
|
+
bech32Prefix: string;
|
|
250
|
+
}
|
|
251
|
+
export interface Bech32PrefixResponseProtoMsg {
|
|
252
|
+
typeUrl: "/cosmos.auth.v1beta1.Bech32PrefixResponse";
|
|
253
|
+
value: Uint8Array;
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* Bech32PrefixResponse is the response type for Bech32Prefix rpc method.
|
|
257
|
+
*
|
|
258
|
+
* Since: cosmos-sdk 0.46
|
|
259
|
+
*/
|
|
260
|
+
export interface Bech32PrefixResponseAmino {
|
|
261
|
+
bech32_prefix: string;
|
|
262
|
+
}
|
|
263
|
+
export interface Bech32PrefixResponseAminoMsg {
|
|
264
|
+
type: "cosmos-sdk/Bech32PrefixResponse";
|
|
265
|
+
value: Bech32PrefixResponseAmino;
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* AddressBytesToStringRequest is the request type for AddressString rpc method.
|
|
269
|
+
*
|
|
270
|
+
* Since: cosmos-sdk 0.46
|
|
271
|
+
*/
|
|
272
|
+
export interface AddressBytesToStringRequest {
|
|
273
|
+
addressBytes: Uint8Array;
|
|
274
|
+
}
|
|
275
|
+
export interface AddressBytesToStringRequestProtoMsg {
|
|
276
|
+
typeUrl: "/cosmos.auth.v1beta1.AddressBytesToStringRequest";
|
|
277
|
+
value: Uint8Array;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* AddressBytesToStringRequest is the request type for AddressString rpc method.
|
|
281
|
+
*
|
|
282
|
+
* Since: cosmos-sdk 0.46
|
|
283
|
+
*/
|
|
284
|
+
export interface AddressBytesToStringRequestAmino {
|
|
285
|
+
address_bytes: string;
|
|
286
|
+
}
|
|
287
|
+
export interface AddressBytesToStringRequestAminoMsg {
|
|
288
|
+
type: "cosmos-sdk/AddressBytesToStringRequest";
|
|
289
|
+
value: AddressBytesToStringRequestAmino;
|
|
290
|
+
}
|
|
291
|
+
/**
|
|
292
|
+
* AddressBytesToStringResponse is the response type for AddressString rpc method.
|
|
293
|
+
*
|
|
294
|
+
* Since: cosmos-sdk 0.46
|
|
295
|
+
*/
|
|
296
|
+
export interface AddressBytesToStringResponse {
|
|
297
|
+
addressString: string;
|
|
298
|
+
}
|
|
299
|
+
export interface AddressBytesToStringResponseProtoMsg {
|
|
300
|
+
typeUrl: "/cosmos.auth.v1beta1.AddressBytesToStringResponse";
|
|
301
|
+
value: Uint8Array;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* AddressBytesToStringResponse is the response type for AddressString rpc method.
|
|
305
|
+
*
|
|
306
|
+
* Since: cosmos-sdk 0.46
|
|
307
|
+
*/
|
|
308
|
+
export interface AddressBytesToStringResponseAmino {
|
|
309
|
+
address_string: string;
|
|
310
|
+
}
|
|
311
|
+
export interface AddressBytesToStringResponseAminoMsg {
|
|
312
|
+
type: "cosmos-sdk/AddressBytesToStringResponse";
|
|
313
|
+
value: AddressBytesToStringResponseAmino;
|
|
314
|
+
}
|
|
315
|
+
/**
|
|
316
|
+
* AddressStringToBytesRequest is the request type for AccountBytes rpc method.
|
|
317
|
+
*
|
|
318
|
+
* Since: cosmos-sdk 0.46
|
|
319
|
+
*/
|
|
320
|
+
export interface AddressStringToBytesRequest {
|
|
321
|
+
addressString: string;
|
|
322
|
+
}
|
|
323
|
+
export interface AddressStringToBytesRequestProtoMsg {
|
|
324
|
+
typeUrl: "/cosmos.auth.v1beta1.AddressStringToBytesRequest";
|
|
325
|
+
value: Uint8Array;
|
|
326
|
+
}
|
|
327
|
+
/**
|
|
328
|
+
* AddressStringToBytesRequest is the request type for AccountBytes rpc method.
|
|
329
|
+
*
|
|
330
|
+
* Since: cosmos-sdk 0.46
|
|
331
|
+
*/
|
|
332
|
+
export interface AddressStringToBytesRequestAmino {
|
|
333
|
+
address_string: string;
|
|
334
|
+
}
|
|
335
|
+
export interface AddressStringToBytesRequestAminoMsg {
|
|
336
|
+
type: "cosmos-sdk/AddressStringToBytesRequest";
|
|
337
|
+
value: AddressStringToBytesRequestAmino;
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* AddressStringToBytesResponse is the response type for AddressBytes rpc method.
|
|
341
|
+
*
|
|
342
|
+
* Since: cosmos-sdk 0.46
|
|
343
|
+
*/
|
|
344
|
+
export interface AddressStringToBytesResponse {
|
|
345
|
+
addressBytes: Uint8Array;
|
|
346
|
+
}
|
|
347
|
+
export interface AddressStringToBytesResponseProtoMsg {
|
|
348
|
+
typeUrl: "/cosmos.auth.v1beta1.AddressStringToBytesResponse";
|
|
349
|
+
value: Uint8Array;
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* AddressStringToBytesResponse is the response type for AddressBytes rpc method.
|
|
353
|
+
*
|
|
354
|
+
* Since: cosmos-sdk 0.46
|
|
355
|
+
*/
|
|
356
|
+
export interface AddressStringToBytesResponseAmino {
|
|
357
|
+
address_bytes: string;
|
|
358
|
+
}
|
|
359
|
+
export interface AddressStringToBytesResponseAminoMsg {
|
|
360
|
+
type: "cosmos-sdk/AddressStringToBytesResponse";
|
|
361
|
+
value: AddressStringToBytesResponseAmino;
|
|
362
|
+
}
|
|
363
|
+
/**
|
|
364
|
+
* QueryAccountAddressByIDRequest is the request type for AccountAddressByID rpc method
|
|
365
|
+
*
|
|
366
|
+
* Since: cosmos-sdk 0.46.2
|
|
367
|
+
*/
|
|
368
|
+
export interface QueryAccountAddressByIDRequest {
|
|
369
|
+
/**
|
|
370
|
+
* Deprecated, use account_id instead
|
|
371
|
+
*
|
|
372
|
+
* id is the account number of the address to be queried. This field
|
|
373
|
+
* should have been an uint64 (like all account numbers), and will be
|
|
374
|
+
* updated to uint64 in a future version of the auth query.
|
|
375
|
+
*/
|
|
376
|
+
/** @deprecated */
|
|
377
|
+
id: bigint;
|
|
378
|
+
/**
|
|
379
|
+
* account_id is the account number of the address to be queried.
|
|
380
|
+
*
|
|
381
|
+
* Since: cosmos-sdk 0.47
|
|
382
|
+
*/
|
|
383
|
+
accountId: bigint;
|
|
384
|
+
}
|
|
385
|
+
export interface QueryAccountAddressByIDRequestProtoMsg {
|
|
386
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryAccountAddressByIDRequest";
|
|
387
|
+
value: Uint8Array;
|
|
388
|
+
}
|
|
389
|
+
/**
|
|
390
|
+
* QueryAccountAddressByIDRequest is the request type for AccountAddressByID rpc method
|
|
391
|
+
*
|
|
392
|
+
* Since: cosmos-sdk 0.46.2
|
|
393
|
+
*/
|
|
394
|
+
export interface QueryAccountAddressByIDRequestAmino {
|
|
395
|
+
/**
|
|
396
|
+
* Deprecated, use account_id instead
|
|
397
|
+
*
|
|
398
|
+
* id is the account number of the address to be queried. This field
|
|
399
|
+
* should have been an uint64 (like all account numbers), and will be
|
|
400
|
+
* updated to uint64 in a future version of the auth query.
|
|
401
|
+
*/
|
|
402
|
+
/** @deprecated */
|
|
403
|
+
id: string;
|
|
404
|
+
/**
|
|
405
|
+
* account_id is the account number of the address to be queried.
|
|
406
|
+
*
|
|
407
|
+
* Since: cosmos-sdk 0.47
|
|
408
|
+
*/
|
|
409
|
+
account_id: string;
|
|
410
|
+
}
|
|
411
|
+
export interface QueryAccountAddressByIDRequestAminoMsg {
|
|
412
|
+
type: "cosmos-sdk/QueryAccountAddressByIDRequest";
|
|
413
|
+
value: QueryAccountAddressByIDRequestAmino;
|
|
414
|
+
}
|
|
415
|
+
/**
|
|
416
|
+
* QueryAccountAddressByIDResponse is the response type for AccountAddressByID rpc method
|
|
417
|
+
*
|
|
418
|
+
* Since: cosmos-sdk 0.46.2
|
|
419
|
+
*/
|
|
420
|
+
export interface QueryAccountAddressByIDResponse {
|
|
421
|
+
accountAddress: string;
|
|
422
|
+
}
|
|
423
|
+
export interface QueryAccountAddressByIDResponseProtoMsg {
|
|
424
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryAccountAddressByIDResponse";
|
|
425
|
+
value: Uint8Array;
|
|
426
|
+
}
|
|
427
|
+
/**
|
|
428
|
+
* QueryAccountAddressByIDResponse is the response type for AccountAddressByID rpc method
|
|
429
|
+
*
|
|
430
|
+
* Since: cosmos-sdk 0.46.2
|
|
431
|
+
*/
|
|
432
|
+
export interface QueryAccountAddressByIDResponseAmino {
|
|
433
|
+
account_address: string;
|
|
434
|
+
}
|
|
435
|
+
export interface QueryAccountAddressByIDResponseAminoMsg {
|
|
436
|
+
type: "cosmos-sdk/QueryAccountAddressByIDResponse";
|
|
437
|
+
value: QueryAccountAddressByIDResponseAmino;
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* QueryAccountInfoRequest is the Query/AccountInfo request type.
|
|
441
|
+
*
|
|
442
|
+
* Since: cosmos-sdk 0.47
|
|
443
|
+
*/
|
|
444
|
+
export interface QueryAccountInfoRequest {
|
|
445
|
+
/** address is the account address string. */
|
|
446
|
+
address: string;
|
|
447
|
+
}
|
|
448
|
+
export interface QueryAccountInfoRequestProtoMsg {
|
|
449
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryAccountInfoRequest";
|
|
450
|
+
value: Uint8Array;
|
|
451
|
+
}
|
|
452
|
+
/**
|
|
453
|
+
* QueryAccountInfoRequest is the Query/AccountInfo request type.
|
|
454
|
+
*
|
|
455
|
+
* Since: cosmos-sdk 0.47
|
|
456
|
+
*/
|
|
457
|
+
export interface QueryAccountInfoRequestAmino {
|
|
458
|
+
/** address is the account address string. */
|
|
459
|
+
address: string;
|
|
460
|
+
}
|
|
461
|
+
export interface QueryAccountInfoRequestAminoMsg {
|
|
462
|
+
type: "cosmos-sdk/QueryAccountInfoRequest";
|
|
463
|
+
value: QueryAccountInfoRequestAmino;
|
|
464
|
+
}
|
|
465
|
+
/**
|
|
466
|
+
* QueryAccountInfoResponse is the Query/AccountInfo response type.
|
|
467
|
+
*
|
|
468
|
+
* Since: cosmos-sdk 0.47
|
|
469
|
+
*/
|
|
470
|
+
export interface QueryAccountInfoResponse {
|
|
471
|
+
/** info is the account info which is represented by BaseAccount. */
|
|
472
|
+
info?: BaseAccount;
|
|
473
|
+
}
|
|
474
|
+
export interface QueryAccountInfoResponseProtoMsg {
|
|
475
|
+
typeUrl: "/cosmos.auth.v1beta1.QueryAccountInfoResponse";
|
|
476
|
+
value: Uint8Array;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* QueryAccountInfoResponse is the Query/AccountInfo response type.
|
|
480
|
+
*
|
|
481
|
+
* Since: cosmos-sdk 0.47
|
|
482
|
+
*/
|
|
483
|
+
export interface QueryAccountInfoResponseAmino {
|
|
484
|
+
/** info is the account info which is represented by BaseAccount. */
|
|
485
|
+
info?: BaseAccountAmino;
|
|
486
|
+
}
|
|
487
|
+
export interface QueryAccountInfoResponseAminoMsg {
|
|
488
|
+
type: "cosmos-sdk/QueryAccountInfoResponse";
|
|
489
|
+
value: QueryAccountInfoResponseAmino;
|
|
490
|
+
}
|
|
491
|
+
export declare const QueryAccountsRequest: {
|
|
492
|
+
typeUrl: string;
|
|
493
|
+
aminoType: string;
|
|
494
|
+
is(o: any): o is QueryAccountsRequest;
|
|
495
|
+
isAmino(o: any): o is QueryAccountsRequestAmino;
|
|
496
|
+
encode(message: QueryAccountsRequest, writer?: BinaryWriter): BinaryWriter;
|
|
497
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountsRequest;
|
|
498
|
+
fromPartial(object: DeepPartial<QueryAccountsRequest>): QueryAccountsRequest;
|
|
499
|
+
fromAmino(object: QueryAccountsRequestAmino): QueryAccountsRequest;
|
|
500
|
+
toAmino(message: QueryAccountsRequest): QueryAccountsRequestAmino;
|
|
501
|
+
fromAminoMsg(object: QueryAccountsRequestAminoMsg): QueryAccountsRequest;
|
|
502
|
+
toAminoMsg(message: QueryAccountsRequest): QueryAccountsRequestAminoMsg;
|
|
503
|
+
fromProtoMsg(message: QueryAccountsRequestProtoMsg): QueryAccountsRequest;
|
|
504
|
+
toProto(message: QueryAccountsRequest): Uint8Array;
|
|
505
|
+
toProtoMsg(message: QueryAccountsRequest): QueryAccountsRequestProtoMsg;
|
|
506
|
+
};
|
|
507
|
+
export declare const QueryAccountsResponse: {
|
|
508
|
+
typeUrl: string;
|
|
509
|
+
aminoType: string;
|
|
510
|
+
is(o: any): o is QueryAccountsResponse;
|
|
511
|
+
isAmino(o: any): o is QueryAccountsResponseAmino;
|
|
512
|
+
encode(message: QueryAccountsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
513
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountsResponse;
|
|
514
|
+
fromPartial(object: DeepPartial<QueryAccountsResponse>): QueryAccountsResponse;
|
|
515
|
+
fromAmino(object: QueryAccountsResponseAmino): QueryAccountsResponse;
|
|
516
|
+
toAmino(message: QueryAccountsResponse): QueryAccountsResponseAmino;
|
|
517
|
+
fromAminoMsg(object: QueryAccountsResponseAminoMsg): QueryAccountsResponse;
|
|
518
|
+
toAminoMsg(message: QueryAccountsResponse): QueryAccountsResponseAminoMsg;
|
|
519
|
+
fromProtoMsg(message: QueryAccountsResponseProtoMsg): QueryAccountsResponse;
|
|
520
|
+
toProto(message: QueryAccountsResponse): Uint8Array;
|
|
521
|
+
toProtoMsg(message: QueryAccountsResponse): QueryAccountsResponseProtoMsg;
|
|
522
|
+
};
|
|
523
|
+
export declare const QueryAccountRequest: {
|
|
524
|
+
typeUrl: string;
|
|
525
|
+
aminoType: string;
|
|
526
|
+
is(o: any): o is QueryAccountRequest;
|
|
527
|
+
isAmino(o: any): o is QueryAccountRequestAmino;
|
|
528
|
+
encode(message: QueryAccountRequest, writer?: BinaryWriter): BinaryWriter;
|
|
529
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountRequest;
|
|
530
|
+
fromPartial(object: DeepPartial<QueryAccountRequest>): QueryAccountRequest;
|
|
531
|
+
fromAmino(object: QueryAccountRequestAmino): QueryAccountRequest;
|
|
532
|
+
toAmino(message: QueryAccountRequest): QueryAccountRequestAmino;
|
|
533
|
+
fromAminoMsg(object: QueryAccountRequestAminoMsg): QueryAccountRequest;
|
|
534
|
+
toAminoMsg(message: QueryAccountRequest): QueryAccountRequestAminoMsg;
|
|
535
|
+
fromProtoMsg(message: QueryAccountRequestProtoMsg): QueryAccountRequest;
|
|
536
|
+
toProto(message: QueryAccountRequest): Uint8Array;
|
|
537
|
+
toProtoMsg(message: QueryAccountRequest): QueryAccountRequestProtoMsg;
|
|
538
|
+
};
|
|
539
|
+
export declare const QueryAccountResponse: {
|
|
540
|
+
typeUrl: string;
|
|
541
|
+
aminoType: string;
|
|
542
|
+
is(o: any): o is QueryAccountResponse;
|
|
543
|
+
isAmino(o: any): o is QueryAccountResponseAmino;
|
|
544
|
+
encode(message: QueryAccountResponse, writer?: BinaryWriter): BinaryWriter;
|
|
545
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountResponse;
|
|
546
|
+
fromPartial(object: DeepPartial<QueryAccountResponse>): QueryAccountResponse;
|
|
547
|
+
fromAmino(object: QueryAccountResponseAmino): QueryAccountResponse;
|
|
548
|
+
toAmino(message: QueryAccountResponse): QueryAccountResponseAmino;
|
|
549
|
+
fromAminoMsg(object: QueryAccountResponseAminoMsg): QueryAccountResponse;
|
|
550
|
+
toAminoMsg(message: QueryAccountResponse): QueryAccountResponseAminoMsg;
|
|
551
|
+
fromProtoMsg(message: QueryAccountResponseProtoMsg): QueryAccountResponse;
|
|
552
|
+
toProto(message: QueryAccountResponse): Uint8Array;
|
|
553
|
+
toProtoMsg(message: QueryAccountResponse): QueryAccountResponseProtoMsg;
|
|
554
|
+
};
|
|
555
|
+
export declare const QueryParamsRequest: {
|
|
556
|
+
typeUrl: string;
|
|
557
|
+
aminoType: string;
|
|
558
|
+
is(o: any): o is QueryParamsRequest;
|
|
559
|
+
isAmino(o: any): o is QueryParamsRequestAmino;
|
|
560
|
+
encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter;
|
|
561
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest;
|
|
562
|
+
fromPartial(_: DeepPartial<QueryParamsRequest>): QueryParamsRequest;
|
|
563
|
+
fromAmino(_: QueryParamsRequestAmino): QueryParamsRequest;
|
|
564
|
+
toAmino(_: QueryParamsRequest): QueryParamsRequestAmino;
|
|
565
|
+
fromAminoMsg(object: QueryParamsRequestAminoMsg): QueryParamsRequest;
|
|
566
|
+
toAminoMsg(message: QueryParamsRequest): QueryParamsRequestAminoMsg;
|
|
567
|
+
fromProtoMsg(message: QueryParamsRequestProtoMsg): QueryParamsRequest;
|
|
568
|
+
toProto(message: QueryParamsRequest): Uint8Array;
|
|
569
|
+
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
570
|
+
};
|
|
571
|
+
export declare const QueryParamsResponse: {
|
|
572
|
+
typeUrl: string;
|
|
573
|
+
aminoType: string;
|
|
574
|
+
is(o: any): o is QueryParamsResponse;
|
|
575
|
+
isAmino(o: any): o is QueryParamsResponseAmino;
|
|
576
|
+
encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
577
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse;
|
|
578
|
+
fromPartial(object: DeepPartial<QueryParamsResponse>): QueryParamsResponse;
|
|
579
|
+
fromAmino(object: QueryParamsResponseAmino): QueryParamsResponse;
|
|
580
|
+
toAmino(message: QueryParamsResponse): QueryParamsResponseAmino;
|
|
581
|
+
fromAminoMsg(object: QueryParamsResponseAminoMsg): QueryParamsResponse;
|
|
582
|
+
toAminoMsg(message: QueryParamsResponse): QueryParamsResponseAminoMsg;
|
|
583
|
+
fromProtoMsg(message: QueryParamsResponseProtoMsg): QueryParamsResponse;
|
|
584
|
+
toProto(message: QueryParamsResponse): Uint8Array;
|
|
585
|
+
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
586
|
+
};
|
|
587
|
+
export declare const QueryModuleAccountsRequest: {
|
|
588
|
+
typeUrl: string;
|
|
589
|
+
aminoType: string;
|
|
590
|
+
is(o: any): o is QueryModuleAccountsRequest;
|
|
591
|
+
isAmino(o: any): o is QueryModuleAccountsRequestAmino;
|
|
592
|
+
encode(_: QueryModuleAccountsRequest, writer?: BinaryWriter): BinaryWriter;
|
|
593
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleAccountsRequest;
|
|
594
|
+
fromPartial(_: DeepPartial<QueryModuleAccountsRequest>): QueryModuleAccountsRequest;
|
|
595
|
+
fromAmino(_: QueryModuleAccountsRequestAmino): QueryModuleAccountsRequest;
|
|
596
|
+
toAmino(_: QueryModuleAccountsRequest): QueryModuleAccountsRequestAmino;
|
|
597
|
+
fromAminoMsg(object: QueryModuleAccountsRequestAminoMsg): QueryModuleAccountsRequest;
|
|
598
|
+
toAminoMsg(message: QueryModuleAccountsRequest): QueryModuleAccountsRequestAminoMsg;
|
|
599
|
+
fromProtoMsg(message: QueryModuleAccountsRequestProtoMsg): QueryModuleAccountsRequest;
|
|
600
|
+
toProto(message: QueryModuleAccountsRequest): Uint8Array;
|
|
601
|
+
toProtoMsg(message: QueryModuleAccountsRequest): QueryModuleAccountsRequestProtoMsg;
|
|
602
|
+
};
|
|
603
|
+
export declare const QueryModuleAccountsResponse: {
|
|
604
|
+
typeUrl: string;
|
|
605
|
+
aminoType: string;
|
|
606
|
+
is(o: any): o is QueryModuleAccountsResponse;
|
|
607
|
+
isAmino(o: any): o is QueryModuleAccountsResponseAmino;
|
|
608
|
+
encode(message: QueryModuleAccountsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
609
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleAccountsResponse;
|
|
610
|
+
fromPartial(object: DeepPartial<QueryModuleAccountsResponse>): QueryModuleAccountsResponse;
|
|
611
|
+
fromAmino(object: QueryModuleAccountsResponseAmino): QueryModuleAccountsResponse;
|
|
612
|
+
toAmino(message: QueryModuleAccountsResponse): QueryModuleAccountsResponseAmino;
|
|
613
|
+
fromAminoMsg(object: QueryModuleAccountsResponseAminoMsg): QueryModuleAccountsResponse;
|
|
614
|
+
toAminoMsg(message: QueryModuleAccountsResponse): QueryModuleAccountsResponseAminoMsg;
|
|
615
|
+
fromProtoMsg(message: QueryModuleAccountsResponseProtoMsg): QueryModuleAccountsResponse;
|
|
616
|
+
toProto(message: QueryModuleAccountsResponse): Uint8Array;
|
|
617
|
+
toProtoMsg(message: QueryModuleAccountsResponse): QueryModuleAccountsResponseProtoMsg;
|
|
618
|
+
};
|
|
619
|
+
export declare const QueryModuleAccountByNameRequest: {
|
|
620
|
+
typeUrl: string;
|
|
621
|
+
aminoType: string;
|
|
622
|
+
is(o: any): o is QueryModuleAccountByNameRequest;
|
|
623
|
+
isAmino(o: any): o is QueryModuleAccountByNameRequestAmino;
|
|
624
|
+
encode(message: QueryModuleAccountByNameRequest, writer?: BinaryWriter): BinaryWriter;
|
|
625
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleAccountByNameRequest;
|
|
626
|
+
fromPartial(object: DeepPartial<QueryModuleAccountByNameRequest>): QueryModuleAccountByNameRequest;
|
|
627
|
+
fromAmino(object: QueryModuleAccountByNameRequestAmino): QueryModuleAccountByNameRequest;
|
|
628
|
+
toAmino(message: QueryModuleAccountByNameRequest): QueryModuleAccountByNameRequestAmino;
|
|
629
|
+
fromAminoMsg(object: QueryModuleAccountByNameRequestAminoMsg): QueryModuleAccountByNameRequest;
|
|
630
|
+
toAminoMsg(message: QueryModuleAccountByNameRequest): QueryModuleAccountByNameRequestAminoMsg;
|
|
631
|
+
fromProtoMsg(message: QueryModuleAccountByNameRequestProtoMsg): QueryModuleAccountByNameRequest;
|
|
632
|
+
toProto(message: QueryModuleAccountByNameRequest): Uint8Array;
|
|
633
|
+
toProtoMsg(message: QueryModuleAccountByNameRequest): QueryModuleAccountByNameRequestProtoMsg;
|
|
634
|
+
};
|
|
635
|
+
export declare const QueryModuleAccountByNameResponse: {
|
|
636
|
+
typeUrl: string;
|
|
637
|
+
aminoType: string;
|
|
638
|
+
is(o: any): o is QueryModuleAccountByNameResponse;
|
|
639
|
+
isAmino(o: any): o is QueryModuleAccountByNameResponseAmino;
|
|
640
|
+
encode(message: QueryModuleAccountByNameResponse, writer?: BinaryWriter): BinaryWriter;
|
|
641
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleAccountByNameResponse;
|
|
642
|
+
fromPartial(object: DeepPartial<QueryModuleAccountByNameResponse>): QueryModuleAccountByNameResponse;
|
|
643
|
+
fromAmino(object: QueryModuleAccountByNameResponseAmino): QueryModuleAccountByNameResponse;
|
|
644
|
+
toAmino(message: QueryModuleAccountByNameResponse): QueryModuleAccountByNameResponseAmino;
|
|
645
|
+
fromAminoMsg(object: QueryModuleAccountByNameResponseAminoMsg): QueryModuleAccountByNameResponse;
|
|
646
|
+
toAminoMsg(message: QueryModuleAccountByNameResponse): QueryModuleAccountByNameResponseAminoMsg;
|
|
647
|
+
fromProtoMsg(message: QueryModuleAccountByNameResponseProtoMsg): QueryModuleAccountByNameResponse;
|
|
648
|
+
toProto(message: QueryModuleAccountByNameResponse): Uint8Array;
|
|
649
|
+
toProtoMsg(message: QueryModuleAccountByNameResponse): QueryModuleAccountByNameResponseProtoMsg;
|
|
650
|
+
};
|
|
651
|
+
export declare const Bech32PrefixRequest: {
|
|
652
|
+
typeUrl: string;
|
|
653
|
+
aminoType: string;
|
|
654
|
+
is(o: any): o is Bech32PrefixRequest;
|
|
655
|
+
isAmino(o: any): o is Bech32PrefixRequestAmino;
|
|
656
|
+
encode(_: Bech32PrefixRequest, writer?: BinaryWriter): BinaryWriter;
|
|
657
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Bech32PrefixRequest;
|
|
658
|
+
fromPartial(_: DeepPartial<Bech32PrefixRequest>): Bech32PrefixRequest;
|
|
659
|
+
fromAmino(_: Bech32PrefixRequestAmino): Bech32PrefixRequest;
|
|
660
|
+
toAmino(_: Bech32PrefixRequest): Bech32PrefixRequestAmino;
|
|
661
|
+
fromAminoMsg(object: Bech32PrefixRequestAminoMsg): Bech32PrefixRequest;
|
|
662
|
+
toAminoMsg(message: Bech32PrefixRequest): Bech32PrefixRequestAminoMsg;
|
|
663
|
+
fromProtoMsg(message: Bech32PrefixRequestProtoMsg): Bech32PrefixRequest;
|
|
664
|
+
toProto(message: Bech32PrefixRequest): Uint8Array;
|
|
665
|
+
toProtoMsg(message: Bech32PrefixRequest): Bech32PrefixRequestProtoMsg;
|
|
666
|
+
};
|
|
667
|
+
export declare const Bech32PrefixResponse: {
|
|
668
|
+
typeUrl: string;
|
|
669
|
+
aminoType: string;
|
|
670
|
+
is(o: any): o is Bech32PrefixResponse;
|
|
671
|
+
isAmino(o: any): o is Bech32PrefixResponseAmino;
|
|
672
|
+
encode(message: Bech32PrefixResponse, writer?: BinaryWriter): BinaryWriter;
|
|
673
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Bech32PrefixResponse;
|
|
674
|
+
fromPartial(object: DeepPartial<Bech32PrefixResponse>): Bech32PrefixResponse;
|
|
675
|
+
fromAmino(object: Bech32PrefixResponseAmino): Bech32PrefixResponse;
|
|
676
|
+
toAmino(message: Bech32PrefixResponse): Bech32PrefixResponseAmino;
|
|
677
|
+
fromAminoMsg(object: Bech32PrefixResponseAminoMsg): Bech32PrefixResponse;
|
|
678
|
+
toAminoMsg(message: Bech32PrefixResponse): Bech32PrefixResponseAminoMsg;
|
|
679
|
+
fromProtoMsg(message: Bech32PrefixResponseProtoMsg): Bech32PrefixResponse;
|
|
680
|
+
toProto(message: Bech32PrefixResponse): Uint8Array;
|
|
681
|
+
toProtoMsg(message: Bech32PrefixResponse): Bech32PrefixResponseProtoMsg;
|
|
682
|
+
};
|
|
683
|
+
export declare const AddressBytesToStringRequest: {
|
|
684
|
+
typeUrl: string;
|
|
685
|
+
aminoType: string;
|
|
686
|
+
is(o: any): o is AddressBytesToStringRequest;
|
|
687
|
+
isAmino(o: any): o is AddressBytesToStringRequestAmino;
|
|
688
|
+
encode(message: AddressBytesToStringRequest, writer?: BinaryWriter): BinaryWriter;
|
|
689
|
+
decode(input: BinaryReader | Uint8Array, length?: number): AddressBytesToStringRequest;
|
|
690
|
+
fromPartial(object: DeepPartial<AddressBytesToStringRequest>): AddressBytesToStringRequest;
|
|
691
|
+
fromAmino(object: AddressBytesToStringRequestAmino): AddressBytesToStringRequest;
|
|
692
|
+
toAmino(message: AddressBytesToStringRequest): AddressBytesToStringRequestAmino;
|
|
693
|
+
fromAminoMsg(object: AddressBytesToStringRequestAminoMsg): AddressBytesToStringRequest;
|
|
694
|
+
toAminoMsg(message: AddressBytesToStringRequest): AddressBytesToStringRequestAminoMsg;
|
|
695
|
+
fromProtoMsg(message: AddressBytesToStringRequestProtoMsg): AddressBytesToStringRequest;
|
|
696
|
+
toProto(message: AddressBytesToStringRequest): Uint8Array;
|
|
697
|
+
toProtoMsg(message: AddressBytesToStringRequest): AddressBytesToStringRequestProtoMsg;
|
|
698
|
+
};
|
|
699
|
+
export declare const AddressBytesToStringResponse: {
|
|
700
|
+
typeUrl: string;
|
|
701
|
+
aminoType: string;
|
|
702
|
+
is(o: any): o is AddressBytesToStringResponse;
|
|
703
|
+
isAmino(o: any): o is AddressBytesToStringResponseAmino;
|
|
704
|
+
encode(message: AddressBytesToStringResponse, writer?: BinaryWriter): BinaryWriter;
|
|
705
|
+
decode(input: BinaryReader | Uint8Array, length?: number): AddressBytesToStringResponse;
|
|
706
|
+
fromPartial(object: DeepPartial<AddressBytesToStringResponse>): AddressBytesToStringResponse;
|
|
707
|
+
fromAmino(object: AddressBytesToStringResponseAmino): AddressBytesToStringResponse;
|
|
708
|
+
toAmino(message: AddressBytesToStringResponse): AddressBytesToStringResponseAmino;
|
|
709
|
+
fromAminoMsg(object: AddressBytesToStringResponseAminoMsg): AddressBytesToStringResponse;
|
|
710
|
+
toAminoMsg(message: AddressBytesToStringResponse): AddressBytesToStringResponseAminoMsg;
|
|
711
|
+
fromProtoMsg(message: AddressBytesToStringResponseProtoMsg): AddressBytesToStringResponse;
|
|
712
|
+
toProto(message: AddressBytesToStringResponse): Uint8Array;
|
|
713
|
+
toProtoMsg(message: AddressBytesToStringResponse): AddressBytesToStringResponseProtoMsg;
|
|
714
|
+
};
|
|
715
|
+
export declare const AddressStringToBytesRequest: {
|
|
716
|
+
typeUrl: string;
|
|
717
|
+
aminoType: string;
|
|
718
|
+
is(o: any): o is AddressStringToBytesRequest;
|
|
719
|
+
isAmino(o: any): o is AddressStringToBytesRequestAmino;
|
|
720
|
+
encode(message: AddressStringToBytesRequest, writer?: BinaryWriter): BinaryWriter;
|
|
721
|
+
decode(input: BinaryReader | Uint8Array, length?: number): AddressStringToBytesRequest;
|
|
722
|
+
fromPartial(object: DeepPartial<AddressStringToBytesRequest>): AddressStringToBytesRequest;
|
|
723
|
+
fromAmino(object: AddressStringToBytesRequestAmino): AddressStringToBytesRequest;
|
|
724
|
+
toAmino(message: AddressStringToBytesRequest): AddressStringToBytesRequestAmino;
|
|
725
|
+
fromAminoMsg(object: AddressStringToBytesRequestAminoMsg): AddressStringToBytesRequest;
|
|
726
|
+
toAminoMsg(message: AddressStringToBytesRequest): AddressStringToBytesRequestAminoMsg;
|
|
727
|
+
fromProtoMsg(message: AddressStringToBytesRequestProtoMsg): AddressStringToBytesRequest;
|
|
728
|
+
toProto(message: AddressStringToBytesRequest): Uint8Array;
|
|
729
|
+
toProtoMsg(message: AddressStringToBytesRequest): AddressStringToBytesRequestProtoMsg;
|
|
730
|
+
};
|
|
731
|
+
export declare const AddressStringToBytesResponse: {
|
|
732
|
+
typeUrl: string;
|
|
733
|
+
aminoType: string;
|
|
734
|
+
is(o: any): o is AddressStringToBytesResponse;
|
|
735
|
+
isAmino(o: any): o is AddressStringToBytesResponseAmino;
|
|
736
|
+
encode(message: AddressStringToBytesResponse, writer?: BinaryWriter): BinaryWriter;
|
|
737
|
+
decode(input: BinaryReader | Uint8Array, length?: number): AddressStringToBytesResponse;
|
|
738
|
+
fromPartial(object: DeepPartial<AddressStringToBytesResponse>): AddressStringToBytesResponse;
|
|
739
|
+
fromAmino(object: AddressStringToBytesResponseAmino): AddressStringToBytesResponse;
|
|
740
|
+
toAmino(message: AddressStringToBytesResponse): AddressStringToBytesResponseAmino;
|
|
741
|
+
fromAminoMsg(object: AddressStringToBytesResponseAminoMsg): AddressStringToBytesResponse;
|
|
742
|
+
toAminoMsg(message: AddressStringToBytesResponse): AddressStringToBytesResponseAminoMsg;
|
|
743
|
+
fromProtoMsg(message: AddressStringToBytesResponseProtoMsg): AddressStringToBytesResponse;
|
|
744
|
+
toProto(message: AddressStringToBytesResponse): Uint8Array;
|
|
745
|
+
toProtoMsg(message: AddressStringToBytesResponse): AddressStringToBytesResponseProtoMsg;
|
|
746
|
+
};
|
|
747
|
+
export declare const QueryAccountAddressByIDRequest: {
|
|
748
|
+
typeUrl: string;
|
|
749
|
+
aminoType: string;
|
|
750
|
+
is(o: any): o is QueryAccountAddressByIDRequest;
|
|
751
|
+
isAmino(o: any): o is QueryAccountAddressByIDRequestAmino;
|
|
752
|
+
encode(message: QueryAccountAddressByIDRequest, writer?: BinaryWriter): BinaryWriter;
|
|
753
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountAddressByIDRequest;
|
|
754
|
+
fromPartial(object: DeepPartial<QueryAccountAddressByIDRequest>): QueryAccountAddressByIDRequest;
|
|
755
|
+
fromAmino(object: QueryAccountAddressByIDRequestAmino): QueryAccountAddressByIDRequest;
|
|
756
|
+
toAmino(message: QueryAccountAddressByIDRequest): QueryAccountAddressByIDRequestAmino;
|
|
757
|
+
fromAminoMsg(object: QueryAccountAddressByIDRequestAminoMsg): QueryAccountAddressByIDRequest;
|
|
758
|
+
toAminoMsg(message: QueryAccountAddressByIDRequest): QueryAccountAddressByIDRequestAminoMsg;
|
|
759
|
+
fromProtoMsg(message: QueryAccountAddressByIDRequestProtoMsg): QueryAccountAddressByIDRequest;
|
|
760
|
+
toProto(message: QueryAccountAddressByIDRequest): Uint8Array;
|
|
761
|
+
toProtoMsg(message: QueryAccountAddressByIDRequest): QueryAccountAddressByIDRequestProtoMsg;
|
|
762
|
+
};
|
|
763
|
+
export declare const QueryAccountAddressByIDResponse: {
|
|
764
|
+
typeUrl: string;
|
|
765
|
+
aminoType: string;
|
|
766
|
+
is(o: any): o is QueryAccountAddressByIDResponse;
|
|
767
|
+
isAmino(o: any): o is QueryAccountAddressByIDResponseAmino;
|
|
768
|
+
encode(message: QueryAccountAddressByIDResponse, writer?: BinaryWriter): BinaryWriter;
|
|
769
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountAddressByIDResponse;
|
|
770
|
+
fromPartial(object: DeepPartial<QueryAccountAddressByIDResponse>): QueryAccountAddressByIDResponse;
|
|
771
|
+
fromAmino(object: QueryAccountAddressByIDResponseAmino): QueryAccountAddressByIDResponse;
|
|
772
|
+
toAmino(message: QueryAccountAddressByIDResponse): QueryAccountAddressByIDResponseAmino;
|
|
773
|
+
fromAminoMsg(object: QueryAccountAddressByIDResponseAminoMsg): QueryAccountAddressByIDResponse;
|
|
774
|
+
toAminoMsg(message: QueryAccountAddressByIDResponse): QueryAccountAddressByIDResponseAminoMsg;
|
|
775
|
+
fromProtoMsg(message: QueryAccountAddressByIDResponseProtoMsg): QueryAccountAddressByIDResponse;
|
|
776
|
+
toProto(message: QueryAccountAddressByIDResponse): Uint8Array;
|
|
777
|
+
toProtoMsg(message: QueryAccountAddressByIDResponse): QueryAccountAddressByIDResponseProtoMsg;
|
|
778
|
+
};
|
|
779
|
+
export declare const QueryAccountInfoRequest: {
|
|
780
|
+
typeUrl: string;
|
|
781
|
+
aminoType: string;
|
|
782
|
+
is(o: any): o is QueryAccountInfoRequest;
|
|
783
|
+
isAmino(o: any): o is QueryAccountInfoRequestAmino;
|
|
784
|
+
encode(message: QueryAccountInfoRequest, writer?: BinaryWriter): BinaryWriter;
|
|
785
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountInfoRequest;
|
|
786
|
+
fromPartial(object: DeepPartial<QueryAccountInfoRequest>): QueryAccountInfoRequest;
|
|
787
|
+
fromAmino(object: QueryAccountInfoRequestAmino): QueryAccountInfoRequest;
|
|
788
|
+
toAmino(message: QueryAccountInfoRequest): QueryAccountInfoRequestAmino;
|
|
789
|
+
fromAminoMsg(object: QueryAccountInfoRequestAminoMsg): QueryAccountInfoRequest;
|
|
790
|
+
toAminoMsg(message: QueryAccountInfoRequest): QueryAccountInfoRequestAminoMsg;
|
|
791
|
+
fromProtoMsg(message: QueryAccountInfoRequestProtoMsg): QueryAccountInfoRequest;
|
|
792
|
+
toProto(message: QueryAccountInfoRequest): Uint8Array;
|
|
793
|
+
toProtoMsg(message: QueryAccountInfoRequest): QueryAccountInfoRequestProtoMsg;
|
|
794
|
+
};
|
|
795
|
+
export declare const QueryAccountInfoResponse: {
|
|
796
|
+
typeUrl: string;
|
|
797
|
+
aminoType: string;
|
|
798
|
+
is(o: any): o is QueryAccountInfoResponse;
|
|
799
|
+
isAmino(o: any): o is QueryAccountInfoResponseAmino;
|
|
800
|
+
encode(message: QueryAccountInfoResponse, writer?: BinaryWriter): BinaryWriter;
|
|
801
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountInfoResponse;
|
|
802
|
+
fromPartial(object: DeepPartial<QueryAccountInfoResponse>): QueryAccountInfoResponse;
|
|
803
|
+
fromAmino(object: QueryAccountInfoResponseAmino): QueryAccountInfoResponse;
|
|
804
|
+
toAmino(message: QueryAccountInfoResponse): QueryAccountInfoResponseAmino;
|
|
805
|
+
fromAminoMsg(object: QueryAccountInfoResponseAminoMsg): QueryAccountInfoResponse;
|
|
806
|
+
toAminoMsg(message: QueryAccountInfoResponse): QueryAccountInfoResponseAminoMsg;
|
|
807
|
+
fromProtoMsg(message: QueryAccountInfoResponseProtoMsg): QueryAccountInfoResponse;
|
|
808
|
+
toProto(message: QueryAccountInfoResponse): Uint8Array;
|
|
809
|
+
toProtoMsg(message: QueryAccountInfoResponse): QueryAccountInfoResponseProtoMsg;
|
|
810
|
+
};
|