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,20 +1,25 @@
|
|
|
1
1
|
import { DecCoin, DecCoinAmino, Coin, CoinAmino } from "../../base/v1beta1/coin";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Params defines the set of params for the distribution module.
|
|
6
|
+
* @name Params
|
|
7
|
+
* @package cosmos.distribution.v1beta1
|
|
8
|
+
* @see proto type: cosmos.distribution.v1beta1.Params
|
|
9
|
+
*/
|
|
5
10
|
export interface Params {
|
|
6
11
|
communityTax: string;
|
|
7
12
|
/**
|
|
8
13
|
* Deprecated: The base_proposer_reward field is deprecated and is no longer used
|
|
9
14
|
* in the x/distribution module's reward mechanism.
|
|
15
|
+
* @deprecated
|
|
10
16
|
*/
|
|
11
|
-
/** @deprecated */
|
|
12
17
|
baseProposerReward: string;
|
|
13
18
|
/**
|
|
14
19
|
* Deprecated: The bonus_proposer_reward field is deprecated and is no longer used
|
|
15
20
|
* in the x/distribution module's reward mechanism.
|
|
21
|
+
* @deprecated
|
|
16
22
|
*/
|
|
17
|
-
/** @deprecated */
|
|
18
23
|
bonusProposerReward: string;
|
|
19
24
|
withdrawAddrEnabled: boolean;
|
|
20
25
|
}
|
|
@@ -22,20 +27,25 @@ export interface ParamsProtoMsg {
|
|
|
22
27
|
typeUrl: "/cosmos.distribution.v1beta1.Params";
|
|
23
28
|
value: Uint8Array;
|
|
24
29
|
}
|
|
25
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* Params defines the set of params for the distribution module.
|
|
32
|
+
* @name ParamsAmino
|
|
33
|
+
* @package cosmos.distribution.v1beta1
|
|
34
|
+
* @see proto type: cosmos.distribution.v1beta1.Params
|
|
35
|
+
*/
|
|
26
36
|
export interface ParamsAmino {
|
|
27
37
|
community_tax: string;
|
|
28
38
|
/**
|
|
29
39
|
* Deprecated: The base_proposer_reward field is deprecated and is no longer used
|
|
30
40
|
* in the x/distribution module's reward mechanism.
|
|
41
|
+
* @deprecated
|
|
31
42
|
*/
|
|
32
|
-
/** @deprecated */
|
|
33
43
|
base_proposer_reward: string;
|
|
34
44
|
/**
|
|
35
45
|
* Deprecated: The bonus_proposer_reward field is deprecated and is no longer used
|
|
36
46
|
* in the x/distribution module's reward mechanism.
|
|
47
|
+
* @deprecated
|
|
37
48
|
*/
|
|
38
|
-
/** @deprecated */
|
|
39
49
|
bonus_proposer_reward: string;
|
|
40
50
|
withdraw_addr_enabled: boolean;
|
|
41
51
|
}
|
|
@@ -56,6 +66,9 @@ export interface ParamsAminoMsg {
|
|
|
56
66
|
* + number of slashes which ended the associated period (and might need to
|
|
57
67
|
* read that record)
|
|
58
68
|
* + one per validator for the zeroeth period, set on initialization
|
|
69
|
+
* @name ValidatorHistoricalRewards
|
|
70
|
+
* @package cosmos.distribution.v1beta1
|
|
71
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
|
|
59
72
|
*/
|
|
60
73
|
export interface ValidatorHistoricalRewards {
|
|
61
74
|
cumulativeRewardRatio: DecCoin[];
|
|
@@ -78,6 +91,9 @@ export interface ValidatorHistoricalRewardsProtoMsg {
|
|
|
78
91
|
* + number of slashes which ended the associated period (and might need to
|
|
79
92
|
* read that record)
|
|
80
93
|
* + one per validator for the zeroeth period, set on initialization
|
|
94
|
+
* @name ValidatorHistoricalRewardsAmino
|
|
95
|
+
* @package cosmos.distribution.v1beta1
|
|
96
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
|
|
81
97
|
*/
|
|
82
98
|
export interface ValidatorHistoricalRewardsAmino {
|
|
83
99
|
cumulative_reward_ratio: DecCoinAmino[];
|
|
@@ -91,6 +107,9 @@ export interface ValidatorHistoricalRewardsAminoMsg {
|
|
|
91
107
|
* ValidatorCurrentRewards represents current rewards and current
|
|
92
108
|
* period for a validator kept as a running counter and incremented
|
|
93
109
|
* each block as long as the validator's tokens remain constant.
|
|
110
|
+
* @name ValidatorCurrentRewards
|
|
111
|
+
* @package cosmos.distribution.v1beta1
|
|
112
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
|
|
94
113
|
*/
|
|
95
114
|
export interface ValidatorCurrentRewards {
|
|
96
115
|
rewards: DecCoin[];
|
|
@@ -104,6 +123,9 @@ export interface ValidatorCurrentRewardsProtoMsg {
|
|
|
104
123
|
* ValidatorCurrentRewards represents current rewards and current
|
|
105
124
|
* period for a validator kept as a running counter and incremented
|
|
106
125
|
* each block as long as the validator's tokens remain constant.
|
|
126
|
+
* @name ValidatorCurrentRewardsAmino
|
|
127
|
+
* @package cosmos.distribution.v1beta1
|
|
128
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
|
|
107
129
|
*/
|
|
108
130
|
export interface ValidatorCurrentRewardsAmino {
|
|
109
131
|
rewards: DecCoinAmino[];
|
|
@@ -116,6 +138,9 @@ export interface ValidatorCurrentRewardsAminoMsg {
|
|
|
116
138
|
/**
|
|
117
139
|
* ValidatorAccumulatedCommission represents accumulated commission
|
|
118
140
|
* for a validator kept as a running counter, can be withdrawn at any time.
|
|
141
|
+
* @name ValidatorAccumulatedCommission
|
|
142
|
+
* @package cosmos.distribution.v1beta1
|
|
143
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
|
|
119
144
|
*/
|
|
120
145
|
export interface ValidatorAccumulatedCommission {
|
|
121
146
|
commission: DecCoin[];
|
|
@@ -127,6 +152,9 @@ export interface ValidatorAccumulatedCommissionProtoMsg {
|
|
|
127
152
|
/**
|
|
128
153
|
* ValidatorAccumulatedCommission represents accumulated commission
|
|
129
154
|
* for a validator kept as a running counter, can be withdrawn at any time.
|
|
155
|
+
* @name ValidatorAccumulatedCommissionAmino
|
|
156
|
+
* @package cosmos.distribution.v1beta1
|
|
157
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
|
|
130
158
|
*/
|
|
131
159
|
export interface ValidatorAccumulatedCommissionAmino {
|
|
132
160
|
commission: DecCoinAmino[];
|
|
@@ -138,6 +166,9 @@ export interface ValidatorAccumulatedCommissionAminoMsg {
|
|
|
138
166
|
/**
|
|
139
167
|
* ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
|
|
140
168
|
* for a validator inexpensive to track, allows simple sanity checks.
|
|
169
|
+
* @name ValidatorOutstandingRewards
|
|
170
|
+
* @package cosmos.distribution.v1beta1
|
|
171
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
|
|
141
172
|
*/
|
|
142
173
|
export interface ValidatorOutstandingRewards {
|
|
143
174
|
rewards: DecCoin[];
|
|
@@ -149,6 +180,9 @@ export interface ValidatorOutstandingRewardsProtoMsg {
|
|
|
149
180
|
/**
|
|
150
181
|
* ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
|
|
151
182
|
* for a validator inexpensive to track, allows simple sanity checks.
|
|
183
|
+
* @name ValidatorOutstandingRewardsAmino
|
|
184
|
+
* @package cosmos.distribution.v1beta1
|
|
185
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
|
|
152
186
|
*/
|
|
153
187
|
export interface ValidatorOutstandingRewardsAmino {
|
|
154
188
|
rewards: DecCoinAmino[];
|
|
@@ -162,6 +196,9 @@ export interface ValidatorOutstandingRewardsAminoMsg {
|
|
|
162
196
|
* Height is implicit within the store key.
|
|
163
197
|
* This is needed to calculate appropriate amount of staking tokens
|
|
164
198
|
* for delegations which are withdrawn after a slash has occurred.
|
|
199
|
+
* @name ValidatorSlashEvent
|
|
200
|
+
* @package cosmos.distribution.v1beta1
|
|
201
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
|
|
165
202
|
*/
|
|
166
203
|
export interface ValidatorSlashEvent {
|
|
167
204
|
validatorPeriod: bigint;
|
|
@@ -176,6 +213,9 @@ export interface ValidatorSlashEventProtoMsg {
|
|
|
176
213
|
* Height is implicit within the store key.
|
|
177
214
|
* This is needed to calculate appropriate amount of staking tokens
|
|
178
215
|
* for delegations which are withdrawn after a slash has occurred.
|
|
216
|
+
* @name ValidatorSlashEventAmino
|
|
217
|
+
* @package cosmos.distribution.v1beta1
|
|
218
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
|
|
179
219
|
*/
|
|
180
220
|
export interface ValidatorSlashEventAmino {
|
|
181
221
|
validator_period: string;
|
|
@@ -185,7 +225,12 @@ export interface ValidatorSlashEventAminoMsg {
|
|
|
185
225
|
type: "cosmos-sdk/ValidatorSlashEvent";
|
|
186
226
|
value: ValidatorSlashEventAmino;
|
|
187
227
|
}
|
|
188
|
-
/**
|
|
228
|
+
/**
|
|
229
|
+
* ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
|
|
230
|
+
* @name ValidatorSlashEvents
|
|
231
|
+
* @package cosmos.distribution.v1beta1
|
|
232
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
|
|
233
|
+
*/
|
|
189
234
|
export interface ValidatorSlashEvents {
|
|
190
235
|
validatorSlashEvents: ValidatorSlashEvent[];
|
|
191
236
|
}
|
|
@@ -193,7 +238,12 @@ export interface ValidatorSlashEventsProtoMsg {
|
|
|
193
238
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvents";
|
|
194
239
|
value: Uint8Array;
|
|
195
240
|
}
|
|
196
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
|
|
243
|
+
* @name ValidatorSlashEventsAmino
|
|
244
|
+
* @package cosmos.distribution.v1beta1
|
|
245
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
|
|
246
|
+
*/
|
|
197
247
|
export interface ValidatorSlashEventsAmino {
|
|
198
248
|
validator_slash_events: ValidatorSlashEventAmino[];
|
|
199
249
|
}
|
|
@@ -201,7 +251,12 @@ export interface ValidatorSlashEventsAminoMsg {
|
|
|
201
251
|
type: "cosmos-sdk/ValidatorSlashEvents";
|
|
202
252
|
value: ValidatorSlashEventsAmino;
|
|
203
253
|
}
|
|
204
|
-
/**
|
|
254
|
+
/**
|
|
255
|
+
* FeePool is the global fee pool for distribution.
|
|
256
|
+
* @name FeePool
|
|
257
|
+
* @package cosmos.distribution.v1beta1
|
|
258
|
+
* @see proto type: cosmos.distribution.v1beta1.FeePool
|
|
259
|
+
*/
|
|
205
260
|
export interface FeePool {
|
|
206
261
|
communityPool: DecCoin[];
|
|
207
262
|
}
|
|
@@ -209,7 +264,12 @@ export interface FeePoolProtoMsg {
|
|
|
209
264
|
typeUrl: "/cosmos.distribution.v1beta1.FeePool";
|
|
210
265
|
value: Uint8Array;
|
|
211
266
|
}
|
|
212
|
-
/**
|
|
267
|
+
/**
|
|
268
|
+
* FeePool is the global fee pool for distribution.
|
|
269
|
+
* @name FeePoolAmino
|
|
270
|
+
* @package cosmos.distribution.v1beta1
|
|
271
|
+
* @see proto type: cosmos.distribution.v1beta1.FeePool
|
|
272
|
+
*/
|
|
213
273
|
export interface FeePoolAmino {
|
|
214
274
|
community_pool: DecCoinAmino[];
|
|
215
275
|
}
|
|
@@ -226,8 +286,11 @@ export interface FeePoolAminoMsg {
|
|
|
226
286
|
* longer a need for an explicit CommunityPoolSpendProposal. To spend community
|
|
227
287
|
* pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
|
|
228
288
|
* module via a v1 governance proposal.
|
|
289
|
+
* @name CommunityPoolSpendProposal
|
|
290
|
+
* @package cosmos.distribution.v1beta1
|
|
291
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
|
|
292
|
+
* @deprecated
|
|
229
293
|
*/
|
|
230
|
-
/** @deprecated */
|
|
231
294
|
export interface CommunityPoolSpendProposal {
|
|
232
295
|
title: string;
|
|
233
296
|
description: string;
|
|
@@ -247,8 +310,11 @@ export interface CommunityPoolSpendProposalProtoMsg {
|
|
|
247
310
|
* longer a need for an explicit CommunityPoolSpendProposal. To spend community
|
|
248
311
|
* pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
|
|
249
312
|
* module via a v1 governance proposal.
|
|
313
|
+
* @name CommunityPoolSpendProposalAmino
|
|
314
|
+
* @package cosmos.distribution.v1beta1
|
|
315
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
|
|
316
|
+
* @deprecated
|
|
250
317
|
*/
|
|
251
|
-
/** @deprecated */
|
|
252
318
|
export interface CommunityPoolSpendProposalAmino {
|
|
253
319
|
title: string;
|
|
254
320
|
description: string;
|
|
@@ -266,6 +332,9 @@ export interface CommunityPoolSpendProposalAminoMsg {
|
|
|
266
332
|
* occurred). NOTE: Even though validators are slashed to whole staking tokens,
|
|
267
333
|
* the delegators within the validator may be left with less than a full token,
|
|
268
334
|
* thus sdk.Dec is used.
|
|
335
|
+
* @name DelegatorStartingInfo
|
|
336
|
+
* @package cosmos.distribution.v1beta1
|
|
337
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
|
|
269
338
|
*/
|
|
270
339
|
export interface DelegatorStartingInfo {
|
|
271
340
|
previousPeriod: bigint;
|
|
@@ -283,6 +352,9 @@ export interface DelegatorStartingInfoProtoMsg {
|
|
|
283
352
|
* occurred). NOTE: Even though validators are slashed to whole staking tokens,
|
|
284
353
|
* the delegators within the validator may be left with less than a full token,
|
|
285
354
|
* thus sdk.Dec is used.
|
|
355
|
+
* @name DelegatorStartingInfoAmino
|
|
356
|
+
* @package cosmos.distribution.v1beta1
|
|
357
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
|
|
286
358
|
*/
|
|
287
359
|
export interface DelegatorStartingInfoAmino {
|
|
288
360
|
previous_period: string;
|
|
@@ -296,6 +368,9 @@ export interface DelegatorStartingInfoAminoMsg {
|
|
|
296
368
|
/**
|
|
297
369
|
* DelegationDelegatorReward represents the properties
|
|
298
370
|
* of a delegator's delegation reward.
|
|
371
|
+
* @name DelegationDelegatorReward
|
|
372
|
+
* @package cosmos.distribution.v1beta1
|
|
373
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
|
|
299
374
|
*/
|
|
300
375
|
export interface DelegationDelegatorReward {
|
|
301
376
|
validatorAddress: string;
|
|
@@ -308,6 +383,9 @@ export interface DelegationDelegatorRewardProtoMsg {
|
|
|
308
383
|
/**
|
|
309
384
|
* DelegationDelegatorReward represents the properties
|
|
310
385
|
* of a delegator's delegation reward.
|
|
386
|
+
* @name DelegationDelegatorRewardAmino
|
|
387
|
+
* @package cosmos.distribution.v1beta1
|
|
388
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
|
|
311
389
|
*/
|
|
312
390
|
export interface DelegationDelegatorRewardAmino {
|
|
313
391
|
validator_address: string;
|
|
@@ -320,6 +398,9 @@ export interface DelegationDelegatorRewardAminoMsg {
|
|
|
320
398
|
/**
|
|
321
399
|
* CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
|
|
322
400
|
* with a deposit
|
|
401
|
+
* @name CommunityPoolSpendProposalWithDeposit
|
|
402
|
+
* @package cosmos.distribution.v1beta1
|
|
403
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
|
|
323
404
|
*/
|
|
324
405
|
export interface CommunityPoolSpendProposalWithDeposit {
|
|
325
406
|
title: string;
|
|
@@ -335,6 +416,9 @@ export interface CommunityPoolSpendProposalWithDepositProtoMsg {
|
|
|
335
416
|
/**
|
|
336
417
|
* CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
|
|
337
418
|
* with a deposit
|
|
419
|
+
* @name CommunityPoolSpendProposalWithDepositAmino
|
|
420
|
+
* @package cosmos.distribution.v1beta1
|
|
421
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
|
|
338
422
|
*/
|
|
339
423
|
export interface CommunityPoolSpendProposalWithDepositAmino {
|
|
340
424
|
title: string;
|
|
@@ -347,6 +431,12 @@ export interface CommunityPoolSpendProposalWithDepositAminoMsg {
|
|
|
347
431
|
type: "cosmos-sdk/CommunityPoolSpendProposalWithDeposit";
|
|
348
432
|
value: CommunityPoolSpendProposalWithDepositAmino;
|
|
349
433
|
}
|
|
434
|
+
/**
|
|
435
|
+
* Params defines the set of params for the distribution module.
|
|
436
|
+
* @name Params
|
|
437
|
+
* @package cosmos.distribution.v1beta1
|
|
438
|
+
* @see proto type: cosmos.distribution.v1beta1.Params
|
|
439
|
+
*/
|
|
350
440
|
export declare const Params: {
|
|
351
441
|
typeUrl: string;
|
|
352
442
|
aminoType: string;
|
|
@@ -364,6 +454,23 @@ export declare const Params: {
|
|
|
364
454
|
toProtoMsg(message: Params): ParamsProtoMsg;
|
|
365
455
|
registerTypeUrl(): void;
|
|
366
456
|
};
|
|
457
|
+
/**
|
|
458
|
+
* ValidatorHistoricalRewards represents historical rewards for a validator.
|
|
459
|
+
* Height is implicit within the store key.
|
|
460
|
+
* Cumulative reward ratio is the sum from the zeroeth period
|
|
461
|
+
* until this period of rewards / tokens, per the spec.
|
|
462
|
+
* The reference count indicates the number of objects
|
|
463
|
+
* which might need to reference this historical entry at any point.
|
|
464
|
+
* ReferenceCount =
|
|
465
|
+
* number of outstanding delegations which ended the associated period (and
|
|
466
|
+
* might need to read that record)
|
|
467
|
+
* + number of slashes which ended the associated period (and might need to
|
|
468
|
+
* read that record)
|
|
469
|
+
* + one per validator for the zeroeth period, set on initialization
|
|
470
|
+
* @name ValidatorHistoricalRewards
|
|
471
|
+
* @package cosmos.distribution.v1beta1
|
|
472
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
|
|
473
|
+
*/
|
|
367
474
|
export declare const ValidatorHistoricalRewards: {
|
|
368
475
|
typeUrl: string;
|
|
369
476
|
aminoType: string;
|
|
@@ -381,6 +488,14 @@ export declare const ValidatorHistoricalRewards: {
|
|
|
381
488
|
toProtoMsg(message: ValidatorHistoricalRewards): ValidatorHistoricalRewardsProtoMsg;
|
|
382
489
|
registerTypeUrl(): void;
|
|
383
490
|
};
|
|
491
|
+
/**
|
|
492
|
+
* ValidatorCurrentRewards represents current rewards and current
|
|
493
|
+
* period for a validator kept as a running counter and incremented
|
|
494
|
+
* each block as long as the validator's tokens remain constant.
|
|
495
|
+
* @name ValidatorCurrentRewards
|
|
496
|
+
* @package cosmos.distribution.v1beta1
|
|
497
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
|
|
498
|
+
*/
|
|
384
499
|
export declare const ValidatorCurrentRewards: {
|
|
385
500
|
typeUrl: string;
|
|
386
501
|
aminoType: string;
|
|
@@ -398,6 +513,13 @@ export declare const ValidatorCurrentRewards: {
|
|
|
398
513
|
toProtoMsg(message: ValidatorCurrentRewards): ValidatorCurrentRewardsProtoMsg;
|
|
399
514
|
registerTypeUrl(): void;
|
|
400
515
|
};
|
|
516
|
+
/**
|
|
517
|
+
* ValidatorAccumulatedCommission represents accumulated commission
|
|
518
|
+
* for a validator kept as a running counter, can be withdrawn at any time.
|
|
519
|
+
* @name ValidatorAccumulatedCommission
|
|
520
|
+
* @package cosmos.distribution.v1beta1
|
|
521
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
|
|
522
|
+
*/
|
|
401
523
|
export declare const ValidatorAccumulatedCommission: {
|
|
402
524
|
typeUrl: string;
|
|
403
525
|
aminoType: string;
|
|
@@ -415,6 +537,13 @@ export declare const ValidatorAccumulatedCommission: {
|
|
|
415
537
|
toProtoMsg(message: ValidatorAccumulatedCommission): ValidatorAccumulatedCommissionProtoMsg;
|
|
416
538
|
registerTypeUrl(): void;
|
|
417
539
|
};
|
|
540
|
+
/**
|
|
541
|
+
* ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
|
|
542
|
+
* for a validator inexpensive to track, allows simple sanity checks.
|
|
543
|
+
* @name ValidatorOutstandingRewards
|
|
544
|
+
* @package cosmos.distribution.v1beta1
|
|
545
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
|
|
546
|
+
*/
|
|
418
547
|
export declare const ValidatorOutstandingRewards: {
|
|
419
548
|
typeUrl: string;
|
|
420
549
|
aminoType: string;
|
|
@@ -432,6 +561,15 @@ export declare const ValidatorOutstandingRewards: {
|
|
|
432
561
|
toProtoMsg(message: ValidatorOutstandingRewards): ValidatorOutstandingRewardsProtoMsg;
|
|
433
562
|
registerTypeUrl(): void;
|
|
434
563
|
};
|
|
564
|
+
/**
|
|
565
|
+
* ValidatorSlashEvent represents a validator slash event.
|
|
566
|
+
* Height is implicit within the store key.
|
|
567
|
+
* This is needed to calculate appropriate amount of staking tokens
|
|
568
|
+
* for delegations which are withdrawn after a slash has occurred.
|
|
569
|
+
* @name ValidatorSlashEvent
|
|
570
|
+
* @package cosmos.distribution.v1beta1
|
|
571
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
|
|
572
|
+
*/
|
|
435
573
|
export declare const ValidatorSlashEvent: {
|
|
436
574
|
typeUrl: string;
|
|
437
575
|
aminoType: string;
|
|
@@ -449,6 +587,12 @@ export declare const ValidatorSlashEvent: {
|
|
|
449
587
|
toProtoMsg(message: ValidatorSlashEvent): ValidatorSlashEventProtoMsg;
|
|
450
588
|
registerTypeUrl(): void;
|
|
451
589
|
};
|
|
590
|
+
/**
|
|
591
|
+
* ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
|
|
592
|
+
* @name ValidatorSlashEvents
|
|
593
|
+
* @package cosmos.distribution.v1beta1
|
|
594
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
|
|
595
|
+
*/
|
|
452
596
|
export declare const ValidatorSlashEvents: {
|
|
453
597
|
typeUrl: string;
|
|
454
598
|
aminoType: string;
|
|
@@ -466,6 +610,12 @@ export declare const ValidatorSlashEvents: {
|
|
|
466
610
|
toProtoMsg(message: ValidatorSlashEvents): ValidatorSlashEventsProtoMsg;
|
|
467
611
|
registerTypeUrl(): void;
|
|
468
612
|
};
|
|
613
|
+
/**
|
|
614
|
+
* FeePool is the global fee pool for distribution.
|
|
615
|
+
* @name FeePool
|
|
616
|
+
* @package cosmos.distribution.v1beta1
|
|
617
|
+
* @see proto type: cosmos.distribution.v1beta1.FeePool
|
|
618
|
+
*/
|
|
469
619
|
export declare const FeePool: {
|
|
470
620
|
typeUrl: string;
|
|
471
621
|
aminoType: string;
|
|
@@ -483,6 +633,20 @@ export declare const FeePool: {
|
|
|
483
633
|
toProtoMsg(message: FeePool): FeePoolProtoMsg;
|
|
484
634
|
registerTypeUrl(): void;
|
|
485
635
|
};
|
|
636
|
+
/**
|
|
637
|
+
* CommunityPoolSpendProposal details a proposal for use of community funds,
|
|
638
|
+
* together with how many coins are proposed to be spent, and to which
|
|
639
|
+
* recipient account.
|
|
640
|
+
*
|
|
641
|
+
* Deprecated: Do not use. As of the Cosmos SDK release v0.47.x, there is no
|
|
642
|
+
* longer a need for an explicit CommunityPoolSpendProposal. To spend community
|
|
643
|
+
* pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
|
|
644
|
+
* module via a v1 governance proposal.
|
|
645
|
+
* @name CommunityPoolSpendProposal
|
|
646
|
+
* @package cosmos.distribution.v1beta1
|
|
647
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
|
|
648
|
+
* @deprecated
|
|
649
|
+
*/
|
|
486
650
|
export declare const CommunityPoolSpendProposal: {
|
|
487
651
|
typeUrl: string;
|
|
488
652
|
aminoType: string;
|
|
@@ -500,6 +664,17 @@ export declare const CommunityPoolSpendProposal: {
|
|
|
500
664
|
toProtoMsg(message: CommunityPoolSpendProposal): CommunityPoolSpendProposalProtoMsg;
|
|
501
665
|
registerTypeUrl(): void;
|
|
502
666
|
};
|
|
667
|
+
/**
|
|
668
|
+
* DelegatorStartingInfo represents the starting info for a delegator reward
|
|
669
|
+
* period. It tracks the previous validator period, the delegation's amount of
|
|
670
|
+
* staking token, and the creation height (to check later on if any slashes have
|
|
671
|
+
* occurred). NOTE: Even though validators are slashed to whole staking tokens,
|
|
672
|
+
* the delegators within the validator may be left with less than a full token,
|
|
673
|
+
* thus sdk.Dec is used.
|
|
674
|
+
* @name DelegatorStartingInfo
|
|
675
|
+
* @package cosmos.distribution.v1beta1
|
|
676
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
|
|
677
|
+
*/
|
|
503
678
|
export declare const DelegatorStartingInfo: {
|
|
504
679
|
typeUrl: string;
|
|
505
680
|
aminoType: string;
|
|
@@ -517,6 +692,13 @@ export declare const DelegatorStartingInfo: {
|
|
|
517
692
|
toProtoMsg(message: DelegatorStartingInfo): DelegatorStartingInfoProtoMsg;
|
|
518
693
|
registerTypeUrl(): void;
|
|
519
694
|
};
|
|
695
|
+
/**
|
|
696
|
+
* DelegationDelegatorReward represents the properties
|
|
697
|
+
* of a delegator's delegation reward.
|
|
698
|
+
* @name DelegationDelegatorReward
|
|
699
|
+
* @package cosmos.distribution.v1beta1
|
|
700
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
|
|
701
|
+
*/
|
|
520
702
|
export declare const DelegationDelegatorReward: {
|
|
521
703
|
typeUrl: string;
|
|
522
704
|
aminoType: string;
|
|
@@ -534,6 +716,13 @@ export declare const DelegationDelegatorReward: {
|
|
|
534
716
|
toProtoMsg(message: DelegationDelegatorReward): DelegationDelegatorRewardProtoMsg;
|
|
535
717
|
registerTypeUrl(): void;
|
|
536
718
|
};
|
|
719
|
+
/**
|
|
720
|
+
* CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
|
|
721
|
+
* with a deposit
|
|
722
|
+
* @name CommunityPoolSpendProposalWithDeposit
|
|
723
|
+
* @package cosmos.distribution.v1beta1
|
|
724
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
|
|
725
|
+
*/
|
|
537
726
|
export declare const CommunityPoolSpendProposalWithDeposit: {
|
|
538
727
|
typeUrl: string;
|
|
539
728
|
aminoType: string;
|
|
@@ -13,6 +13,12 @@ function createBaseParams() {
|
|
|
13
13
|
withdrawAddrEnabled: false
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* Params defines the set of params for the distribution module.
|
|
18
|
+
* @name Params
|
|
19
|
+
* @package cosmos.distribution.v1beta1
|
|
20
|
+
* @see proto type: cosmos.distribution.v1beta1.Params
|
|
21
|
+
*/
|
|
16
22
|
exports.Params = {
|
|
17
23
|
typeUrl: "/cosmos.distribution.v1beta1.Params",
|
|
18
24
|
aminoType: "cosmos-sdk/x/distribution/Params",
|
|
@@ -124,6 +130,23 @@ function createBaseValidatorHistoricalRewards() {
|
|
|
124
130
|
referenceCount: 0
|
|
125
131
|
};
|
|
126
132
|
}
|
|
133
|
+
/**
|
|
134
|
+
* ValidatorHistoricalRewards represents historical rewards for a validator.
|
|
135
|
+
* Height is implicit within the store key.
|
|
136
|
+
* Cumulative reward ratio is the sum from the zeroeth period
|
|
137
|
+
* until this period of rewards / tokens, per the spec.
|
|
138
|
+
* The reference count indicates the number of objects
|
|
139
|
+
* which might need to reference this historical entry at any point.
|
|
140
|
+
* ReferenceCount =
|
|
141
|
+
* number of outstanding delegations which ended the associated period (and
|
|
142
|
+
* might need to read that record)
|
|
143
|
+
* + number of slashes which ended the associated period (and might need to
|
|
144
|
+
* read that record)
|
|
145
|
+
* + one per validator for the zeroeth period, set on initialization
|
|
146
|
+
* @name ValidatorHistoricalRewards
|
|
147
|
+
* @package cosmos.distribution.v1beta1
|
|
148
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
|
|
149
|
+
*/
|
|
127
150
|
exports.ValidatorHistoricalRewards = {
|
|
128
151
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorHistoricalRewards",
|
|
129
152
|
aminoType: "cosmos-sdk/ValidatorHistoricalRewards",
|
|
@@ -221,6 +244,14 @@ function createBaseValidatorCurrentRewards() {
|
|
|
221
244
|
period: BigInt(0)
|
|
222
245
|
};
|
|
223
246
|
}
|
|
247
|
+
/**
|
|
248
|
+
* ValidatorCurrentRewards represents current rewards and current
|
|
249
|
+
* period for a validator kept as a running counter and incremented
|
|
250
|
+
* each block as long as the validator's tokens remain constant.
|
|
251
|
+
* @name ValidatorCurrentRewards
|
|
252
|
+
* @package cosmos.distribution.v1beta1
|
|
253
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
|
|
254
|
+
*/
|
|
224
255
|
exports.ValidatorCurrentRewards = {
|
|
225
256
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorCurrentRewards",
|
|
226
257
|
aminoType: "cosmos-sdk/ValidatorCurrentRewards",
|
|
@@ -317,6 +348,13 @@ function createBaseValidatorAccumulatedCommission() {
|
|
|
317
348
|
commission: []
|
|
318
349
|
};
|
|
319
350
|
}
|
|
351
|
+
/**
|
|
352
|
+
* ValidatorAccumulatedCommission represents accumulated commission
|
|
353
|
+
* for a validator kept as a running counter, can be withdrawn at any time.
|
|
354
|
+
* @name ValidatorAccumulatedCommission
|
|
355
|
+
* @package cosmos.distribution.v1beta1
|
|
356
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
|
|
357
|
+
*/
|
|
320
358
|
exports.ValidatorAccumulatedCommission = {
|
|
321
359
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorAccumulatedCommission",
|
|
322
360
|
aminoType: "cosmos-sdk/ValidatorAccumulatedCommission",
|
|
@@ -402,6 +440,13 @@ function createBaseValidatorOutstandingRewards() {
|
|
|
402
440
|
rewards: []
|
|
403
441
|
};
|
|
404
442
|
}
|
|
443
|
+
/**
|
|
444
|
+
* ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
|
|
445
|
+
* for a validator inexpensive to track, allows simple sanity checks.
|
|
446
|
+
* @name ValidatorOutstandingRewards
|
|
447
|
+
* @package cosmos.distribution.v1beta1
|
|
448
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
|
|
449
|
+
*/
|
|
405
450
|
exports.ValidatorOutstandingRewards = {
|
|
406
451
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorOutstandingRewards",
|
|
407
452
|
aminoType: "cosmos-sdk/ValidatorOutstandingRewards",
|
|
@@ -488,6 +533,15 @@ function createBaseValidatorSlashEvent() {
|
|
|
488
533
|
fraction: ""
|
|
489
534
|
};
|
|
490
535
|
}
|
|
536
|
+
/**
|
|
537
|
+
* ValidatorSlashEvent represents a validator slash event.
|
|
538
|
+
* Height is implicit within the store key.
|
|
539
|
+
* This is needed to calculate appropriate amount of staking tokens
|
|
540
|
+
* for delegations which are withdrawn after a slash has occurred.
|
|
541
|
+
* @name ValidatorSlashEvent
|
|
542
|
+
* @package cosmos.distribution.v1beta1
|
|
543
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
|
|
544
|
+
*/
|
|
491
545
|
exports.ValidatorSlashEvent = {
|
|
492
546
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvent",
|
|
493
547
|
aminoType: "cosmos-sdk/ValidatorSlashEvent",
|
|
@@ -576,6 +630,12 @@ function createBaseValidatorSlashEvents() {
|
|
|
576
630
|
validatorSlashEvents: []
|
|
577
631
|
};
|
|
578
632
|
}
|
|
633
|
+
/**
|
|
634
|
+
* ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
|
|
635
|
+
* @name ValidatorSlashEvents
|
|
636
|
+
* @package cosmos.distribution.v1beta1
|
|
637
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
|
|
638
|
+
*/
|
|
579
639
|
exports.ValidatorSlashEvents = {
|
|
580
640
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvents",
|
|
581
641
|
aminoType: "cosmos-sdk/ValidatorSlashEvents",
|
|
@@ -661,6 +721,12 @@ function createBaseFeePool() {
|
|
|
661
721
|
communityPool: []
|
|
662
722
|
};
|
|
663
723
|
}
|
|
724
|
+
/**
|
|
725
|
+
* FeePool is the global fee pool for distribution.
|
|
726
|
+
* @name FeePool
|
|
727
|
+
* @package cosmos.distribution.v1beta1
|
|
728
|
+
* @see proto type: cosmos.distribution.v1beta1.FeePool
|
|
729
|
+
*/
|
|
664
730
|
exports.FeePool = {
|
|
665
731
|
typeUrl: "/cosmos.distribution.v1beta1.FeePool",
|
|
666
732
|
aminoType: "cosmos-sdk/FeePool",
|
|
@@ -749,6 +815,20 @@ function createBaseCommunityPoolSpendProposal() {
|
|
|
749
815
|
amount: []
|
|
750
816
|
};
|
|
751
817
|
}
|
|
818
|
+
/**
|
|
819
|
+
* CommunityPoolSpendProposal details a proposal for use of community funds,
|
|
820
|
+
* together with how many coins are proposed to be spent, and to which
|
|
821
|
+
* recipient account.
|
|
822
|
+
*
|
|
823
|
+
* Deprecated: Do not use. As of the Cosmos SDK release v0.47.x, there is no
|
|
824
|
+
* longer a need for an explicit CommunityPoolSpendProposal. To spend community
|
|
825
|
+
* pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
|
|
826
|
+
* module via a v1 governance proposal.
|
|
827
|
+
* @name CommunityPoolSpendProposal
|
|
828
|
+
* @package cosmos.distribution.v1beta1
|
|
829
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
|
|
830
|
+
* @deprecated
|
|
831
|
+
*/
|
|
752
832
|
exports.CommunityPoolSpendProposal = {
|
|
753
833
|
typeUrl: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposal",
|
|
754
834
|
aminoType: "cosmos-sdk/CommunityPoolSpendProposal",
|
|
@@ -871,6 +951,17 @@ function createBaseDelegatorStartingInfo() {
|
|
|
871
951
|
height: BigInt(0)
|
|
872
952
|
};
|
|
873
953
|
}
|
|
954
|
+
/**
|
|
955
|
+
* DelegatorStartingInfo represents the starting info for a delegator reward
|
|
956
|
+
* period. It tracks the previous validator period, the delegation's amount of
|
|
957
|
+
* staking token, and the creation height (to check later on if any slashes have
|
|
958
|
+
* occurred). NOTE: Even though validators are slashed to whole staking tokens,
|
|
959
|
+
* the delegators within the validator may be left with less than a full token,
|
|
960
|
+
* thus sdk.Dec is used.
|
|
961
|
+
* @name DelegatorStartingInfo
|
|
962
|
+
* @package cosmos.distribution.v1beta1
|
|
963
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
|
|
964
|
+
*/
|
|
874
965
|
exports.DelegatorStartingInfo = {
|
|
875
966
|
typeUrl: "/cosmos.distribution.v1beta1.DelegatorStartingInfo",
|
|
876
967
|
aminoType: "cosmos-sdk/DelegatorStartingInfo",
|
|
@@ -971,6 +1062,13 @@ function createBaseDelegationDelegatorReward() {
|
|
|
971
1062
|
reward: []
|
|
972
1063
|
};
|
|
973
1064
|
}
|
|
1065
|
+
/**
|
|
1066
|
+
* DelegationDelegatorReward represents the properties
|
|
1067
|
+
* of a delegator's delegation reward.
|
|
1068
|
+
* @name DelegationDelegatorReward
|
|
1069
|
+
* @package cosmos.distribution.v1beta1
|
|
1070
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
|
|
1071
|
+
*/
|
|
974
1072
|
exports.DelegationDelegatorReward = {
|
|
975
1073
|
typeUrl: "/cosmos.distribution.v1beta1.DelegationDelegatorReward",
|
|
976
1074
|
aminoType: "cosmos-sdk/DelegationDelegatorReward",
|
|
@@ -1071,6 +1169,13 @@ function createBaseCommunityPoolSpendProposalWithDeposit() {
|
|
|
1071
1169
|
deposit: ""
|
|
1072
1170
|
};
|
|
1073
1171
|
}
|
|
1172
|
+
/**
|
|
1173
|
+
* CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
|
|
1174
|
+
* with a deposit
|
|
1175
|
+
* @name CommunityPoolSpendProposalWithDeposit
|
|
1176
|
+
* @package cosmos.distribution.v1beta1
|
|
1177
|
+
* @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
|
|
1178
|
+
*/
|
|
1074
1179
|
exports.CommunityPoolSpendProposalWithDeposit = {
|
|
1075
1180
|
typeUrl: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit",
|
|
1076
1181
|
aminoType: "cosmos-sdk/CommunityPoolSpendProposalWithDeposit",
|