@xpla/xpla-react 1.7.0 → 1.8.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +49 -8
- package/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/cosmos/app/v1alpha1/config.d.ts +72 -10
- package/cosmos/app/v1alpha1/config.js +31 -0
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +23 -0
- package/cosmos/app/v1alpha1/query.d.ts +42 -6
- package/cosmos/app/v1alpha1/query.js +16 -0
- package/cosmos/app/v1alpha1/query.rpc.func.d.ts +7 -2
- package/cosmos/app/v1alpha1/query.rpc.func.js +8 -4
- package/cosmos/app/v1alpha1/query.rpc.react.d.ts +6 -0
- package/cosmos/app/v1alpha1/query.rpc.react.js +7 -1
- package/cosmos/auth/module/v1/module.d.ts +60 -12
- package/cosmos/auth/module/v1/module.js +16 -0
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +34 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +169 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
- package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
- package/cosmos/auth/v1beta1/query.rpc.react.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.react.js +87 -10
- package/cosmos/auth/v1beta1/tx.d.ts +35 -2
- package/cosmos/auth/v1beta1/tx.js +21 -0
- package/cosmos/auth/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/auth/v1beta1/tx.registry.js +27 -1
- package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/auth/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +36 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +10 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +55 -0
- package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
- package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
- package/cosmos/authz/v1beta1/query.rpc.react.d.ts +22 -0
- package/cosmos/authz/v1beta1/query.rpc.react.js +25 -3
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +43 -0
- package/cosmos/authz/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/authz/v1beta1/tx.registry.js +63 -1
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
- package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
- package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +27 -3
- package/cosmos/authz/v1beta1/tx.rpc.react.js +27 -3
- package/cosmos/autocli/v1/options.d.ts +208 -38
- package/cosmos/autocli/v1/options.js +54 -0
- package/cosmos/autocli/v1/query.d.ts +57 -6
- package/cosmos/autocli/v1/query.js +21 -0
- package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/autocli/v1/query.rpc.func.js +8 -4
- package/cosmos/autocli/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/autocli/v1/query.rpc.react.js +7 -1
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +15 -0
- package/cosmos/bank/v1beta1/authz.js +12 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +63 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
- package/cosmos/bank/v1beta1/genesis.js +20 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +263 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
- package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
- package/cosmos/bank/v1beta1/query.rpc.react.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.react.js +128 -13
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +74 -0
- package/cosmos/bank/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/bank/v1beta1/tx.registry.js +81 -1
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
- package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
- package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +36 -4
- package/cosmos/bank/v1beta1/tx.rpc.react.js +36 -4
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/base/node/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
- package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +14 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +16 -2
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +38 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +44 -6
- package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
- package/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +46 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +53 -7
- package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
- package/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +188 -0
- package/cosmos/bundle.js +990 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +16 -0
- package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/consensus/v1/query.rpc.func.js +8 -4
- package/cosmos/consensus/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/consensus/v1/query.rpc.react.js +7 -1
- package/cosmos/consensus/v1/tx.d.ts +43 -6
- package/cosmos/consensus/v1/tx.js +17 -0
- package/cosmos/consensus/v1/tx.registry.d.ts +21 -0
- package/cosmos/consensus/v1/tx.registry.js +27 -1
- package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
- package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
- package/cosmos/consensus/v1/tx.rpc.react.d.ts +10 -1
- package/cosmos/consensus/v1/tx.rpc.react.js +10 -1
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +164 -0
- package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
- package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
- package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +61 -0
- package/cosmos/distribution/v1beta1/query.rpc.react.js +71 -10
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +128 -0
- package/cosmos/distribution/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/distribution/v1beta1/tx.registry.js +135 -1
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
- package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +64 -7
- package/cosmos/distribution/v1beta1/tx.rpc.react.js +64 -7
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
- package/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
- package/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/cosmos/evidence/v1beta1/query.d.ts +88 -14
- package/cosmos/evidence/v1beta1/query.js +33 -0
- package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/evidence/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
- package/cosmos/evidence/v1beta1/tx.js +13 -0
- package/cosmos/evidence/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/evidence/v1beta1/tx.registry.js +27 -1
- package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
- package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
- package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +8 -1
- package/cosmos/evidence/v1beta1/tx.rpc.react.js +8 -1
- package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
- package/cosmos/evm/feemarket/v1/events.js +182 -0
- package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
- package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
- package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
- package/cosmos/evm/feemarket/v1/genesis.js +106 -0
- package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
- package/cosmos/evm/feemarket/v1/query.js +473 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.js +35 -0
- package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
- package/cosmos/evm/feemarket/v1/tx.js +177 -0
- package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
- package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.js +16 -0
- package/cosmos/evm/vm/v1/events.d.ts +286 -0
- package/cosmos/evm/vm/v1/events.js +435 -0
- package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
- package/cosmos/evm/vm/v1/evm.js +1617 -0
- package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
- package/cosmos/evm/vm/v1/genesis.js +227 -0
- package/cosmos/evm/vm/v1/query.d.ts +1773 -0
- package/cosmos/evm/vm/v1/query.js +2680 -0
- package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
- package/cosmos/evm/vm/v1/query.rpc.react.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.react.js +153 -0
- package/cosmos/evm/vm/v1/tx.d.ts +747 -0
- package/cosmos/evm/vm/v1/tx.js +1132 -0
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.d.ts +7 -7
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.js +12 -12
- package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.js +25 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
- package/cosmos/feegrant/v1beta1/query.js +56 -0
- package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
- package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
- package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +20 -0
- package/cosmos/feegrant/v1beta1/query.rpc.react.js +23 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/cosmos/feegrant/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/feegrant/v1beta1/tx.registry.js +63 -1
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
- package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +25 -3
- package/cosmos/feegrant/v1beta1/tx.rpc.react.js +25 -3
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -16
- package/cosmos/gov/v1/genesis.js +10 -0
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +77 -0
- package/cosmos/gov/v1/query.d.ts +469 -88
- package/cosmos/gov/v1/query.js +143 -0
- package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
- package/cosmos/gov/v1/query.rpc.func.js +64 -28
- package/cosmos/gov/v1/query.rpc.react.d.ts +54 -0
- package/cosmos/gov/v1/query.rpc.react.js +63 -9
- package/cosmos/gov/v1/tx.d.ts +377 -67
- package/cosmos/gov/v1/tx.js +111 -3
- package/cosmos/gov/v1/tx.registry.d.ts +93 -0
- package/cosmos/gov/v1/tx.registry.js +135 -1
- package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
- package/cosmos/gov/v1/tx.rpc.func.js +63 -51
- package/cosmos/gov/v1/tx.rpc.react.d.ts +55 -7
- package/cosmos/gov/v1/tx.rpc.react.js +55 -7
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +10 -0
- package/cosmos/gov/v1beta1/gov.d.ts +294 -63
- package/cosmos/gov/v1beta1/gov.js +74 -3
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +131 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
- package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
- package/cosmos/gov/v1beta1/query.rpc.react.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.react.js +56 -8
- package/cosmos/gov/v1beta1/tx.d.ts +214 -39
- package/cosmos/gov/v1beta1/tx.js +62 -3
- package/cosmos/gov/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/gov/v1beta1/tx.registry.js +81 -1
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
- package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
- package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +30 -4
- package/cosmos/gov/v1beta1/tx.rpc.react.js +30 -4
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +169 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +10 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +43 -0
- package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/mint/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/mint/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/mint/v1beta1/tx.d.ts +35 -2
- package/cosmos/mint/v1beta1/tx.js +21 -0
- package/cosmos/mint/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/mint/v1beta1/tx.registry.js +27 -1
- package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/mint/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +16 -0
- package/cosmos/params/v1beta1/query.d.ts +99 -10
- package/cosmos/params/v1beta1/query.js +46 -0
- package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
- package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
- package/cosmos/params/v1beta1/query.rpc.react.d.ts +15 -0
- package/cosmos/params/v1beta1/query.rpc.react.js +17 -2
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
- package/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/cosmos/slashing/v1beta1/query.d.ts +106 -10
- package/cosmos/slashing/v1beta1/query.js +53 -0
- package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/slashing/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
- package/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
- package/cosmos/slashing/v1beta1/tx.js +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.js +45 -1
- package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/slashing/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +44 -6
- package/cosmos/staking/v1beta1/authz.js +17 -0
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +16 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +250 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
- package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
- package/cosmos/staking/v1beta1/query.rpc.react.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.react.js +123 -14
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +186 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +120 -0
- package/cosmos/staking/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/staking/v1beta1/tx.registry.js +135 -1
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
- package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
- package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +57 -7
- package/cosmos/staking/v1beta1/tx.rpc.react.js +57 -7
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +176 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
- package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
- package/cosmos/tx/v1beta1/service.rpc.react.d.ts +67 -3
- package/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +127 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
- package/cosmos/upgrade/v1beta1/query.js +85 -0
- package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
- package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
- package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +40 -0
- package/cosmos/upgrade/v1beta1/query.rpc.react.js +45 -5
- package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
- package/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/cosmos/upgrade/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/upgrade/v1beta1/tx.registry.js +45 -1
- package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/upgrade/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/cosmos_proto/bundle.d.ts +1 -0
- package/cosmos_proto/bundle.js +8 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +12 -0
- package/cosmwasm/bundle.js +174 -0
- package/cosmwasm/wasm/v1/authz.d.ts +212 -22
- package/cosmwasm/wasm/v1/authz.js +113 -0
- package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
- package/cosmwasm/wasm/v1/genesis.js +34 -0
- package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
- package/cosmwasm/wasm/v1/ibc.js +24 -0
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/cosmwasm/wasm/v1/query.d.ts +761 -76
- package/cosmwasm/wasm/v1/query.js +581 -1
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
- package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
- package/cosmwasm/wasm/v1/query.rpc.react.d.ts +88 -1
- package/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +267 -0
- package/cosmwasm/wasm/v1/tx.registry.d.ts +213 -0
- package/cosmwasm/wasm/v1/tx.registry.js +315 -1
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
- package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
- package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +145 -17
- package/cosmwasm/wasm/v1/tx.rpc.react.js +161 -33
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/esm/cosmos/app/v1alpha1/config.js +31 -0
- package/esm/cosmos/app/v1alpha1/module.js +23 -0
- package/esm/cosmos/app/v1alpha1/query.js +16 -0
- package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
- package/esm/cosmos/app/v1alpha1/query.rpc.react.js +8 -2
- package/esm/cosmos/auth/module/v1/module.js +16 -0
- package/esm/cosmos/auth/v1beta1/auth.js +34 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +169 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
- package/esm/cosmos/auth/v1beta1/query.rpc.react.js +88 -11
- package/esm/cosmos/auth/v1beta1/tx.js +21 -0
- package/esm/cosmos/auth/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +36 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
- package/esm/cosmos/authz/v1beta1/query.js +55 -0
- package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.react.js +26 -4
- package/esm/cosmos/authz/v1beta1/tx.js +43 -0
- package/esm/cosmos/authz/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
- package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +28 -4
- package/esm/cosmos/autocli/v1/options.js +54 -0
- package/esm/cosmos/autocli/v1/query.js +21 -0
- package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/autocli/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +12 -0
- package/esm/cosmos/bank/v1beta1/bank.js +63 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
- package/esm/cosmos/bank/v1beta1/query.js +263 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
- package/esm/cosmos/bank/v1beta1/query.rpc.react.js +129 -14
- package/esm/cosmos/bank/v1beta1/tx.js +74 -0
- package/esm/cosmos/bank/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
- package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +37 -5
- package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +17 -3
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +45 -7
- package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +54 -8
- package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +188 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +16 -0
- package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/consensus/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/consensus/v1/tx.js +17 -0
- package/esm/cosmos/consensus/v1/tx.registry.js +26 -0
- package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
- package/esm/cosmos/consensus/v1/tx.rpc.react.js +11 -2
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/esm/cosmos/distribution/v1beta1/query.js +164 -0
- package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
- package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +72 -11
- package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
- package/esm/cosmos/distribution/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
- package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +65 -8
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/esm/cosmos/evidence/v1beta1/query.js +33 -0
- package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
- package/esm/cosmos/evidence/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
- package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +9 -2
- package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
- package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
- package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
- package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.react.js +32 -0
- package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
- package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.react.js +13 -0
- package/esm/cosmos/evm/vm/v1/events.js +432 -0
- package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
- package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
- package/esm/cosmos/evm/vm/v1/query.js +2677 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.react.js +150 -0
- package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
- package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.react.js +22 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
- package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
- package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +24 -4
- package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/esm/cosmos/feegrant/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +26 -4
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +10 -0
- package/esm/cosmos/gov/v1/gov.js +77 -0
- package/esm/cosmos/gov/v1/query.js +143 -0
- package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
- package/esm/cosmos/gov/v1/query.rpc.react.js +64 -10
- package/esm/cosmos/gov/v1/tx.js +111 -3
- package/esm/cosmos/gov/v1/tx.registry.js +134 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
- package/esm/cosmos/gov/v1/tx.rpc.react.js +56 -8
- package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
- package/esm/cosmos/gov/v1beta1/gov.js +74 -3
- package/esm/cosmos/gov/v1beta1/query.js +131 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
- package/esm/cosmos/gov/v1beta1/query.rpc.react.js +57 -9
- package/esm/cosmos/gov/v1beta1/tx.js +62 -3
- package/esm/cosmos/gov/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
- package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +31 -5
- package/esm/cosmos/ics23/v1/proofs.js +169 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +43 -0
- package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/mint/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/mint/v1beta1/tx.js +21 -0
- package/esm/cosmos/mint/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +16 -0
- package/esm/cosmos/params/v1beta1/query.js +46 -0
- package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
- package/esm/cosmos/params/v1beta1/query.rpc.react.js +18 -3
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/esm/cosmos/slashing/v1beta1/query.js +53 -0
- package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
- package/esm/cosmos/slashing/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +17 -0
- package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
- package/esm/cosmos/staking/v1beta1/query.js +250 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
- package/esm/cosmos/staking/v1beta1/query.rpc.react.js +124 -15
- package/esm/cosmos/staking/v1beta1/staking.js +186 -0
- package/esm/cosmos/staking/v1beta1/tx.js +120 -0
- package/esm/cosmos/staking/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
- package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +58 -8
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/esm/cosmos/tx/v1beta1/service.js +176 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
- package/esm/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/esm/cosmos/tx/v1beta1/tx.js +127 -0
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
- package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
- package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +46 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/esm/cosmos/upgrade/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/esm/cosmos_proto/bundle.js +1 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +12 -0
- package/esm/cosmwasm/wasm/v1/authz.js +113 -0
- package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
- package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/esm/cosmwasm/wasm/v1/query.js +580 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
- package/esm/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/esm/cosmwasm/wasm/v1/tx.js +267 -0
- package/esm/cosmwasm/wasm/v1/tx.registry.js +314 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
- package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +162 -34
- package/esm/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/ethermint/bundle.js +25 -0
- package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/esm/ethermint/evm/v1/events.js +24 -0
- package/esm/ethermint/evm/v1/evm.js +69 -0
- package/esm/ethermint/evm/v1/genesis.js +21 -0
- package/esm/ethermint/evm/v1/query.js +167 -0
- package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
- package/esm/ethermint/evm/v1/query.rpc.react.js +88 -13
- package/esm/ethermint/evm/v1/tx.js +66 -0
- package/esm/ethermint/evm/v1/tx.registry.js +44 -0
- package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
- package/esm/ethermint/evm/v1/tx.rpc.react.js +16 -3
- package/esm/ethermint/feemarket/v1/events.js +12 -0
- package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
- package/esm/ethermint/feemarket/v1/genesis.js +10 -0
- package/esm/ethermint/feemarket/v1/query.js +42 -0
- package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
- package/esm/ethermint/feemarket/v1/query.rpc.react.js +22 -4
- package/esm/ethermint/feemarket/v1/tx.js +17 -0
- package/esm/ethermint/feemarket/v1/tx.registry.js +26 -0
- package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
- package/esm/ethermint/feemarket/v1/tx.rpc.react.js +9 -2
- package/esm/ethermint/types/v1/account.js +10 -0
- package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
- package/esm/ethermint/types/v1/indexer.js +6 -0
- package/esm/ethermint/types/v1/web3.js +7 -0
- package/esm/extern.js +14 -4
- package/esm/google/api/http.js +290 -0
- package/esm/google/bundle.js +5 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +553 -11
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +14 -22
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +62 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +8 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/transfer/v1/authz.js +19 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
- package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/esm/ibc/applications/transfer/v1/query.js +270 -175
- package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
- package/esm/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/esm/ibc/applications/transfer/v1/token.js +300 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
- package/esm/ibc/applications/transfer/v1/tx.js +49 -3
- package/esm/ibc/applications/transfer/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/bundle.js +94 -0
- package/esm/ibc/core/channel/v1/channel.js +84 -124
- package/esm/ibc/core/channel/v1/genesis.js +21 -17
- package/esm/ibc/core/channel/v1/query.js +252 -530
- package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
- package/esm/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/esm/ibc/core/channel/v1/tx.js +164 -1970
- package/esm/ibc/core/channel/v1/tx.registry.js +190 -2
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
- package/esm/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/esm/ibc/core/channel/v2/genesis.js +360 -0
- package/esm/ibc/core/channel/v2/packet.js +508 -0
- package/esm/ibc/core/channel/v2/query.js +1727 -0
- package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
- package/esm/ibc/core/channel/v2/query.rpc.react.js +82 -0
- package/esm/ibc/core/channel/v2/tx.js +901 -0
- package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
- package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
- package/esm/ibc/core/channel/v2/tx.rpc.react.js +38 -0
- package/esm/ibc/core/client/v1/client.js +50 -235
- package/esm/ibc/core/client/v1/genesis.js +27 -0
- package/esm/ibc/core/client/v1/query.js +355 -16
- package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
- package/esm/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/esm/ibc/core/client/v1/tx.js +279 -7
- package/esm/ibc/core/client/v1/tx.registry.js +154 -2
- package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
- package/esm/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/esm/ibc/core/client/v2/config.js +90 -0
- package/esm/ibc/core/client/v2/counterparty.js +100 -0
- package/esm/ibc/core/client/v2/genesis.js +194 -0
- package/esm/ibc/core/client/v2/query.js +348 -0
- package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
- package/esm/ibc/core/client/v2/query.rpc.react.js +22 -0
- package/esm/ibc/core/client/v2/tx.js +378 -0
- package/esm/ibc/core/client/v2/tx.registry.js +46 -0
- package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
- package/esm/ibc/core/client/v2/tx.rpc.react.js +20 -0
- package/esm/ibc/core/commitment/v1/commitment.js +29 -80
- package/esm/ibc/core/commitment/v2/commitment.js +118 -0
- package/esm/ibc/core/connection/v1/connection.js +57 -0
- package/esm/ibc/core/connection/v1/genesis.js +10 -0
- package/esm/ibc/core/connection/v1/query.js +105 -0
- package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
- package/esm/ibc/core/connection/v1/query.rpc.react.js +46 -7
- package/esm/ibc/core/connection/v1/tx.js +82 -0
- package/esm/ibc/core/connection/v1/tx.registry.js +98 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
- package/esm/ibc/core/connection/v1/tx.rpc.react.js +38 -6
- package/esm/ibc/core/types/v1/genesis.js +41 -3
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
- package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
- package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +15 -3
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/tx.registry.js +62 -0
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/esm/index.js +21 -0
- package/esm/react-query.js +4 -6
- package/esm/registry.js +9 -1
- package/esm/tendermint/abci/types.js +322 -0
- package/esm/tendermint/bundle.js +10 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +36 -0
- package/esm/tendermint/p2p/types.js +24 -0
- package/esm/tendermint/types/block.js +9 -0
- package/esm/tendermint/types/evidence.js +35 -0
- package/esm/tendermint/types/params.js +50 -0
- package/esm/tendermint/types/types.js +121 -0
- package/esm/tendermint/types/validator.js +25 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/esm/xpla/bundle.js +28 -0
- package/esm/xpla/burn/v1beta1/burn.js +111 -0
- package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/esm/xpla/burn/v1beta1/query.js +327 -0
- package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
- package/esm/xpla/burn/v1beta1/query.rpc.react.js +22 -0
- package/esm/xpla/burn/v1beta1/tx.js +169 -0
- package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.react.js +11 -0
- package/esm/xpla/reward/v1beta1/genesis.js +10 -0
- package/esm/xpla/reward/v1beta1/query.js +33 -0
- package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
- package/esm/xpla/reward/v1beta1/query.rpc.react.js +15 -3
- package/esm/xpla/reward/v1beta1/reward.js +6 -0
- package/esm/xpla/reward/v1beta1/tx.js +35 -0
- package/esm/xpla/reward/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
- package/esm/xpla/reward/v1beta1/tx.rpc.react.js +18 -3
- package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/esm/xpla/volunteer/v1beta1/query.js +12 -0
- package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
- package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +8 -2
- package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
- package/esm/xpla/volunteer/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
- package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +16 -3
- package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/ethermint/bundle.d.ts +25 -0
- package/ethermint/bundle.js +142 -0
- package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
- package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/ethermint/evm/v1/events.d.ts +144 -32
- package/ethermint/evm/v1/events.js +24 -0
- package/ethermint/evm/v1/evm.d.ts +434 -110
- package/ethermint/evm/v1/evm.js +69 -0
- package/ethermint/evm/v1/genesis.d.ts +62 -12
- package/ethermint/evm/v1/genesis.js +21 -0
- package/ethermint/evm/v1/query.d.ts +673 -126
- package/ethermint/evm/v1/query.js +167 -0
- package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
- package/ethermint/evm/v1/query.rpc.func.js +88 -37
- package/ethermint/evm/v1/query.rpc.react.d.ts +75 -0
- package/ethermint/evm/v1/query.rpc.react.js +87 -12
- package/ethermint/evm/v1/tx.d.ts +363 -88
- package/ethermint/evm/v1/tx.js +66 -0
- package/ethermint/evm/v1/tx.registry.d.ts +33 -0
- package/ethermint/evm/v1/tx.registry.js +45 -1
- package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
- package/ethermint/evm/v1/tx.rpc.func.js +18 -16
- package/ethermint/evm/v1/tx.rpc.react.d.ts +15 -2
- package/ethermint/evm/v1/tx.rpc.react.js +15 -2
- package/ethermint/feemarket/v1/events.d.ts +54 -10
- package/ethermint/feemarket/v1/events.js +12 -0
- package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
- package/ethermint/feemarket/v1/feemarket.js +6 -0
- package/ethermint/feemarket/v1/genesis.d.ts +24 -4
- package/ethermint/feemarket/v1/genesis.js +10 -0
- package/ethermint/feemarket/v1/query.d.ts +116 -14
- package/ethermint/feemarket/v1/query.js +42 -0
- package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
- package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
- package/ethermint/feemarket/v1/query.rpc.react.d.ts +18 -0
- package/ethermint/feemarket/v1/query.rpc.react.js +21 -3
- package/ethermint/feemarket/v1/tx.d.ts +37 -4
- package/ethermint/feemarket/v1/tx.js +17 -0
- package/ethermint/feemarket/v1/tx.registry.d.ts +21 -0
- package/ethermint/feemarket/v1/tx.registry.js +27 -1
- package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
- package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
- package/ethermint/feemarket/v1/tx.rpc.react.d.ts +8 -1
- package/ethermint/feemarket/v1/tx.rpc.react.js +8 -1
- package/ethermint/types/v1/account.d.ts +25 -4
- package/ethermint/types/v1/account.js +10 -0
- package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
- package/ethermint/types/v1/dynamic_fee.js +6 -0
- package/ethermint/types/v1/indexer.d.ts +42 -10
- package/ethermint/types/v1/indexer.js +6 -0
- package/ethermint/types/v1/web3.d.ts +13 -0
- package/ethermint/types/v1/web3.js +7 -0
- package/extern.d.ts +3 -2
- package/extern.js +14 -4
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +290 -0
- package/google/bundle.d.ts +5 -0
- package/google/bundle.js +21 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +833 -86
- package/google/protobuf/descriptor.js +561 -13
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +7 -87
- package/helper-func-types.js +15 -24
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +12 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +45 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +63 -1
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +21 -3
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +6 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +7 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +45 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +19 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
- package/ibc/applications/transfer/v1/denomtrace.js +101 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
- package/ibc/applications/transfer/v1/genesis.js +23 -12
- package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
- package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/ibc/applications/transfer/v1/query.d.ts +389 -170
- package/ibc/applications/transfer/v1/query.js +270 -175
- package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
- package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
- package/ibc/applications/transfer/v1/query.rpc.react.d.ts +39 -3
- package/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/ibc/applications/transfer/v1/token.d.ts +179 -0
- package/ibc/applications/transfer/v1/token.js +303 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
- package/ibc/applications/transfer/v1/transfer.js +10 -90
- package/ibc/applications/transfer/v1/tx.d.ts +127 -24
- package/ibc/applications/transfer/v1/tx.js +49 -3
- package/ibc/applications/transfer/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/transfer/v1/tx.registry.js +45 -1
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/transfer/v1/tx.rpc.react.js +14 -2
- package/ibc/bundle.d.ts +94 -0
- package/ibc/bundle.js +540 -0
- package/ibc/core/channel/v1/channel.d.ts +293 -120
- package/ibc/core/channel/v1/channel.js +85 -125
- package/ibc/core/channel/v1/genesis.d.ts +38 -7
- package/ibc/core/channel/v1/genesis.js +20 -16
- package/ibc/core/channel/v1/query.d.ts +840 -378
- package/ibc/core/channel/v1/query.js +252 -530
- package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
- package/ibc/core/channel/v1/query.rpc.func.js +107 -70
- package/ibc/core/channel/v1/query.rpc.react.d.ts +93 -4
- package/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/ibc/core/channel/v1/tx.d.ts +335 -747
- package/ibc/core/channel/v1/tx.js +164 -1970
- package/ibc/core/channel/v1/tx.registry.d.ts +129 -0
- package/ibc/core/channel/v1/tx.registry.js +190 -2
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
- package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
- package/ibc/core/channel/v1/tx.rpc.react.d.ts +72 -20
- package/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/ibc/core/channel/v2/genesis.d.ts +202 -0
- package/ibc/core/channel/v2/genesis.js +363 -0
- package/ibc/core/channel/v2/packet.d.ts +322 -0
- package/ibc/core/channel/v2/packet.js +513 -0
- package/ibc/core/channel/v2/query.d.ts +1067 -0
- package/ibc/core/channel/v2/query.js +1730 -0
- package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.func.js +109 -0
- package/ibc/core/channel/v2/query.rpc.react.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.react.js +85 -0
- package/ibc/core/channel/v2/tx.d.ts +437 -0
- package/ibc/core/channel/v2/tx.js +906 -0
- package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
- package/ibc/core/channel/v2/tx.registry.js +85 -0
- package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
- package/ibc/core/channel/v2/tx.rpc.react.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.react.js +41 -0
- package/ibc/core/client/v1/client.d.ts +133 -153
- package/ibc/core/client/v1/client.js +51 -236
- package/ibc/core/client/v1/genesis.d.ts +86 -20
- package/ibc/core/client/v1/genesis.js +27 -0
- package/ibc/core/client/v1/query.d.ts +591 -75
- package/ibc/core/client/v1/query.js +356 -17
- package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
- package/ibc/core/client/v1/query.rpc.func.js +86 -31
- package/ibc/core/client/v1/query.rpc.react.d.ts +70 -1
- package/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/ibc/core/client/v1/tx.d.ts +454 -60
- package/ibc/core/client/v1/tx.js +280 -8
- package/ibc/core/client/v1/tx.registry.d.ts +105 -0
- package/ibc/core/client/v1/tx.registry.js +154 -2
- package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
- package/ibc/core/client/v1/tx.rpc.func.js +73 -58
- package/ibc/core/client/v1/tx.rpc.react.d.ts +57 -8
- package/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/ibc/core/client/v2/config.d.ts +66 -0
- package/ibc/core/client/v2/config.js +93 -0
- package/ibc/core/client/v2/counterparty.d.ts +65 -0
- package/ibc/core/client/v2/counterparty.js +103 -0
- package/ibc/core/client/v2/genesis.d.ts +121 -0
- package/ibc/core/client/v2/genesis.js +197 -0
- package/ibc/core/client/v2/query.d.ts +218 -0
- package/ibc/core/client/v2/query.js +351 -0
- package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.func.js +31 -0
- package/ibc/core/client/v2/query.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.react.js +25 -0
- package/ibc/core/client/v2/tx.d.ts +251 -0
- package/ibc/core/client/v2/tx.js +381 -0
- package/ibc/core/client/v2/tx.registry.d.ts +35 -0
- package/ibc/core/client/v2/tx.registry.js +49 -0
- package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.func.js +23 -0
- package/ibc/core/client/v2/tx.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.react.js +23 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -41
- package/ibc/core/commitment/v1/commitment.js +30 -81
- package/ibc/core/commitment/v2/commitment.d.ts +141 -0
- package/ibc/core/commitment/v2/commitment.js +121 -0
- package/ibc/core/connection/v1/connection.d.ts +199 -38
- package/ibc/core/connection/v1/connection.js +57 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +10 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +105 -0
- package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
- package/ibc/core/connection/v1/query.rpc.func.js +46 -19
- package/ibc/core/connection/v1/query.rpc.react.d.ts +39 -0
- package/ibc/core/connection/v1/query.rpc.react.js +45 -6
- package/ibc/core/connection/v1/tx.d.ts +254 -32
- package/ibc/core/connection/v1/tx.js +82 -0
- package/ibc/core/connection/v1/tx.registry.d.ts +69 -0
- package/ibc/core/connection/v1/tx.registry.js +99 -1
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
- package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
- package/ibc/core/connection/v1/tx.rpc.react.d.ts +37 -5
- package/ibc/core/connection/v1/tx.rpc.react.js +37 -5
- package/ibc/core/types/v1/genesis.d.ts +56 -8
- package/ibc/core/types/v1/genesis.js +41 -3
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
- package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
- package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
- package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +31 -0
- package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
- package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
- package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +12 -0
- package/ibc/lightclients/wasm/v1/query.rpc.react.js +14 -2
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/tx.registry.d.ts +45 -0
- package/ibc/lightclients/wasm/v1/tx.registry.js +63 -1
- package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
- package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/lightclients/wasm/v1/tx.rpc.react.js +21 -3
- package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
- package/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/index.d.ts +21 -0
- package/index.js +37 -0
- package/package.json +8 -9
- package/react-query.d.ts +8 -6
- package/react-query.js +5 -7
- package/registry.d.ts +3 -1
- package/registry.js +9 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +322 -0
- package/tendermint/bundle.d.ts +10 -0
- package/tendermint/bundle.js +115 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +36 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +24 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +9 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +35 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +50 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +121 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +25 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +4 -49
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/xpla/bundle.d.ts +28 -0
- package/xpla/bundle.js +71 -0
- package/xpla/burn/v1beta1/burn.d.ts +54 -0
- package/xpla/burn/v1beta1/burn.js +114 -0
- package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
- package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/xpla/burn/v1beta1/query.d.ts +204 -0
- package/xpla/burn/v1beta1/query.js +330 -0
- package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
- package/xpla/burn/v1beta1/query.rpc.react.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.react.js +25 -0
- package/xpla/burn/v1beta1/tx.d.ts +105 -0
- package/xpla/burn/v1beta1/tx.js +172 -0
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.d.ts +6 -6
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.js +9 -9
- package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
- package/xpla/burn/v1beta1/tx.rpc.react.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.react.js +14 -0
- package/xpla/reward/v1beta1/genesis.d.ts +24 -4
- package/xpla/reward/v1beta1/genesis.js +10 -0
- package/xpla/reward/v1beta1/query.d.ts +74 -8
- package/xpla/reward/v1beta1/query.js +33 -0
- package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
- package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
- package/xpla/reward/v1beta1/query.rpc.react.d.ts +12 -0
- package/xpla/reward/v1beta1/query.rpc.react.js +14 -2
- package/xpla/reward/v1beta1/reward.d.ts +18 -2
- package/xpla/reward/v1beta1/reward.js +6 -0
- package/xpla/reward/v1beta1/tx.d.ts +64 -4
- package/xpla/reward/v1beta1/tx.js +35 -0
- package/xpla/reward/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/reward/v1beta1/tx.registry.js +45 -1
- package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
- package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
- package/xpla/reward/v1beta1/tx.rpc.react.d.ts +17 -2
- package/xpla/reward/v1beta1/tx.rpc.react.js +17 -2
- package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
- package/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
- package/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/xpla/volunteer/v1beta1/query.d.ts +36 -4
- package/xpla/volunteer/v1beta1/query.js +12 -0
- package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
- package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
- package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +6 -0
- package/xpla/volunteer/v1beta1/query.rpc.react.js +7 -1
- package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
- package/xpla/volunteer/v1beta1/tx.js +31 -0
- package/xpla/volunteer/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/volunteer/v1beta1/tx.registry.js +45 -1
- package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
- package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
- package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +15 -2
- package/xpla/volunteer/v1beta1/tx.rpc.react.js +15 -2
- package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
- package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/cosmos/app/runtime/v2/module.d.ts +0 -231
- package/cosmos/app/runtime/v2/module.js +0 -421
- package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
- package/cosmos/auth/v1beta1/accounts.js +0 -161
- package/cosmos/base/grpc/v2/service.d.ts +0 -168
- package/cosmos/base/grpc/v2/service.js +0 -394
- package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
- package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
- package/cosmos/base/grpc/v2/service.rpc.react.d.ts +0 -3
- package/cosmos/base/grpc/v2/service.rpc.react.js +0 -13
- package/cosmos/circuit/module/v1/module.d.ts +0 -36
- package/cosmos/circuit/module/v1/module.js +0 -83
- package/cosmos/circuit/v1/query.d.ts +0 -200
- package/cosmos/circuit/v1/query.js +0 -480
- package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/query.rpc.func.js +0 -42
- package/cosmos/circuit/v1/tx.d.ts +0 -251
- package/cosmos/circuit/v1/tx.js +0 -528
- package/cosmos/circuit/v1/tx.registry.d.ts +0 -47
- package/cosmos/circuit/v1/tx.registry.js +0 -67
- package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/tx.rpc.func.js +0 -37
- package/cosmos/circuit/v1/types.d.ts +0 -151
- package/cosmos/circuit/v1/types.js +0 -350
- package/cosmos/crisis/module/v1/module.d.ts +0 -40
- package/cosmos/crisis/module/v1/module.js +0 -95
- package/cosmos/crisis/v1beta1/genesis.js +0 -84
- package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
- package/cosmos/crisis/v1beta1/tx.js +0 -328
- package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -6
- package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -27
- package/cosmos/crypto/ed25519/keys.d.ts +0 -84
- package/cosmos/crypto/ed25519/keys.js +0 -162
- package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
- package/cosmos/crypto/hd/v1/hd.js +0 -131
- package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
- package/cosmos/crypto/keyring/v1/record.js +0 -431
- package/cosmos/crypto/multisig/keys.d.ts +0 -45
- package/cosmos/crypto/multisig/keys.js +0 -99
- package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
- package/cosmos/crypto/secp256k1/keys.js +0 -162
- package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
- package/cosmos/crypto/secp256r1/keys.js +0 -162
- package/cosmos/genutil/module/v1/module.d.ts +0 -32
- package/cosmos/genutil/module/v1/module.js +0 -70
- package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
- package/cosmos/group/module/v1/module.d.ts +0 -53
- package/cosmos/group/module/v1/module.js +0 -96
- package/cosmos/group/v1/events.d.ts +0 -363
- package/cosmos/group/v1/events.js +0 -847
- package/cosmos/group/v1/genesis.d.ts +0 -83
- package/cosmos/group/v1/genesis.js +0 -183
- package/cosmos/group/v1/query.d.ts +0 -1044
- package/cosmos/group/v1/query.js +0 -2434
- package/cosmos/group/v1/query.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/query.rpc.func.js +0 -174
- package/cosmos/group/v1/tx.d.ts +0 -1140
- package/cosmos/group/v1/tx.js +0 -2567
- package/cosmos/group/v1/tx.registry.d.ts +0 -179
- package/cosmos/group/v1/tx.registry.js +0 -265
- package/cosmos/group/v1/tx.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/tx.rpc.func.js +0 -147
- package/cosmos/group/v1/types.d.ts +0 -799
- package/cosmos/group/v1/types.js +0 -1542
- package/cosmos/msg/textual/v1/textual.d.ts +0 -1
- package/cosmos/msg/textual/v1/textual.js +0 -2
- package/cosmos/nft/module/v1/module.d.ts +0 -32
- package/cosmos/nft/module/v1/module.js +0 -70
- package/cosmos/nft/v1beta1/event.d.ts +0 -132
- package/cosmos/nft/v1beta1/event.js +0 -323
- package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
- package/cosmos/nft/v1beta1/genesis.js +0 -195
- package/cosmos/nft/v1beta1/nft.d.ts +0 -111
- package/cosmos/nft/v1beta1/nft.js +0 -282
- package/cosmos/nft/v1beta1/query.d.ts +0 -508
- package/cosmos/nft/v1beta1/query.js +0 -1189
- package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -16
- package/cosmos/nft/v1beta1/query.rpc.func.js +0 -90
- package/cosmos/nft/v1beta1/tx.d.ts +0 -78
- package/cosmos/nft/v1beta1/tx.js +0 -184
- package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -4
- package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -17
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
- package/cosmos/orm/module/v1alpha1/module.js +0 -70
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
- package/cosmos/orm/query/v1alpha1/query.js +0 -751
- package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -6
- package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -30
- package/cosmos/orm/v1/orm.d.ts +0 -278
- package/cosmos/orm/v1/orm.js +0 -380
- package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
- package/cosmos/orm/v1alpha1/schema.js +0 -258
- package/cosmos/reflection/v1/reflection.d.ts +0 -67
- package/cosmos/reflection/v1/reflection.js +0 -152
- package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -4
- package/cosmos/reflection/v1/reflection.rpc.func.js +0 -18
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
- package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
- package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
- package/cosmos/store/snapshots/v1/snapshot.js +0 -687
- package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
- package/cosmos/store/snapshots/v2/snapshot.js +0 -687
- package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
- package/cosmos/store/streaming/abci/grpc.js +0 -332
- package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
- package/cosmos/store/v1beta1/commit_info.js +0 -292
- package/cosmos/store/v1beta1/listening.d.ts +0 -101
- package/cosmos/store/v1beta1/listening.js +0 -223
- package/cosmos/streaming/v1/grpc.d.ts +0 -302
- package/cosmos/streaming/v1/grpc.js +0 -826
- package/cosmos/validate/module/v1/module.d.ts +0 -32
- package/cosmos/validate/module/v1/module.js +0 -70
- package/cosmos/vesting/module/v1/module.d.ts +0 -32
- package/cosmos/vesting/module/v1/module.js +0 -70
- package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
- package/cosmos/vesting/v1beta1/tx.js +0 -553
- package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -47
- package/cosmos/vesting/v1beta1/tx.registry.js +0 -67
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -8
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -37
- package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
- package/cosmos/vesting/v1beta1/vesting.js +0 -586
- package/dist/package.json +0 -50
- package/esm/cosmos/app/runtime/v2/module.js +0 -418
- package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
- package/esm/cosmos/base/grpc/v2/service.js +0 -391
- package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
- package/esm/cosmos/base/grpc/v2/service.rpc.react.js +0 -10
- package/esm/cosmos/circuit/module/v1/module.js +0 -80
- package/esm/cosmos/circuit/v1/query.js +0 -477
- package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -36
- package/esm/cosmos/circuit/v1/tx.js +0 -525
- package/esm/cosmos/circuit/v1/tx.registry.js +0 -64
- package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -31
- package/esm/cosmos/circuit/v1/types.js +0 -345
- package/esm/cosmos/crisis/module/v1/module.js +0 -92
- package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
- package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
- package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -46
- package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -22
- package/esm/cosmos/crypto/ed25519/keys.js +0 -159
- package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
- package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
- package/esm/cosmos/crypto/multisig/keys.js +0 -96
- package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
- package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
- package/esm/cosmos/genutil/module/v1/module.js +0 -67
- package/esm/cosmos/group/module/v1/module.js +0 -93
- package/esm/cosmos/group/v1/events.js +0 -844
- package/esm/cosmos/group/v1/genesis.js +0 -180
- package/esm/cosmos/group/v1/query.js +0 -2431
- package/esm/cosmos/group/v1/query.rpc.func.js +0 -157
- package/esm/cosmos/group/v1/tx.js +0 -2562
- package/esm/cosmos/group/v1/tx.registry.js +0 -262
- package/esm/cosmos/group/v1/tx.rpc.func.js +0 -130
- package/esm/cosmos/group/v1/types.js +0 -1533
- package/esm/cosmos/msg/textual/v1/textual.js +0 -1
- package/esm/cosmos/nft/module/v1/module.js +0 -67
- package/esm/cosmos/nft/v1beta1/event.js +0 -320
- package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
- package/esm/cosmos/nft/v1beta1/nft.js +0 -279
- package/esm/cosmos/nft/v1beta1/query.js +0 -1186
- package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -80
- package/esm/cosmos/nft/v1beta1/tx.js +0 -181
- package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -28
- package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -25
- package/esm/cosmos/orm/v1/orm.js +0 -377
- package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
- package/esm/cosmos/reflection/v1/reflection.js +0 -149
- package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -14
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
- package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
- package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
- package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
- package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
- package/esm/cosmos/store/v1beta1/listening.js +0 -220
- package/esm/cosmos/streaming/v1/grpc.js +0 -823
- package/esm/cosmos/validate/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
- package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -64
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -31
- package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
- package/esm/ibc/applications/fee/v1/ack.js +0 -103
- package/esm/ibc/applications/fee/v1/fee.js +0 -398
- package/esm/ibc/applications/fee/v1/genesis.js +0 -531
- package/esm/ibc/applications/fee/v1/metadata.js +0 -90
- package/esm/ibc/applications/fee/v1/query.js +0 -1739
- package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
- package/esm/ibc/applications/fee/v1/query.rpc.react.js +0 -42
- package/esm/ibc/applications/fee/v1/tx.js +0 -707
- package/esm/ibc/applications/fee/v1/tx.registry.js +0 -2
- package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
- package/esm/ibc/applications/fee/v1/tx.rpc.react.js +0 -14
- package/esm/ibc/core/channel/v1/upgrade.js +0 -300
- package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
- package/ibc/applications/fee/v1/ack.d.ts +0 -45
- package/ibc/applications/fee/v1/ack.js +0 -106
- package/ibc/applications/fee/v1/fee.d.ts +0 -164
- package/ibc/applications/fee/v1/fee.js +0 -401
- package/ibc/applications/fee/v1/genesis.d.ts +0 -225
- package/ibc/applications/fee/v1/genesis.js +0 -534
- package/ibc/applications/fee/v1/metadata.d.ts +0 -47
- package/ibc/applications/fee/v1/metadata.js +0 -93
- package/ibc/applications/fee/v1/query.d.ts +0 -757
- package/ibc/applications/fee/v1/query.js +0 -1742
- package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
- package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
- package/ibc/applications/fee/v1/query.rpc.react.d.ts +0 -11
- package/ibc/applications/fee/v1/query.rpc.react.js +0 -45
- package/ibc/applications/fee/v1/tx.d.ts +0 -326
- package/ibc/applications/fee/v1/tx.js +0 -710
- package/ibc/applications/fee/v1/tx.registry.d.ts +0 -2
- package/ibc/applications/fee/v1/tx.registry.js +0 -5
- package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
- package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
- package/ibc/applications/fee/v1/tx.rpc.react.d.ts +0 -5
- package/ibc/applications/fee/v1/tx.rpc.react.js +0 -17
- package/ibc/core/channel/v1/upgrade.d.ts +0 -142
- package/ibc/core/channel/v1/upgrade.js +0 -303
- package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
- package/ibc/lightclients/localhost/v2/localhost.js +0 -84
|
@@ -1,50 +1,85 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* AppDescriptor describes a cosmos-sdk based application
|
|
5
|
+
* @name AppDescriptor
|
|
6
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
7
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.AppDescriptor
|
|
8
|
+
*/
|
|
4
9
|
export interface AppDescriptor {
|
|
5
10
|
/**
|
|
6
11
|
* AuthnDescriptor provides information on how to authenticate transactions on the application
|
|
7
12
|
* NOTE: experimental and subject to change in future releases.
|
|
8
13
|
*/
|
|
9
14
|
authn?: AuthnDescriptor;
|
|
10
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* chain provides the chain descriptor
|
|
17
|
+
*/
|
|
11
18
|
chain?: ChainDescriptor;
|
|
12
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* codec provides metadata information regarding codec related types
|
|
21
|
+
*/
|
|
13
22
|
codec?: CodecDescriptor;
|
|
14
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* configuration provides metadata information regarding the sdk.Config type
|
|
25
|
+
*/
|
|
15
26
|
configuration?: ConfigurationDescriptor;
|
|
16
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* query_services provides metadata information regarding the available queriable endpoints
|
|
29
|
+
*/
|
|
17
30
|
queryServices?: QueryServicesDescriptor;
|
|
18
|
-
/**
|
|
31
|
+
/**
|
|
32
|
+
* tx provides metadata information regarding how to send transactions to the given application
|
|
33
|
+
*/
|
|
19
34
|
tx?: TxDescriptor;
|
|
20
35
|
}
|
|
21
36
|
export interface AppDescriptorProtoMsg {
|
|
22
37
|
typeUrl: "/cosmos.base.reflection.v2alpha1.AppDescriptor";
|
|
23
38
|
value: Uint8Array;
|
|
24
39
|
}
|
|
25
|
-
/**
|
|
40
|
+
/**
|
|
41
|
+
* AppDescriptor describes a cosmos-sdk based application
|
|
42
|
+
* @name AppDescriptorAmino
|
|
43
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
44
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.AppDescriptor
|
|
45
|
+
*/
|
|
26
46
|
export interface AppDescriptorAmino {
|
|
27
47
|
/**
|
|
28
48
|
* AuthnDescriptor provides information on how to authenticate transactions on the application
|
|
29
49
|
* NOTE: experimental and subject to change in future releases.
|
|
30
50
|
*/
|
|
31
51
|
authn?: AuthnDescriptorAmino;
|
|
32
|
-
/**
|
|
52
|
+
/**
|
|
53
|
+
* chain provides the chain descriptor
|
|
54
|
+
*/
|
|
33
55
|
chain?: ChainDescriptorAmino;
|
|
34
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* codec provides metadata information regarding codec related types
|
|
58
|
+
*/
|
|
35
59
|
codec?: CodecDescriptorAmino;
|
|
36
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* configuration provides metadata information regarding the sdk.Config type
|
|
62
|
+
*/
|
|
37
63
|
configuration?: ConfigurationDescriptorAmino;
|
|
38
|
-
/**
|
|
64
|
+
/**
|
|
65
|
+
* query_services provides metadata information regarding the available queriable endpoints
|
|
66
|
+
*/
|
|
39
67
|
query_services?: QueryServicesDescriptorAmino;
|
|
40
|
-
/**
|
|
68
|
+
/**
|
|
69
|
+
* tx provides metadata information regarding how to send transactions to the given application
|
|
70
|
+
*/
|
|
41
71
|
tx?: TxDescriptorAmino;
|
|
42
72
|
}
|
|
43
73
|
export interface AppDescriptorAminoMsg {
|
|
44
74
|
type: "cosmos-sdk/AppDescriptor";
|
|
45
75
|
value: AppDescriptorAmino;
|
|
46
76
|
}
|
|
47
|
-
/**
|
|
77
|
+
/**
|
|
78
|
+
* TxDescriptor describes the accepted transaction type
|
|
79
|
+
* @name TxDescriptor
|
|
80
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
81
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.TxDescriptor
|
|
82
|
+
*/
|
|
48
83
|
export interface TxDescriptor {
|
|
49
84
|
/**
|
|
50
85
|
* fullname is the protobuf fullname of the raw transaction type (for instance the tx.Tx type)
|
|
@@ -52,14 +87,21 @@ export interface TxDescriptor {
|
|
|
52
87
|
* reflection clients to understand if they can handle a specific transaction type in an application.
|
|
53
88
|
*/
|
|
54
89
|
fullname: string;
|
|
55
|
-
/**
|
|
90
|
+
/**
|
|
91
|
+
* msgs lists the accepted application messages (sdk.Msg)
|
|
92
|
+
*/
|
|
56
93
|
msgs: MsgDescriptor[];
|
|
57
94
|
}
|
|
58
95
|
export interface TxDescriptorProtoMsg {
|
|
59
96
|
typeUrl: "/cosmos.base.reflection.v2alpha1.TxDescriptor";
|
|
60
97
|
value: Uint8Array;
|
|
61
98
|
}
|
|
62
|
-
/**
|
|
99
|
+
/**
|
|
100
|
+
* TxDescriptor describes the accepted transaction type
|
|
101
|
+
* @name TxDescriptorAmino
|
|
102
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
103
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.TxDescriptor
|
|
104
|
+
*/
|
|
63
105
|
export interface TxDescriptorAmino {
|
|
64
106
|
/**
|
|
65
107
|
* fullname is the protobuf fullname of the raw transaction type (for instance the tx.Tx type)
|
|
@@ -67,7 +109,9 @@ export interface TxDescriptorAmino {
|
|
|
67
109
|
* reflection clients to understand if they can handle a specific transaction type in an application.
|
|
68
110
|
*/
|
|
69
111
|
fullname: string;
|
|
70
|
-
/**
|
|
112
|
+
/**
|
|
113
|
+
* msgs lists the accepted application messages (sdk.Msg)
|
|
114
|
+
*/
|
|
71
115
|
msgs: MsgDescriptorAmino[];
|
|
72
116
|
}
|
|
73
117
|
export interface TxDescriptorAminoMsg {
|
|
@@ -77,9 +121,14 @@ export interface TxDescriptorAminoMsg {
|
|
|
77
121
|
/**
|
|
78
122
|
* AuthnDescriptor provides information on how to sign transactions without relying
|
|
79
123
|
* on the online RPCs GetTxMetadata and CombineUnsignedTxAndSignatures
|
|
124
|
+
* @name AuthnDescriptor
|
|
125
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
126
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.AuthnDescriptor
|
|
80
127
|
*/
|
|
81
128
|
export interface AuthnDescriptor {
|
|
82
|
-
/**
|
|
129
|
+
/**
|
|
130
|
+
* sign_modes defines the supported signature algorithm
|
|
131
|
+
*/
|
|
83
132
|
signModes: SigningModeDescriptor[];
|
|
84
133
|
}
|
|
85
134
|
export interface AuthnDescriptorProtoMsg {
|
|
@@ -89,9 +138,14 @@ export interface AuthnDescriptorProtoMsg {
|
|
|
89
138
|
/**
|
|
90
139
|
* AuthnDescriptor provides information on how to sign transactions without relying
|
|
91
140
|
* on the online RPCs GetTxMetadata and CombineUnsignedTxAndSignatures
|
|
141
|
+
* @name AuthnDescriptorAmino
|
|
142
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
143
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.AuthnDescriptor
|
|
92
144
|
*/
|
|
93
145
|
export interface AuthnDescriptorAmino {
|
|
94
|
-
/**
|
|
146
|
+
/**
|
|
147
|
+
* sign_modes defines the supported signature algorithm
|
|
148
|
+
*/
|
|
95
149
|
sign_modes: SigningModeDescriptorAmino[];
|
|
96
150
|
}
|
|
97
151
|
export interface AuthnDescriptorAminoMsg {
|
|
@@ -103,11 +157,18 @@ export interface AuthnDescriptorAminoMsg {
|
|
|
103
157
|
* NOTE(fdymylja): here we could go as far as providing an entire flow on how
|
|
104
158
|
* to sign a message given a SigningModeDescriptor, but it's better to think about
|
|
105
159
|
* this another time
|
|
160
|
+
* @name SigningModeDescriptor
|
|
161
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
162
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.SigningModeDescriptor
|
|
106
163
|
*/
|
|
107
164
|
export interface SigningModeDescriptor {
|
|
108
|
-
/**
|
|
165
|
+
/**
|
|
166
|
+
* name defines the unique name of the signing mode
|
|
167
|
+
*/
|
|
109
168
|
name: string;
|
|
110
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* number is the unique int32 identifier for the sign_mode enum
|
|
171
|
+
*/
|
|
111
172
|
number: number;
|
|
112
173
|
/**
|
|
113
174
|
* authn_info_provider_method_fullname defines the fullname of the method to call to get
|
|
@@ -124,11 +185,18 @@ export interface SigningModeDescriptorProtoMsg {
|
|
|
124
185
|
* NOTE(fdymylja): here we could go as far as providing an entire flow on how
|
|
125
186
|
* to sign a message given a SigningModeDescriptor, but it's better to think about
|
|
126
187
|
* this another time
|
|
188
|
+
* @name SigningModeDescriptorAmino
|
|
189
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
190
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.SigningModeDescriptor
|
|
127
191
|
*/
|
|
128
192
|
export interface SigningModeDescriptorAmino {
|
|
129
|
-
/**
|
|
193
|
+
/**
|
|
194
|
+
* name defines the unique name of the signing mode
|
|
195
|
+
*/
|
|
130
196
|
name: string;
|
|
131
|
-
/**
|
|
197
|
+
/**
|
|
198
|
+
* number is the unique int32 identifier for the sign_mode enum
|
|
199
|
+
*/
|
|
132
200
|
number: number;
|
|
133
201
|
/**
|
|
134
202
|
* authn_info_provider_method_fullname defines the fullname of the method to call to get
|
|
@@ -140,77 +208,130 @@ export interface SigningModeDescriptorAminoMsg {
|
|
|
140
208
|
type: "cosmos-sdk/SigningModeDescriptor";
|
|
141
209
|
value: SigningModeDescriptorAmino;
|
|
142
210
|
}
|
|
143
|
-
/**
|
|
211
|
+
/**
|
|
212
|
+
* ChainDescriptor describes chain information of the application
|
|
213
|
+
* @name ChainDescriptor
|
|
214
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
215
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.ChainDescriptor
|
|
216
|
+
*/
|
|
144
217
|
export interface ChainDescriptor {
|
|
145
|
-
/**
|
|
218
|
+
/**
|
|
219
|
+
* id is the chain id
|
|
220
|
+
*/
|
|
146
221
|
id: string;
|
|
147
222
|
}
|
|
148
223
|
export interface ChainDescriptorProtoMsg {
|
|
149
224
|
typeUrl: "/cosmos.base.reflection.v2alpha1.ChainDescriptor";
|
|
150
225
|
value: Uint8Array;
|
|
151
226
|
}
|
|
152
|
-
/**
|
|
227
|
+
/**
|
|
228
|
+
* ChainDescriptor describes chain information of the application
|
|
229
|
+
* @name ChainDescriptorAmino
|
|
230
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
231
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.ChainDescriptor
|
|
232
|
+
*/
|
|
153
233
|
export interface ChainDescriptorAmino {
|
|
154
|
-
/**
|
|
234
|
+
/**
|
|
235
|
+
* id is the chain id
|
|
236
|
+
*/
|
|
155
237
|
id: string;
|
|
156
238
|
}
|
|
157
239
|
export interface ChainDescriptorAminoMsg {
|
|
158
240
|
type: "cosmos-sdk/ChainDescriptor";
|
|
159
241
|
value: ChainDescriptorAmino;
|
|
160
242
|
}
|
|
161
|
-
/**
|
|
243
|
+
/**
|
|
244
|
+
* CodecDescriptor describes the registered interfaces and provides metadata information on the types
|
|
245
|
+
* @name CodecDescriptor
|
|
246
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
247
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.CodecDescriptor
|
|
248
|
+
*/
|
|
162
249
|
export interface CodecDescriptor {
|
|
163
|
-
/**
|
|
250
|
+
/**
|
|
251
|
+
* interfaces is a list of the registerted interfaces descriptors
|
|
252
|
+
*/
|
|
164
253
|
interfaces: InterfaceDescriptor[];
|
|
165
254
|
}
|
|
166
255
|
export interface CodecDescriptorProtoMsg {
|
|
167
256
|
typeUrl: "/cosmos.base.reflection.v2alpha1.CodecDescriptor";
|
|
168
257
|
value: Uint8Array;
|
|
169
258
|
}
|
|
170
|
-
/**
|
|
259
|
+
/**
|
|
260
|
+
* CodecDescriptor describes the registered interfaces and provides metadata information on the types
|
|
261
|
+
* @name CodecDescriptorAmino
|
|
262
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
263
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.CodecDescriptor
|
|
264
|
+
*/
|
|
171
265
|
export interface CodecDescriptorAmino {
|
|
172
|
-
/**
|
|
266
|
+
/**
|
|
267
|
+
* interfaces is a list of the registerted interfaces descriptors
|
|
268
|
+
*/
|
|
173
269
|
interfaces: InterfaceDescriptorAmino[];
|
|
174
270
|
}
|
|
175
271
|
export interface CodecDescriptorAminoMsg {
|
|
176
272
|
type: "cosmos-sdk/CodecDescriptor";
|
|
177
273
|
value: CodecDescriptorAmino;
|
|
178
274
|
}
|
|
179
|
-
/**
|
|
275
|
+
/**
|
|
276
|
+
* InterfaceDescriptor describes the implementation of an interface
|
|
277
|
+
* @name InterfaceDescriptor
|
|
278
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
279
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.InterfaceDescriptor
|
|
280
|
+
*/
|
|
180
281
|
export interface InterfaceDescriptor {
|
|
181
|
-
/**
|
|
282
|
+
/**
|
|
283
|
+
* fullname is the name of the interface
|
|
284
|
+
*/
|
|
182
285
|
fullname: string;
|
|
183
286
|
/**
|
|
184
287
|
* interface_accepting_messages contains information regarding the proto messages which contain the interface as
|
|
185
288
|
* google.protobuf.Any field
|
|
186
289
|
*/
|
|
187
290
|
interfaceAcceptingMessages: InterfaceAcceptingMessageDescriptor[];
|
|
188
|
-
/**
|
|
291
|
+
/**
|
|
292
|
+
* interface_implementers is a list of the descriptors of the interface implementers
|
|
293
|
+
*/
|
|
189
294
|
interfaceImplementers: InterfaceImplementerDescriptor[];
|
|
190
295
|
}
|
|
191
296
|
export interface InterfaceDescriptorProtoMsg {
|
|
192
297
|
typeUrl: "/cosmos.base.reflection.v2alpha1.InterfaceDescriptor";
|
|
193
298
|
value: Uint8Array;
|
|
194
299
|
}
|
|
195
|
-
/**
|
|
300
|
+
/**
|
|
301
|
+
* InterfaceDescriptor describes the implementation of an interface
|
|
302
|
+
* @name InterfaceDescriptorAmino
|
|
303
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
304
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.InterfaceDescriptor
|
|
305
|
+
*/
|
|
196
306
|
export interface InterfaceDescriptorAmino {
|
|
197
|
-
/**
|
|
307
|
+
/**
|
|
308
|
+
* fullname is the name of the interface
|
|
309
|
+
*/
|
|
198
310
|
fullname: string;
|
|
199
311
|
/**
|
|
200
312
|
* interface_accepting_messages contains information regarding the proto messages which contain the interface as
|
|
201
313
|
* google.protobuf.Any field
|
|
202
314
|
*/
|
|
203
315
|
interface_accepting_messages: InterfaceAcceptingMessageDescriptorAmino[];
|
|
204
|
-
/**
|
|
316
|
+
/**
|
|
317
|
+
* interface_implementers is a list of the descriptors of the interface implementers
|
|
318
|
+
*/
|
|
205
319
|
interface_implementers: InterfaceImplementerDescriptorAmino[];
|
|
206
320
|
}
|
|
207
321
|
export interface InterfaceDescriptorAminoMsg {
|
|
208
322
|
type: "cosmos-sdk/InterfaceDescriptor";
|
|
209
323
|
value: InterfaceDescriptorAmino;
|
|
210
324
|
}
|
|
211
|
-
/**
|
|
325
|
+
/**
|
|
326
|
+
* InterfaceImplementerDescriptor describes an interface implementer
|
|
327
|
+
* @name InterfaceImplementerDescriptor
|
|
328
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
329
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor
|
|
330
|
+
*/
|
|
212
331
|
export interface InterfaceImplementerDescriptor {
|
|
213
|
-
/**
|
|
332
|
+
/**
|
|
333
|
+
* fullname is the protobuf queryable name of the interface implementer
|
|
334
|
+
*/
|
|
214
335
|
fullname: string;
|
|
215
336
|
/**
|
|
216
337
|
* type_url defines the type URL used when marshalling the type as any
|
|
@@ -224,9 +345,16 @@ export interface InterfaceImplementerDescriptorProtoMsg {
|
|
|
224
345
|
typeUrl: "/cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor";
|
|
225
346
|
value: Uint8Array;
|
|
226
347
|
}
|
|
227
|
-
/**
|
|
348
|
+
/**
|
|
349
|
+
* InterfaceImplementerDescriptor describes an interface implementer
|
|
350
|
+
* @name InterfaceImplementerDescriptorAmino
|
|
351
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
352
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor
|
|
353
|
+
*/
|
|
228
354
|
export interface InterfaceImplementerDescriptorAmino {
|
|
229
|
-
/**
|
|
355
|
+
/**
|
|
356
|
+
* fullname is the protobuf queryable name of the interface implementer
|
|
357
|
+
*/
|
|
230
358
|
fullname: string;
|
|
231
359
|
/**
|
|
232
360
|
* type_url defines the type URL used when marshalling the type as any
|
|
@@ -243,9 +371,14 @@ export interface InterfaceImplementerDescriptorAminoMsg {
|
|
|
243
371
|
/**
|
|
244
372
|
* InterfaceAcceptingMessageDescriptor describes a protobuf message which contains
|
|
245
373
|
* an interface represented as a google.protobuf.Any
|
|
374
|
+
* @name InterfaceAcceptingMessageDescriptor
|
|
375
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
376
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.InterfaceAcceptingMessageDescriptor
|
|
246
377
|
*/
|
|
247
378
|
export interface InterfaceAcceptingMessageDescriptor {
|
|
248
|
-
/**
|
|
379
|
+
/**
|
|
380
|
+
* fullname is the protobuf fullname of the type containing the interface
|
|
381
|
+
*/
|
|
249
382
|
fullname: string;
|
|
250
383
|
/**
|
|
251
384
|
* field_descriptor_names is a list of the protobuf name (not fullname) of the field
|
|
@@ -261,9 +394,14 @@ export interface InterfaceAcceptingMessageDescriptorProtoMsg {
|
|
|
261
394
|
/**
|
|
262
395
|
* InterfaceAcceptingMessageDescriptor describes a protobuf message which contains
|
|
263
396
|
* an interface represented as a google.protobuf.Any
|
|
397
|
+
* @name InterfaceAcceptingMessageDescriptorAmino
|
|
398
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
399
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.InterfaceAcceptingMessageDescriptor
|
|
264
400
|
*/
|
|
265
401
|
export interface InterfaceAcceptingMessageDescriptorAmino {
|
|
266
|
-
/**
|
|
402
|
+
/**
|
|
403
|
+
* fullname is the protobuf fullname of the type containing the interface
|
|
404
|
+
*/
|
|
267
405
|
fullname: string;
|
|
268
406
|
/**
|
|
269
407
|
* field_descriptor_names is a list of the protobuf name (not fullname) of the field
|
|
@@ -276,217 +414,380 @@ export interface InterfaceAcceptingMessageDescriptorAminoMsg {
|
|
|
276
414
|
type: "cosmos-sdk/InterfaceAcceptingMessageDescriptor";
|
|
277
415
|
value: InterfaceAcceptingMessageDescriptorAmino;
|
|
278
416
|
}
|
|
279
|
-
/**
|
|
417
|
+
/**
|
|
418
|
+
* ConfigurationDescriptor contains metadata information on the sdk.Config
|
|
419
|
+
* @name ConfigurationDescriptor
|
|
420
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
421
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.ConfigurationDescriptor
|
|
422
|
+
*/
|
|
280
423
|
export interface ConfigurationDescriptor {
|
|
281
|
-
/**
|
|
424
|
+
/**
|
|
425
|
+
* bech32_account_address_prefix is the account address prefix
|
|
426
|
+
*/
|
|
282
427
|
bech32AccountAddressPrefix: string;
|
|
283
428
|
}
|
|
284
429
|
export interface ConfigurationDescriptorProtoMsg {
|
|
285
430
|
typeUrl: "/cosmos.base.reflection.v2alpha1.ConfigurationDescriptor";
|
|
286
431
|
value: Uint8Array;
|
|
287
432
|
}
|
|
288
|
-
/**
|
|
433
|
+
/**
|
|
434
|
+
* ConfigurationDescriptor contains metadata information on the sdk.Config
|
|
435
|
+
* @name ConfigurationDescriptorAmino
|
|
436
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
437
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.ConfigurationDescriptor
|
|
438
|
+
*/
|
|
289
439
|
export interface ConfigurationDescriptorAmino {
|
|
290
|
-
/**
|
|
440
|
+
/**
|
|
441
|
+
* bech32_account_address_prefix is the account address prefix
|
|
442
|
+
*/
|
|
291
443
|
bech32_account_address_prefix: string;
|
|
292
444
|
}
|
|
293
445
|
export interface ConfigurationDescriptorAminoMsg {
|
|
294
446
|
type: "cosmos-sdk/ConfigurationDescriptor";
|
|
295
447
|
value: ConfigurationDescriptorAmino;
|
|
296
448
|
}
|
|
297
|
-
/**
|
|
449
|
+
/**
|
|
450
|
+
* MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction
|
|
451
|
+
* @name MsgDescriptor
|
|
452
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
453
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.MsgDescriptor
|
|
454
|
+
*/
|
|
298
455
|
export interface MsgDescriptor {
|
|
299
|
-
/**
|
|
456
|
+
/**
|
|
457
|
+
* msg_type_url contains the TypeURL of a sdk.Msg.
|
|
458
|
+
*/
|
|
300
459
|
msgTypeUrl: string;
|
|
301
460
|
}
|
|
302
461
|
export interface MsgDescriptorProtoMsg {
|
|
303
462
|
typeUrl: "/cosmos.base.reflection.v2alpha1.MsgDescriptor";
|
|
304
463
|
value: Uint8Array;
|
|
305
464
|
}
|
|
306
|
-
/**
|
|
465
|
+
/**
|
|
466
|
+
* MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction
|
|
467
|
+
* @name MsgDescriptorAmino
|
|
468
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
469
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.MsgDescriptor
|
|
470
|
+
*/
|
|
307
471
|
export interface MsgDescriptorAmino {
|
|
308
|
-
/**
|
|
472
|
+
/**
|
|
473
|
+
* msg_type_url contains the TypeURL of a sdk.Msg.
|
|
474
|
+
*/
|
|
309
475
|
msg_type_url: string;
|
|
310
476
|
}
|
|
311
477
|
export interface MsgDescriptorAminoMsg {
|
|
312
478
|
type: "cosmos-sdk/MsgDescriptor";
|
|
313
479
|
value: MsgDescriptorAmino;
|
|
314
480
|
}
|
|
315
|
-
/**
|
|
481
|
+
/**
|
|
482
|
+
* GetAuthnDescriptorRequest is the request used for the GetAuthnDescriptor RPC
|
|
483
|
+
* @name GetAuthnDescriptorRequest
|
|
484
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
485
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorRequest
|
|
486
|
+
*/
|
|
316
487
|
export interface GetAuthnDescriptorRequest {
|
|
317
488
|
}
|
|
318
489
|
export interface GetAuthnDescriptorRequestProtoMsg {
|
|
319
490
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetAuthnDescriptorRequest";
|
|
320
491
|
value: Uint8Array;
|
|
321
492
|
}
|
|
322
|
-
/**
|
|
493
|
+
/**
|
|
494
|
+
* GetAuthnDescriptorRequest is the request used for the GetAuthnDescriptor RPC
|
|
495
|
+
* @name GetAuthnDescriptorRequestAmino
|
|
496
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
497
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorRequest
|
|
498
|
+
*/
|
|
323
499
|
export interface GetAuthnDescriptorRequestAmino {
|
|
324
500
|
}
|
|
325
501
|
export interface GetAuthnDescriptorRequestAminoMsg {
|
|
326
502
|
type: "cosmos-sdk/GetAuthnDescriptorRequest";
|
|
327
503
|
value: GetAuthnDescriptorRequestAmino;
|
|
328
504
|
}
|
|
329
|
-
/**
|
|
505
|
+
/**
|
|
506
|
+
* GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC
|
|
507
|
+
* @name GetAuthnDescriptorResponse
|
|
508
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
509
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse
|
|
510
|
+
*/
|
|
330
511
|
export interface GetAuthnDescriptorResponse {
|
|
331
|
-
/**
|
|
512
|
+
/**
|
|
513
|
+
* authn describes how to authenticate to the application when sending transactions
|
|
514
|
+
*/
|
|
332
515
|
authn?: AuthnDescriptor;
|
|
333
516
|
}
|
|
334
517
|
export interface GetAuthnDescriptorResponseProtoMsg {
|
|
335
518
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse";
|
|
336
519
|
value: Uint8Array;
|
|
337
520
|
}
|
|
338
|
-
/**
|
|
521
|
+
/**
|
|
522
|
+
* GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC
|
|
523
|
+
* @name GetAuthnDescriptorResponseAmino
|
|
524
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
525
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse
|
|
526
|
+
*/
|
|
339
527
|
export interface GetAuthnDescriptorResponseAmino {
|
|
340
|
-
/**
|
|
528
|
+
/**
|
|
529
|
+
* authn describes how to authenticate to the application when sending transactions
|
|
530
|
+
*/
|
|
341
531
|
authn?: AuthnDescriptorAmino;
|
|
342
532
|
}
|
|
343
533
|
export interface GetAuthnDescriptorResponseAminoMsg {
|
|
344
534
|
type: "cosmos-sdk/GetAuthnDescriptorResponse";
|
|
345
535
|
value: GetAuthnDescriptorResponseAmino;
|
|
346
536
|
}
|
|
347
|
-
/**
|
|
537
|
+
/**
|
|
538
|
+
* GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC
|
|
539
|
+
* @name GetChainDescriptorRequest
|
|
540
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
541
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorRequest
|
|
542
|
+
*/
|
|
348
543
|
export interface GetChainDescriptorRequest {
|
|
349
544
|
}
|
|
350
545
|
export interface GetChainDescriptorRequestProtoMsg {
|
|
351
546
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetChainDescriptorRequest";
|
|
352
547
|
value: Uint8Array;
|
|
353
548
|
}
|
|
354
|
-
/**
|
|
549
|
+
/**
|
|
550
|
+
* GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC
|
|
551
|
+
* @name GetChainDescriptorRequestAmino
|
|
552
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
553
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorRequest
|
|
554
|
+
*/
|
|
355
555
|
export interface GetChainDescriptorRequestAmino {
|
|
356
556
|
}
|
|
357
557
|
export interface GetChainDescriptorRequestAminoMsg {
|
|
358
558
|
type: "cosmos-sdk/GetChainDescriptorRequest";
|
|
359
559
|
value: GetChainDescriptorRequestAmino;
|
|
360
560
|
}
|
|
361
|
-
/**
|
|
561
|
+
/**
|
|
562
|
+
* GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC
|
|
563
|
+
* @name GetChainDescriptorResponse
|
|
564
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
565
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse
|
|
566
|
+
*/
|
|
362
567
|
export interface GetChainDescriptorResponse {
|
|
363
|
-
/**
|
|
568
|
+
/**
|
|
569
|
+
* chain describes application chain information
|
|
570
|
+
*/
|
|
364
571
|
chain?: ChainDescriptor;
|
|
365
572
|
}
|
|
366
573
|
export interface GetChainDescriptorResponseProtoMsg {
|
|
367
574
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse";
|
|
368
575
|
value: Uint8Array;
|
|
369
576
|
}
|
|
370
|
-
/**
|
|
577
|
+
/**
|
|
578
|
+
* GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC
|
|
579
|
+
* @name GetChainDescriptorResponseAmino
|
|
580
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
581
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse
|
|
582
|
+
*/
|
|
371
583
|
export interface GetChainDescriptorResponseAmino {
|
|
372
|
-
/**
|
|
584
|
+
/**
|
|
585
|
+
* chain describes application chain information
|
|
586
|
+
*/
|
|
373
587
|
chain?: ChainDescriptorAmino;
|
|
374
588
|
}
|
|
375
589
|
export interface GetChainDescriptorResponseAminoMsg {
|
|
376
590
|
type: "cosmos-sdk/GetChainDescriptorResponse";
|
|
377
591
|
value: GetChainDescriptorResponseAmino;
|
|
378
592
|
}
|
|
379
|
-
/**
|
|
593
|
+
/**
|
|
594
|
+
* GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC
|
|
595
|
+
* @name GetCodecDescriptorRequest
|
|
596
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
597
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorRequest
|
|
598
|
+
*/
|
|
380
599
|
export interface GetCodecDescriptorRequest {
|
|
381
600
|
}
|
|
382
601
|
export interface GetCodecDescriptorRequestProtoMsg {
|
|
383
602
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetCodecDescriptorRequest";
|
|
384
603
|
value: Uint8Array;
|
|
385
604
|
}
|
|
386
|
-
/**
|
|
605
|
+
/**
|
|
606
|
+
* GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC
|
|
607
|
+
* @name GetCodecDescriptorRequestAmino
|
|
608
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
609
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorRequest
|
|
610
|
+
*/
|
|
387
611
|
export interface GetCodecDescriptorRequestAmino {
|
|
388
612
|
}
|
|
389
613
|
export interface GetCodecDescriptorRequestAminoMsg {
|
|
390
614
|
type: "cosmos-sdk/GetCodecDescriptorRequest";
|
|
391
615
|
value: GetCodecDescriptorRequestAmino;
|
|
392
616
|
}
|
|
393
|
-
/**
|
|
617
|
+
/**
|
|
618
|
+
* GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC
|
|
619
|
+
* @name GetCodecDescriptorResponse
|
|
620
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
621
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse
|
|
622
|
+
*/
|
|
394
623
|
export interface GetCodecDescriptorResponse {
|
|
395
|
-
/**
|
|
624
|
+
/**
|
|
625
|
+
* codec describes the application codec such as registered interfaces and implementations
|
|
626
|
+
*/
|
|
396
627
|
codec?: CodecDescriptor;
|
|
397
628
|
}
|
|
398
629
|
export interface GetCodecDescriptorResponseProtoMsg {
|
|
399
630
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse";
|
|
400
631
|
value: Uint8Array;
|
|
401
632
|
}
|
|
402
|
-
/**
|
|
633
|
+
/**
|
|
634
|
+
* GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC
|
|
635
|
+
* @name GetCodecDescriptorResponseAmino
|
|
636
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
637
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse
|
|
638
|
+
*/
|
|
403
639
|
export interface GetCodecDescriptorResponseAmino {
|
|
404
|
-
/**
|
|
640
|
+
/**
|
|
641
|
+
* codec describes the application codec such as registered interfaces and implementations
|
|
642
|
+
*/
|
|
405
643
|
codec?: CodecDescriptorAmino;
|
|
406
644
|
}
|
|
407
645
|
export interface GetCodecDescriptorResponseAminoMsg {
|
|
408
646
|
type: "cosmos-sdk/GetCodecDescriptorResponse";
|
|
409
647
|
value: GetCodecDescriptorResponseAmino;
|
|
410
648
|
}
|
|
411
|
-
/**
|
|
649
|
+
/**
|
|
650
|
+
* GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC
|
|
651
|
+
* @name GetConfigurationDescriptorRequest
|
|
652
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
653
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorRequest
|
|
654
|
+
*/
|
|
412
655
|
export interface GetConfigurationDescriptorRequest {
|
|
413
656
|
}
|
|
414
657
|
export interface GetConfigurationDescriptorRequestProtoMsg {
|
|
415
658
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorRequest";
|
|
416
659
|
value: Uint8Array;
|
|
417
660
|
}
|
|
418
|
-
/**
|
|
661
|
+
/**
|
|
662
|
+
* GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC
|
|
663
|
+
* @name GetConfigurationDescriptorRequestAmino
|
|
664
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
665
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorRequest
|
|
666
|
+
*/
|
|
419
667
|
export interface GetConfigurationDescriptorRequestAmino {
|
|
420
668
|
}
|
|
421
669
|
export interface GetConfigurationDescriptorRequestAminoMsg {
|
|
422
670
|
type: "cosmos-sdk/GetConfigurationDescriptorRequest";
|
|
423
671
|
value: GetConfigurationDescriptorRequestAmino;
|
|
424
672
|
}
|
|
425
|
-
/**
|
|
673
|
+
/**
|
|
674
|
+
* GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC
|
|
675
|
+
* @name GetConfigurationDescriptorResponse
|
|
676
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
677
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse
|
|
678
|
+
*/
|
|
426
679
|
export interface GetConfigurationDescriptorResponse {
|
|
427
|
-
/**
|
|
680
|
+
/**
|
|
681
|
+
* config describes the application's sdk.Config
|
|
682
|
+
*/
|
|
428
683
|
config?: ConfigurationDescriptor;
|
|
429
684
|
}
|
|
430
685
|
export interface GetConfigurationDescriptorResponseProtoMsg {
|
|
431
686
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse";
|
|
432
687
|
value: Uint8Array;
|
|
433
688
|
}
|
|
434
|
-
/**
|
|
689
|
+
/**
|
|
690
|
+
* GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC
|
|
691
|
+
* @name GetConfigurationDescriptorResponseAmino
|
|
692
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
693
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse
|
|
694
|
+
*/
|
|
435
695
|
export interface GetConfigurationDescriptorResponseAmino {
|
|
436
|
-
/**
|
|
696
|
+
/**
|
|
697
|
+
* config describes the application's sdk.Config
|
|
698
|
+
*/
|
|
437
699
|
config?: ConfigurationDescriptorAmino;
|
|
438
700
|
}
|
|
439
701
|
export interface GetConfigurationDescriptorResponseAminoMsg {
|
|
440
702
|
type: "cosmos-sdk/GetConfigurationDescriptorResponse";
|
|
441
703
|
value: GetConfigurationDescriptorResponseAmino;
|
|
442
704
|
}
|
|
443
|
-
/**
|
|
705
|
+
/**
|
|
706
|
+
* GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC
|
|
707
|
+
* @name GetQueryServicesDescriptorRequest
|
|
708
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
709
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorRequest
|
|
710
|
+
*/
|
|
444
711
|
export interface GetQueryServicesDescriptorRequest {
|
|
445
712
|
}
|
|
446
713
|
export interface GetQueryServicesDescriptorRequestProtoMsg {
|
|
447
714
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorRequest";
|
|
448
715
|
value: Uint8Array;
|
|
449
716
|
}
|
|
450
|
-
/**
|
|
717
|
+
/**
|
|
718
|
+
* GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC
|
|
719
|
+
* @name GetQueryServicesDescriptorRequestAmino
|
|
720
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
721
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorRequest
|
|
722
|
+
*/
|
|
451
723
|
export interface GetQueryServicesDescriptorRequestAmino {
|
|
452
724
|
}
|
|
453
725
|
export interface GetQueryServicesDescriptorRequestAminoMsg {
|
|
454
726
|
type: "cosmos-sdk/GetQueryServicesDescriptorRequest";
|
|
455
727
|
value: GetQueryServicesDescriptorRequestAmino;
|
|
456
728
|
}
|
|
457
|
-
/**
|
|
729
|
+
/**
|
|
730
|
+
* GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC
|
|
731
|
+
* @name GetQueryServicesDescriptorResponse
|
|
732
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
733
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse
|
|
734
|
+
*/
|
|
458
735
|
export interface GetQueryServicesDescriptorResponse {
|
|
459
|
-
/**
|
|
736
|
+
/**
|
|
737
|
+
* queries provides information on the available queryable services
|
|
738
|
+
*/
|
|
460
739
|
queries?: QueryServicesDescriptor;
|
|
461
740
|
}
|
|
462
741
|
export interface GetQueryServicesDescriptorResponseProtoMsg {
|
|
463
742
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse";
|
|
464
743
|
value: Uint8Array;
|
|
465
744
|
}
|
|
466
|
-
/**
|
|
745
|
+
/**
|
|
746
|
+
* GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC
|
|
747
|
+
* @name GetQueryServicesDescriptorResponseAmino
|
|
748
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
749
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse
|
|
750
|
+
*/
|
|
467
751
|
export interface GetQueryServicesDescriptorResponseAmino {
|
|
468
|
-
/**
|
|
752
|
+
/**
|
|
753
|
+
* queries provides information on the available queryable services
|
|
754
|
+
*/
|
|
469
755
|
queries?: QueryServicesDescriptorAmino;
|
|
470
756
|
}
|
|
471
757
|
export interface GetQueryServicesDescriptorResponseAminoMsg {
|
|
472
758
|
type: "cosmos-sdk/GetQueryServicesDescriptorResponse";
|
|
473
759
|
value: GetQueryServicesDescriptorResponseAmino;
|
|
474
760
|
}
|
|
475
|
-
/**
|
|
761
|
+
/**
|
|
762
|
+
* GetTxDescriptorRequest is the request used for the GetTxDescriptor RPC
|
|
763
|
+
* @name GetTxDescriptorRequest
|
|
764
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
765
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorRequest
|
|
766
|
+
*/
|
|
476
767
|
export interface GetTxDescriptorRequest {
|
|
477
768
|
}
|
|
478
769
|
export interface GetTxDescriptorRequestProtoMsg {
|
|
479
770
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetTxDescriptorRequest";
|
|
480
771
|
value: Uint8Array;
|
|
481
772
|
}
|
|
482
|
-
/**
|
|
773
|
+
/**
|
|
774
|
+
* GetTxDescriptorRequest is the request used for the GetTxDescriptor RPC
|
|
775
|
+
* @name GetTxDescriptorRequestAmino
|
|
776
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
777
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorRequest
|
|
778
|
+
*/
|
|
483
779
|
export interface GetTxDescriptorRequestAmino {
|
|
484
780
|
}
|
|
485
781
|
export interface GetTxDescriptorRequestAminoMsg {
|
|
486
782
|
type: "cosmos-sdk/GetTxDescriptorRequest";
|
|
487
783
|
value: GetTxDescriptorRequestAmino;
|
|
488
784
|
}
|
|
489
|
-
/**
|
|
785
|
+
/**
|
|
786
|
+
* GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC
|
|
787
|
+
* @name GetTxDescriptorResponse
|
|
788
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
789
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse
|
|
790
|
+
*/
|
|
490
791
|
export interface GetTxDescriptorResponse {
|
|
491
792
|
/**
|
|
492
793
|
* tx provides information on msgs that can be forwarded to the application
|
|
@@ -498,7 +799,12 @@ export interface GetTxDescriptorResponseProtoMsg {
|
|
|
498
799
|
typeUrl: "/cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse";
|
|
499
800
|
value: Uint8Array;
|
|
500
801
|
}
|
|
501
|
-
/**
|
|
802
|
+
/**
|
|
803
|
+
* GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC
|
|
804
|
+
* @name GetTxDescriptorResponseAmino
|
|
805
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
806
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse
|
|
807
|
+
*/
|
|
502
808
|
export interface GetTxDescriptorResponseAmino {
|
|
503
809
|
/**
|
|
504
810
|
* tx provides information on msgs that can be forwarded to the application
|
|
@@ -510,44 +816,80 @@ export interface GetTxDescriptorResponseAminoMsg {
|
|
|
510
816
|
type: "cosmos-sdk/GetTxDescriptorResponse";
|
|
511
817
|
value: GetTxDescriptorResponseAmino;
|
|
512
818
|
}
|
|
513
|
-
/**
|
|
819
|
+
/**
|
|
820
|
+
* QueryServicesDescriptor contains the list of cosmos-sdk queriable services
|
|
821
|
+
* @name QueryServicesDescriptor
|
|
822
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
823
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.QueryServicesDescriptor
|
|
824
|
+
*/
|
|
514
825
|
export interface QueryServicesDescriptor {
|
|
515
|
-
/**
|
|
826
|
+
/**
|
|
827
|
+
* query_services is a list of cosmos-sdk QueryServiceDescriptor
|
|
828
|
+
*/
|
|
516
829
|
queryServices: QueryServiceDescriptor[];
|
|
517
830
|
}
|
|
518
831
|
export interface QueryServicesDescriptorProtoMsg {
|
|
519
832
|
typeUrl: "/cosmos.base.reflection.v2alpha1.QueryServicesDescriptor";
|
|
520
833
|
value: Uint8Array;
|
|
521
834
|
}
|
|
522
|
-
/**
|
|
835
|
+
/**
|
|
836
|
+
* QueryServicesDescriptor contains the list of cosmos-sdk queriable services
|
|
837
|
+
* @name QueryServicesDescriptorAmino
|
|
838
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
839
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.QueryServicesDescriptor
|
|
840
|
+
*/
|
|
523
841
|
export interface QueryServicesDescriptorAmino {
|
|
524
|
-
/**
|
|
842
|
+
/**
|
|
843
|
+
* query_services is a list of cosmos-sdk QueryServiceDescriptor
|
|
844
|
+
*/
|
|
525
845
|
query_services: QueryServiceDescriptorAmino[];
|
|
526
846
|
}
|
|
527
847
|
export interface QueryServicesDescriptorAminoMsg {
|
|
528
848
|
type: "cosmos-sdk/QueryServicesDescriptor";
|
|
529
849
|
value: QueryServicesDescriptorAmino;
|
|
530
850
|
}
|
|
531
|
-
/**
|
|
851
|
+
/**
|
|
852
|
+
* QueryServiceDescriptor describes a cosmos-sdk queryable service
|
|
853
|
+
* @name QueryServiceDescriptor
|
|
854
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
855
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.QueryServiceDescriptor
|
|
856
|
+
*/
|
|
532
857
|
export interface QueryServiceDescriptor {
|
|
533
|
-
/**
|
|
858
|
+
/**
|
|
859
|
+
* fullname is the protobuf fullname of the service descriptor
|
|
860
|
+
*/
|
|
534
861
|
fullname: string;
|
|
535
|
-
/**
|
|
862
|
+
/**
|
|
863
|
+
* is_module describes if this service is actually exposed by an application's module
|
|
864
|
+
*/
|
|
536
865
|
isModule: boolean;
|
|
537
|
-
/**
|
|
866
|
+
/**
|
|
867
|
+
* methods provides a list of query service methods
|
|
868
|
+
*/
|
|
538
869
|
methods: QueryMethodDescriptor[];
|
|
539
870
|
}
|
|
540
871
|
export interface QueryServiceDescriptorProtoMsg {
|
|
541
872
|
typeUrl: "/cosmos.base.reflection.v2alpha1.QueryServiceDescriptor";
|
|
542
873
|
value: Uint8Array;
|
|
543
874
|
}
|
|
544
|
-
/**
|
|
875
|
+
/**
|
|
876
|
+
* QueryServiceDescriptor describes a cosmos-sdk queryable service
|
|
877
|
+
* @name QueryServiceDescriptorAmino
|
|
878
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
879
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.QueryServiceDescriptor
|
|
880
|
+
*/
|
|
545
881
|
export interface QueryServiceDescriptorAmino {
|
|
546
|
-
/**
|
|
882
|
+
/**
|
|
883
|
+
* fullname is the protobuf fullname of the service descriptor
|
|
884
|
+
*/
|
|
547
885
|
fullname: string;
|
|
548
|
-
/**
|
|
886
|
+
/**
|
|
887
|
+
* is_module describes if this service is actually exposed by an application's module
|
|
888
|
+
*/
|
|
549
889
|
is_module: boolean;
|
|
550
|
-
/**
|
|
890
|
+
/**
|
|
891
|
+
* methods provides a list of query service methods
|
|
892
|
+
*/
|
|
551
893
|
methods: QueryMethodDescriptorAmino[];
|
|
552
894
|
}
|
|
553
895
|
export interface QueryServiceDescriptorAminoMsg {
|
|
@@ -558,9 +900,14 @@ export interface QueryServiceDescriptorAminoMsg {
|
|
|
558
900
|
* QueryMethodDescriptor describes a queryable method of a query service
|
|
559
901
|
* no other info is provided beside method name and tendermint queryable path
|
|
560
902
|
* because it would be redundant with the grpc reflection service
|
|
903
|
+
* @name QueryMethodDescriptor
|
|
904
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
905
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.QueryMethodDescriptor
|
|
561
906
|
*/
|
|
562
907
|
export interface QueryMethodDescriptor {
|
|
563
|
-
/**
|
|
908
|
+
/**
|
|
909
|
+
* name is the protobuf name (not fullname) of the method
|
|
910
|
+
*/
|
|
564
911
|
name: string;
|
|
565
912
|
/**
|
|
566
913
|
* full_query_path is the path that can be used to query
|
|
@@ -576,9 +923,14 @@ export interface QueryMethodDescriptorProtoMsg {
|
|
|
576
923
|
* QueryMethodDescriptor describes a queryable method of a query service
|
|
577
924
|
* no other info is provided beside method name and tendermint queryable path
|
|
578
925
|
* because it would be redundant with the grpc reflection service
|
|
926
|
+
* @name QueryMethodDescriptorAmino
|
|
927
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
928
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.QueryMethodDescriptor
|
|
579
929
|
*/
|
|
580
930
|
export interface QueryMethodDescriptorAmino {
|
|
581
|
-
/**
|
|
931
|
+
/**
|
|
932
|
+
* name is the protobuf name (not fullname) of the method
|
|
933
|
+
*/
|
|
582
934
|
name: string;
|
|
583
935
|
/**
|
|
584
936
|
* full_query_path is the path that can be used to query
|
|
@@ -590,6 +942,12 @@ export interface QueryMethodDescriptorAminoMsg {
|
|
|
590
942
|
type: "cosmos-sdk/QueryMethodDescriptor";
|
|
591
943
|
value: QueryMethodDescriptorAmino;
|
|
592
944
|
}
|
|
945
|
+
/**
|
|
946
|
+
* AppDescriptor describes a cosmos-sdk based application
|
|
947
|
+
* @name AppDescriptor
|
|
948
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
949
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.AppDescriptor
|
|
950
|
+
*/
|
|
593
951
|
export declare const AppDescriptor: {
|
|
594
952
|
typeUrl: string;
|
|
595
953
|
aminoType: string;
|
|
@@ -607,6 +965,12 @@ export declare const AppDescriptor: {
|
|
|
607
965
|
toProtoMsg(message: AppDescriptor): AppDescriptorProtoMsg;
|
|
608
966
|
registerTypeUrl(): void;
|
|
609
967
|
};
|
|
968
|
+
/**
|
|
969
|
+
* TxDescriptor describes the accepted transaction type
|
|
970
|
+
* @name TxDescriptor
|
|
971
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
972
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.TxDescriptor
|
|
973
|
+
*/
|
|
610
974
|
export declare const TxDescriptor: {
|
|
611
975
|
typeUrl: string;
|
|
612
976
|
aminoType: string;
|
|
@@ -624,6 +988,13 @@ export declare const TxDescriptor: {
|
|
|
624
988
|
toProtoMsg(message: TxDescriptor): TxDescriptorProtoMsg;
|
|
625
989
|
registerTypeUrl(): void;
|
|
626
990
|
};
|
|
991
|
+
/**
|
|
992
|
+
* AuthnDescriptor provides information on how to sign transactions without relying
|
|
993
|
+
* on the online RPCs GetTxMetadata and CombineUnsignedTxAndSignatures
|
|
994
|
+
* @name AuthnDescriptor
|
|
995
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
996
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.AuthnDescriptor
|
|
997
|
+
*/
|
|
627
998
|
export declare const AuthnDescriptor: {
|
|
628
999
|
typeUrl: string;
|
|
629
1000
|
aminoType: string;
|
|
@@ -641,6 +1012,15 @@ export declare const AuthnDescriptor: {
|
|
|
641
1012
|
toProtoMsg(message: AuthnDescriptor): AuthnDescriptorProtoMsg;
|
|
642
1013
|
registerTypeUrl(): void;
|
|
643
1014
|
};
|
|
1015
|
+
/**
|
|
1016
|
+
* SigningModeDescriptor provides information on a signing flow of the application
|
|
1017
|
+
* NOTE(fdymylja): here we could go as far as providing an entire flow on how
|
|
1018
|
+
* to sign a message given a SigningModeDescriptor, but it's better to think about
|
|
1019
|
+
* this another time
|
|
1020
|
+
* @name SigningModeDescriptor
|
|
1021
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1022
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.SigningModeDescriptor
|
|
1023
|
+
*/
|
|
644
1024
|
export declare const SigningModeDescriptor: {
|
|
645
1025
|
typeUrl: string;
|
|
646
1026
|
aminoType: string;
|
|
@@ -658,6 +1038,12 @@ export declare const SigningModeDescriptor: {
|
|
|
658
1038
|
toProtoMsg(message: SigningModeDescriptor): SigningModeDescriptorProtoMsg;
|
|
659
1039
|
registerTypeUrl(): void;
|
|
660
1040
|
};
|
|
1041
|
+
/**
|
|
1042
|
+
* ChainDescriptor describes chain information of the application
|
|
1043
|
+
* @name ChainDescriptor
|
|
1044
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1045
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.ChainDescriptor
|
|
1046
|
+
*/
|
|
661
1047
|
export declare const ChainDescriptor: {
|
|
662
1048
|
typeUrl: string;
|
|
663
1049
|
aminoType: string;
|
|
@@ -675,6 +1061,12 @@ export declare const ChainDescriptor: {
|
|
|
675
1061
|
toProtoMsg(message: ChainDescriptor): ChainDescriptorProtoMsg;
|
|
676
1062
|
registerTypeUrl(): void;
|
|
677
1063
|
};
|
|
1064
|
+
/**
|
|
1065
|
+
* CodecDescriptor describes the registered interfaces and provides metadata information on the types
|
|
1066
|
+
* @name CodecDescriptor
|
|
1067
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1068
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.CodecDescriptor
|
|
1069
|
+
*/
|
|
678
1070
|
export declare const CodecDescriptor: {
|
|
679
1071
|
typeUrl: string;
|
|
680
1072
|
aminoType: string;
|
|
@@ -692,6 +1084,12 @@ export declare const CodecDescriptor: {
|
|
|
692
1084
|
toProtoMsg(message: CodecDescriptor): CodecDescriptorProtoMsg;
|
|
693
1085
|
registerTypeUrl(): void;
|
|
694
1086
|
};
|
|
1087
|
+
/**
|
|
1088
|
+
* InterfaceDescriptor describes the implementation of an interface
|
|
1089
|
+
* @name InterfaceDescriptor
|
|
1090
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1091
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.InterfaceDescriptor
|
|
1092
|
+
*/
|
|
695
1093
|
export declare const InterfaceDescriptor: {
|
|
696
1094
|
typeUrl: string;
|
|
697
1095
|
aminoType: string;
|
|
@@ -709,6 +1107,12 @@ export declare const InterfaceDescriptor: {
|
|
|
709
1107
|
toProtoMsg(message: InterfaceDescriptor): InterfaceDescriptorProtoMsg;
|
|
710
1108
|
registerTypeUrl(): void;
|
|
711
1109
|
};
|
|
1110
|
+
/**
|
|
1111
|
+
* InterfaceImplementerDescriptor describes an interface implementer
|
|
1112
|
+
* @name InterfaceImplementerDescriptor
|
|
1113
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1114
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor
|
|
1115
|
+
*/
|
|
712
1116
|
export declare const InterfaceImplementerDescriptor: {
|
|
713
1117
|
typeUrl: string;
|
|
714
1118
|
aminoType: string;
|
|
@@ -726,6 +1130,13 @@ export declare const InterfaceImplementerDescriptor: {
|
|
|
726
1130
|
toProtoMsg(message: InterfaceImplementerDescriptor): InterfaceImplementerDescriptorProtoMsg;
|
|
727
1131
|
registerTypeUrl(): void;
|
|
728
1132
|
};
|
|
1133
|
+
/**
|
|
1134
|
+
* InterfaceAcceptingMessageDescriptor describes a protobuf message which contains
|
|
1135
|
+
* an interface represented as a google.protobuf.Any
|
|
1136
|
+
* @name InterfaceAcceptingMessageDescriptor
|
|
1137
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1138
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.InterfaceAcceptingMessageDescriptor
|
|
1139
|
+
*/
|
|
729
1140
|
export declare const InterfaceAcceptingMessageDescriptor: {
|
|
730
1141
|
typeUrl: string;
|
|
731
1142
|
aminoType: string;
|
|
@@ -743,6 +1154,12 @@ export declare const InterfaceAcceptingMessageDescriptor: {
|
|
|
743
1154
|
toProtoMsg(message: InterfaceAcceptingMessageDescriptor): InterfaceAcceptingMessageDescriptorProtoMsg;
|
|
744
1155
|
registerTypeUrl(): void;
|
|
745
1156
|
};
|
|
1157
|
+
/**
|
|
1158
|
+
* ConfigurationDescriptor contains metadata information on the sdk.Config
|
|
1159
|
+
* @name ConfigurationDescriptor
|
|
1160
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1161
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.ConfigurationDescriptor
|
|
1162
|
+
*/
|
|
746
1163
|
export declare const ConfigurationDescriptor: {
|
|
747
1164
|
typeUrl: string;
|
|
748
1165
|
aminoType: string;
|
|
@@ -760,6 +1177,12 @@ export declare const ConfigurationDescriptor: {
|
|
|
760
1177
|
toProtoMsg(message: ConfigurationDescriptor): ConfigurationDescriptorProtoMsg;
|
|
761
1178
|
registerTypeUrl(): void;
|
|
762
1179
|
};
|
|
1180
|
+
/**
|
|
1181
|
+
* MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction
|
|
1182
|
+
* @name MsgDescriptor
|
|
1183
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1184
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.MsgDescriptor
|
|
1185
|
+
*/
|
|
763
1186
|
export declare const MsgDescriptor: {
|
|
764
1187
|
typeUrl: string;
|
|
765
1188
|
aminoType: string;
|
|
@@ -777,6 +1200,12 @@ export declare const MsgDescriptor: {
|
|
|
777
1200
|
toProtoMsg(message: MsgDescriptor): MsgDescriptorProtoMsg;
|
|
778
1201
|
registerTypeUrl(): void;
|
|
779
1202
|
};
|
|
1203
|
+
/**
|
|
1204
|
+
* GetAuthnDescriptorRequest is the request used for the GetAuthnDescriptor RPC
|
|
1205
|
+
* @name GetAuthnDescriptorRequest
|
|
1206
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1207
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorRequest
|
|
1208
|
+
*/
|
|
780
1209
|
export declare const GetAuthnDescriptorRequest: {
|
|
781
1210
|
typeUrl: string;
|
|
782
1211
|
aminoType: string;
|
|
@@ -794,6 +1223,12 @@ export declare const GetAuthnDescriptorRequest: {
|
|
|
794
1223
|
toProtoMsg(message: GetAuthnDescriptorRequest): GetAuthnDescriptorRequestProtoMsg;
|
|
795
1224
|
registerTypeUrl(): void;
|
|
796
1225
|
};
|
|
1226
|
+
/**
|
|
1227
|
+
* GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC
|
|
1228
|
+
* @name GetAuthnDescriptorResponse
|
|
1229
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1230
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse
|
|
1231
|
+
*/
|
|
797
1232
|
export declare const GetAuthnDescriptorResponse: {
|
|
798
1233
|
typeUrl: string;
|
|
799
1234
|
aminoType: string;
|
|
@@ -811,6 +1246,12 @@ export declare const GetAuthnDescriptorResponse: {
|
|
|
811
1246
|
toProtoMsg(message: GetAuthnDescriptorResponse): GetAuthnDescriptorResponseProtoMsg;
|
|
812
1247
|
registerTypeUrl(): void;
|
|
813
1248
|
};
|
|
1249
|
+
/**
|
|
1250
|
+
* GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC
|
|
1251
|
+
* @name GetChainDescriptorRequest
|
|
1252
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1253
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorRequest
|
|
1254
|
+
*/
|
|
814
1255
|
export declare const GetChainDescriptorRequest: {
|
|
815
1256
|
typeUrl: string;
|
|
816
1257
|
aminoType: string;
|
|
@@ -828,6 +1269,12 @@ export declare const GetChainDescriptorRequest: {
|
|
|
828
1269
|
toProtoMsg(message: GetChainDescriptorRequest): GetChainDescriptorRequestProtoMsg;
|
|
829
1270
|
registerTypeUrl(): void;
|
|
830
1271
|
};
|
|
1272
|
+
/**
|
|
1273
|
+
* GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC
|
|
1274
|
+
* @name GetChainDescriptorResponse
|
|
1275
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1276
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse
|
|
1277
|
+
*/
|
|
831
1278
|
export declare const GetChainDescriptorResponse: {
|
|
832
1279
|
typeUrl: string;
|
|
833
1280
|
aminoType: string;
|
|
@@ -845,6 +1292,12 @@ export declare const GetChainDescriptorResponse: {
|
|
|
845
1292
|
toProtoMsg(message: GetChainDescriptorResponse): GetChainDescriptorResponseProtoMsg;
|
|
846
1293
|
registerTypeUrl(): void;
|
|
847
1294
|
};
|
|
1295
|
+
/**
|
|
1296
|
+
* GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC
|
|
1297
|
+
* @name GetCodecDescriptorRequest
|
|
1298
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1299
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorRequest
|
|
1300
|
+
*/
|
|
848
1301
|
export declare const GetCodecDescriptorRequest: {
|
|
849
1302
|
typeUrl: string;
|
|
850
1303
|
aminoType: string;
|
|
@@ -862,6 +1315,12 @@ export declare const GetCodecDescriptorRequest: {
|
|
|
862
1315
|
toProtoMsg(message: GetCodecDescriptorRequest): GetCodecDescriptorRequestProtoMsg;
|
|
863
1316
|
registerTypeUrl(): void;
|
|
864
1317
|
};
|
|
1318
|
+
/**
|
|
1319
|
+
* GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC
|
|
1320
|
+
* @name GetCodecDescriptorResponse
|
|
1321
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1322
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse
|
|
1323
|
+
*/
|
|
865
1324
|
export declare const GetCodecDescriptorResponse: {
|
|
866
1325
|
typeUrl: string;
|
|
867
1326
|
aminoType: string;
|
|
@@ -879,6 +1338,12 @@ export declare const GetCodecDescriptorResponse: {
|
|
|
879
1338
|
toProtoMsg(message: GetCodecDescriptorResponse): GetCodecDescriptorResponseProtoMsg;
|
|
880
1339
|
registerTypeUrl(): void;
|
|
881
1340
|
};
|
|
1341
|
+
/**
|
|
1342
|
+
* GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC
|
|
1343
|
+
* @name GetConfigurationDescriptorRequest
|
|
1344
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1345
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorRequest
|
|
1346
|
+
*/
|
|
882
1347
|
export declare const GetConfigurationDescriptorRequest: {
|
|
883
1348
|
typeUrl: string;
|
|
884
1349
|
aminoType: string;
|
|
@@ -896,6 +1361,12 @@ export declare const GetConfigurationDescriptorRequest: {
|
|
|
896
1361
|
toProtoMsg(message: GetConfigurationDescriptorRequest): GetConfigurationDescriptorRequestProtoMsg;
|
|
897
1362
|
registerTypeUrl(): void;
|
|
898
1363
|
};
|
|
1364
|
+
/**
|
|
1365
|
+
* GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC
|
|
1366
|
+
* @name GetConfigurationDescriptorResponse
|
|
1367
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1368
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse
|
|
1369
|
+
*/
|
|
899
1370
|
export declare const GetConfigurationDescriptorResponse: {
|
|
900
1371
|
typeUrl: string;
|
|
901
1372
|
aminoType: string;
|
|
@@ -913,6 +1384,12 @@ export declare const GetConfigurationDescriptorResponse: {
|
|
|
913
1384
|
toProtoMsg(message: GetConfigurationDescriptorResponse): GetConfigurationDescriptorResponseProtoMsg;
|
|
914
1385
|
registerTypeUrl(): void;
|
|
915
1386
|
};
|
|
1387
|
+
/**
|
|
1388
|
+
* GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC
|
|
1389
|
+
* @name GetQueryServicesDescriptorRequest
|
|
1390
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1391
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorRequest
|
|
1392
|
+
*/
|
|
916
1393
|
export declare const GetQueryServicesDescriptorRequest: {
|
|
917
1394
|
typeUrl: string;
|
|
918
1395
|
aminoType: string;
|
|
@@ -930,6 +1407,12 @@ export declare const GetQueryServicesDescriptorRequest: {
|
|
|
930
1407
|
toProtoMsg(message: GetQueryServicesDescriptorRequest): GetQueryServicesDescriptorRequestProtoMsg;
|
|
931
1408
|
registerTypeUrl(): void;
|
|
932
1409
|
};
|
|
1410
|
+
/**
|
|
1411
|
+
* GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC
|
|
1412
|
+
* @name GetQueryServicesDescriptorResponse
|
|
1413
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1414
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse
|
|
1415
|
+
*/
|
|
933
1416
|
export declare const GetQueryServicesDescriptorResponse: {
|
|
934
1417
|
typeUrl: string;
|
|
935
1418
|
aminoType: string;
|
|
@@ -947,6 +1430,12 @@ export declare const GetQueryServicesDescriptorResponse: {
|
|
|
947
1430
|
toProtoMsg(message: GetQueryServicesDescriptorResponse): GetQueryServicesDescriptorResponseProtoMsg;
|
|
948
1431
|
registerTypeUrl(): void;
|
|
949
1432
|
};
|
|
1433
|
+
/**
|
|
1434
|
+
* GetTxDescriptorRequest is the request used for the GetTxDescriptor RPC
|
|
1435
|
+
* @name GetTxDescriptorRequest
|
|
1436
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1437
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorRequest
|
|
1438
|
+
*/
|
|
950
1439
|
export declare const GetTxDescriptorRequest: {
|
|
951
1440
|
typeUrl: string;
|
|
952
1441
|
aminoType: string;
|
|
@@ -964,6 +1453,12 @@ export declare const GetTxDescriptorRequest: {
|
|
|
964
1453
|
toProtoMsg(message: GetTxDescriptorRequest): GetTxDescriptorRequestProtoMsg;
|
|
965
1454
|
registerTypeUrl(): void;
|
|
966
1455
|
};
|
|
1456
|
+
/**
|
|
1457
|
+
* GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC
|
|
1458
|
+
* @name GetTxDescriptorResponse
|
|
1459
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1460
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse
|
|
1461
|
+
*/
|
|
967
1462
|
export declare const GetTxDescriptorResponse: {
|
|
968
1463
|
typeUrl: string;
|
|
969
1464
|
aminoType: string;
|
|
@@ -981,6 +1476,12 @@ export declare const GetTxDescriptorResponse: {
|
|
|
981
1476
|
toProtoMsg(message: GetTxDescriptorResponse): GetTxDescriptorResponseProtoMsg;
|
|
982
1477
|
registerTypeUrl(): void;
|
|
983
1478
|
};
|
|
1479
|
+
/**
|
|
1480
|
+
* QueryServicesDescriptor contains the list of cosmos-sdk queriable services
|
|
1481
|
+
* @name QueryServicesDescriptor
|
|
1482
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1483
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.QueryServicesDescriptor
|
|
1484
|
+
*/
|
|
984
1485
|
export declare const QueryServicesDescriptor: {
|
|
985
1486
|
typeUrl: string;
|
|
986
1487
|
aminoType: string;
|
|
@@ -998,6 +1499,12 @@ export declare const QueryServicesDescriptor: {
|
|
|
998
1499
|
toProtoMsg(message: QueryServicesDescriptor): QueryServicesDescriptorProtoMsg;
|
|
999
1500
|
registerTypeUrl(): void;
|
|
1000
1501
|
};
|
|
1502
|
+
/**
|
|
1503
|
+
* QueryServiceDescriptor describes a cosmos-sdk queryable service
|
|
1504
|
+
* @name QueryServiceDescriptor
|
|
1505
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1506
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.QueryServiceDescriptor
|
|
1507
|
+
*/
|
|
1001
1508
|
export declare const QueryServiceDescriptor: {
|
|
1002
1509
|
typeUrl: string;
|
|
1003
1510
|
aminoType: string;
|
|
@@ -1015,6 +1522,14 @@ export declare const QueryServiceDescriptor: {
|
|
|
1015
1522
|
toProtoMsg(message: QueryServiceDescriptor): QueryServiceDescriptorProtoMsg;
|
|
1016
1523
|
registerTypeUrl(): void;
|
|
1017
1524
|
};
|
|
1525
|
+
/**
|
|
1526
|
+
* QueryMethodDescriptor describes a queryable method of a query service
|
|
1527
|
+
* no other info is provided beside method name and tendermint queryable path
|
|
1528
|
+
* because it would be redundant with the grpc reflection service
|
|
1529
|
+
* @name QueryMethodDescriptor
|
|
1530
|
+
* @package cosmos.base.reflection.v2alpha1
|
|
1531
|
+
* @see proto type: cosmos.base.reflection.v2alpha1.QueryMethodDescriptor
|
|
1532
|
+
*/
|
|
1018
1533
|
export declare const QueryMethodDescriptor: {
|
|
1019
1534
|
typeUrl: string;
|
|
1020
1535
|
aminoType: string;
|