injectivejs 1.11.13 → 1.11.15
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/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -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/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- 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 +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -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 +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- 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
|
@@ -180,6 +180,30 @@ function createBaseExistenceProof() {
|
|
|
180
180
|
path: []
|
|
181
181
|
};
|
|
182
182
|
}
|
|
183
|
+
/**
|
|
184
|
+
* ExistenceProof takes a key and a value and a set of steps to perform on it.
|
|
185
|
+
* The result of peforming all these steps will provide a "root hash", which can
|
|
186
|
+
* be compared to the value in a header.
|
|
187
|
+
*
|
|
188
|
+
* Since it is computationally infeasible to produce a hash collission for any of the used
|
|
189
|
+
* cryptographic hash functions, if someone can provide a series of operations to transform
|
|
190
|
+
* a given key and value into a root hash that matches some trusted root, these key and values
|
|
191
|
+
* must be in the referenced merkle tree.
|
|
192
|
+
*
|
|
193
|
+
* The only possible issue is maliablity in LeafOp, such as providing extra prefix data,
|
|
194
|
+
* which should be controlled by a spec. Eg. with lengthOp as NONE,
|
|
195
|
+
* prefix = FOO, key = BAR, value = CHOICE
|
|
196
|
+
* and
|
|
197
|
+
* prefix = F, key = OOBAR, value = CHOICE
|
|
198
|
+
* would produce the same value.
|
|
199
|
+
*
|
|
200
|
+
* With LengthOp this is tricker but not impossible. Which is why the "leafPrefixEqual" field
|
|
201
|
+
* in the ProofSpec is valuable to prevent this mutability. And why all trees should
|
|
202
|
+
* length-prefix the data before hashing it.
|
|
203
|
+
* @name ExistenceProof
|
|
204
|
+
* @package cosmos.ics23.v1
|
|
205
|
+
* @see proto type: cosmos.ics23.v1.ExistenceProof
|
|
206
|
+
*/
|
|
183
207
|
export const ExistenceProof = {
|
|
184
208
|
typeUrl: "/cosmos.ics23.v1.ExistenceProof",
|
|
185
209
|
aminoType: "cosmos-sdk/ExistenceProof",
|
|
@@ -301,6 +325,14 @@ function createBaseNonExistenceProof() {
|
|
|
301
325
|
right: undefined
|
|
302
326
|
};
|
|
303
327
|
}
|
|
328
|
+
/**
|
|
329
|
+
* NonExistenceProof takes a proof of two neighbors, one left of the desired key,
|
|
330
|
+
* one right of the desired key. If both proofs are valid AND they are neighbors,
|
|
331
|
+
* then there is no valid proof for the given key.
|
|
332
|
+
* @name NonExistenceProof
|
|
333
|
+
* @package cosmos.ics23.v1
|
|
334
|
+
* @see proto type: cosmos.ics23.v1.NonExistenceProof
|
|
335
|
+
*/
|
|
304
336
|
export const NonExistenceProof = {
|
|
305
337
|
typeUrl: "/cosmos.ics23.v1.NonExistenceProof",
|
|
306
338
|
aminoType: "cosmos-sdk/NonExistenceProof",
|
|
@@ -408,6 +440,12 @@ function createBaseCommitmentProof() {
|
|
|
408
440
|
compressed: undefined
|
|
409
441
|
};
|
|
410
442
|
}
|
|
443
|
+
/**
|
|
444
|
+
* CommitmentProof is either an ExistenceProof or a NonExistenceProof, or a Batch of such messages
|
|
445
|
+
* @name CommitmentProof
|
|
446
|
+
* @package cosmos.ics23.v1
|
|
447
|
+
* @see proto type: cosmos.ics23.v1.CommitmentProof
|
|
448
|
+
*/
|
|
411
449
|
export const CommitmentProof = {
|
|
412
450
|
typeUrl: "/cosmos.ics23.v1.CommitmentProof",
|
|
413
451
|
aminoType: "cosmos-sdk/CommitmentProof",
|
|
@@ -530,6 +568,25 @@ function createBaseLeafOp() {
|
|
|
530
568
|
prefix: new Uint8Array()
|
|
531
569
|
};
|
|
532
570
|
}
|
|
571
|
+
/**
|
|
572
|
+
* LeafOp represents the raw key-value data we wish to prove, and
|
|
573
|
+
* must be flexible to represent the internal transformation from
|
|
574
|
+
* the original key-value pairs into the basis hash, for many existing
|
|
575
|
+
* merkle trees.
|
|
576
|
+
*
|
|
577
|
+
* key and value are passed in. So that the signature of this operation is:
|
|
578
|
+
* leafOp(key, value) -> output
|
|
579
|
+
*
|
|
580
|
+
* To process this, first prehash the keys and values if needed (ANY means no hash in this case):
|
|
581
|
+
* hkey = prehashKey(key)
|
|
582
|
+
* hvalue = prehashValue(value)
|
|
583
|
+
*
|
|
584
|
+
* Then combine the bytes, and hash it
|
|
585
|
+
* output = hash(prefix || length(hkey) || hkey || length(hvalue) || hvalue)
|
|
586
|
+
* @name LeafOp
|
|
587
|
+
* @package cosmos.ics23.v1
|
|
588
|
+
* @see proto type: cosmos.ics23.v1.LeafOp
|
|
589
|
+
*/
|
|
533
590
|
export const LeafOp = {
|
|
534
591
|
typeUrl: "/cosmos.ics23.v1.LeafOp",
|
|
535
592
|
aminoType: "cosmos-sdk/LeafOp",
|
|
@@ -653,6 +710,26 @@ function createBaseInnerOp() {
|
|
|
653
710
|
suffix: new Uint8Array()
|
|
654
711
|
};
|
|
655
712
|
}
|
|
713
|
+
/**
|
|
714
|
+
* InnerOp represents a merkle-proof step that is not a leaf.
|
|
715
|
+
* It represents concatenating two children and hashing them to provide the next result.
|
|
716
|
+
*
|
|
717
|
+
* The result of the previous step is passed in, so the signature of this op is:
|
|
718
|
+
* innerOp(child) -> output
|
|
719
|
+
*
|
|
720
|
+
* The result of applying InnerOp should be:
|
|
721
|
+
* output = op.hash(op.prefix || child || op.suffix)
|
|
722
|
+
*
|
|
723
|
+
* where the || operator is concatenation of binary data,
|
|
724
|
+
* and child is the result of hashing all the tree below this step.
|
|
725
|
+
*
|
|
726
|
+
* Any special data, like prepending child with the length, or prepending the entire operation with
|
|
727
|
+
* some value to differentiate from leaf nodes, should be included in prefix and suffix.
|
|
728
|
+
* If either of prefix or suffix is empty, we just treat it as an empty string
|
|
729
|
+
* @name InnerOp
|
|
730
|
+
* @package cosmos.ics23.v1
|
|
731
|
+
* @see proto type: cosmos.ics23.v1.InnerOp
|
|
732
|
+
*/
|
|
656
733
|
export const InnerOp = {
|
|
657
734
|
typeUrl: "/cosmos.ics23.v1.InnerOp",
|
|
658
735
|
aminoType: "cosmos-sdk/InnerOp",
|
|
@@ -756,6 +833,21 @@ function createBaseProofSpec() {
|
|
|
756
833
|
prehashKeyBeforeComparison: false
|
|
757
834
|
};
|
|
758
835
|
}
|
|
836
|
+
/**
|
|
837
|
+
* ProofSpec defines what the expected parameters are for a given proof type.
|
|
838
|
+
* This can be stored in the client and used to validate any incoming proofs.
|
|
839
|
+
*
|
|
840
|
+
* verify(ProofSpec, Proof) -> Proof | Error
|
|
841
|
+
*
|
|
842
|
+
* As demonstrated in tests, if we don't fix the algorithm used to calculate the
|
|
843
|
+
* LeafHash for a given tree, there are many possible key-value pairs that can
|
|
844
|
+
* generate a given hash (by interpretting the preimage differently).
|
|
845
|
+
* We need this for proper security, requires client knows a priori what
|
|
846
|
+
* tree format server uses. But not in code, rather a configuration object.
|
|
847
|
+
* @name ProofSpec
|
|
848
|
+
* @package cosmos.ics23.v1
|
|
849
|
+
* @see proto type: cosmos.ics23.v1.ProofSpec
|
|
850
|
+
*/
|
|
759
851
|
export const ProofSpec = {
|
|
760
852
|
typeUrl: "/cosmos.ics23.v1.ProofSpec",
|
|
761
853
|
aminoType: "cosmos-sdk/ProofSpec",
|
|
@@ -888,6 +980,19 @@ function createBaseInnerSpec() {
|
|
|
888
980
|
hash: 0
|
|
889
981
|
};
|
|
890
982
|
}
|
|
983
|
+
/**
|
|
984
|
+
* InnerSpec contains all store-specific structure info to determine if two proofs from a
|
|
985
|
+
* given store are neighbors.
|
|
986
|
+
*
|
|
987
|
+
* This enables:
|
|
988
|
+
*
|
|
989
|
+
* isLeftMost(spec: InnerSpec, op: InnerOp)
|
|
990
|
+
* isRightMost(spec: InnerSpec, op: InnerOp)
|
|
991
|
+
* isLeftNeighbor(spec: InnerSpec, left: InnerOp, right: InnerOp)
|
|
992
|
+
* @name InnerSpec
|
|
993
|
+
* @package cosmos.ics23.v1
|
|
994
|
+
* @see proto type: cosmos.ics23.v1.InnerSpec
|
|
995
|
+
*/
|
|
891
996
|
export const InnerSpec = {
|
|
892
997
|
typeUrl: "/cosmos.ics23.v1.InnerSpec",
|
|
893
998
|
aminoType: "cosmos-sdk/InnerSpec",
|
|
@@ -1033,6 +1138,12 @@ function createBaseBatchProof() {
|
|
|
1033
1138
|
entries: []
|
|
1034
1139
|
};
|
|
1035
1140
|
}
|
|
1141
|
+
/**
|
|
1142
|
+
* BatchProof is a group of multiple proof types than can be compressed
|
|
1143
|
+
* @name BatchProof
|
|
1144
|
+
* @package cosmos.ics23.v1
|
|
1145
|
+
* @see proto type: cosmos.ics23.v1.BatchProof
|
|
1146
|
+
*/
|
|
1036
1147
|
export const BatchProof = {
|
|
1037
1148
|
typeUrl: "/cosmos.ics23.v1.BatchProof",
|
|
1038
1149
|
aminoType: "cosmos-sdk/BatchProof",
|
|
@@ -1119,6 +1230,12 @@ function createBaseBatchEntry() {
|
|
|
1119
1230
|
nonexist: undefined
|
|
1120
1231
|
};
|
|
1121
1232
|
}
|
|
1233
|
+
/**
|
|
1234
|
+
* Use BatchEntry not CommitmentProof, to avoid recursion
|
|
1235
|
+
* @name BatchEntry
|
|
1236
|
+
* @package cosmos.ics23.v1
|
|
1237
|
+
* @see proto type: cosmos.ics23.v1.BatchEntry
|
|
1238
|
+
*/
|
|
1122
1239
|
export const BatchEntry = {
|
|
1123
1240
|
typeUrl: "/cosmos.ics23.v1.BatchEntry",
|
|
1124
1241
|
aminoType: "cosmos-sdk/BatchEntry",
|
|
@@ -1214,6 +1331,11 @@ function createBaseCompressedBatchProof() {
|
|
|
1214
1331
|
lookupInners: []
|
|
1215
1332
|
};
|
|
1216
1333
|
}
|
|
1334
|
+
/**
|
|
1335
|
+
* @name CompressedBatchProof
|
|
1336
|
+
* @package cosmos.ics23.v1
|
|
1337
|
+
* @see proto type: cosmos.ics23.v1.CompressedBatchProof
|
|
1338
|
+
*/
|
|
1217
1339
|
export const CompressedBatchProof = {
|
|
1218
1340
|
typeUrl: "/cosmos.ics23.v1.CompressedBatchProof",
|
|
1219
1341
|
aminoType: "cosmos-sdk/CompressedBatchProof",
|
|
@@ -1315,6 +1437,12 @@ function createBaseCompressedBatchEntry() {
|
|
|
1315
1437
|
nonexist: undefined
|
|
1316
1438
|
};
|
|
1317
1439
|
}
|
|
1440
|
+
/**
|
|
1441
|
+
* Use BatchEntry not CommitmentProof, to avoid recursion
|
|
1442
|
+
* @name CompressedBatchEntry
|
|
1443
|
+
* @package cosmos.ics23.v1
|
|
1444
|
+
* @see proto type: cosmos.ics23.v1.CompressedBatchEntry
|
|
1445
|
+
*/
|
|
1318
1446
|
export const CompressedBatchEntry = {
|
|
1319
1447
|
typeUrl: "/cosmos.ics23.v1.CompressedBatchEntry",
|
|
1320
1448
|
aminoType: "cosmos-sdk/CompressedBatchEntry",
|
|
@@ -1412,6 +1540,11 @@ function createBaseCompressedExistenceProof() {
|
|
|
1412
1540
|
path: []
|
|
1413
1541
|
};
|
|
1414
1542
|
}
|
|
1543
|
+
/**
|
|
1544
|
+
* @name CompressedExistenceProof
|
|
1545
|
+
* @package cosmos.ics23.v1
|
|
1546
|
+
* @see proto type: cosmos.ics23.v1.CompressedExistenceProof
|
|
1547
|
+
*/
|
|
1415
1548
|
export const CompressedExistenceProof = {
|
|
1416
1549
|
typeUrl: "/cosmos.ics23.v1.CompressedExistenceProof",
|
|
1417
1550
|
aminoType: "cosmos-sdk/CompressedExistenceProof",
|
|
@@ -1542,6 +1675,11 @@ function createBaseCompressedNonExistenceProof() {
|
|
|
1542
1675
|
right: undefined
|
|
1543
1676
|
};
|
|
1544
1677
|
}
|
|
1678
|
+
/**
|
|
1679
|
+
* @name CompressedNonExistenceProof
|
|
1680
|
+
* @package cosmos.ics23.v1
|
|
1681
|
+
* @see proto type: cosmos.ics23.v1.CompressedNonExistenceProof
|
|
1682
|
+
*/
|
|
1545
1683
|
export const CompressedNonExistenceProof = {
|
|
1546
1684
|
typeUrl: "/cosmos.ics23.v1.CompressedNonExistenceProof",
|
|
1547
1685
|
aminoType: "cosmos-sdk/CompressedNonExistenceProof",
|
|
@@ -8,6 +8,12 @@ function createBaseQueryValidatorsRequest() {
|
|
|
8
8
|
pagination: undefined
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* QueryValidatorsRequest is request type for Query/Validators RPC method.
|
|
13
|
+
* @name QueryValidatorsRequest
|
|
14
|
+
* @package cosmos.staking.v1beta1
|
|
15
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
|
|
16
|
+
*/
|
|
11
17
|
export const QueryValidatorsRequest = {
|
|
12
18
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsRequest",
|
|
13
19
|
aminoType: "cosmos-sdk/QueryValidatorsRequest",
|
|
@@ -102,6 +108,12 @@ function createBaseQueryValidatorsResponse() {
|
|
|
102
108
|
pagination: undefined
|
|
103
109
|
};
|
|
104
110
|
}
|
|
111
|
+
/**
|
|
112
|
+
* QueryValidatorsResponse is response type for the Query/Validators RPC method
|
|
113
|
+
* @name QueryValidatorsResponse
|
|
114
|
+
* @package cosmos.staking.v1beta1
|
|
115
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
|
|
116
|
+
*/
|
|
105
117
|
export const QueryValidatorsResponse = {
|
|
106
118
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsResponse",
|
|
107
119
|
aminoType: "cosmos-sdk/QueryValidatorsResponse",
|
|
@@ -199,6 +211,12 @@ function createBaseQueryValidatorRequest() {
|
|
|
199
211
|
validatorAddr: ""
|
|
200
212
|
};
|
|
201
213
|
}
|
|
214
|
+
/**
|
|
215
|
+
* QueryValidatorRequest is response type for the Query/Validator RPC method
|
|
216
|
+
* @name QueryValidatorRequest
|
|
217
|
+
* @package cosmos.staking.v1beta1
|
|
218
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
|
|
219
|
+
*/
|
|
202
220
|
export const QueryValidatorRequest = {
|
|
203
221
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorRequest",
|
|
204
222
|
aminoType: "cosmos-sdk/QueryValidatorRequest",
|
|
@@ -276,6 +294,12 @@ function createBaseQueryValidatorResponse() {
|
|
|
276
294
|
validator: Validator.fromPartial({})
|
|
277
295
|
};
|
|
278
296
|
}
|
|
297
|
+
/**
|
|
298
|
+
* QueryValidatorResponse is response type for the Query/Validator RPC method
|
|
299
|
+
* @name QueryValidatorResponse
|
|
300
|
+
* @package cosmos.staking.v1beta1
|
|
301
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
|
|
302
|
+
*/
|
|
279
303
|
export const QueryValidatorResponse = {
|
|
280
304
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorResponse",
|
|
281
305
|
aminoType: "cosmos-sdk/QueryValidatorResponse",
|
|
@@ -359,6 +383,13 @@ function createBaseQueryValidatorDelegationsRequest() {
|
|
|
359
383
|
pagination: undefined
|
|
360
384
|
};
|
|
361
385
|
}
|
|
386
|
+
/**
|
|
387
|
+
* QueryValidatorDelegationsRequest is request type for the
|
|
388
|
+
* Query/ValidatorDelegations RPC method
|
|
389
|
+
* @name QueryValidatorDelegationsRequest
|
|
390
|
+
* @package cosmos.staking.v1beta1
|
|
391
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
|
|
392
|
+
*/
|
|
362
393
|
export const QueryValidatorDelegationsRequest = {
|
|
363
394
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorDelegationsRequest",
|
|
364
395
|
aminoType: "cosmos-sdk/QueryValidatorDelegationsRequest",
|
|
@@ -453,6 +484,13 @@ function createBaseQueryValidatorDelegationsResponse() {
|
|
|
453
484
|
pagination: undefined
|
|
454
485
|
};
|
|
455
486
|
}
|
|
487
|
+
/**
|
|
488
|
+
* QueryValidatorDelegationsResponse is response type for the
|
|
489
|
+
* Query/ValidatorDelegations RPC method
|
|
490
|
+
* @name QueryValidatorDelegationsResponse
|
|
491
|
+
* @package cosmos.staking.v1beta1
|
|
492
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
|
|
493
|
+
*/
|
|
456
494
|
export const QueryValidatorDelegationsResponse = {
|
|
457
495
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorDelegationsResponse",
|
|
458
496
|
aminoType: "cosmos-sdk/QueryValidatorDelegationsResponse",
|
|
@@ -551,6 +589,13 @@ function createBaseQueryValidatorUnbondingDelegationsRequest() {
|
|
|
551
589
|
pagination: undefined
|
|
552
590
|
};
|
|
553
591
|
}
|
|
592
|
+
/**
|
|
593
|
+
* QueryValidatorUnbondingDelegationsRequest is required type for the
|
|
594
|
+
* Query/ValidatorUnbondingDelegations RPC method
|
|
595
|
+
* @name QueryValidatorUnbondingDelegationsRequest
|
|
596
|
+
* @package cosmos.staking.v1beta1
|
|
597
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
|
|
598
|
+
*/
|
|
554
599
|
export const QueryValidatorUnbondingDelegationsRequest = {
|
|
555
600
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest",
|
|
556
601
|
aminoType: "cosmos-sdk/QueryValidatorUnbondingDelegationsRequest",
|
|
@@ -645,6 +690,13 @@ function createBaseQueryValidatorUnbondingDelegationsResponse() {
|
|
|
645
690
|
pagination: undefined
|
|
646
691
|
};
|
|
647
692
|
}
|
|
693
|
+
/**
|
|
694
|
+
* QueryValidatorUnbondingDelegationsResponse is response type for the
|
|
695
|
+
* Query/ValidatorUnbondingDelegations RPC method.
|
|
696
|
+
* @name QueryValidatorUnbondingDelegationsResponse
|
|
697
|
+
* @package cosmos.staking.v1beta1
|
|
698
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
|
|
699
|
+
*/
|
|
648
700
|
export const QueryValidatorUnbondingDelegationsResponse = {
|
|
649
701
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse",
|
|
650
702
|
aminoType: "cosmos-sdk/QueryValidatorUnbondingDelegationsResponse",
|
|
@@ -743,6 +795,12 @@ function createBaseQueryDelegationRequest() {
|
|
|
743
795
|
validatorAddr: ""
|
|
744
796
|
};
|
|
745
797
|
}
|
|
798
|
+
/**
|
|
799
|
+
* QueryDelegationRequest is request type for the Query/Delegation RPC method.
|
|
800
|
+
* @name QueryDelegationRequest
|
|
801
|
+
* @package cosmos.staking.v1beta1
|
|
802
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
|
|
803
|
+
*/
|
|
746
804
|
export const QueryDelegationRequest = {
|
|
747
805
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegationRequest",
|
|
748
806
|
aminoType: "cosmos-sdk/QueryDelegationRequest",
|
|
@@ -831,6 +889,12 @@ function createBaseQueryDelegationResponse() {
|
|
|
831
889
|
delegationResponse: undefined
|
|
832
890
|
};
|
|
833
891
|
}
|
|
892
|
+
/**
|
|
893
|
+
* QueryDelegationResponse is response type for the Query/Delegation RPC method.
|
|
894
|
+
* @name QueryDelegationResponse
|
|
895
|
+
* @package cosmos.staking.v1beta1
|
|
896
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
|
|
897
|
+
*/
|
|
834
898
|
export const QueryDelegationResponse = {
|
|
835
899
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegationResponse",
|
|
836
900
|
aminoType: "cosmos-sdk/QueryDelegationResponse",
|
|
@@ -914,6 +978,13 @@ function createBaseQueryUnbondingDelegationRequest() {
|
|
|
914
978
|
validatorAddr: ""
|
|
915
979
|
};
|
|
916
980
|
}
|
|
981
|
+
/**
|
|
982
|
+
* QueryUnbondingDelegationRequest is request type for the
|
|
983
|
+
* Query/UnbondingDelegation RPC method.
|
|
984
|
+
* @name QueryUnbondingDelegationRequest
|
|
985
|
+
* @package cosmos.staking.v1beta1
|
|
986
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
|
|
987
|
+
*/
|
|
917
988
|
export const QueryUnbondingDelegationRequest = {
|
|
918
989
|
typeUrl: "/cosmos.staking.v1beta1.QueryUnbondingDelegationRequest",
|
|
919
990
|
aminoType: "cosmos-sdk/QueryUnbondingDelegationRequest",
|
|
@@ -1002,6 +1073,13 @@ function createBaseQueryUnbondingDelegationResponse() {
|
|
|
1002
1073
|
unbond: UnbondingDelegation.fromPartial({})
|
|
1003
1074
|
};
|
|
1004
1075
|
}
|
|
1076
|
+
/**
|
|
1077
|
+
* QueryDelegationResponse is response type for the Query/UnbondingDelegation
|
|
1078
|
+
* RPC method.
|
|
1079
|
+
* @name QueryUnbondingDelegationResponse
|
|
1080
|
+
* @package cosmos.staking.v1beta1
|
|
1081
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
|
|
1082
|
+
*/
|
|
1005
1083
|
export const QueryUnbondingDelegationResponse = {
|
|
1006
1084
|
typeUrl: "/cosmos.staking.v1beta1.QueryUnbondingDelegationResponse",
|
|
1007
1085
|
aminoType: "cosmos-sdk/QueryUnbondingDelegationResponse",
|
|
@@ -1085,6 +1163,13 @@ function createBaseQueryDelegatorDelegationsRequest() {
|
|
|
1085
1163
|
pagination: undefined
|
|
1086
1164
|
};
|
|
1087
1165
|
}
|
|
1166
|
+
/**
|
|
1167
|
+
* QueryDelegatorDelegationsRequest is request type for the
|
|
1168
|
+
* Query/DelegatorDelegations RPC method.
|
|
1169
|
+
* @name QueryDelegatorDelegationsRequest
|
|
1170
|
+
* @package cosmos.staking.v1beta1
|
|
1171
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
|
|
1172
|
+
*/
|
|
1088
1173
|
export const QueryDelegatorDelegationsRequest = {
|
|
1089
1174
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest",
|
|
1090
1175
|
aminoType: "cosmos-sdk/QueryDelegatorDelegationsRequest",
|
|
@@ -1179,6 +1264,13 @@ function createBaseQueryDelegatorDelegationsResponse() {
|
|
|
1179
1264
|
pagination: undefined
|
|
1180
1265
|
};
|
|
1181
1266
|
}
|
|
1267
|
+
/**
|
|
1268
|
+
* QueryDelegatorDelegationsResponse is response type for the
|
|
1269
|
+
* Query/DelegatorDelegations RPC method.
|
|
1270
|
+
* @name QueryDelegatorDelegationsResponse
|
|
1271
|
+
* @package cosmos.staking.v1beta1
|
|
1272
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
|
|
1273
|
+
*/
|
|
1182
1274
|
export const QueryDelegatorDelegationsResponse = {
|
|
1183
1275
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse",
|
|
1184
1276
|
aminoType: "cosmos-sdk/QueryDelegatorDelegationsResponse",
|
|
@@ -1277,6 +1369,13 @@ function createBaseQueryDelegatorUnbondingDelegationsRequest() {
|
|
|
1277
1369
|
pagination: undefined
|
|
1278
1370
|
};
|
|
1279
1371
|
}
|
|
1372
|
+
/**
|
|
1373
|
+
* QueryDelegatorUnbondingDelegationsRequest is request type for the
|
|
1374
|
+
* Query/DelegatorUnbondingDelegations RPC method.
|
|
1375
|
+
* @name QueryDelegatorUnbondingDelegationsRequest
|
|
1376
|
+
* @package cosmos.staking.v1beta1
|
|
1377
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
|
|
1378
|
+
*/
|
|
1280
1379
|
export const QueryDelegatorUnbondingDelegationsRequest = {
|
|
1281
1380
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest",
|
|
1282
1381
|
aminoType: "cosmos-sdk/QueryDelegatorUnbondingDelegationsRequest",
|
|
@@ -1371,6 +1470,13 @@ function createBaseQueryDelegatorUnbondingDelegationsResponse() {
|
|
|
1371
1470
|
pagination: undefined
|
|
1372
1471
|
};
|
|
1373
1472
|
}
|
|
1473
|
+
/**
|
|
1474
|
+
* QueryUnbondingDelegatorDelegationsResponse is response type for the
|
|
1475
|
+
* Query/UnbondingDelegatorDelegations RPC method.
|
|
1476
|
+
* @name QueryDelegatorUnbondingDelegationsResponse
|
|
1477
|
+
* @package cosmos.staking.v1beta1
|
|
1478
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
|
|
1479
|
+
*/
|
|
1374
1480
|
export const QueryDelegatorUnbondingDelegationsResponse = {
|
|
1375
1481
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse",
|
|
1376
1482
|
aminoType: "cosmos-sdk/QueryDelegatorUnbondingDelegationsResponse",
|
|
@@ -1471,6 +1577,13 @@ function createBaseQueryRedelegationsRequest() {
|
|
|
1471
1577
|
pagination: undefined
|
|
1472
1578
|
};
|
|
1473
1579
|
}
|
|
1580
|
+
/**
|
|
1581
|
+
* QueryRedelegationsRequest is request type for the Query/Redelegations RPC
|
|
1582
|
+
* method.
|
|
1583
|
+
* @name QueryRedelegationsRequest
|
|
1584
|
+
* @package cosmos.staking.v1beta1
|
|
1585
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
|
|
1586
|
+
*/
|
|
1474
1587
|
export const QueryRedelegationsRequest = {
|
|
1475
1588
|
typeUrl: "/cosmos.staking.v1beta1.QueryRedelegationsRequest",
|
|
1476
1589
|
aminoType: "cosmos-sdk/QueryRedelegationsRequest",
|
|
@@ -1587,6 +1700,13 @@ function createBaseQueryRedelegationsResponse() {
|
|
|
1587
1700
|
pagination: undefined
|
|
1588
1701
|
};
|
|
1589
1702
|
}
|
|
1703
|
+
/**
|
|
1704
|
+
* QueryRedelegationsResponse is response type for the Query/Redelegations RPC
|
|
1705
|
+
* method.
|
|
1706
|
+
* @name QueryRedelegationsResponse
|
|
1707
|
+
* @package cosmos.staking.v1beta1
|
|
1708
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
|
|
1709
|
+
*/
|
|
1590
1710
|
export const QueryRedelegationsResponse = {
|
|
1591
1711
|
typeUrl: "/cosmos.staking.v1beta1.QueryRedelegationsResponse",
|
|
1592
1712
|
aminoType: "cosmos-sdk/QueryRedelegationsResponse",
|
|
@@ -1685,6 +1805,13 @@ function createBaseQueryDelegatorValidatorsRequest() {
|
|
|
1685
1805
|
pagination: undefined
|
|
1686
1806
|
};
|
|
1687
1807
|
}
|
|
1808
|
+
/**
|
|
1809
|
+
* QueryDelegatorValidatorsRequest is request type for the
|
|
1810
|
+
* Query/DelegatorValidators RPC method.
|
|
1811
|
+
* @name QueryDelegatorValidatorsRequest
|
|
1812
|
+
* @package cosmos.staking.v1beta1
|
|
1813
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
|
|
1814
|
+
*/
|
|
1688
1815
|
export const QueryDelegatorValidatorsRequest = {
|
|
1689
1816
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest",
|
|
1690
1817
|
aminoType: "cosmos-sdk/QueryDelegatorValidatorsRequest",
|
|
@@ -1779,6 +1906,13 @@ function createBaseQueryDelegatorValidatorsResponse() {
|
|
|
1779
1906
|
pagination: undefined
|
|
1780
1907
|
};
|
|
1781
1908
|
}
|
|
1909
|
+
/**
|
|
1910
|
+
* QueryDelegatorValidatorsResponse is response type for the
|
|
1911
|
+
* Query/DelegatorValidators RPC method.
|
|
1912
|
+
* @name QueryDelegatorValidatorsResponse
|
|
1913
|
+
* @package cosmos.staking.v1beta1
|
|
1914
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
|
|
1915
|
+
*/
|
|
1782
1916
|
export const QueryDelegatorValidatorsResponse = {
|
|
1783
1917
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse",
|
|
1784
1918
|
aminoType: "cosmos-sdk/QueryDelegatorValidatorsResponse",
|
|
@@ -1877,6 +2011,13 @@ function createBaseQueryDelegatorValidatorRequest() {
|
|
|
1877
2011
|
validatorAddr: ""
|
|
1878
2012
|
};
|
|
1879
2013
|
}
|
|
2014
|
+
/**
|
|
2015
|
+
* QueryDelegatorValidatorRequest is request type for the
|
|
2016
|
+
* Query/DelegatorValidator RPC method.
|
|
2017
|
+
* @name QueryDelegatorValidatorRequest
|
|
2018
|
+
* @package cosmos.staking.v1beta1
|
|
2019
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
|
|
2020
|
+
*/
|
|
1880
2021
|
export const QueryDelegatorValidatorRequest = {
|
|
1881
2022
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorRequest",
|
|
1882
2023
|
aminoType: "cosmos-sdk/QueryDelegatorValidatorRequest",
|
|
@@ -1965,6 +2106,13 @@ function createBaseQueryDelegatorValidatorResponse() {
|
|
|
1965
2106
|
validator: Validator.fromPartial({})
|
|
1966
2107
|
};
|
|
1967
2108
|
}
|
|
2109
|
+
/**
|
|
2110
|
+
* QueryDelegatorValidatorResponse response type for the
|
|
2111
|
+
* Query/DelegatorValidator RPC method.
|
|
2112
|
+
* @name QueryDelegatorValidatorResponse
|
|
2113
|
+
* @package cosmos.staking.v1beta1
|
|
2114
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
|
|
2115
|
+
*/
|
|
1968
2116
|
export const QueryDelegatorValidatorResponse = {
|
|
1969
2117
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorResponse",
|
|
1970
2118
|
aminoType: "cosmos-sdk/QueryDelegatorValidatorResponse",
|
|
@@ -2047,6 +2195,13 @@ function createBaseQueryHistoricalInfoRequest() {
|
|
|
2047
2195
|
height: BigInt(0)
|
|
2048
2196
|
};
|
|
2049
2197
|
}
|
|
2198
|
+
/**
|
|
2199
|
+
* QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
|
|
2200
|
+
* method.
|
|
2201
|
+
* @name QueryHistoricalInfoRequest
|
|
2202
|
+
* @package cosmos.staking.v1beta1
|
|
2203
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
|
|
2204
|
+
*/
|
|
2050
2205
|
export const QueryHistoricalInfoRequest = {
|
|
2051
2206
|
typeUrl: "/cosmos.staking.v1beta1.QueryHistoricalInfoRequest",
|
|
2052
2207
|
aminoType: "cosmos-sdk/QueryHistoricalInfoRequest",
|
|
@@ -2124,6 +2279,13 @@ function createBaseQueryHistoricalInfoResponse() {
|
|
|
2124
2279
|
hist: undefined
|
|
2125
2280
|
};
|
|
2126
2281
|
}
|
|
2282
|
+
/**
|
|
2283
|
+
* QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
|
|
2284
|
+
* method.
|
|
2285
|
+
* @name QueryHistoricalInfoResponse
|
|
2286
|
+
* @package cosmos.staking.v1beta1
|
|
2287
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
|
|
2288
|
+
*/
|
|
2127
2289
|
export const QueryHistoricalInfoResponse = {
|
|
2128
2290
|
typeUrl: "/cosmos.staking.v1beta1.QueryHistoricalInfoResponse",
|
|
2129
2291
|
aminoType: "cosmos-sdk/QueryHistoricalInfoResponse",
|
|
@@ -2204,6 +2366,12 @@ export const QueryHistoricalInfoResponse = {
|
|
|
2204
2366
|
function createBaseQueryPoolRequest() {
|
|
2205
2367
|
return {};
|
|
2206
2368
|
}
|
|
2369
|
+
/**
|
|
2370
|
+
* QueryPoolRequest is request type for the Query/Pool RPC method.
|
|
2371
|
+
* @name QueryPoolRequest
|
|
2372
|
+
* @package cosmos.staking.v1beta1
|
|
2373
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
|
|
2374
|
+
*/
|
|
2207
2375
|
export const QueryPoolRequest = {
|
|
2208
2376
|
typeUrl: "/cosmos.staking.v1beta1.QueryPoolRequest",
|
|
2209
2377
|
aminoType: "cosmos-sdk/QueryPoolRequest",
|
|
@@ -2270,6 +2438,12 @@ function createBaseQueryPoolResponse() {
|
|
|
2270
2438
|
pool: Pool.fromPartial({})
|
|
2271
2439
|
};
|
|
2272
2440
|
}
|
|
2441
|
+
/**
|
|
2442
|
+
* QueryPoolResponse is response type for the Query/Pool RPC method.
|
|
2443
|
+
* @name QueryPoolResponse
|
|
2444
|
+
* @package cosmos.staking.v1beta1
|
|
2445
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
|
|
2446
|
+
*/
|
|
2273
2447
|
export const QueryPoolResponse = {
|
|
2274
2448
|
typeUrl: "/cosmos.staking.v1beta1.QueryPoolResponse",
|
|
2275
2449
|
aminoType: "cosmos-sdk/QueryPoolResponse",
|
|
@@ -2350,6 +2524,12 @@ export const QueryPoolResponse = {
|
|
|
2350
2524
|
function createBaseQueryParamsRequest() {
|
|
2351
2525
|
return {};
|
|
2352
2526
|
}
|
|
2527
|
+
/**
|
|
2528
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
2529
|
+
* @name QueryParamsRequest
|
|
2530
|
+
* @package cosmos.staking.v1beta1
|
|
2531
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
|
|
2532
|
+
*/
|
|
2353
2533
|
export const QueryParamsRequest = {
|
|
2354
2534
|
typeUrl: "/cosmos.staking.v1beta1.QueryParamsRequest",
|
|
2355
2535
|
aminoType: "cosmos-sdk/QueryParamsRequest",
|
|
@@ -2416,6 +2596,12 @@ function createBaseQueryParamsResponse() {
|
|
|
2416
2596
|
params: Params.fromPartial({})
|
|
2417
2597
|
};
|
|
2418
2598
|
}
|
|
2599
|
+
/**
|
|
2600
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
2601
|
+
* @name QueryParamsResponse
|
|
2602
|
+
* @package cosmos.staking.v1beta1
|
|
2603
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
|
|
2604
|
+
*/
|
|
2419
2605
|
export const QueryParamsResponse = {
|
|
2420
2606
|
typeUrl: "/cosmos.staking.v1beta1.QueryParamsResponse",
|
|
2421
2607
|
aminoType: "cosmos-sdk/QueryParamsResponse",
|