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
package/esm/cosmos/bundle.js
CHANGED
|
@@ -42,16 +42,16 @@ export { registry as CosmosGroupV1Registry, MessageComposer as CosmosGroupV1Mess
|
|
|
42
42
|
export { registry as CosmosStakingV1beta1Registry, MessageComposer as CosmosStakingV1beta1MessageComposer } from "./staking/v1beta1/tx.registry";
|
|
43
43
|
export { registry as CosmosVestingV1beta1Registry, MessageComposer as CosmosVestingV1beta1MessageComposer } from "./vesting/v1beta1/tx.registry";
|
|
44
44
|
export { getAccounts, getAccount, getAccountAddressByID, getParams, getModuleAccounts, getModuleAccountByName, getBech32Prefix, getAddressBytesToString, getAddressStringToBytes, getAccountInfo } from "./auth/v1beta1/query.rpc.func";
|
|
45
|
-
export { getBalance, getAllBalances, getSpendableBalances, getSpendableBalanceByDenom, getTotalSupply, getSupplyOf, getParams as
|
|
46
|
-
export { getProposal, getProposals, getVote, getVotes, getParams as
|
|
47
|
-
export { getValidators, getValidator, getValidatorDelegations, getValidatorUnbondingDelegations, getDelegation, getUnbondingDelegation, getDelegatorDelegations, getDelegatorUnbondingDelegations, getRedelegations, getDelegatorValidators, getDelegatorValidator, getHistoricalInfo, getPool, getParams as
|
|
45
|
+
export { getBalance, getAllBalances, getSpendableBalances, getSpendableBalanceByDenom, getTotalSupply, getSupplyOf, getParams as getParamsCosmosBankV1beta1, getDenomMetadata, getDenomMetadataByQueryString, getDenomsMetadata, getDenomOwners, getDenomOwnersByQuery, getSendEnabled } from "./bank/v1beta1/query.rpc.func";
|
|
46
|
+
export { getProposal, getProposals, getVote, getVotes, getParams as getParamsCosmosGovV1beta1, getDeposit, getDeposits, getTallyResult } from "./gov/v1beta1/query.rpc.func";
|
|
47
|
+
export { getValidators, getValidator, getValidatorDelegations, getValidatorUnbondingDelegations, getDelegation, getUnbondingDelegation, getDelegatorDelegations, getDelegatorUnbondingDelegations, getRedelegations, getDelegatorValidators, getDelegatorValidator, getHistoricalInfo, getPool, getParams as getParamsCosmosStakingV1beta1 } from "./staking/v1beta1/query.rpc.func";
|
|
48
48
|
export * from "./tx/v1beta1/service.rpc.func";
|
|
49
49
|
export { grant, exec, revoke } from "./authz/v1beta1/tx.rpc.func";
|
|
50
50
|
export { send, multiSend, updateParams, setSendEnabled } from "./bank/v1beta1/tx.rpc.func";
|
|
51
|
-
export { setWithdrawAddress, withdrawDelegatorReward, withdrawValidatorCommission, fundCommunityPool, updateParams as
|
|
51
|
+
export { setWithdrawAddress, withdrawDelegatorReward, withdrawValidatorCommission, fundCommunityPool, updateParams as updateParamsCosmosDistributionV1beta1, communityPoolSpend, depositValidatorRewardsPool } from "./distribution/v1beta1/tx.rpc.func";
|
|
52
52
|
export * from "./feegrant/v1beta1/tx.rpc.func";
|
|
53
|
-
export { submitProposal, execLegacyContent, vote, voteWeighted, deposit, updateParams as
|
|
54
|
-
export { submitProposal as
|
|
55
|
-
export { createGroup, updateGroupMembers, updateGroupAdmin, updateGroupMetadata, createGroupPolicy, createGroupWithPolicy, updateGroupPolicyAdmin, updateGroupPolicyDecisionPolicy, updateGroupPolicyMetadata, submitProposal as
|
|
56
|
-
export { createValidator, editValidator, delegate, beginRedelegate, undelegate, cancelUnbondingDelegation, updateParams as
|
|
53
|
+
export { submitProposal, execLegacyContent, vote, voteWeighted, deposit, updateParams as updateParamsCosmosGovV1, cancelProposal } from "./gov/v1/tx.rpc.func";
|
|
54
|
+
export { submitProposal as submitProposalCosmosGovV1beta1, vote as voteCosmosGovV1beta1, voteWeighted as voteWeightedCosmosGovV1beta1, deposit as depositCosmosGovV1beta1 } from "./gov/v1beta1/tx.rpc.func";
|
|
55
|
+
export { createGroup, updateGroupMembers, updateGroupAdmin, updateGroupMetadata, createGroupPolicy, createGroupWithPolicy, updateGroupPolicyAdmin, updateGroupPolicyDecisionPolicy, updateGroupPolicyMetadata, submitProposal as submitProposalCosmosGroupV1, withdrawProposal, vote as voteCosmosGroupV1, exec as execCosmosGroupV1, leaveGroup } from "./group/v1/tx.rpc.func";
|
|
56
|
+
export { createValidator, editValidator, delegate, beginRedelegate, undelegate, cancelUnbondingDelegation, updateParams as updateParamsCosmosStakingV1beta1 } from "./staking/v1beta1/tx.rpc.func";
|
|
57
57
|
export * from "./vesting/v1beta1/tx.rpc.func";
|
|
@@ -5,6 +5,16 @@ function createBasePubKey() {
|
|
|
5
5
|
key: new Uint8Array()
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* PubKey is an ed25519 public key for handling Tendermint keys in SDK.
|
|
10
|
+
* It's needed for Any serialization and SDK compatibility.
|
|
11
|
+
* It must not be used in a non Tendermint key context because it doesn't implement
|
|
12
|
+
* ADR-28. Nevertheless, you will like to use ed25519 in app user level
|
|
13
|
+
* then you must create a new proto message and follow ADR-28 for Address construction.
|
|
14
|
+
* @name PubKey
|
|
15
|
+
* @package cosmos.crypto.ed25519
|
|
16
|
+
* @see proto type: cosmos.crypto.ed25519.PubKey
|
|
17
|
+
*/
|
|
8
18
|
export const PubKey = {
|
|
9
19
|
typeUrl: "/cosmos.crypto.ed25519.PubKey",
|
|
10
20
|
aminoType: "tendermint/PubKeyEd25519",
|
|
@@ -82,6 +92,13 @@ function createBasePrivKey() {
|
|
|
82
92
|
key: new Uint8Array()
|
|
83
93
|
};
|
|
84
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* PrivKey defines a ed25519 private key.
|
|
97
|
+
* NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
|
|
98
|
+
* @name PrivKey
|
|
99
|
+
* @package cosmos.crypto.ed25519
|
|
100
|
+
* @see proto type: cosmos.crypto.ed25519.PrivKey
|
|
101
|
+
*/
|
|
85
102
|
export const PrivKey = {
|
|
86
103
|
typeUrl: "/cosmos.crypto.ed25519.PrivKey",
|
|
87
104
|
aminoType: "tendermint/PrivKeyEd25519",
|
|
@@ -5,6 +5,14 @@ function createBaseMultiSignature() {
|
|
|
5
5
|
signatures: []
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
|
|
10
|
+
* See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
|
|
11
|
+
* signed and with which modes.
|
|
12
|
+
* @name MultiSignature
|
|
13
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
14
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
|
|
15
|
+
*/
|
|
8
16
|
export const MultiSignature = {
|
|
9
17
|
typeUrl: "/cosmos.crypto.multisig.v1beta1.MultiSignature",
|
|
10
18
|
aminoType: "cosmos-sdk/MultiSignature",
|
|
@@ -86,6 +94,15 @@ function createBaseCompactBitArray() {
|
|
|
86
94
|
elems: new Uint8Array()
|
|
87
95
|
};
|
|
88
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* CompactBitArray is an implementation of a space efficient bit array.
|
|
99
|
+
* This is used to ensure that the encoded data takes up a minimal amount of
|
|
100
|
+
* space after proto encoding.
|
|
101
|
+
* This is not thread safe, and is not intended for concurrent usage.
|
|
102
|
+
* @name CompactBitArray
|
|
103
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
104
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
|
|
105
|
+
*/
|
|
89
106
|
export const CompactBitArray = {
|
|
90
107
|
typeUrl: "/cosmos.crypto.multisig.v1beta1.CompactBitArray",
|
|
91
108
|
aminoType: "cosmos-sdk/CompactBitArray",
|
|
@@ -5,6 +5,16 @@ function createBasePubKey() {
|
|
|
5
5
|
key: new Uint8Array()
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* PubKey defines a secp256k1 public key
|
|
10
|
+
* Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte
|
|
11
|
+
* if the y-coordinate is the lexicographically largest of the two associated with
|
|
12
|
+
* the x-coordinate. Otherwise the first byte is a 0x03.
|
|
13
|
+
* This prefix is followed with the x-coordinate.
|
|
14
|
+
* @name PubKey
|
|
15
|
+
* @package cosmos.crypto.secp256k1
|
|
16
|
+
* @see proto type: cosmos.crypto.secp256k1.PubKey
|
|
17
|
+
*/
|
|
8
18
|
export const PubKey = {
|
|
9
19
|
typeUrl: "/cosmos.crypto.secp256k1.PubKey",
|
|
10
20
|
aminoType: "tendermint/PubKeySecp256k1",
|
|
@@ -82,6 +92,12 @@ function createBasePrivKey() {
|
|
|
82
92
|
key: new Uint8Array()
|
|
83
93
|
};
|
|
84
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* PrivKey defines a secp256k1 private key.
|
|
97
|
+
* @name PrivKey
|
|
98
|
+
* @package cosmos.crypto.secp256k1
|
|
99
|
+
* @see proto type: cosmos.crypto.secp256k1.PrivKey
|
|
100
|
+
*/
|
|
85
101
|
export const PrivKey = {
|
|
86
102
|
typeUrl: "/cosmos.crypto.secp256k1.PrivKey",
|
|
87
103
|
aminoType: "tendermint/PrivKeySecp256k1",
|
|
@@ -5,6 +5,12 @@ function createBasePubKey() {
|
|
|
5
5
|
key: new Uint8Array()
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* PubKey defines a secp256r1 ECDSA public key.
|
|
10
|
+
* @name PubKey
|
|
11
|
+
* @package cosmos.crypto.secp256r1
|
|
12
|
+
* @see proto type: cosmos.crypto.secp256r1.PubKey
|
|
13
|
+
*/
|
|
8
14
|
export const PubKey = {
|
|
9
15
|
typeUrl: "/cosmos.crypto.secp256r1.PubKey",
|
|
10
16
|
aminoType: "cosmos-sdk/PubKey",
|
|
@@ -82,6 +88,12 @@ function createBasePrivKey() {
|
|
|
82
88
|
secret: new Uint8Array()
|
|
83
89
|
};
|
|
84
90
|
}
|
|
91
|
+
/**
|
|
92
|
+
* PrivKey defines a secp256r1 ECDSA private key.
|
|
93
|
+
* @name PrivKey
|
|
94
|
+
* @package cosmos.crypto.secp256r1
|
|
95
|
+
* @see proto type: cosmos.crypto.secp256r1.PrivKey
|
|
96
|
+
*/
|
|
85
97
|
export const PrivKey = {
|
|
86
98
|
typeUrl: "/cosmos.crypto.secp256r1.PrivKey",
|
|
87
99
|
aminoType: "cosmos-sdk/PrivKey",
|
|
@@ -10,6 +10,12 @@ function createBaseParams() {
|
|
|
10
10
|
withdrawAddrEnabled: false
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* Params defines the set of params for the distribution module.
|
|
15
|
+
* @name Params
|
|
16
|
+
* @package cosmos.distribution.v1beta1
|
|
17
|
+
* @see proto type: cosmos.distribution.v1beta1.Params
|
|
18
|
+
*/
|
|
13
19
|
export const Params = {
|
|
14
20
|
typeUrl: "/cosmos.distribution.v1beta1.Params",
|
|
15
21
|
aminoType: "cosmos-sdk/x/distribution/Params",
|
|
@@ -121,6 +127,23 @@ function createBaseValidatorHistoricalRewards() {
|
|
|
121
127
|
referenceCount: 0
|
|
122
128
|
};
|
|
123
129
|
}
|
|
130
|
+
/**
|
|
131
|
+
* ValidatorHistoricalRewards represents historical rewards for a validator.
|
|
132
|
+
* Height is implicit within the store key.
|
|
133
|
+
* Cumulative reward ratio is the sum from the zeroeth period
|
|
134
|
+
* until this period of rewards / tokens, per the spec.
|
|
135
|
+
* The reference count indicates the number of objects
|
|
136
|
+
* which might need to reference this historical entry at any point.
|
|
137
|
+
* ReferenceCount =
|
|
138
|
+
* number of outstanding delegations which ended the associated period (and
|
|
139
|
+
* might need to read that record)
|
|
140
|
+
* + number of slashes which ended the associated period (and might need to
|
|
141
|
+
* read that record)
|
|
142
|
+
* + one per validator for the zeroeth period, set on initialization
|
|
143
|
+
* @name ValidatorHistoricalRewards
|
|
144
|
+
* @package cosmos.distribution.v1beta1
|
|
145
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
|
|
146
|
+
*/
|
|
124
147
|
export const ValidatorHistoricalRewards = {
|
|
125
148
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorHistoricalRewards",
|
|
126
149
|
aminoType: "cosmos-sdk/ValidatorHistoricalRewards",
|
|
@@ -218,6 +241,14 @@ function createBaseValidatorCurrentRewards() {
|
|
|
218
241
|
period: BigInt(0)
|
|
219
242
|
};
|
|
220
243
|
}
|
|
244
|
+
/**
|
|
245
|
+
* ValidatorCurrentRewards represents current rewards and current
|
|
246
|
+
* period for a validator kept as a running counter and incremented
|
|
247
|
+
* each block as long as the validator's tokens remain constant.
|
|
248
|
+
* @name ValidatorCurrentRewards
|
|
249
|
+
* @package cosmos.distribution.v1beta1
|
|
250
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
|
|
251
|
+
*/
|
|
221
252
|
export const ValidatorCurrentRewards = {
|
|
222
253
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorCurrentRewards",
|
|
223
254
|
aminoType: "cosmos-sdk/ValidatorCurrentRewards",
|
|
@@ -314,6 +345,13 @@ function createBaseValidatorAccumulatedCommission() {
|
|
|
314
345
|
commission: []
|
|
315
346
|
};
|
|
316
347
|
}
|
|
348
|
+
/**
|
|
349
|
+
* ValidatorAccumulatedCommission represents accumulated commission
|
|
350
|
+
* for a validator kept as a running counter, can be withdrawn at any time.
|
|
351
|
+
* @name ValidatorAccumulatedCommission
|
|
352
|
+
* @package cosmos.distribution.v1beta1
|
|
353
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
|
|
354
|
+
*/
|
|
317
355
|
export const ValidatorAccumulatedCommission = {
|
|
318
356
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorAccumulatedCommission",
|
|
319
357
|
aminoType: "cosmos-sdk/ValidatorAccumulatedCommission",
|
|
@@ -399,6 +437,13 @@ function createBaseValidatorOutstandingRewards() {
|
|
|
399
437
|
rewards: []
|
|
400
438
|
};
|
|
401
439
|
}
|
|
440
|
+
/**
|
|
441
|
+
* ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
|
|
442
|
+
* for a validator inexpensive to track, allows simple sanity checks.
|
|
443
|
+
* @name ValidatorOutstandingRewards
|
|
444
|
+
* @package cosmos.distribution.v1beta1
|
|
445
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
|
|
446
|
+
*/
|
|
402
447
|
export const ValidatorOutstandingRewards = {
|
|
403
448
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorOutstandingRewards",
|
|
404
449
|
aminoType: "cosmos-sdk/ValidatorOutstandingRewards",
|
|
@@ -485,6 +530,15 @@ function createBaseValidatorSlashEvent() {
|
|
|
485
530
|
fraction: ""
|
|
486
531
|
};
|
|
487
532
|
}
|
|
533
|
+
/**
|
|
534
|
+
* ValidatorSlashEvent represents a validator slash event.
|
|
535
|
+
* Height is implicit within the store key.
|
|
536
|
+
* This is needed to calculate appropriate amount of staking tokens
|
|
537
|
+
* for delegations which are withdrawn after a slash has occurred.
|
|
538
|
+
* @name ValidatorSlashEvent
|
|
539
|
+
* @package cosmos.distribution.v1beta1
|
|
540
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
|
|
541
|
+
*/
|
|
488
542
|
export const ValidatorSlashEvent = {
|
|
489
543
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvent",
|
|
490
544
|
aminoType: "cosmos-sdk/ValidatorSlashEvent",
|
|
@@ -573,6 +627,12 @@ function createBaseValidatorSlashEvents() {
|
|
|
573
627
|
validatorSlashEvents: []
|
|
574
628
|
};
|
|
575
629
|
}
|
|
630
|
+
/**
|
|
631
|
+
* ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
|
|
632
|
+
* @name ValidatorSlashEvents
|
|
633
|
+
* @package cosmos.distribution.v1beta1
|
|
634
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
|
|
635
|
+
*/
|
|
576
636
|
export const ValidatorSlashEvents = {
|
|
577
637
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvents",
|
|
578
638
|
aminoType: "cosmos-sdk/ValidatorSlashEvents",
|
|
@@ -658,6 +718,12 @@ function createBaseFeePool() {
|
|
|
658
718
|
communityPool: []
|
|
659
719
|
};
|
|
660
720
|
}
|
|
721
|
+
/**
|
|
722
|
+
* FeePool is the global fee pool for distribution.
|
|
723
|
+
* @name FeePool
|
|
724
|
+
* @package cosmos.distribution.v1beta1
|
|
725
|
+
* @see proto type: cosmos.distribution.v1beta1.FeePool
|
|
726
|
+
*/
|
|
661
727
|
export const FeePool = {
|
|
662
728
|
typeUrl: "/cosmos.distribution.v1beta1.FeePool",
|
|
663
729
|
aminoType: "cosmos-sdk/FeePool",
|
|
@@ -746,6 +812,20 @@ function createBaseCommunityPoolSpendProposal() {
|
|
|
746
812
|
amount: []
|
|
747
813
|
};
|
|
748
814
|
}
|
|
815
|
+
/**
|
|
816
|
+
* CommunityPoolSpendProposal details a proposal for use of community funds,
|
|
817
|
+
* together with how many coins are proposed to be spent, and to which
|
|
818
|
+
* recipient account.
|
|
819
|
+
*
|
|
820
|
+
* Deprecated: Do not use. As of the Cosmos SDK release v0.47.x, there is no
|
|
821
|
+
* longer a need for an explicit CommunityPoolSpendProposal. To spend community
|
|
822
|
+
* pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
|
|
823
|
+
* module via a v1 governance proposal.
|
|
824
|
+
* @name CommunityPoolSpendProposal
|
|
825
|
+
* @package cosmos.distribution.v1beta1
|
|
826
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
|
|
827
|
+
* @deprecated
|
|
828
|
+
*/
|
|
749
829
|
export const CommunityPoolSpendProposal = {
|
|
750
830
|
typeUrl: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposal",
|
|
751
831
|
aminoType: "cosmos-sdk/CommunityPoolSpendProposal",
|
|
@@ -868,6 +948,17 @@ function createBaseDelegatorStartingInfo() {
|
|
|
868
948
|
height: BigInt(0)
|
|
869
949
|
};
|
|
870
950
|
}
|
|
951
|
+
/**
|
|
952
|
+
* DelegatorStartingInfo represents the starting info for a delegator reward
|
|
953
|
+
* period. It tracks the previous validator period, the delegation's amount of
|
|
954
|
+
* staking token, and the creation height (to check later on if any slashes have
|
|
955
|
+
* occurred). NOTE: Even though validators are slashed to whole staking tokens,
|
|
956
|
+
* the delegators within the validator may be left with less than a full token,
|
|
957
|
+
* thus sdk.Dec is used.
|
|
958
|
+
* @name DelegatorStartingInfo
|
|
959
|
+
* @package cosmos.distribution.v1beta1
|
|
960
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
|
|
961
|
+
*/
|
|
871
962
|
export const DelegatorStartingInfo = {
|
|
872
963
|
typeUrl: "/cosmos.distribution.v1beta1.DelegatorStartingInfo",
|
|
873
964
|
aminoType: "cosmos-sdk/DelegatorStartingInfo",
|
|
@@ -968,6 +1059,13 @@ function createBaseDelegationDelegatorReward() {
|
|
|
968
1059
|
reward: []
|
|
969
1060
|
};
|
|
970
1061
|
}
|
|
1062
|
+
/**
|
|
1063
|
+
* DelegationDelegatorReward represents the properties
|
|
1064
|
+
* of a delegator's delegation reward.
|
|
1065
|
+
* @name DelegationDelegatorReward
|
|
1066
|
+
* @package cosmos.distribution.v1beta1
|
|
1067
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
|
|
1068
|
+
*/
|
|
971
1069
|
export const DelegationDelegatorReward = {
|
|
972
1070
|
typeUrl: "/cosmos.distribution.v1beta1.DelegationDelegatorReward",
|
|
973
1071
|
aminoType: "cosmos-sdk/DelegationDelegatorReward",
|
|
@@ -1068,6 +1166,13 @@ function createBaseCommunityPoolSpendProposalWithDeposit() {
|
|
|
1068
1166
|
deposit: ""
|
|
1069
1167
|
};
|
|
1070
1168
|
}
|
|
1169
|
+
/**
|
|
1170
|
+
* CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
|
|
1171
|
+
* with a deposit
|
|
1172
|
+
* @name CommunityPoolSpendProposalWithDeposit
|
|
1173
|
+
* @package cosmos.distribution.v1beta1
|
|
1174
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
|
|
1175
|
+
*/
|
|
1071
1176
|
export const CommunityPoolSpendProposalWithDeposit = {
|
|
1072
1177
|
typeUrl: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit",
|
|
1073
1178
|
aminoType: "cosmos-sdk/CommunityPoolSpendProposalWithDeposit",
|
|
@@ -8,6 +8,13 @@ function createBaseMsgSetWithdrawAddress() {
|
|
|
8
8
|
withdrawAddress: ""
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* MsgSetWithdrawAddress sets the withdraw address for
|
|
13
|
+
* a delegator (or validator self-delegation).
|
|
14
|
+
* @name MsgSetWithdrawAddress
|
|
15
|
+
* @package cosmos.distribution.v1beta1
|
|
16
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgSetWithdrawAddress
|
|
17
|
+
*/
|
|
11
18
|
export const MsgSetWithdrawAddress = {
|
|
12
19
|
typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddress",
|
|
13
20
|
aminoType: "cosmos-sdk/MsgModifyWithdrawAddress",
|
|
@@ -94,6 +101,13 @@ export const MsgSetWithdrawAddress = {
|
|
|
94
101
|
function createBaseMsgSetWithdrawAddressResponse() {
|
|
95
102
|
return {};
|
|
96
103
|
}
|
|
104
|
+
/**
|
|
105
|
+
* MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response
|
|
106
|
+
* type.
|
|
107
|
+
* @name MsgSetWithdrawAddressResponse
|
|
108
|
+
* @package cosmos.distribution.v1beta1
|
|
109
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse
|
|
110
|
+
*/
|
|
97
111
|
export const MsgSetWithdrawAddressResponse = {
|
|
98
112
|
typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse",
|
|
99
113
|
aminoType: "cosmos-sdk/MsgSetWithdrawAddressResponse",
|
|
@@ -161,6 +175,13 @@ function createBaseMsgWithdrawDelegatorReward() {
|
|
|
161
175
|
validatorAddress: ""
|
|
162
176
|
};
|
|
163
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* MsgWithdrawDelegatorReward represents delegation withdrawal to a delegator
|
|
180
|
+
* from a single validator.
|
|
181
|
+
* @name MsgWithdrawDelegatorReward
|
|
182
|
+
* @package cosmos.distribution.v1beta1
|
|
183
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward
|
|
184
|
+
*/
|
|
164
185
|
export const MsgWithdrawDelegatorReward = {
|
|
165
186
|
typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward",
|
|
166
187
|
aminoType: "cosmos-sdk/MsgWithdrawDelegationReward",
|
|
@@ -249,6 +270,13 @@ function createBaseMsgWithdrawDelegatorRewardResponse() {
|
|
|
249
270
|
amount: []
|
|
250
271
|
};
|
|
251
272
|
}
|
|
273
|
+
/**
|
|
274
|
+
* MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward
|
|
275
|
+
* response type.
|
|
276
|
+
* @name MsgWithdrawDelegatorRewardResponse
|
|
277
|
+
* @package cosmos.distribution.v1beta1
|
|
278
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse
|
|
279
|
+
*/
|
|
252
280
|
export const MsgWithdrawDelegatorRewardResponse = {
|
|
253
281
|
typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse",
|
|
254
282
|
aminoType: "cosmos-sdk/MsgWithdrawDelegatorRewardResponse",
|
|
@@ -334,6 +362,13 @@ function createBaseMsgWithdrawValidatorCommission() {
|
|
|
334
362
|
validatorAddress: ""
|
|
335
363
|
};
|
|
336
364
|
}
|
|
365
|
+
/**
|
|
366
|
+
* MsgWithdrawValidatorCommission withdraws the full commission to the validator
|
|
367
|
+
* address.
|
|
368
|
+
* @name MsgWithdrawValidatorCommission
|
|
369
|
+
* @package cosmos.distribution.v1beta1
|
|
370
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission
|
|
371
|
+
*/
|
|
337
372
|
export const MsgWithdrawValidatorCommission = {
|
|
338
373
|
typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission",
|
|
339
374
|
aminoType: "cosmos-sdk/MsgWithdrawValidatorCommission",
|
|
@@ -411,6 +446,13 @@ function createBaseMsgWithdrawValidatorCommissionResponse() {
|
|
|
411
446
|
amount: []
|
|
412
447
|
};
|
|
413
448
|
}
|
|
449
|
+
/**
|
|
450
|
+
* MsgWithdrawValidatorCommissionResponse defines the
|
|
451
|
+
* Msg/WithdrawValidatorCommission response type.
|
|
452
|
+
* @name MsgWithdrawValidatorCommissionResponse
|
|
453
|
+
* @package cosmos.distribution.v1beta1
|
|
454
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse
|
|
455
|
+
*/
|
|
414
456
|
export const MsgWithdrawValidatorCommissionResponse = {
|
|
415
457
|
typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse",
|
|
416
458
|
aminoType: "cosmos-sdk/MsgWithdrawValidatorCommissionResponse",
|
|
@@ -497,6 +539,13 @@ function createBaseMsgFundCommunityPool() {
|
|
|
497
539
|
depositor: ""
|
|
498
540
|
};
|
|
499
541
|
}
|
|
542
|
+
/**
|
|
543
|
+
* MsgFundCommunityPool allows an account to directly
|
|
544
|
+
* fund the community pool.
|
|
545
|
+
* @name MsgFundCommunityPool
|
|
546
|
+
* @package cosmos.distribution.v1beta1
|
|
547
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgFundCommunityPool
|
|
548
|
+
*/
|
|
500
549
|
export const MsgFundCommunityPool = {
|
|
501
550
|
typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPool",
|
|
502
551
|
aminoType: "cosmos-sdk/MsgFundCommunityPool",
|
|
@@ -591,6 +640,12 @@ export const MsgFundCommunityPool = {
|
|
|
591
640
|
function createBaseMsgFundCommunityPoolResponse() {
|
|
592
641
|
return {};
|
|
593
642
|
}
|
|
643
|
+
/**
|
|
644
|
+
* MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type.
|
|
645
|
+
* @name MsgFundCommunityPoolResponse
|
|
646
|
+
* @package cosmos.distribution.v1beta1
|
|
647
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse
|
|
648
|
+
*/
|
|
594
649
|
export const MsgFundCommunityPoolResponse = {
|
|
595
650
|
typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse",
|
|
596
651
|
aminoType: "cosmos-sdk/MsgFundCommunityPoolResponse",
|
|
@@ -658,6 +713,14 @@ function createBaseMsgUpdateParams() {
|
|
|
658
713
|
params: Params.fromPartial({})
|
|
659
714
|
};
|
|
660
715
|
}
|
|
716
|
+
/**
|
|
717
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
718
|
+
*
|
|
719
|
+
* Since: cosmos-sdk 0.47
|
|
720
|
+
* @name MsgUpdateParams
|
|
721
|
+
* @package cosmos.distribution.v1beta1
|
|
722
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgUpdateParams
|
|
723
|
+
*/
|
|
661
724
|
export const MsgUpdateParams = {
|
|
662
725
|
typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParams",
|
|
663
726
|
aminoType: "cosmos-sdk/distribution/MsgUpdateParams",
|
|
@@ -749,6 +812,15 @@ export const MsgUpdateParams = {
|
|
|
749
812
|
function createBaseMsgUpdateParamsResponse() {
|
|
750
813
|
return {};
|
|
751
814
|
}
|
|
815
|
+
/**
|
|
816
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
817
|
+
* MsgUpdateParams message.
|
|
818
|
+
*
|
|
819
|
+
* Since: cosmos-sdk 0.47
|
|
820
|
+
* @name MsgUpdateParamsResponse
|
|
821
|
+
* @package cosmos.distribution.v1beta1
|
|
822
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgUpdateParamsResponse
|
|
823
|
+
*/
|
|
752
824
|
export const MsgUpdateParamsResponse = {
|
|
753
825
|
typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParamsResponse",
|
|
754
826
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -817,6 +889,16 @@ function createBaseMsgCommunityPoolSpend() {
|
|
|
817
889
|
amount: []
|
|
818
890
|
};
|
|
819
891
|
}
|
|
892
|
+
/**
|
|
893
|
+
* MsgCommunityPoolSpend defines a message for sending tokens from the community
|
|
894
|
+
* pool to another account. This message is typically executed via a governance
|
|
895
|
+
* proposal with the governance module being the executing authority.
|
|
896
|
+
*
|
|
897
|
+
* Since: cosmos-sdk 0.47
|
|
898
|
+
* @name MsgCommunityPoolSpend
|
|
899
|
+
* @package cosmos.distribution.v1beta1
|
|
900
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgCommunityPoolSpend
|
|
901
|
+
*/
|
|
820
902
|
export const MsgCommunityPoolSpend = {
|
|
821
903
|
typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpend",
|
|
822
904
|
aminoType: "cosmos-sdk/distr/MsgCommunityPoolSpend",
|
|
@@ -922,6 +1004,15 @@ export const MsgCommunityPoolSpend = {
|
|
|
922
1004
|
function createBaseMsgCommunityPoolSpendResponse() {
|
|
923
1005
|
return {};
|
|
924
1006
|
}
|
|
1007
|
+
/**
|
|
1008
|
+
* MsgCommunityPoolSpendResponse defines the response to executing a
|
|
1009
|
+
* MsgCommunityPoolSpend message.
|
|
1010
|
+
*
|
|
1011
|
+
* Since: cosmos-sdk 0.47
|
|
1012
|
+
* @name MsgCommunityPoolSpendResponse
|
|
1013
|
+
* @package cosmos.distribution.v1beta1
|
|
1014
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse
|
|
1015
|
+
*/
|
|
925
1016
|
export const MsgCommunityPoolSpendResponse = {
|
|
926
1017
|
typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse",
|
|
927
1018
|
aminoType: "cosmos-sdk/MsgCommunityPoolSpendResponse",
|
|
@@ -990,6 +1081,15 @@ function createBaseMsgDepositValidatorRewardsPool() {
|
|
|
990
1081
|
amount: []
|
|
991
1082
|
};
|
|
992
1083
|
}
|
|
1084
|
+
/**
|
|
1085
|
+
* DepositValidatorRewardsPool defines the request structure to provide
|
|
1086
|
+
* additional rewards to delegators from a specific validator.
|
|
1087
|
+
*
|
|
1088
|
+
* Since: cosmos-sdk 0.50
|
|
1089
|
+
* @name MsgDepositValidatorRewardsPool
|
|
1090
|
+
* @package cosmos.distribution.v1beta1
|
|
1091
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool
|
|
1092
|
+
*/
|
|
993
1093
|
export const MsgDepositValidatorRewardsPool = {
|
|
994
1094
|
typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool",
|
|
995
1095
|
aminoType: "cosmos-sdk/distr/MsgDepositValRewards",
|
|
@@ -1095,6 +1195,15 @@ export const MsgDepositValidatorRewardsPool = {
|
|
|
1095
1195
|
function createBaseMsgDepositValidatorRewardsPoolResponse() {
|
|
1096
1196
|
return {};
|
|
1097
1197
|
}
|
|
1198
|
+
/**
|
|
1199
|
+
* MsgDepositValidatorRewardsPoolResponse defines the response to executing a
|
|
1200
|
+
* MsgDepositValidatorRewardsPool message.
|
|
1201
|
+
*
|
|
1202
|
+
* Since: cosmos-sdk 0.50
|
|
1203
|
+
* @name MsgDepositValidatorRewardsPoolResponse
|
|
1204
|
+
* @package cosmos.distribution.v1beta1
|
|
1205
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse
|
|
1206
|
+
*/
|
|
1098
1207
|
export const MsgDepositValidatorRewardsPoolResponse = {
|
|
1099
1208
|
typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse",
|
|
1100
1209
|
aminoType: "cosmos-sdk/MsgDepositValidatorRewardsPoolResponse",
|
|
@@ -1,45 +1,80 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgSetWithdrawAddress, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, MsgFundCommunityPool, MsgUpdateParams, MsgCommunityPoolSpend, MsgDepositValidatorRewardsPool } from "./tx";
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
/**
|
|
4
|
+
* SetWithdrawAddress defines a method to change the withdraw address
|
|
5
|
+
* for a delegator (or validator self-delegation).
|
|
6
|
+
* @name setWithdrawAddress
|
|
7
|
+
* @package cosmos.distribution.v1beta1
|
|
8
|
+
* @see proto service: cosmos.distribution.v1beta1.SetWithdrawAddress
|
|
9
|
+
*/
|
|
5
10
|
export const setWithdrawAddress = buildTx({
|
|
6
11
|
msg: MsgSetWithdrawAddress
|
|
7
12
|
});
|
|
8
|
-
|
|
9
|
-
|
|
13
|
+
/**
|
|
14
|
+
* WithdrawDelegatorReward defines a method to withdraw rewards of delegator
|
|
15
|
+
* from a single validator.
|
|
16
|
+
* @name withdrawDelegatorReward
|
|
17
|
+
* @package cosmos.distribution.v1beta1
|
|
18
|
+
* @see proto service: cosmos.distribution.v1beta1.WithdrawDelegatorReward
|
|
19
|
+
*/
|
|
10
20
|
export const withdrawDelegatorReward = buildTx({
|
|
11
21
|
msg: MsgWithdrawDelegatorReward
|
|
12
22
|
});
|
|
13
|
-
|
|
14
|
-
|
|
23
|
+
/**
|
|
24
|
+
* WithdrawValidatorCommission defines a method to withdraw the
|
|
25
|
+
* full commission to the validator address.
|
|
26
|
+
* @name withdrawValidatorCommission
|
|
27
|
+
* @package cosmos.distribution.v1beta1
|
|
28
|
+
* @see proto service: cosmos.distribution.v1beta1.WithdrawValidatorCommission
|
|
29
|
+
*/
|
|
15
30
|
export const withdrawValidatorCommission = buildTx({
|
|
16
31
|
msg: MsgWithdrawValidatorCommission
|
|
17
32
|
});
|
|
18
|
-
|
|
19
|
-
|
|
33
|
+
/**
|
|
34
|
+
* FundCommunityPool defines a method to allow an account to directly
|
|
35
|
+
* fund the community pool.
|
|
36
|
+
* @name fundCommunityPool
|
|
37
|
+
* @package cosmos.distribution.v1beta1
|
|
38
|
+
* @see proto service: cosmos.distribution.v1beta1.FundCommunityPool
|
|
39
|
+
*/
|
|
20
40
|
export const fundCommunityPool = buildTx({
|
|
21
41
|
msg: MsgFundCommunityPool
|
|
22
42
|
});
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
43
|
+
/**
|
|
44
|
+
* UpdateParams defines a governance operation for updating the x/distribution
|
|
45
|
+
* module parameters. The authority is defined in the keeper.
|
|
46
|
+
*
|
|
47
|
+
* Since: cosmos-sdk 0.47
|
|
48
|
+
* @name updateParams
|
|
49
|
+
* @package cosmos.distribution.v1beta1
|
|
50
|
+
* @see proto service: cosmos.distribution.v1beta1.UpdateParams
|
|
51
|
+
*/
|
|
27
52
|
export const updateParams = buildTx({
|
|
28
53
|
msg: MsgUpdateParams
|
|
29
54
|
});
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
55
|
+
/**
|
|
56
|
+
* CommunityPoolSpend defines a governance operation for sending tokens from
|
|
57
|
+
* the community pool in the x/distribution module to another account, which
|
|
58
|
+
* could be the governance module itself. The authority is defined in the
|
|
59
|
+
* keeper.
|
|
60
|
+
*
|
|
61
|
+
* Since: cosmos-sdk 0.47
|
|
62
|
+
* @name communityPoolSpend
|
|
63
|
+
* @package cosmos.distribution.v1beta1
|
|
64
|
+
* @see proto service: cosmos.distribution.v1beta1.CommunityPoolSpend
|
|
65
|
+
*/
|
|
36
66
|
export const communityPoolSpend = buildTx({
|
|
37
67
|
msg: MsgCommunityPoolSpend
|
|
38
68
|
});
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
69
|
+
/**
|
|
70
|
+
* DepositValidatorRewardsPool defines a method to provide additional rewards
|
|
71
|
+
* to delegators to a specific validator.
|
|
72
|
+
*
|
|
73
|
+
* Since: cosmos-sdk 0.50
|
|
74
|
+
* @name depositValidatorRewardsPool
|
|
75
|
+
* @package cosmos.distribution.v1beta1
|
|
76
|
+
* @see proto service: cosmos.distribution.v1beta1.DepositValidatorRewardsPool
|
|
77
|
+
*/
|
|
43
78
|
export const depositValidatorRewardsPool = buildTx({
|
|
44
79
|
msg: MsgDepositValidatorRewardsPool
|
|
45
80
|
});
|