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
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { buildQuery } from "../../../helper-func-types";
|
|
2
2
|
import { QueryValidatorsRequest, QueryValidatorsResponse, QueryValidatorRequest, QueryValidatorResponse, QueryValidatorDelegationsRequest, QueryValidatorDelegationsResponse, QueryValidatorUnbondingDelegationsRequest, QueryValidatorUnbondingDelegationsResponse, QueryDelegationRequest, QueryDelegationResponse, QueryUnbondingDelegationRequest, QueryUnbondingDelegationResponse, QueryDelegatorDelegationsRequest, QueryDelegatorDelegationsResponse, QueryDelegatorUnbondingDelegationsRequest, QueryDelegatorUnbondingDelegationsResponse, QueryRedelegationsRequest, QueryRedelegationsResponse, QueryDelegatorValidatorsRequest, QueryDelegatorValidatorsResponse, QueryDelegatorValidatorRequest, QueryDelegatorValidatorResponse, QueryHistoricalInfoRequest, QueryHistoricalInfoResponse, QueryPoolRequest, QueryPoolResponse, QueryParamsRequest, QueryParamsResponse } from "./query";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Validators queries all validators that match the given status.
|
|
5
|
+
*
|
|
6
|
+
* When called from another module, this query might consume a high amount of
|
|
7
|
+
* gas if the pagination field is incorrectly set.
|
|
8
|
+
* @name getValidators
|
|
9
|
+
* @package cosmos.staking.v1beta1
|
|
10
|
+
* @see proto service: cosmos.staking.v1beta1.Validators
|
|
11
|
+
*/
|
|
7
12
|
export const getValidators = buildQuery({
|
|
8
13
|
encode: QueryValidatorsRequest.encode,
|
|
9
14
|
decode: QueryValidatorsResponse.decode,
|
|
@@ -11,7 +16,12 @@ export const getValidators = buildQuery({
|
|
|
11
16
|
method: "Validators",
|
|
12
17
|
deps: [QueryValidatorsRequest, QueryValidatorsResponse]
|
|
13
18
|
});
|
|
14
|
-
|
|
19
|
+
/**
|
|
20
|
+
* Validator queries validator info for given validator address.
|
|
21
|
+
* @name getValidator
|
|
22
|
+
* @package cosmos.staking.v1beta1
|
|
23
|
+
* @see proto service: cosmos.staking.v1beta1.Validator
|
|
24
|
+
*/
|
|
15
25
|
export const getValidator = buildQuery({
|
|
16
26
|
encode: QueryValidatorRequest.encode,
|
|
17
27
|
decode: QueryValidatorResponse.decode,
|
|
@@ -19,10 +29,15 @@ export const getValidator = buildQuery({
|
|
|
19
29
|
method: "Validator",
|
|
20
30
|
deps: [QueryValidatorRequest, QueryValidatorResponse]
|
|
21
31
|
});
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
32
|
+
/**
|
|
33
|
+
* ValidatorDelegations queries delegate info for given validator.
|
|
34
|
+
*
|
|
35
|
+
* When called from another module, this query might consume a high amount of
|
|
36
|
+
* gas if the pagination field is incorrectly set.
|
|
37
|
+
* @name getValidatorDelegations
|
|
38
|
+
* @package cosmos.staking.v1beta1
|
|
39
|
+
* @see proto service: cosmos.staking.v1beta1.ValidatorDelegations
|
|
40
|
+
*/
|
|
26
41
|
export const getValidatorDelegations = buildQuery({
|
|
27
42
|
encode: QueryValidatorDelegationsRequest.encode,
|
|
28
43
|
decode: QueryValidatorDelegationsResponse.decode,
|
|
@@ -30,10 +45,15 @@ export const getValidatorDelegations = buildQuery({
|
|
|
30
45
|
method: "ValidatorDelegations",
|
|
31
46
|
deps: [QueryValidatorDelegationsRequest, QueryValidatorDelegationsResponse]
|
|
32
47
|
});
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
48
|
+
/**
|
|
49
|
+
* ValidatorUnbondingDelegations queries unbonding delegations of a validator.
|
|
50
|
+
*
|
|
51
|
+
* When called from another module, this query might consume a high amount of
|
|
52
|
+
* gas if the pagination field is incorrectly set.
|
|
53
|
+
* @name getValidatorUnbondingDelegations
|
|
54
|
+
* @package cosmos.staking.v1beta1
|
|
55
|
+
* @see proto service: cosmos.staking.v1beta1.ValidatorUnbondingDelegations
|
|
56
|
+
*/
|
|
37
57
|
export const getValidatorUnbondingDelegations = buildQuery({
|
|
38
58
|
encode: QueryValidatorUnbondingDelegationsRequest.encode,
|
|
39
59
|
decode: QueryValidatorUnbondingDelegationsResponse.decode,
|
|
@@ -41,7 +61,12 @@ export const getValidatorUnbondingDelegations = buildQuery({
|
|
|
41
61
|
method: "ValidatorUnbondingDelegations",
|
|
42
62
|
deps: [QueryValidatorUnbondingDelegationsRequest, QueryValidatorUnbondingDelegationsResponse]
|
|
43
63
|
});
|
|
44
|
-
|
|
64
|
+
/**
|
|
65
|
+
* Delegation queries delegate info for given validator delegator pair.
|
|
66
|
+
* @name getDelegation
|
|
67
|
+
* @package cosmos.staking.v1beta1
|
|
68
|
+
* @see proto service: cosmos.staking.v1beta1.Delegation
|
|
69
|
+
*/
|
|
45
70
|
export const getDelegation = buildQuery({
|
|
46
71
|
encode: QueryDelegationRequest.encode,
|
|
47
72
|
decode: QueryDelegationResponse.decode,
|
|
@@ -49,8 +74,13 @@ export const getDelegation = buildQuery({
|
|
|
49
74
|
method: "Delegation",
|
|
50
75
|
deps: [QueryDelegationRequest, QueryDelegationResponse]
|
|
51
76
|
});
|
|
52
|
-
|
|
53
|
-
|
|
77
|
+
/**
|
|
78
|
+
* UnbondingDelegation queries unbonding info for given validator delegator
|
|
79
|
+
* pair.
|
|
80
|
+
* @name getUnbondingDelegation
|
|
81
|
+
* @package cosmos.staking.v1beta1
|
|
82
|
+
* @see proto service: cosmos.staking.v1beta1.UnbondingDelegation
|
|
83
|
+
*/
|
|
54
84
|
export const getUnbondingDelegation = buildQuery({
|
|
55
85
|
encode: QueryUnbondingDelegationRequest.encode,
|
|
56
86
|
decode: QueryUnbondingDelegationResponse.decode,
|
|
@@ -58,10 +88,15 @@ export const getUnbondingDelegation = buildQuery({
|
|
|
58
88
|
method: "UnbondingDelegation",
|
|
59
89
|
deps: [QueryUnbondingDelegationRequest, QueryUnbondingDelegationResponse]
|
|
60
90
|
});
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
91
|
+
/**
|
|
92
|
+
* DelegatorDelegations queries all delegations of a given delegator address.
|
|
93
|
+
*
|
|
94
|
+
* When called from another module, this query might consume a high amount of
|
|
95
|
+
* gas if the pagination field is incorrectly set.
|
|
96
|
+
* @name getDelegatorDelegations
|
|
97
|
+
* @package cosmos.staking.v1beta1
|
|
98
|
+
* @see proto service: cosmos.staking.v1beta1.DelegatorDelegations
|
|
99
|
+
*/
|
|
65
100
|
export const getDelegatorDelegations = buildQuery({
|
|
66
101
|
encode: QueryDelegatorDelegationsRequest.encode,
|
|
67
102
|
decode: QueryDelegatorDelegationsResponse.decode,
|
|
@@ -69,11 +104,16 @@ export const getDelegatorDelegations = buildQuery({
|
|
|
69
104
|
method: "DelegatorDelegations",
|
|
70
105
|
deps: [QueryDelegatorDelegationsRequest, QueryDelegatorDelegationsResponse]
|
|
71
106
|
});
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
107
|
+
/**
|
|
108
|
+
* DelegatorUnbondingDelegations queries all unbonding delegations of a given
|
|
109
|
+
* delegator address.
|
|
110
|
+
*
|
|
111
|
+
* When called from another module, this query might consume a high amount of
|
|
112
|
+
* gas if the pagination field is incorrectly set.
|
|
113
|
+
* @name getDelegatorUnbondingDelegations
|
|
114
|
+
* @package cosmos.staking.v1beta1
|
|
115
|
+
* @see proto service: cosmos.staking.v1beta1.DelegatorUnbondingDelegations
|
|
116
|
+
*/
|
|
77
117
|
export const getDelegatorUnbondingDelegations = buildQuery({
|
|
78
118
|
encode: QueryDelegatorUnbondingDelegationsRequest.encode,
|
|
79
119
|
decode: QueryDelegatorUnbondingDelegationsResponse.decode,
|
|
@@ -81,10 +121,15 @@ export const getDelegatorUnbondingDelegations = buildQuery({
|
|
|
81
121
|
method: "DelegatorUnbondingDelegations",
|
|
82
122
|
deps: [QueryDelegatorUnbondingDelegationsRequest, QueryDelegatorUnbondingDelegationsResponse]
|
|
83
123
|
});
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
124
|
+
/**
|
|
125
|
+
* Redelegations queries redelegations of given address.
|
|
126
|
+
*
|
|
127
|
+
* When called from another module, this query might consume a high amount of
|
|
128
|
+
* gas if the pagination field is incorrectly set.
|
|
129
|
+
* @name getRedelegations
|
|
130
|
+
* @package cosmos.staking.v1beta1
|
|
131
|
+
* @see proto service: cosmos.staking.v1beta1.Redelegations
|
|
132
|
+
*/
|
|
88
133
|
export const getRedelegations = buildQuery({
|
|
89
134
|
encode: QueryRedelegationsRequest.encode,
|
|
90
135
|
decode: QueryRedelegationsResponse.decode,
|
|
@@ -92,11 +137,16 @@ export const getRedelegations = buildQuery({
|
|
|
92
137
|
method: "Redelegations",
|
|
93
138
|
deps: [QueryRedelegationsRequest, QueryRedelegationsResponse]
|
|
94
139
|
});
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
140
|
+
/**
|
|
141
|
+
* DelegatorValidators queries all validators info for given delegator
|
|
142
|
+
* address.
|
|
143
|
+
*
|
|
144
|
+
* When called from another module, this query might consume a high amount of
|
|
145
|
+
* gas if the pagination field is incorrectly set.
|
|
146
|
+
* @name getDelegatorValidators
|
|
147
|
+
* @package cosmos.staking.v1beta1
|
|
148
|
+
* @see proto service: cosmos.staking.v1beta1.DelegatorValidators
|
|
149
|
+
*/
|
|
100
150
|
export const getDelegatorValidators = buildQuery({
|
|
101
151
|
encode: QueryDelegatorValidatorsRequest.encode,
|
|
102
152
|
decode: QueryDelegatorValidatorsResponse.decode,
|
|
@@ -104,8 +154,13 @@ export const getDelegatorValidators = buildQuery({
|
|
|
104
154
|
method: "DelegatorValidators",
|
|
105
155
|
deps: [QueryDelegatorValidatorsRequest, QueryDelegatorValidatorsResponse]
|
|
106
156
|
});
|
|
107
|
-
|
|
108
|
-
|
|
157
|
+
/**
|
|
158
|
+
* DelegatorValidator queries validator info for given delegator validator
|
|
159
|
+
* pair.
|
|
160
|
+
* @name getDelegatorValidator
|
|
161
|
+
* @package cosmos.staking.v1beta1
|
|
162
|
+
* @see proto service: cosmos.staking.v1beta1.DelegatorValidator
|
|
163
|
+
*/
|
|
109
164
|
export const getDelegatorValidator = buildQuery({
|
|
110
165
|
encode: QueryDelegatorValidatorRequest.encode,
|
|
111
166
|
decode: QueryDelegatorValidatorResponse.decode,
|
|
@@ -113,7 +168,12 @@ export const getDelegatorValidator = buildQuery({
|
|
|
113
168
|
method: "DelegatorValidator",
|
|
114
169
|
deps: [QueryDelegatorValidatorRequest, QueryDelegatorValidatorResponse]
|
|
115
170
|
});
|
|
116
|
-
|
|
171
|
+
/**
|
|
172
|
+
* HistoricalInfo queries the historical info for given height.
|
|
173
|
+
* @name getHistoricalInfo
|
|
174
|
+
* @package cosmos.staking.v1beta1
|
|
175
|
+
* @see proto service: cosmos.staking.v1beta1.HistoricalInfo
|
|
176
|
+
*/
|
|
117
177
|
export const getHistoricalInfo = buildQuery({
|
|
118
178
|
encode: QueryHistoricalInfoRequest.encode,
|
|
119
179
|
decode: QueryHistoricalInfoResponse.decode,
|
|
@@ -121,7 +181,12 @@ export const getHistoricalInfo = buildQuery({
|
|
|
121
181
|
method: "HistoricalInfo",
|
|
122
182
|
deps: [QueryHistoricalInfoRequest, QueryHistoricalInfoResponse]
|
|
123
183
|
});
|
|
124
|
-
|
|
184
|
+
/**
|
|
185
|
+
* Pool queries the pool info.
|
|
186
|
+
* @name getPool
|
|
187
|
+
* @package cosmos.staking.v1beta1
|
|
188
|
+
* @see proto service: cosmos.staking.v1beta1.Pool
|
|
189
|
+
*/
|
|
125
190
|
export const getPool = buildQuery({
|
|
126
191
|
encode: QueryPoolRequest.encode,
|
|
127
192
|
decode: QueryPoolResponse.decode,
|
|
@@ -129,7 +194,12 @@ export const getPool = buildQuery({
|
|
|
129
194
|
method: "Pool",
|
|
130
195
|
deps: [QueryPoolRequest, QueryPoolResponse]
|
|
131
196
|
});
|
|
132
|
-
|
|
197
|
+
/**
|
|
198
|
+
* Parameters queries the staking parameters.
|
|
199
|
+
* @name getParams
|
|
200
|
+
* @package cosmos.staking.v1beta1
|
|
201
|
+
* @see proto service: cosmos.staking.v1beta1.Params
|
|
202
|
+
*/
|
|
133
203
|
export const getParams = buildQuery({
|
|
134
204
|
encode: QueryParamsRequest.encode,
|
|
135
205
|
decode: QueryParamsResponse.decode,
|
|
@@ -106,6 +106,15 @@ function createBaseHistoricalInfo() {
|
|
|
106
106
|
valset: []
|
|
107
107
|
};
|
|
108
108
|
}
|
|
109
|
+
/**
|
|
110
|
+
* HistoricalInfo contains header and validator information for a given block.
|
|
111
|
+
* It is stored as part of staking module's state, which persists the `n` most
|
|
112
|
+
* recent HistoricalInfo
|
|
113
|
+
* (`n` is set by the staking module's `historical_entries` parameter).
|
|
114
|
+
* @name HistoricalInfo
|
|
115
|
+
* @package cosmos.staking.v1beta1
|
|
116
|
+
* @see proto type: cosmos.staking.v1beta1.HistoricalInfo
|
|
117
|
+
*/
|
|
109
118
|
export const HistoricalInfo = {
|
|
110
119
|
typeUrl: "/cosmos.staking.v1beta1.HistoricalInfo",
|
|
111
120
|
aminoType: "cosmos-sdk/HistoricalInfo",
|
|
@@ -205,6 +214,13 @@ function createBaseCommissionRates() {
|
|
|
205
214
|
maxChangeRate: ""
|
|
206
215
|
};
|
|
207
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* CommissionRates defines the initial commission rates to be used for creating
|
|
219
|
+
* a validator.
|
|
220
|
+
* @name CommissionRates
|
|
221
|
+
* @package cosmos.staking.v1beta1
|
|
222
|
+
* @see proto type: cosmos.staking.v1beta1.CommissionRates
|
|
223
|
+
*/
|
|
208
224
|
export const CommissionRates = {
|
|
209
225
|
typeUrl: "/cosmos.staking.v1beta1.CommissionRates",
|
|
210
226
|
aminoType: "cosmos-sdk/CommissionRates",
|
|
@@ -305,6 +321,12 @@ function createBaseCommission() {
|
|
|
305
321
|
updateTime: new Date()
|
|
306
322
|
};
|
|
307
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* Commission defines commission parameters for a given validator.
|
|
326
|
+
* @name Commission
|
|
327
|
+
* @package cosmos.staking.v1beta1
|
|
328
|
+
* @see proto type: cosmos.staking.v1beta1.Commission
|
|
329
|
+
*/
|
|
308
330
|
export const Commission = {
|
|
309
331
|
typeUrl: "/cosmos.staking.v1beta1.Commission",
|
|
310
332
|
aminoType: "cosmos-sdk/Commission",
|
|
@@ -402,6 +424,12 @@ function createBaseDescription() {
|
|
|
402
424
|
details: ""
|
|
403
425
|
};
|
|
404
426
|
}
|
|
427
|
+
/**
|
|
428
|
+
* Description defines a validator description.
|
|
429
|
+
* @name Description
|
|
430
|
+
* @package cosmos.staking.v1beta1
|
|
431
|
+
* @see proto type: cosmos.staking.v1beta1.Description
|
|
432
|
+
*/
|
|
405
433
|
export const Description = {
|
|
406
434
|
typeUrl: "/cosmos.staking.v1beta1.Description",
|
|
407
435
|
aminoType: "cosmos-sdk/Description",
|
|
@@ -535,6 +563,19 @@ function createBaseValidator() {
|
|
|
535
563
|
unbondingIds: []
|
|
536
564
|
};
|
|
537
565
|
}
|
|
566
|
+
/**
|
|
567
|
+
* Validator defines a validator, together with the total amount of the
|
|
568
|
+
* Validator's bond shares and their exchange rate to coins. Slashing results in
|
|
569
|
+
* a decrease in the exchange rate, allowing correct calculation of future
|
|
570
|
+
* undelegations without iterating over delegators. When coins are delegated to
|
|
571
|
+
* this validator, the validator is credited with a delegation whose number of
|
|
572
|
+
* bond shares is based on the amount of coins delegated divided by the current
|
|
573
|
+
* exchange rate. Voting power can be calculated as total bonded shares
|
|
574
|
+
* multiplied by exchange rate.
|
|
575
|
+
* @name Validator
|
|
576
|
+
* @package cosmos.staking.v1beta1
|
|
577
|
+
* @see proto type: cosmos.staking.v1beta1.Validator
|
|
578
|
+
*/
|
|
538
579
|
export const Validator = {
|
|
539
580
|
typeUrl: "/cosmos.staking.v1beta1.Validator",
|
|
540
581
|
aminoType: "cosmos-sdk/Validator",
|
|
@@ -763,6 +804,12 @@ function createBaseValAddresses() {
|
|
|
763
804
|
addresses: []
|
|
764
805
|
};
|
|
765
806
|
}
|
|
807
|
+
/**
|
|
808
|
+
* ValAddresses defines a repeated set of validator addresses.
|
|
809
|
+
* @name ValAddresses
|
|
810
|
+
* @package cosmos.staking.v1beta1
|
|
811
|
+
* @see proto type: cosmos.staking.v1beta1.ValAddresses
|
|
812
|
+
*/
|
|
766
813
|
export const ValAddresses = {
|
|
767
814
|
typeUrl: "/cosmos.staking.v1beta1.ValAddresses",
|
|
768
815
|
aminoType: "cosmos-sdk/ValAddresses",
|
|
@@ -844,6 +891,14 @@ function createBaseDVPair() {
|
|
|
844
891
|
validatorAddress: ""
|
|
845
892
|
};
|
|
846
893
|
}
|
|
894
|
+
/**
|
|
895
|
+
* DVPair is struct that just has a delegator-validator pair with no other data.
|
|
896
|
+
* It is intended to be used as a marshalable pointer. For example, a DVPair can
|
|
897
|
+
* be used to construct the key to getting an UnbondingDelegation from state.
|
|
898
|
+
* @name DVPair
|
|
899
|
+
* @package cosmos.staking.v1beta1
|
|
900
|
+
* @see proto type: cosmos.staking.v1beta1.DVPair
|
|
901
|
+
*/
|
|
847
902
|
export const DVPair = {
|
|
848
903
|
typeUrl: "/cosmos.staking.v1beta1.DVPair",
|
|
849
904
|
aminoType: "cosmos-sdk/DVPair",
|
|
@@ -932,6 +987,12 @@ function createBaseDVPairs() {
|
|
|
932
987
|
pairs: []
|
|
933
988
|
};
|
|
934
989
|
}
|
|
990
|
+
/**
|
|
991
|
+
* DVPairs defines an array of DVPair objects.
|
|
992
|
+
* @name DVPairs
|
|
993
|
+
* @package cosmos.staking.v1beta1
|
|
994
|
+
* @see proto type: cosmos.staking.v1beta1.DVPairs
|
|
995
|
+
*/
|
|
935
996
|
export const DVPairs = {
|
|
936
997
|
typeUrl: "/cosmos.staking.v1beta1.DVPairs",
|
|
937
998
|
aminoType: "cosmos-sdk/DVPairs",
|
|
@@ -1019,6 +1080,15 @@ function createBaseDVVTriplet() {
|
|
|
1019
1080
|
validatorDstAddress: ""
|
|
1020
1081
|
};
|
|
1021
1082
|
}
|
|
1083
|
+
/**
|
|
1084
|
+
* DVVTriplet is struct that just has a delegator-validator-validator triplet
|
|
1085
|
+
* with no other data. It is intended to be used as a marshalable pointer. For
|
|
1086
|
+
* example, a DVVTriplet can be used to construct the key to getting a
|
|
1087
|
+
* Redelegation from state.
|
|
1088
|
+
* @name DVVTriplet
|
|
1089
|
+
* @package cosmos.staking.v1beta1
|
|
1090
|
+
* @see proto type: cosmos.staking.v1beta1.DVVTriplet
|
|
1091
|
+
*/
|
|
1022
1092
|
export const DVVTriplet = {
|
|
1023
1093
|
typeUrl: "/cosmos.staking.v1beta1.DVVTriplet",
|
|
1024
1094
|
aminoType: "cosmos-sdk/DVVTriplet",
|
|
@@ -1118,6 +1188,12 @@ function createBaseDVVTriplets() {
|
|
|
1118
1188
|
triplets: []
|
|
1119
1189
|
};
|
|
1120
1190
|
}
|
|
1191
|
+
/**
|
|
1192
|
+
* DVVTriplets defines an array of DVVTriplet objects.
|
|
1193
|
+
* @name DVVTriplets
|
|
1194
|
+
* @package cosmos.staking.v1beta1
|
|
1195
|
+
* @see proto type: cosmos.staking.v1beta1.DVVTriplets
|
|
1196
|
+
*/
|
|
1121
1197
|
export const DVVTriplets = {
|
|
1122
1198
|
typeUrl: "/cosmos.staking.v1beta1.DVVTriplets",
|
|
1123
1199
|
aminoType: "cosmos-sdk/DVVTriplets",
|
|
@@ -1205,6 +1281,14 @@ function createBaseDelegation() {
|
|
|
1205
1281
|
shares: ""
|
|
1206
1282
|
};
|
|
1207
1283
|
}
|
|
1284
|
+
/**
|
|
1285
|
+
* Delegation represents the bond with tokens held by an account. It is
|
|
1286
|
+
* owned by one delegator, and is associated with the voting power of one
|
|
1287
|
+
* validator.
|
|
1288
|
+
* @name Delegation
|
|
1289
|
+
* @package cosmos.staking.v1beta1
|
|
1290
|
+
* @see proto type: cosmos.staking.v1beta1.Delegation
|
|
1291
|
+
*/
|
|
1208
1292
|
export const Delegation = {
|
|
1209
1293
|
typeUrl: "/cosmos.staking.v1beta1.Delegation",
|
|
1210
1294
|
aminoType: "cosmos-sdk/Delegation",
|
|
@@ -1306,6 +1390,13 @@ function createBaseUnbondingDelegation() {
|
|
|
1306
1390
|
entries: []
|
|
1307
1391
|
};
|
|
1308
1392
|
}
|
|
1393
|
+
/**
|
|
1394
|
+
* UnbondingDelegation stores all of a single delegator's unbonding bonds
|
|
1395
|
+
* for a single validator in an time-ordered list.
|
|
1396
|
+
* @name UnbondingDelegation
|
|
1397
|
+
* @package cosmos.staking.v1beta1
|
|
1398
|
+
* @see proto type: cosmos.staking.v1beta1.UnbondingDelegation
|
|
1399
|
+
*/
|
|
1309
1400
|
export const UnbondingDelegation = {
|
|
1310
1401
|
typeUrl: "/cosmos.staking.v1beta1.UnbondingDelegation",
|
|
1311
1402
|
aminoType: "cosmos-sdk/UnbondingDelegation",
|
|
@@ -1418,6 +1509,12 @@ function createBaseUnbondingDelegationEntry() {
|
|
|
1418
1509
|
unbondingOnHoldRefCount: BigInt(0)
|
|
1419
1510
|
};
|
|
1420
1511
|
}
|
|
1512
|
+
/**
|
|
1513
|
+
* UnbondingDelegationEntry defines an unbonding object with relevant metadata.
|
|
1514
|
+
* @name UnbondingDelegationEntry
|
|
1515
|
+
* @package cosmos.staking.v1beta1
|
|
1516
|
+
* @see proto type: cosmos.staking.v1beta1.UnbondingDelegationEntry
|
|
1517
|
+
*/
|
|
1421
1518
|
export const UnbondingDelegationEntry = {
|
|
1422
1519
|
typeUrl: "/cosmos.staking.v1beta1.UnbondingDelegationEntry",
|
|
1423
1520
|
aminoType: "cosmos-sdk/UnbondingDelegationEntry",
|
|
@@ -1555,6 +1652,12 @@ function createBaseRedelegationEntry() {
|
|
|
1555
1652
|
unbondingOnHoldRefCount: BigInt(0)
|
|
1556
1653
|
};
|
|
1557
1654
|
}
|
|
1655
|
+
/**
|
|
1656
|
+
* RedelegationEntry defines a redelegation object with relevant metadata.
|
|
1657
|
+
* @name RedelegationEntry
|
|
1658
|
+
* @package cosmos.staking.v1beta1
|
|
1659
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationEntry
|
|
1660
|
+
*/
|
|
1558
1661
|
export const RedelegationEntry = {
|
|
1559
1662
|
typeUrl: "/cosmos.staking.v1beta1.RedelegationEntry",
|
|
1560
1663
|
aminoType: "cosmos-sdk/RedelegationEntry",
|
|
@@ -1690,6 +1793,13 @@ function createBaseRedelegation() {
|
|
|
1690
1793
|
entries: []
|
|
1691
1794
|
};
|
|
1692
1795
|
}
|
|
1796
|
+
/**
|
|
1797
|
+
* Redelegation contains the list of a particular delegator's redelegating bonds
|
|
1798
|
+
* from a particular source validator to a particular destination validator.
|
|
1799
|
+
* @name Redelegation
|
|
1800
|
+
* @package cosmos.staking.v1beta1
|
|
1801
|
+
* @see proto type: cosmos.staking.v1beta1.Redelegation
|
|
1802
|
+
*/
|
|
1693
1803
|
export const Redelegation = {
|
|
1694
1804
|
typeUrl: "/cosmos.staking.v1beta1.Redelegation",
|
|
1695
1805
|
aminoType: "cosmos-sdk/Redelegation",
|
|
@@ -1813,6 +1923,12 @@ function createBaseParams() {
|
|
|
1813
1923
|
minCommissionRate: ""
|
|
1814
1924
|
};
|
|
1815
1925
|
}
|
|
1926
|
+
/**
|
|
1927
|
+
* Params defines the parameters for the x/staking module.
|
|
1928
|
+
* @name Params
|
|
1929
|
+
* @package cosmos.staking.v1beta1
|
|
1930
|
+
* @see proto type: cosmos.staking.v1beta1.Params
|
|
1931
|
+
*/
|
|
1816
1932
|
export const Params = {
|
|
1817
1933
|
typeUrl: "/cosmos.staking.v1beta1.Params",
|
|
1818
1934
|
aminoType: "cosmos-sdk/x/staking/Params",
|
|
@@ -1946,6 +2062,13 @@ function createBaseDelegationResponse() {
|
|
|
1946
2062
|
balance: Coin.fromPartial({})
|
|
1947
2063
|
};
|
|
1948
2064
|
}
|
|
2065
|
+
/**
|
|
2066
|
+
* DelegationResponse is equivalent to Delegation except that it contains a
|
|
2067
|
+
* balance in addition to shares which is more suitable for client responses.
|
|
2068
|
+
* @name DelegationResponse
|
|
2069
|
+
* @package cosmos.staking.v1beta1
|
|
2070
|
+
* @see proto type: cosmos.staking.v1beta1.DelegationResponse
|
|
2071
|
+
*/
|
|
1949
2072
|
export const DelegationResponse = {
|
|
1950
2073
|
typeUrl: "/cosmos.staking.v1beta1.DelegationResponse",
|
|
1951
2074
|
aminoType: "cosmos-sdk/DelegationResponse",
|
|
@@ -2041,6 +2164,14 @@ function createBaseRedelegationEntryResponse() {
|
|
|
2041
2164
|
balance: ""
|
|
2042
2165
|
};
|
|
2043
2166
|
}
|
|
2167
|
+
/**
|
|
2168
|
+
* RedelegationEntryResponse is equivalent to a RedelegationEntry except that it
|
|
2169
|
+
* contains a balance in addition to shares which is more suitable for client
|
|
2170
|
+
* responses.
|
|
2171
|
+
* @name RedelegationEntryResponse
|
|
2172
|
+
* @package cosmos.staking.v1beta1
|
|
2173
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationEntryResponse
|
|
2174
|
+
*/
|
|
2044
2175
|
export const RedelegationEntryResponse = {
|
|
2045
2176
|
typeUrl: "/cosmos.staking.v1beta1.RedelegationEntryResponse",
|
|
2046
2177
|
aminoType: "cosmos-sdk/RedelegationEntryResponse",
|
|
@@ -2135,6 +2266,14 @@ function createBaseRedelegationResponse() {
|
|
|
2135
2266
|
entries: []
|
|
2136
2267
|
};
|
|
2137
2268
|
}
|
|
2269
|
+
/**
|
|
2270
|
+
* RedelegationResponse is equivalent to a Redelegation except that its entries
|
|
2271
|
+
* contain a balance in addition to shares which is more suitable for client
|
|
2272
|
+
* responses.
|
|
2273
|
+
* @name RedelegationResponse
|
|
2274
|
+
* @package cosmos.staking.v1beta1
|
|
2275
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationResponse
|
|
2276
|
+
*/
|
|
2138
2277
|
export const RedelegationResponse = {
|
|
2139
2278
|
typeUrl: "/cosmos.staking.v1beta1.RedelegationResponse",
|
|
2140
2279
|
aminoType: "cosmos-sdk/RedelegationResponse",
|
|
@@ -2233,6 +2372,13 @@ function createBasePool() {
|
|
|
2233
2372
|
bondedTokens: ""
|
|
2234
2373
|
};
|
|
2235
2374
|
}
|
|
2375
|
+
/**
|
|
2376
|
+
* Pool is used for tracking bonded and not-bonded token supply of the bond
|
|
2377
|
+
* denomination.
|
|
2378
|
+
* @name Pool
|
|
2379
|
+
* @package cosmos.staking.v1beta1
|
|
2380
|
+
* @see proto type: cosmos.staking.v1beta1.Pool
|
|
2381
|
+
*/
|
|
2236
2382
|
export const Pool = {
|
|
2237
2383
|
typeUrl: "/cosmos.staking.v1beta1.Pool",
|
|
2238
2384
|
aminoType: "cosmos-sdk/Pool",
|
|
@@ -2321,6 +2467,13 @@ function createBaseValidatorUpdates() {
|
|
|
2321
2467
|
updates: []
|
|
2322
2468
|
};
|
|
2323
2469
|
}
|
|
2470
|
+
/**
|
|
2471
|
+
* ValidatorUpdates defines an array of abci.ValidatorUpdate objects.
|
|
2472
|
+
* TODO: explore moving this to proto/cosmos/base to separate modules from tendermint dependence
|
|
2473
|
+
* @name ValidatorUpdates
|
|
2474
|
+
* @package cosmos.staking.v1beta1
|
|
2475
|
+
* @see proto type: cosmos.staking.v1beta1.ValidatorUpdates
|
|
2476
|
+
*/
|
|
2324
2477
|
export const ValidatorUpdates = {
|
|
2325
2478
|
typeUrl: "/cosmos.staking.v1beta1.ValidatorUpdates",
|
|
2326
2479
|
aminoType: "cosmos-sdk/ValidatorUpdates",
|