@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,916 @@
|
|
|
1
|
+
import { Tx, TxAmino } from "./tx";
|
|
2
|
+
import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../base/query/v1beta1/pagination";
|
|
3
|
+
import { TxResponse, TxResponseAmino, GasInfo, GasInfoAmino, Result, ResultAmino } from "../../base/abci/v1beta1/abci";
|
|
4
|
+
import { BlockID, BlockIDAmino } from "../../../tendermint/types/types";
|
|
5
|
+
import { Block, BlockAmino } from "../../../tendermint/types/block";
|
|
6
|
+
import { DeepPartial } from "../../../helpers";
|
|
7
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
8
|
+
/** OrderBy defines the sorting order */
|
|
9
|
+
export declare enum OrderBy {
|
|
10
|
+
/**
|
|
11
|
+
* ORDER_BY_UNSPECIFIED - ORDER_BY_UNSPECIFIED specifies an unknown sorting order. OrderBy defaults
|
|
12
|
+
* to ASC in this case.
|
|
13
|
+
*/
|
|
14
|
+
ORDER_BY_UNSPECIFIED = 0,
|
|
15
|
+
/** ORDER_BY_ASC - ORDER_BY_ASC defines ascending order */
|
|
16
|
+
ORDER_BY_ASC = 1,
|
|
17
|
+
/** ORDER_BY_DESC - ORDER_BY_DESC defines descending order */
|
|
18
|
+
ORDER_BY_DESC = 2,
|
|
19
|
+
UNRECOGNIZED = -1
|
|
20
|
+
}
|
|
21
|
+
export declare const OrderByAmino: typeof OrderBy;
|
|
22
|
+
export declare function orderByFromJSON(object: any): OrderBy;
|
|
23
|
+
export declare function orderByToJSON(object: OrderBy): string;
|
|
24
|
+
/**
|
|
25
|
+
* BroadcastMode specifies the broadcast mode for the TxService.Broadcast RPC
|
|
26
|
+
* method.
|
|
27
|
+
*/
|
|
28
|
+
export declare enum BroadcastMode {
|
|
29
|
+
/** BROADCAST_MODE_UNSPECIFIED - zero-value for mode ordering */
|
|
30
|
+
BROADCAST_MODE_UNSPECIFIED = 0,
|
|
31
|
+
/**
|
|
32
|
+
* BROADCAST_MODE_BLOCK - DEPRECATED: use BROADCAST_MODE_SYNC instead,
|
|
33
|
+
* BROADCAST_MODE_BLOCK is not supported by the SDK from v0.47.x onwards.
|
|
34
|
+
*/
|
|
35
|
+
BROADCAST_MODE_BLOCK = 1,
|
|
36
|
+
/**
|
|
37
|
+
* BROADCAST_MODE_SYNC - BROADCAST_MODE_SYNC defines a tx broadcasting mode where the client waits
|
|
38
|
+
* for a CheckTx execution response only.
|
|
39
|
+
*/
|
|
40
|
+
BROADCAST_MODE_SYNC = 2,
|
|
41
|
+
/**
|
|
42
|
+
* BROADCAST_MODE_ASYNC - BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client
|
|
43
|
+
* returns immediately.
|
|
44
|
+
*/
|
|
45
|
+
BROADCAST_MODE_ASYNC = 3,
|
|
46
|
+
UNRECOGNIZED = -1
|
|
47
|
+
}
|
|
48
|
+
export declare const BroadcastModeAmino: typeof BroadcastMode;
|
|
49
|
+
export declare function broadcastModeFromJSON(object: any): BroadcastMode;
|
|
50
|
+
export declare function broadcastModeToJSON(object: BroadcastMode): string;
|
|
51
|
+
/**
|
|
52
|
+
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
53
|
+
* RPC method.
|
|
54
|
+
*/
|
|
55
|
+
export interface GetTxsEventRequest {
|
|
56
|
+
/**
|
|
57
|
+
* events is the list of transaction event type.
|
|
58
|
+
* Deprecated post v0.47.x: use query instead, which should contain a valid
|
|
59
|
+
* events query.
|
|
60
|
+
*/
|
|
61
|
+
/** @deprecated */
|
|
62
|
+
events: string[];
|
|
63
|
+
/**
|
|
64
|
+
* pagination defines a pagination for the request.
|
|
65
|
+
* Deprecated post v0.46.x: use page and limit instead.
|
|
66
|
+
*/
|
|
67
|
+
/** @deprecated */
|
|
68
|
+
pagination?: PageRequest;
|
|
69
|
+
orderBy: OrderBy;
|
|
70
|
+
/**
|
|
71
|
+
* page is the page number to query, starts at 1. If not provided, will
|
|
72
|
+
* default to first page.
|
|
73
|
+
*/
|
|
74
|
+
page: bigint;
|
|
75
|
+
/**
|
|
76
|
+
* limit is the total number of results to be returned in the result page.
|
|
77
|
+
* If left empty it will default to a value to be set by each app.
|
|
78
|
+
*/
|
|
79
|
+
limit: bigint;
|
|
80
|
+
/**
|
|
81
|
+
* query defines the transaction event query that is proxied to Tendermint's
|
|
82
|
+
* TxSearch RPC method. The query must be valid.
|
|
83
|
+
*
|
|
84
|
+
* Since cosmos-sdk 0.50
|
|
85
|
+
*/
|
|
86
|
+
query: string;
|
|
87
|
+
}
|
|
88
|
+
export interface GetTxsEventRequestProtoMsg {
|
|
89
|
+
typeUrl: "/cosmos.tx.v1beta1.GetTxsEventRequest";
|
|
90
|
+
value: Uint8Array;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
94
|
+
* RPC method.
|
|
95
|
+
*/
|
|
96
|
+
export interface GetTxsEventRequestAmino {
|
|
97
|
+
/**
|
|
98
|
+
* events is the list of transaction event type.
|
|
99
|
+
* Deprecated post v0.47.x: use query instead, which should contain a valid
|
|
100
|
+
* events query.
|
|
101
|
+
*/
|
|
102
|
+
/** @deprecated */
|
|
103
|
+
events: string[];
|
|
104
|
+
/**
|
|
105
|
+
* pagination defines a pagination for the request.
|
|
106
|
+
* Deprecated post v0.46.x: use page and limit instead.
|
|
107
|
+
*/
|
|
108
|
+
/** @deprecated */
|
|
109
|
+
pagination?: PageRequestAmino;
|
|
110
|
+
order_by: OrderBy;
|
|
111
|
+
/**
|
|
112
|
+
* page is the page number to query, starts at 1. If not provided, will
|
|
113
|
+
* default to first page.
|
|
114
|
+
*/
|
|
115
|
+
page: string;
|
|
116
|
+
/**
|
|
117
|
+
* limit is the total number of results to be returned in the result page.
|
|
118
|
+
* If left empty it will default to a value to be set by each app.
|
|
119
|
+
*/
|
|
120
|
+
limit: string;
|
|
121
|
+
/**
|
|
122
|
+
* query defines the transaction event query that is proxied to Tendermint's
|
|
123
|
+
* TxSearch RPC method. The query must be valid.
|
|
124
|
+
*
|
|
125
|
+
* Since cosmos-sdk 0.50
|
|
126
|
+
*/
|
|
127
|
+
query: string;
|
|
128
|
+
}
|
|
129
|
+
export interface GetTxsEventRequestAminoMsg {
|
|
130
|
+
type: "cosmos-sdk/GetTxsEventRequest";
|
|
131
|
+
value: GetTxsEventRequestAmino;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
135
|
+
* RPC method.
|
|
136
|
+
*/
|
|
137
|
+
export interface GetTxsEventResponse {
|
|
138
|
+
/** txs is the list of queried transactions. */
|
|
139
|
+
txs: Tx[];
|
|
140
|
+
/** tx_responses is the list of queried TxResponses. */
|
|
141
|
+
txResponses: TxResponse[];
|
|
142
|
+
/**
|
|
143
|
+
* pagination defines a pagination for the response.
|
|
144
|
+
* Deprecated post v0.46.x: use total instead.
|
|
145
|
+
*/
|
|
146
|
+
/** @deprecated */
|
|
147
|
+
pagination?: PageResponse;
|
|
148
|
+
/** total is total number of results available */
|
|
149
|
+
total: bigint;
|
|
150
|
+
}
|
|
151
|
+
export interface GetTxsEventResponseProtoMsg {
|
|
152
|
+
typeUrl: "/cosmos.tx.v1beta1.GetTxsEventResponse";
|
|
153
|
+
value: Uint8Array;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
157
|
+
* RPC method.
|
|
158
|
+
*/
|
|
159
|
+
export interface GetTxsEventResponseAmino {
|
|
160
|
+
/** txs is the list of queried transactions. */
|
|
161
|
+
txs: TxAmino[];
|
|
162
|
+
/** tx_responses is the list of queried TxResponses. */
|
|
163
|
+
tx_responses: TxResponseAmino[];
|
|
164
|
+
/**
|
|
165
|
+
* pagination defines a pagination for the response.
|
|
166
|
+
* Deprecated post v0.46.x: use total instead.
|
|
167
|
+
*/
|
|
168
|
+
/** @deprecated */
|
|
169
|
+
pagination?: PageResponseAmino;
|
|
170
|
+
/** total is total number of results available */
|
|
171
|
+
total: string;
|
|
172
|
+
}
|
|
173
|
+
export interface GetTxsEventResponseAminoMsg {
|
|
174
|
+
type: "cosmos-sdk/GetTxsEventResponse";
|
|
175
|
+
value: GetTxsEventResponseAmino;
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
179
|
+
* RPC method.
|
|
180
|
+
*/
|
|
181
|
+
export interface BroadcastTxRequest {
|
|
182
|
+
/** tx_bytes is the raw transaction. */
|
|
183
|
+
txBytes: Uint8Array;
|
|
184
|
+
mode: BroadcastMode;
|
|
185
|
+
}
|
|
186
|
+
export interface BroadcastTxRequestProtoMsg {
|
|
187
|
+
typeUrl: "/cosmos.tx.v1beta1.BroadcastTxRequest";
|
|
188
|
+
value: Uint8Array;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
192
|
+
* RPC method.
|
|
193
|
+
*/
|
|
194
|
+
export interface BroadcastTxRequestAmino {
|
|
195
|
+
/** tx_bytes is the raw transaction. */
|
|
196
|
+
tx_bytes: string;
|
|
197
|
+
mode: BroadcastMode;
|
|
198
|
+
}
|
|
199
|
+
export interface BroadcastTxRequestAminoMsg {
|
|
200
|
+
type: "cosmos-sdk/BroadcastTxRequest";
|
|
201
|
+
value: BroadcastTxRequestAmino;
|
|
202
|
+
}
|
|
203
|
+
/**
|
|
204
|
+
* BroadcastTxResponse is the response type for the
|
|
205
|
+
* Service.BroadcastTx method.
|
|
206
|
+
*/
|
|
207
|
+
export interface BroadcastTxResponse {
|
|
208
|
+
/** tx_response is the queried TxResponses. */
|
|
209
|
+
txResponse?: TxResponse;
|
|
210
|
+
}
|
|
211
|
+
export interface BroadcastTxResponseProtoMsg {
|
|
212
|
+
typeUrl: "/cosmos.tx.v1beta1.BroadcastTxResponse";
|
|
213
|
+
value: Uint8Array;
|
|
214
|
+
}
|
|
215
|
+
/**
|
|
216
|
+
* BroadcastTxResponse is the response type for the
|
|
217
|
+
* Service.BroadcastTx method.
|
|
218
|
+
*/
|
|
219
|
+
export interface BroadcastTxResponseAmino {
|
|
220
|
+
/** tx_response is the queried TxResponses. */
|
|
221
|
+
tx_response?: TxResponseAmino;
|
|
222
|
+
}
|
|
223
|
+
export interface BroadcastTxResponseAminoMsg {
|
|
224
|
+
type: "cosmos-sdk/BroadcastTxResponse";
|
|
225
|
+
value: BroadcastTxResponseAmino;
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* SimulateRequest is the request type for the Service.Simulate
|
|
229
|
+
* RPC method.
|
|
230
|
+
*/
|
|
231
|
+
export interface SimulateRequest {
|
|
232
|
+
/**
|
|
233
|
+
* tx is the transaction to simulate.
|
|
234
|
+
* Deprecated. Send raw tx bytes instead.
|
|
235
|
+
*/
|
|
236
|
+
/** @deprecated */
|
|
237
|
+
tx?: Tx;
|
|
238
|
+
/**
|
|
239
|
+
* tx_bytes is the raw transaction.
|
|
240
|
+
*
|
|
241
|
+
* Since: cosmos-sdk 0.43
|
|
242
|
+
*/
|
|
243
|
+
txBytes: Uint8Array;
|
|
244
|
+
}
|
|
245
|
+
export interface SimulateRequestProtoMsg {
|
|
246
|
+
typeUrl: "/cosmos.tx.v1beta1.SimulateRequest";
|
|
247
|
+
value: Uint8Array;
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* SimulateRequest is the request type for the Service.Simulate
|
|
251
|
+
* RPC method.
|
|
252
|
+
*/
|
|
253
|
+
export interface SimulateRequestAmino {
|
|
254
|
+
/**
|
|
255
|
+
* tx is the transaction to simulate.
|
|
256
|
+
* Deprecated. Send raw tx bytes instead.
|
|
257
|
+
*/
|
|
258
|
+
/** @deprecated */
|
|
259
|
+
tx?: TxAmino;
|
|
260
|
+
/**
|
|
261
|
+
* tx_bytes is the raw transaction.
|
|
262
|
+
*
|
|
263
|
+
* Since: cosmos-sdk 0.43
|
|
264
|
+
*/
|
|
265
|
+
tx_bytes: string;
|
|
266
|
+
}
|
|
267
|
+
export interface SimulateRequestAminoMsg {
|
|
268
|
+
type: "cosmos-sdk/SimulateRequest";
|
|
269
|
+
value: SimulateRequestAmino;
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* SimulateResponse is the response type for the
|
|
273
|
+
* Service.SimulateRPC method.
|
|
274
|
+
*/
|
|
275
|
+
export interface SimulateResponse {
|
|
276
|
+
/** gas_info is the information about gas used in the simulation. */
|
|
277
|
+
gasInfo?: GasInfo;
|
|
278
|
+
/** result is the result of the simulation. */
|
|
279
|
+
result?: Result;
|
|
280
|
+
}
|
|
281
|
+
export interface SimulateResponseProtoMsg {
|
|
282
|
+
typeUrl: "/cosmos.tx.v1beta1.SimulateResponse";
|
|
283
|
+
value: Uint8Array;
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* SimulateResponse is the response type for the
|
|
287
|
+
* Service.SimulateRPC method.
|
|
288
|
+
*/
|
|
289
|
+
export interface SimulateResponseAmino {
|
|
290
|
+
/** gas_info is the information about gas used in the simulation. */
|
|
291
|
+
gas_info?: GasInfoAmino;
|
|
292
|
+
/** result is the result of the simulation. */
|
|
293
|
+
result?: ResultAmino;
|
|
294
|
+
}
|
|
295
|
+
export interface SimulateResponseAminoMsg {
|
|
296
|
+
type: "cosmos-sdk/SimulateResponse";
|
|
297
|
+
value: SimulateResponseAmino;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* GetTxRequest is the request type for the Service.GetTx
|
|
301
|
+
* RPC method.
|
|
302
|
+
*/
|
|
303
|
+
export interface GetTxRequest {
|
|
304
|
+
/** hash is the tx hash to query, encoded as a hex string. */
|
|
305
|
+
hash: string;
|
|
306
|
+
}
|
|
307
|
+
export interface GetTxRequestProtoMsg {
|
|
308
|
+
typeUrl: "/cosmos.tx.v1beta1.GetTxRequest";
|
|
309
|
+
value: Uint8Array;
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* GetTxRequest is the request type for the Service.GetTx
|
|
313
|
+
* RPC method.
|
|
314
|
+
*/
|
|
315
|
+
export interface GetTxRequestAmino {
|
|
316
|
+
/** hash is the tx hash to query, encoded as a hex string. */
|
|
317
|
+
hash: string;
|
|
318
|
+
}
|
|
319
|
+
export interface GetTxRequestAminoMsg {
|
|
320
|
+
type: "cosmos-sdk/GetTxRequest";
|
|
321
|
+
value: GetTxRequestAmino;
|
|
322
|
+
}
|
|
323
|
+
/** GetTxResponse is the response type for the Service.GetTx method. */
|
|
324
|
+
export interface GetTxResponse {
|
|
325
|
+
/** tx is the queried transaction. */
|
|
326
|
+
tx?: Tx;
|
|
327
|
+
/** tx_response is the queried TxResponses. */
|
|
328
|
+
txResponse?: TxResponse;
|
|
329
|
+
}
|
|
330
|
+
export interface GetTxResponseProtoMsg {
|
|
331
|
+
typeUrl: "/cosmos.tx.v1beta1.GetTxResponse";
|
|
332
|
+
value: Uint8Array;
|
|
333
|
+
}
|
|
334
|
+
/** GetTxResponse is the response type for the Service.GetTx method. */
|
|
335
|
+
export interface GetTxResponseAmino {
|
|
336
|
+
/** tx is the queried transaction. */
|
|
337
|
+
tx?: TxAmino;
|
|
338
|
+
/** tx_response is the queried TxResponses. */
|
|
339
|
+
tx_response?: TxResponseAmino;
|
|
340
|
+
}
|
|
341
|
+
export interface GetTxResponseAminoMsg {
|
|
342
|
+
type: "cosmos-sdk/GetTxResponse";
|
|
343
|
+
value: GetTxResponseAmino;
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
|
|
347
|
+
* RPC method.
|
|
348
|
+
*
|
|
349
|
+
* Since: cosmos-sdk 0.45.2
|
|
350
|
+
*/
|
|
351
|
+
export interface GetBlockWithTxsRequest {
|
|
352
|
+
/** height is the height of the block to query. */
|
|
353
|
+
height: bigint;
|
|
354
|
+
/** pagination defines a pagination for the request. */
|
|
355
|
+
pagination?: PageRequest;
|
|
356
|
+
}
|
|
357
|
+
export interface GetBlockWithTxsRequestProtoMsg {
|
|
358
|
+
typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsRequest";
|
|
359
|
+
value: Uint8Array;
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
* GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
|
|
363
|
+
* RPC method.
|
|
364
|
+
*
|
|
365
|
+
* Since: cosmos-sdk 0.45.2
|
|
366
|
+
*/
|
|
367
|
+
export interface GetBlockWithTxsRequestAmino {
|
|
368
|
+
/** height is the height of the block to query. */
|
|
369
|
+
height: string;
|
|
370
|
+
/** pagination defines a pagination for the request. */
|
|
371
|
+
pagination?: PageRequestAmino;
|
|
372
|
+
}
|
|
373
|
+
export interface GetBlockWithTxsRequestAminoMsg {
|
|
374
|
+
type: "cosmos-sdk/GetBlockWithTxsRequest";
|
|
375
|
+
value: GetBlockWithTxsRequestAmino;
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
|
|
379
|
+
* method.
|
|
380
|
+
*
|
|
381
|
+
* Since: cosmos-sdk 0.45.2
|
|
382
|
+
*/
|
|
383
|
+
export interface GetBlockWithTxsResponse {
|
|
384
|
+
/** txs are the transactions in the block. */
|
|
385
|
+
txs: Tx[];
|
|
386
|
+
blockId?: BlockID;
|
|
387
|
+
block?: Block;
|
|
388
|
+
/** pagination defines a pagination for the response. */
|
|
389
|
+
pagination?: PageResponse;
|
|
390
|
+
}
|
|
391
|
+
export interface GetBlockWithTxsResponseProtoMsg {
|
|
392
|
+
typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsResponse";
|
|
393
|
+
value: Uint8Array;
|
|
394
|
+
}
|
|
395
|
+
/**
|
|
396
|
+
* GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
|
|
397
|
+
* method.
|
|
398
|
+
*
|
|
399
|
+
* Since: cosmos-sdk 0.45.2
|
|
400
|
+
*/
|
|
401
|
+
export interface GetBlockWithTxsResponseAmino {
|
|
402
|
+
/** txs are the transactions in the block. */
|
|
403
|
+
txs: TxAmino[];
|
|
404
|
+
block_id?: BlockIDAmino;
|
|
405
|
+
block?: BlockAmino;
|
|
406
|
+
/** pagination defines a pagination for the response. */
|
|
407
|
+
pagination?: PageResponseAmino;
|
|
408
|
+
}
|
|
409
|
+
export interface GetBlockWithTxsResponseAminoMsg {
|
|
410
|
+
type: "cosmos-sdk/GetBlockWithTxsResponse";
|
|
411
|
+
value: GetBlockWithTxsResponseAmino;
|
|
412
|
+
}
|
|
413
|
+
/**
|
|
414
|
+
* TxDecodeRequest is the request type for the Service.TxDecode
|
|
415
|
+
* RPC method.
|
|
416
|
+
*
|
|
417
|
+
* Since: cosmos-sdk 0.47
|
|
418
|
+
*/
|
|
419
|
+
export interface TxDecodeRequest {
|
|
420
|
+
/** tx_bytes is the raw transaction. */
|
|
421
|
+
txBytes: Uint8Array;
|
|
422
|
+
}
|
|
423
|
+
export interface TxDecodeRequestProtoMsg {
|
|
424
|
+
typeUrl: "/cosmos.tx.v1beta1.TxDecodeRequest";
|
|
425
|
+
value: Uint8Array;
|
|
426
|
+
}
|
|
427
|
+
/**
|
|
428
|
+
* TxDecodeRequest is the request type for the Service.TxDecode
|
|
429
|
+
* RPC method.
|
|
430
|
+
*
|
|
431
|
+
* Since: cosmos-sdk 0.47
|
|
432
|
+
*/
|
|
433
|
+
export interface TxDecodeRequestAmino {
|
|
434
|
+
/** tx_bytes is the raw transaction. */
|
|
435
|
+
tx_bytes: string;
|
|
436
|
+
}
|
|
437
|
+
export interface TxDecodeRequestAminoMsg {
|
|
438
|
+
type: "cosmos-sdk/TxDecodeRequest";
|
|
439
|
+
value: TxDecodeRequestAmino;
|
|
440
|
+
}
|
|
441
|
+
/**
|
|
442
|
+
* TxDecodeResponse is the response type for the
|
|
443
|
+
* Service.TxDecode method.
|
|
444
|
+
*
|
|
445
|
+
* Since: cosmos-sdk 0.47
|
|
446
|
+
*/
|
|
447
|
+
export interface TxDecodeResponse {
|
|
448
|
+
/** tx is the decoded transaction. */
|
|
449
|
+
tx?: Tx;
|
|
450
|
+
}
|
|
451
|
+
export interface TxDecodeResponseProtoMsg {
|
|
452
|
+
typeUrl: "/cosmos.tx.v1beta1.TxDecodeResponse";
|
|
453
|
+
value: Uint8Array;
|
|
454
|
+
}
|
|
455
|
+
/**
|
|
456
|
+
* TxDecodeResponse is the response type for the
|
|
457
|
+
* Service.TxDecode method.
|
|
458
|
+
*
|
|
459
|
+
* Since: cosmos-sdk 0.47
|
|
460
|
+
*/
|
|
461
|
+
export interface TxDecodeResponseAmino {
|
|
462
|
+
/** tx is the decoded transaction. */
|
|
463
|
+
tx?: TxAmino;
|
|
464
|
+
}
|
|
465
|
+
export interface TxDecodeResponseAminoMsg {
|
|
466
|
+
type: "cosmos-sdk/TxDecodeResponse";
|
|
467
|
+
value: TxDecodeResponseAmino;
|
|
468
|
+
}
|
|
469
|
+
/**
|
|
470
|
+
* TxEncodeRequest is the request type for the Service.TxEncode
|
|
471
|
+
* RPC method.
|
|
472
|
+
*
|
|
473
|
+
* Since: cosmos-sdk 0.47
|
|
474
|
+
*/
|
|
475
|
+
export interface TxEncodeRequest {
|
|
476
|
+
/** tx is the transaction to encode. */
|
|
477
|
+
tx?: Tx;
|
|
478
|
+
}
|
|
479
|
+
export interface TxEncodeRequestProtoMsg {
|
|
480
|
+
typeUrl: "/cosmos.tx.v1beta1.TxEncodeRequest";
|
|
481
|
+
value: Uint8Array;
|
|
482
|
+
}
|
|
483
|
+
/**
|
|
484
|
+
* TxEncodeRequest is the request type for the Service.TxEncode
|
|
485
|
+
* RPC method.
|
|
486
|
+
*
|
|
487
|
+
* Since: cosmos-sdk 0.47
|
|
488
|
+
*/
|
|
489
|
+
export interface TxEncodeRequestAmino {
|
|
490
|
+
/** tx is the transaction to encode. */
|
|
491
|
+
tx?: TxAmino;
|
|
492
|
+
}
|
|
493
|
+
export interface TxEncodeRequestAminoMsg {
|
|
494
|
+
type: "cosmos-sdk/TxEncodeRequest";
|
|
495
|
+
value: TxEncodeRequestAmino;
|
|
496
|
+
}
|
|
497
|
+
/**
|
|
498
|
+
* TxEncodeResponse is the response type for the
|
|
499
|
+
* Service.TxEncode method.
|
|
500
|
+
*
|
|
501
|
+
* Since: cosmos-sdk 0.47
|
|
502
|
+
*/
|
|
503
|
+
export interface TxEncodeResponse {
|
|
504
|
+
/** tx_bytes is the encoded transaction bytes. */
|
|
505
|
+
txBytes: Uint8Array;
|
|
506
|
+
}
|
|
507
|
+
export interface TxEncodeResponseProtoMsg {
|
|
508
|
+
typeUrl: "/cosmos.tx.v1beta1.TxEncodeResponse";
|
|
509
|
+
value: Uint8Array;
|
|
510
|
+
}
|
|
511
|
+
/**
|
|
512
|
+
* TxEncodeResponse is the response type for the
|
|
513
|
+
* Service.TxEncode method.
|
|
514
|
+
*
|
|
515
|
+
* Since: cosmos-sdk 0.47
|
|
516
|
+
*/
|
|
517
|
+
export interface TxEncodeResponseAmino {
|
|
518
|
+
/** tx_bytes is the encoded transaction bytes. */
|
|
519
|
+
tx_bytes: string;
|
|
520
|
+
}
|
|
521
|
+
export interface TxEncodeResponseAminoMsg {
|
|
522
|
+
type: "cosmos-sdk/TxEncodeResponse";
|
|
523
|
+
value: TxEncodeResponseAmino;
|
|
524
|
+
}
|
|
525
|
+
/**
|
|
526
|
+
* TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
|
|
527
|
+
* RPC method.
|
|
528
|
+
*
|
|
529
|
+
* Since: cosmos-sdk 0.47
|
|
530
|
+
*/
|
|
531
|
+
export interface TxEncodeAminoRequest {
|
|
532
|
+
aminoJson: string;
|
|
533
|
+
}
|
|
534
|
+
export interface TxEncodeAminoRequestProtoMsg {
|
|
535
|
+
typeUrl: "/cosmos.tx.v1beta1.TxEncodeAminoRequest";
|
|
536
|
+
value: Uint8Array;
|
|
537
|
+
}
|
|
538
|
+
/**
|
|
539
|
+
* TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
|
|
540
|
+
* RPC method.
|
|
541
|
+
*
|
|
542
|
+
* Since: cosmos-sdk 0.47
|
|
543
|
+
*/
|
|
544
|
+
export interface TxEncodeAminoRequestAmino {
|
|
545
|
+
amino_json: string;
|
|
546
|
+
}
|
|
547
|
+
export interface TxEncodeAminoRequestAminoMsg {
|
|
548
|
+
type: "cosmos-sdk/TxEncodeAminoRequest";
|
|
549
|
+
value: TxEncodeAminoRequestAmino;
|
|
550
|
+
}
|
|
551
|
+
/**
|
|
552
|
+
* TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
|
|
553
|
+
* RPC method.
|
|
554
|
+
*
|
|
555
|
+
* Since: cosmos-sdk 0.47
|
|
556
|
+
*/
|
|
557
|
+
export interface TxEncodeAminoResponse {
|
|
558
|
+
aminoBinary: Uint8Array;
|
|
559
|
+
}
|
|
560
|
+
export interface TxEncodeAminoResponseProtoMsg {
|
|
561
|
+
typeUrl: "/cosmos.tx.v1beta1.TxEncodeAminoResponse";
|
|
562
|
+
value: Uint8Array;
|
|
563
|
+
}
|
|
564
|
+
/**
|
|
565
|
+
* TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
|
|
566
|
+
* RPC method.
|
|
567
|
+
*
|
|
568
|
+
* Since: cosmos-sdk 0.47
|
|
569
|
+
*/
|
|
570
|
+
export interface TxEncodeAminoResponseAmino {
|
|
571
|
+
amino_binary: string;
|
|
572
|
+
}
|
|
573
|
+
export interface TxEncodeAminoResponseAminoMsg {
|
|
574
|
+
type: "cosmos-sdk/TxEncodeAminoResponse";
|
|
575
|
+
value: TxEncodeAminoResponseAmino;
|
|
576
|
+
}
|
|
577
|
+
/**
|
|
578
|
+
* TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
|
|
579
|
+
* RPC method.
|
|
580
|
+
*
|
|
581
|
+
* Since: cosmos-sdk 0.47
|
|
582
|
+
*/
|
|
583
|
+
export interface TxDecodeAminoRequest {
|
|
584
|
+
aminoBinary: Uint8Array;
|
|
585
|
+
}
|
|
586
|
+
export interface TxDecodeAminoRequestProtoMsg {
|
|
587
|
+
typeUrl: "/cosmos.tx.v1beta1.TxDecodeAminoRequest";
|
|
588
|
+
value: Uint8Array;
|
|
589
|
+
}
|
|
590
|
+
/**
|
|
591
|
+
* TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
|
|
592
|
+
* RPC method.
|
|
593
|
+
*
|
|
594
|
+
* Since: cosmos-sdk 0.47
|
|
595
|
+
*/
|
|
596
|
+
export interface TxDecodeAminoRequestAmino {
|
|
597
|
+
amino_binary: string;
|
|
598
|
+
}
|
|
599
|
+
export interface TxDecodeAminoRequestAminoMsg {
|
|
600
|
+
type: "cosmos-sdk/TxDecodeAminoRequest";
|
|
601
|
+
value: TxDecodeAminoRequestAmino;
|
|
602
|
+
}
|
|
603
|
+
/**
|
|
604
|
+
* TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
|
|
605
|
+
* RPC method.
|
|
606
|
+
*
|
|
607
|
+
* Since: cosmos-sdk 0.47
|
|
608
|
+
*/
|
|
609
|
+
export interface TxDecodeAminoResponse {
|
|
610
|
+
aminoJson: string;
|
|
611
|
+
}
|
|
612
|
+
export interface TxDecodeAminoResponseProtoMsg {
|
|
613
|
+
typeUrl: "/cosmos.tx.v1beta1.TxDecodeAminoResponse";
|
|
614
|
+
value: Uint8Array;
|
|
615
|
+
}
|
|
616
|
+
/**
|
|
617
|
+
* TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
|
|
618
|
+
* RPC method.
|
|
619
|
+
*
|
|
620
|
+
* Since: cosmos-sdk 0.47
|
|
621
|
+
*/
|
|
622
|
+
export interface TxDecodeAminoResponseAmino {
|
|
623
|
+
amino_json: string;
|
|
624
|
+
}
|
|
625
|
+
export interface TxDecodeAminoResponseAminoMsg {
|
|
626
|
+
type: "cosmos-sdk/TxDecodeAminoResponse";
|
|
627
|
+
value: TxDecodeAminoResponseAmino;
|
|
628
|
+
}
|
|
629
|
+
export declare const GetTxsEventRequest: {
|
|
630
|
+
typeUrl: string;
|
|
631
|
+
aminoType: string;
|
|
632
|
+
is(o: any): o is GetTxsEventRequest;
|
|
633
|
+
isAmino(o: any): o is GetTxsEventRequestAmino;
|
|
634
|
+
encode(message: GetTxsEventRequest, writer?: BinaryWriter): BinaryWriter;
|
|
635
|
+
decode(input: BinaryReader | Uint8Array, length?: number): GetTxsEventRequest;
|
|
636
|
+
fromPartial(object: DeepPartial<GetTxsEventRequest>): GetTxsEventRequest;
|
|
637
|
+
fromAmino(object: GetTxsEventRequestAmino): GetTxsEventRequest;
|
|
638
|
+
toAmino(message: GetTxsEventRequest): GetTxsEventRequestAmino;
|
|
639
|
+
fromAminoMsg(object: GetTxsEventRequestAminoMsg): GetTxsEventRequest;
|
|
640
|
+
toAminoMsg(message: GetTxsEventRequest): GetTxsEventRequestAminoMsg;
|
|
641
|
+
fromProtoMsg(message: GetTxsEventRequestProtoMsg): GetTxsEventRequest;
|
|
642
|
+
toProto(message: GetTxsEventRequest): Uint8Array;
|
|
643
|
+
toProtoMsg(message: GetTxsEventRequest): GetTxsEventRequestProtoMsg;
|
|
644
|
+
};
|
|
645
|
+
export declare const GetTxsEventResponse: {
|
|
646
|
+
typeUrl: string;
|
|
647
|
+
aminoType: string;
|
|
648
|
+
is(o: any): o is GetTxsEventResponse;
|
|
649
|
+
isAmino(o: any): o is GetTxsEventResponseAmino;
|
|
650
|
+
encode(message: GetTxsEventResponse, writer?: BinaryWriter): BinaryWriter;
|
|
651
|
+
decode(input: BinaryReader | Uint8Array, length?: number): GetTxsEventResponse;
|
|
652
|
+
fromPartial(object: DeepPartial<GetTxsEventResponse>): GetTxsEventResponse;
|
|
653
|
+
fromAmino(object: GetTxsEventResponseAmino): GetTxsEventResponse;
|
|
654
|
+
toAmino(message: GetTxsEventResponse): GetTxsEventResponseAmino;
|
|
655
|
+
fromAminoMsg(object: GetTxsEventResponseAminoMsg): GetTxsEventResponse;
|
|
656
|
+
toAminoMsg(message: GetTxsEventResponse): GetTxsEventResponseAminoMsg;
|
|
657
|
+
fromProtoMsg(message: GetTxsEventResponseProtoMsg): GetTxsEventResponse;
|
|
658
|
+
toProto(message: GetTxsEventResponse): Uint8Array;
|
|
659
|
+
toProtoMsg(message: GetTxsEventResponse): GetTxsEventResponseProtoMsg;
|
|
660
|
+
};
|
|
661
|
+
export declare const BroadcastTxRequest: {
|
|
662
|
+
typeUrl: string;
|
|
663
|
+
aminoType: string;
|
|
664
|
+
is(o: any): o is BroadcastTxRequest;
|
|
665
|
+
isAmino(o: any): o is BroadcastTxRequestAmino;
|
|
666
|
+
encode(message: BroadcastTxRequest, writer?: BinaryWriter): BinaryWriter;
|
|
667
|
+
decode(input: BinaryReader | Uint8Array, length?: number): BroadcastTxRequest;
|
|
668
|
+
fromPartial(object: DeepPartial<BroadcastTxRequest>): BroadcastTxRequest;
|
|
669
|
+
fromAmino(object: BroadcastTxRequestAmino): BroadcastTxRequest;
|
|
670
|
+
toAmino(message: BroadcastTxRequest): BroadcastTxRequestAmino;
|
|
671
|
+
fromAminoMsg(object: BroadcastTxRequestAminoMsg): BroadcastTxRequest;
|
|
672
|
+
toAminoMsg(message: BroadcastTxRequest): BroadcastTxRequestAminoMsg;
|
|
673
|
+
fromProtoMsg(message: BroadcastTxRequestProtoMsg): BroadcastTxRequest;
|
|
674
|
+
toProto(message: BroadcastTxRequest): Uint8Array;
|
|
675
|
+
toProtoMsg(message: BroadcastTxRequest): BroadcastTxRequestProtoMsg;
|
|
676
|
+
};
|
|
677
|
+
export declare const BroadcastTxResponse: {
|
|
678
|
+
typeUrl: string;
|
|
679
|
+
aminoType: string;
|
|
680
|
+
is(o: any): o is BroadcastTxResponse;
|
|
681
|
+
isAmino(o: any): o is BroadcastTxResponseAmino;
|
|
682
|
+
encode(message: BroadcastTxResponse, writer?: BinaryWriter): BinaryWriter;
|
|
683
|
+
decode(input: BinaryReader | Uint8Array, length?: number): BroadcastTxResponse;
|
|
684
|
+
fromPartial(object: DeepPartial<BroadcastTxResponse>): BroadcastTxResponse;
|
|
685
|
+
fromAmino(object: BroadcastTxResponseAmino): BroadcastTxResponse;
|
|
686
|
+
toAmino(message: BroadcastTxResponse): BroadcastTxResponseAmino;
|
|
687
|
+
fromAminoMsg(object: BroadcastTxResponseAminoMsg): BroadcastTxResponse;
|
|
688
|
+
toAminoMsg(message: BroadcastTxResponse): BroadcastTxResponseAminoMsg;
|
|
689
|
+
fromProtoMsg(message: BroadcastTxResponseProtoMsg): BroadcastTxResponse;
|
|
690
|
+
toProto(message: BroadcastTxResponse): Uint8Array;
|
|
691
|
+
toProtoMsg(message: BroadcastTxResponse): BroadcastTxResponseProtoMsg;
|
|
692
|
+
};
|
|
693
|
+
export declare const SimulateRequest: {
|
|
694
|
+
typeUrl: string;
|
|
695
|
+
aminoType: string;
|
|
696
|
+
is(o: any): o is SimulateRequest;
|
|
697
|
+
isAmino(o: any): o is SimulateRequestAmino;
|
|
698
|
+
encode(message: SimulateRequest, writer?: BinaryWriter): BinaryWriter;
|
|
699
|
+
decode(input: BinaryReader | Uint8Array, length?: number): SimulateRequest;
|
|
700
|
+
fromPartial(object: DeepPartial<SimulateRequest>): SimulateRequest;
|
|
701
|
+
fromAmino(object: SimulateRequestAmino): SimulateRequest;
|
|
702
|
+
toAmino(message: SimulateRequest): SimulateRequestAmino;
|
|
703
|
+
fromAminoMsg(object: SimulateRequestAminoMsg): SimulateRequest;
|
|
704
|
+
toAminoMsg(message: SimulateRequest): SimulateRequestAminoMsg;
|
|
705
|
+
fromProtoMsg(message: SimulateRequestProtoMsg): SimulateRequest;
|
|
706
|
+
toProto(message: SimulateRequest): Uint8Array;
|
|
707
|
+
toProtoMsg(message: SimulateRequest): SimulateRequestProtoMsg;
|
|
708
|
+
};
|
|
709
|
+
export declare const SimulateResponse: {
|
|
710
|
+
typeUrl: string;
|
|
711
|
+
aminoType: string;
|
|
712
|
+
is(o: any): o is SimulateResponse;
|
|
713
|
+
isAmino(o: any): o is SimulateResponseAmino;
|
|
714
|
+
encode(message: SimulateResponse, writer?: BinaryWriter): BinaryWriter;
|
|
715
|
+
decode(input: BinaryReader | Uint8Array, length?: number): SimulateResponse;
|
|
716
|
+
fromPartial(object: DeepPartial<SimulateResponse>): SimulateResponse;
|
|
717
|
+
fromAmino(object: SimulateResponseAmino): SimulateResponse;
|
|
718
|
+
toAmino(message: SimulateResponse): SimulateResponseAmino;
|
|
719
|
+
fromAminoMsg(object: SimulateResponseAminoMsg): SimulateResponse;
|
|
720
|
+
toAminoMsg(message: SimulateResponse): SimulateResponseAminoMsg;
|
|
721
|
+
fromProtoMsg(message: SimulateResponseProtoMsg): SimulateResponse;
|
|
722
|
+
toProto(message: SimulateResponse): Uint8Array;
|
|
723
|
+
toProtoMsg(message: SimulateResponse): SimulateResponseProtoMsg;
|
|
724
|
+
};
|
|
725
|
+
export declare const GetTxRequest: {
|
|
726
|
+
typeUrl: string;
|
|
727
|
+
aminoType: string;
|
|
728
|
+
is(o: any): o is GetTxRequest;
|
|
729
|
+
isAmino(o: any): o is GetTxRequestAmino;
|
|
730
|
+
encode(message: GetTxRequest, writer?: BinaryWriter): BinaryWriter;
|
|
731
|
+
decode(input: BinaryReader | Uint8Array, length?: number): GetTxRequest;
|
|
732
|
+
fromPartial(object: DeepPartial<GetTxRequest>): GetTxRequest;
|
|
733
|
+
fromAmino(object: GetTxRequestAmino): GetTxRequest;
|
|
734
|
+
toAmino(message: GetTxRequest): GetTxRequestAmino;
|
|
735
|
+
fromAminoMsg(object: GetTxRequestAminoMsg): GetTxRequest;
|
|
736
|
+
toAminoMsg(message: GetTxRequest): GetTxRequestAminoMsg;
|
|
737
|
+
fromProtoMsg(message: GetTxRequestProtoMsg): GetTxRequest;
|
|
738
|
+
toProto(message: GetTxRequest): Uint8Array;
|
|
739
|
+
toProtoMsg(message: GetTxRequest): GetTxRequestProtoMsg;
|
|
740
|
+
};
|
|
741
|
+
export declare const GetTxResponse: {
|
|
742
|
+
typeUrl: string;
|
|
743
|
+
aminoType: string;
|
|
744
|
+
is(o: any): o is GetTxResponse;
|
|
745
|
+
isAmino(o: any): o is GetTxResponseAmino;
|
|
746
|
+
encode(message: GetTxResponse, writer?: BinaryWriter): BinaryWriter;
|
|
747
|
+
decode(input: BinaryReader | Uint8Array, length?: number): GetTxResponse;
|
|
748
|
+
fromPartial(object: DeepPartial<GetTxResponse>): GetTxResponse;
|
|
749
|
+
fromAmino(object: GetTxResponseAmino): GetTxResponse;
|
|
750
|
+
toAmino(message: GetTxResponse): GetTxResponseAmino;
|
|
751
|
+
fromAminoMsg(object: GetTxResponseAminoMsg): GetTxResponse;
|
|
752
|
+
toAminoMsg(message: GetTxResponse): GetTxResponseAminoMsg;
|
|
753
|
+
fromProtoMsg(message: GetTxResponseProtoMsg): GetTxResponse;
|
|
754
|
+
toProto(message: GetTxResponse): Uint8Array;
|
|
755
|
+
toProtoMsg(message: GetTxResponse): GetTxResponseProtoMsg;
|
|
756
|
+
};
|
|
757
|
+
export declare const GetBlockWithTxsRequest: {
|
|
758
|
+
typeUrl: string;
|
|
759
|
+
aminoType: string;
|
|
760
|
+
is(o: any): o is GetBlockWithTxsRequest;
|
|
761
|
+
isAmino(o: any): o is GetBlockWithTxsRequestAmino;
|
|
762
|
+
encode(message: GetBlockWithTxsRequest, writer?: BinaryWriter): BinaryWriter;
|
|
763
|
+
decode(input: BinaryReader | Uint8Array, length?: number): GetBlockWithTxsRequest;
|
|
764
|
+
fromPartial(object: DeepPartial<GetBlockWithTxsRequest>): GetBlockWithTxsRequest;
|
|
765
|
+
fromAmino(object: GetBlockWithTxsRequestAmino): GetBlockWithTxsRequest;
|
|
766
|
+
toAmino(message: GetBlockWithTxsRequest): GetBlockWithTxsRequestAmino;
|
|
767
|
+
fromAminoMsg(object: GetBlockWithTxsRequestAminoMsg): GetBlockWithTxsRequest;
|
|
768
|
+
toAminoMsg(message: GetBlockWithTxsRequest): GetBlockWithTxsRequestAminoMsg;
|
|
769
|
+
fromProtoMsg(message: GetBlockWithTxsRequestProtoMsg): GetBlockWithTxsRequest;
|
|
770
|
+
toProto(message: GetBlockWithTxsRequest): Uint8Array;
|
|
771
|
+
toProtoMsg(message: GetBlockWithTxsRequest): GetBlockWithTxsRequestProtoMsg;
|
|
772
|
+
};
|
|
773
|
+
export declare const GetBlockWithTxsResponse: {
|
|
774
|
+
typeUrl: string;
|
|
775
|
+
aminoType: string;
|
|
776
|
+
is(o: any): o is GetBlockWithTxsResponse;
|
|
777
|
+
isAmino(o: any): o is GetBlockWithTxsResponseAmino;
|
|
778
|
+
encode(message: GetBlockWithTxsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
779
|
+
decode(input: BinaryReader | Uint8Array, length?: number): GetBlockWithTxsResponse;
|
|
780
|
+
fromPartial(object: DeepPartial<GetBlockWithTxsResponse>): GetBlockWithTxsResponse;
|
|
781
|
+
fromAmino(object: GetBlockWithTxsResponseAmino): GetBlockWithTxsResponse;
|
|
782
|
+
toAmino(message: GetBlockWithTxsResponse): GetBlockWithTxsResponseAmino;
|
|
783
|
+
fromAminoMsg(object: GetBlockWithTxsResponseAminoMsg): GetBlockWithTxsResponse;
|
|
784
|
+
toAminoMsg(message: GetBlockWithTxsResponse): GetBlockWithTxsResponseAminoMsg;
|
|
785
|
+
fromProtoMsg(message: GetBlockWithTxsResponseProtoMsg): GetBlockWithTxsResponse;
|
|
786
|
+
toProto(message: GetBlockWithTxsResponse): Uint8Array;
|
|
787
|
+
toProtoMsg(message: GetBlockWithTxsResponse): GetBlockWithTxsResponseProtoMsg;
|
|
788
|
+
};
|
|
789
|
+
export declare const TxDecodeRequest: {
|
|
790
|
+
typeUrl: string;
|
|
791
|
+
aminoType: string;
|
|
792
|
+
is(o: any): o is TxDecodeRequest;
|
|
793
|
+
isAmino(o: any): o is TxDecodeRequestAmino;
|
|
794
|
+
encode(message: TxDecodeRequest, writer?: BinaryWriter): BinaryWriter;
|
|
795
|
+
decode(input: BinaryReader | Uint8Array, length?: number): TxDecodeRequest;
|
|
796
|
+
fromPartial(object: DeepPartial<TxDecodeRequest>): TxDecodeRequest;
|
|
797
|
+
fromAmino(object: TxDecodeRequestAmino): TxDecodeRequest;
|
|
798
|
+
toAmino(message: TxDecodeRequest): TxDecodeRequestAmino;
|
|
799
|
+
fromAminoMsg(object: TxDecodeRequestAminoMsg): TxDecodeRequest;
|
|
800
|
+
toAminoMsg(message: TxDecodeRequest): TxDecodeRequestAminoMsg;
|
|
801
|
+
fromProtoMsg(message: TxDecodeRequestProtoMsg): TxDecodeRequest;
|
|
802
|
+
toProto(message: TxDecodeRequest): Uint8Array;
|
|
803
|
+
toProtoMsg(message: TxDecodeRequest): TxDecodeRequestProtoMsg;
|
|
804
|
+
};
|
|
805
|
+
export declare const TxDecodeResponse: {
|
|
806
|
+
typeUrl: string;
|
|
807
|
+
aminoType: string;
|
|
808
|
+
is(o: any): o is TxDecodeResponse;
|
|
809
|
+
isAmino(o: any): o is TxDecodeResponseAmino;
|
|
810
|
+
encode(message: TxDecodeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
811
|
+
decode(input: BinaryReader | Uint8Array, length?: number): TxDecodeResponse;
|
|
812
|
+
fromPartial(object: DeepPartial<TxDecodeResponse>): TxDecodeResponse;
|
|
813
|
+
fromAmino(object: TxDecodeResponseAmino): TxDecodeResponse;
|
|
814
|
+
toAmino(message: TxDecodeResponse): TxDecodeResponseAmino;
|
|
815
|
+
fromAminoMsg(object: TxDecodeResponseAminoMsg): TxDecodeResponse;
|
|
816
|
+
toAminoMsg(message: TxDecodeResponse): TxDecodeResponseAminoMsg;
|
|
817
|
+
fromProtoMsg(message: TxDecodeResponseProtoMsg): TxDecodeResponse;
|
|
818
|
+
toProto(message: TxDecodeResponse): Uint8Array;
|
|
819
|
+
toProtoMsg(message: TxDecodeResponse): TxDecodeResponseProtoMsg;
|
|
820
|
+
};
|
|
821
|
+
export declare const TxEncodeRequest: {
|
|
822
|
+
typeUrl: string;
|
|
823
|
+
aminoType: string;
|
|
824
|
+
is(o: any): o is TxEncodeRequest;
|
|
825
|
+
isAmino(o: any): o is TxEncodeRequestAmino;
|
|
826
|
+
encode(message: TxEncodeRequest, writer?: BinaryWriter): BinaryWriter;
|
|
827
|
+
decode(input: BinaryReader | Uint8Array, length?: number): TxEncodeRequest;
|
|
828
|
+
fromPartial(object: DeepPartial<TxEncodeRequest>): TxEncodeRequest;
|
|
829
|
+
fromAmino(object: TxEncodeRequestAmino): TxEncodeRequest;
|
|
830
|
+
toAmino(message: TxEncodeRequest): TxEncodeRequestAmino;
|
|
831
|
+
fromAminoMsg(object: TxEncodeRequestAminoMsg): TxEncodeRequest;
|
|
832
|
+
toAminoMsg(message: TxEncodeRequest): TxEncodeRequestAminoMsg;
|
|
833
|
+
fromProtoMsg(message: TxEncodeRequestProtoMsg): TxEncodeRequest;
|
|
834
|
+
toProto(message: TxEncodeRequest): Uint8Array;
|
|
835
|
+
toProtoMsg(message: TxEncodeRequest): TxEncodeRequestProtoMsg;
|
|
836
|
+
};
|
|
837
|
+
export declare const TxEncodeResponse: {
|
|
838
|
+
typeUrl: string;
|
|
839
|
+
aminoType: string;
|
|
840
|
+
is(o: any): o is TxEncodeResponse;
|
|
841
|
+
isAmino(o: any): o is TxEncodeResponseAmino;
|
|
842
|
+
encode(message: TxEncodeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
843
|
+
decode(input: BinaryReader | Uint8Array, length?: number): TxEncodeResponse;
|
|
844
|
+
fromPartial(object: DeepPartial<TxEncodeResponse>): TxEncodeResponse;
|
|
845
|
+
fromAmino(object: TxEncodeResponseAmino): TxEncodeResponse;
|
|
846
|
+
toAmino(message: TxEncodeResponse): TxEncodeResponseAmino;
|
|
847
|
+
fromAminoMsg(object: TxEncodeResponseAminoMsg): TxEncodeResponse;
|
|
848
|
+
toAminoMsg(message: TxEncodeResponse): TxEncodeResponseAminoMsg;
|
|
849
|
+
fromProtoMsg(message: TxEncodeResponseProtoMsg): TxEncodeResponse;
|
|
850
|
+
toProto(message: TxEncodeResponse): Uint8Array;
|
|
851
|
+
toProtoMsg(message: TxEncodeResponse): TxEncodeResponseProtoMsg;
|
|
852
|
+
};
|
|
853
|
+
export declare const TxEncodeAminoRequest: {
|
|
854
|
+
typeUrl: string;
|
|
855
|
+
aminoType: string;
|
|
856
|
+
is(o: any): o is TxEncodeAminoRequest;
|
|
857
|
+
isAmino(o: any): o is TxEncodeAminoRequestAmino;
|
|
858
|
+
encode(message: TxEncodeAminoRequest, writer?: BinaryWriter): BinaryWriter;
|
|
859
|
+
decode(input: BinaryReader | Uint8Array, length?: number): TxEncodeAminoRequest;
|
|
860
|
+
fromPartial(object: DeepPartial<TxEncodeAminoRequest>): TxEncodeAminoRequest;
|
|
861
|
+
fromAmino(object: TxEncodeAminoRequestAmino): TxEncodeAminoRequest;
|
|
862
|
+
toAmino(message: TxEncodeAminoRequest): TxEncodeAminoRequestAmino;
|
|
863
|
+
fromAminoMsg(object: TxEncodeAminoRequestAminoMsg): TxEncodeAminoRequest;
|
|
864
|
+
toAminoMsg(message: TxEncodeAminoRequest): TxEncodeAminoRequestAminoMsg;
|
|
865
|
+
fromProtoMsg(message: TxEncodeAminoRequestProtoMsg): TxEncodeAminoRequest;
|
|
866
|
+
toProto(message: TxEncodeAminoRequest): Uint8Array;
|
|
867
|
+
toProtoMsg(message: TxEncodeAminoRequest): TxEncodeAminoRequestProtoMsg;
|
|
868
|
+
};
|
|
869
|
+
export declare const TxEncodeAminoResponse: {
|
|
870
|
+
typeUrl: string;
|
|
871
|
+
aminoType: string;
|
|
872
|
+
is(o: any): o is TxEncodeAminoResponse;
|
|
873
|
+
isAmino(o: any): o is TxEncodeAminoResponseAmino;
|
|
874
|
+
encode(message: TxEncodeAminoResponse, writer?: BinaryWriter): BinaryWriter;
|
|
875
|
+
decode(input: BinaryReader | Uint8Array, length?: number): TxEncodeAminoResponse;
|
|
876
|
+
fromPartial(object: DeepPartial<TxEncodeAminoResponse>): TxEncodeAminoResponse;
|
|
877
|
+
fromAmino(object: TxEncodeAminoResponseAmino): TxEncodeAminoResponse;
|
|
878
|
+
toAmino(message: TxEncodeAminoResponse): TxEncodeAminoResponseAmino;
|
|
879
|
+
fromAminoMsg(object: TxEncodeAminoResponseAminoMsg): TxEncodeAminoResponse;
|
|
880
|
+
toAminoMsg(message: TxEncodeAminoResponse): TxEncodeAminoResponseAminoMsg;
|
|
881
|
+
fromProtoMsg(message: TxEncodeAminoResponseProtoMsg): TxEncodeAminoResponse;
|
|
882
|
+
toProto(message: TxEncodeAminoResponse): Uint8Array;
|
|
883
|
+
toProtoMsg(message: TxEncodeAminoResponse): TxEncodeAminoResponseProtoMsg;
|
|
884
|
+
};
|
|
885
|
+
export declare const TxDecodeAminoRequest: {
|
|
886
|
+
typeUrl: string;
|
|
887
|
+
aminoType: string;
|
|
888
|
+
is(o: any): o is TxDecodeAminoRequest;
|
|
889
|
+
isAmino(o: any): o is TxDecodeAminoRequestAmino;
|
|
890
|
+
encode(message: TxDecodeAminoRequest, writer?: BinaryWriter): BinaryWriter;
|
|
891
|
+
decode(input: BinaryReader | Uint8Array, length?: number): TxDecodeAminoRequest;
|
|
892
|
+
fromPartial(object: DeepPartial<TxDecodeAminoRequest>): TxDecodeAminoRequest;
|
|
893
|
+
fromAmino(object: TxDecodeAminoRequestAmino): TxDecodeAminoRequest;
|
|
894
|
+
toAmino(message: TxDecodeAminoRequest): TxDecodeAminoRequestAmino;
|
|
895
|
+
fromAminoMsg(object: TxDecodeAminoRequestAminoMsg): TxDecodeAminoRequest;
|
|
896
|
+
toAminoMsg(message: TxDecodeAminoRequest): TxDecodeAminoRequestAminoMsg;
|
|
897
|
+
fromProtoMsg(message: TxDecodeAminoRequestProtoMsg): TxDecodeAminoRequest;
|
|
898
|
+
toProto(message: TxDecodeAminoRequest): Uint8Array;
|
|
899
|
+
toProtoMsg(message: TxDecodeAminoRequest): TxDecodeAminoRequestProtoMsg;
|
|
900
|
+
};
|
|
901
|
+
export declare const TxDecodeAminoResponse: {
|
|
902
|
+
typeUrl: string;
|
|
903
|
+
aminoType: string;
|
|
904
|
+
is(o: any): o is TxDecodeAminoResponse;
|
|
905
|
+
isAmino(o: any): o is TxDecodeAminoResponseAmino;
|
|
906
|
+
encode(message: TxDecodeAminoResponse, writer?: BinaryWriter): BinaryWriter;
|
|
907
|
+
decode(input: BinaryReader | Uint8Array, length?: number): TxDecodeAminoResponse;
|
|
908
|
+
fromPartial(object: DeepPartial<TxDecodeAminoResponse>): TxDecodeAminoResponse;
|
|
909
|
+
fromAmino(object: TxDecodeAminoResponseAmino): TxDecodeAminoResponse;
|
|
910
|
+
toAmino(message: TxDecodeAminoResponse): TxDecodeAminoResponseAmino;
|
|
911
|
+
fromAminoMsg(object: TxDecodeAminoResponseAminoMsg): TxDecodeAminoResponse;
|
|
912
|
+
toAminoMsg(message: TxDecodeAminoResponse): TxDecodeAminoResponseAminoMsg;
|
|
913
|
+
fromProtoMsg(message: TxDecodeAminoResponseProtoMsg): TxDecodeAminoResponse;
|
|
914
|
+
toProto(message: TxDecodeAminoResponse): Uint8Array;
|
|
915
|
+
toProtoMsg(message: TxDecodeAminoResponse): TxDecodeAminoResponseProtoMsg;
|
|
916
|
+
};
|