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
|
@@ -11,6 +11,13 @@ function createBaseMsgSetWithdrawAddress() {
|
|
|
11
11
|
withdrawAddress: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* MsgSetWithdrawAddress sets the withdraw address for
|
|
16
|
+
* a delegator (or validator self-delegation).
|
|
17
|
+
* @name MsgSetWithdrawAddress
|
|
18
|
+
* @package cosmos.distribution.v1beta1
|
|
19
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgSetWithdrawAddress
|
|
20
|
+
*/
|
|
14
21
|
exports.MsgSetWithdrawAddress = {
|
|
15
22
|
typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddress",
|
|
16
23
|
aminoType: "cosmos-sdk/MsgModifyWithdrawAddress",
|
|
@@ -97,6 +104,13 @@ exports.MsgSetWithdrawAddress = {
|
|
|
97
104
|
function createBaseMsgSetWithdrawAddressResponse() {
|
|
98
105
|
return {};
|
|
99
106
|
}
|
|
107
|
+
/**
|
|
108
|
+
* MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response
|
|
109
|
+
* type.
|
|
110
|
+
* @name MsgSetWithdrawAddressResponse
|
|
111
|
+
* @package cosmos.distribution.v1beta1
|
|
112
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse
|
|
113
|
+
*/
|
|
100
114
|
exports.MsgSetWithdrawAddressResponse = {
|
|
101
115
|
typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse",
|
|
102
116
|
aminoType: "cosmos-sdk/MsgSetWithdrawAddressResponse",
|
|
@@ -164,6 +178,13 @@ function createBaseMsgWithdrawDelegatorReward() {
|
|
|
164
178
|
validatorAddress: ""
|
|
165
179
|
};
|
|
166
180
|
}
|
|
181
|
+
/**
|
|
182
|
+
* MsgWithdrawDelegatorReward represents delegation withdrawal to a delegator
|
|
183
|
+
* from a single validator.
|
|
184
|
+
* @name MsgWithdrawDelegatorReward
|
|
185
|
+
* @package cosmos.distribution.v1beta1
|
|
186
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward
|
|
187
|
+
*/
|
|
167
188
|
exports.MsgWithdrawDelegatorReward = {
|
|
168
189
|
typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward",
|
|
169
190
|
aminoType: "cosmos-sdk/MsgWithdrawDelegationReward",
|
|
@@ -252,6 +273,13 @@ function createBaseMsgWithdrawDelegatorRewardResponse() {
|
|
|
252
273
|
amount: []
|
|
253
274
|
};
|
|
254
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
* MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward
|
|
278
|
+
* response type.
|
|
279
|
+
* @name MsgWithdrawDelegatorRewardResponse
|
|
280
|
+
* @package cosmos.distribution.v1beta1
|
|
281
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse
|
|
282
|
+
*/
|
|
255
283
|
exports.MsgWithdrawDelegatorRewardResponse = {
|
|
256
284
|
typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse",
|
|
257
285
|
aminoType: "cosmos-sdk/MsgWithdrawDelegatorRewardResponse",
|
|
@@ -337,6 +365,13 @@ function createBaseMsgWithdrawValidatorCommission() {
|
|
|
337
365
|
validatorAddress: ""
|
|
338
366
|
};
|
|
339
367
|
}
|
|
368
|
+
/**
|
|
369
|
+
* MsgWithdrawValidatorCommission withdraws the full commission to the validator
|
|
370
|
+
* address.
|
|
371
|
+
* @name MsgWithdrawValidatorCommission
|
|
372
|
+
* @package cosmos.distribution.v1beta1
|
|
373
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission
|
|
374
|
+
*/
|
|
340
375
|
exports.MsgWithdrawValidatorCommission = {
|
|
341
376
|
typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission",
|
|
342
377
|
aminoType: "cosmos-sdk/MsgWithdrawValidatorCommission",
|
|
@@ -414,6 +449,13 @@ function createBaseMsgWithdrawValidatorCommissionResponse() {
|
|
|
414
449
|
amount: []
|
|
415
450
|
};
|
|
416
451
|
}
|
|
452
|
+
/**
|
|
453
|
+
* MsgWithdrawValidatorCommissionResponse defines the
|
|
454
|
+
* Msg/WithdrawValidatorCommission response type.
|
|
455
|
+
* @name MsgWithdrawValidatorCommissionResponse
|
|
456
|
+
* @package cosmos.distribution.v1beta1
|
|
457
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse
|
|
458
|
+
*/
|
|
417
459
|
exports.MsgWithdrawValidatorCommissionResponse = {
|
|
418
460
|
typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse",
|
|
419
461
|
aminoType: "cosmos-sdk/MsgWithdrawValidatorCommissionResponse",
|
|
@@ -500,6 +542,13 @@ function createBaseMsgFundCommunityPool() {
|
|
|
500
542
|
depositor: ""
|
|
501
543
|
};
|
|
502
544
|
}
|
|
545
|
+
/**
|
|
546
|
+
* MsgFundCommunityPool allows an account to directly
|
|
547
|
+
* fund the community pool.
|
|
548
|
+
* @name MsgFundCommunityPool
|
|
549
|
+
* @package cosmos.distribution.v1beta1
|
|
550
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgFundCommunityPool
|
|
551
|
+
*/
|
|
503
552
|
exports.MsgFundCommunityPool = {
|
|
504
553
|
typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPool",
|
|
505
554
|
aminoType: "cosmos-sdk/MsgFundCommunityPool",
|
|
@@ -594,6 +643,12 @@ exports.MsgFundCommunityPool = {
|
|
|
594
643
|
function createBaseMsgFundCommunityPoolResponse() {
|
|
595
644
|
return {};
|
|
596
645
|
}
|
|
646
|
+
/**
|
|
647
|
+
* MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type.
|
|
648
|
+
* @name MsgFundCommunityPoolResponse
|
|
649
|
+
* @package cosmos.distribution.v1beta1
|
|
650
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse
|
|
651
|
+
*/
|
|
597
652
|
exports.MsgFundCommunityPoolResponse = {
|
|
598
653
|
typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse",
|
|
599
654
|
aminoType: "cosmos-sdk/MsgFundCommunityPoolResponse",
|
|
@@ -661,6 +716,14 @@ function createBaseMsgUpdateParams() {
|
|
|
661
716
|
params: distribution_1.Params.fromPartial({})
|
|
662
717
|
};
|
|
663
718
|
}
|
|
719
|
+
/**
|
|
720
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
721
|
+
*
|
|
722
|
+
* Since: cosmos-sdk 0.47
|
|
723
|
+
* @name MsgUpdateParams
|
|
724
|
+
* @package cosmos.distribution.v1beta1
|
|
725
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgUpdateParams
|
|
726
|
+
*/
|
|
664
727
|
exports.MsgUpdateParams = {
|
|
665
728
|
typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParams",
|
|
666
729
|
aminoType: "cosmos-sdk/distribution/MsgUpdateParams",
|
|
@@ -752,6 +815,15 @@ exports.MsgUpdateParams = {
|
|
|
752
815
|
function createBaseMsgUpdateParamsResponse() {
|
|
753
816
|
return {};
|
|
754
817
|
}
|
|
818
|
+
/**
|
|
819
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
820
|
+
* MsgUpdateParams message.
|
|
821
|
+
*
|
|
822
|
+
* Since: cosmos-sdk 0.47
|
|
823
|
+
* @name MsgUpdateParamsResponse
|
|
824
|
+
* @package cosmos.distribution.v1beta1
|
|
825
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgUpdateParamsResponse
|
|
826
|
+
*/
|
|
755
827
|
exports.MsgUpdateParamsResponse = {
|
|
756
828
|
typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParamsResponse",
|
|
757
829
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -820,6 +892,16 @@ function createBaseMsgCommunityPoolSpend() {
|
|
|
820
892
|
amount: []
|
|
821
893
|
};
|
|
822
894
|
}
|
|
895
|
+
/**
|
|
896
|
+
* MsgCommunityPoolSpend defines a message for sending tokens from the community
|
|
897
|
+
* pool to another account. This message is typically executed via a governance
|
|
898
|
+
* proposal with the governance module being the executing authority.
|
|
899
|
+
*
|
|
900
|
+
* Since: cosmos-sdk 0.47
|
|
901
|
+
* @name MsgCommunityPoolSpend
|
|
902
|
+
* @package cosmos.distribution.v1beta1
|
|
903
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgCommunityPoolSpend
|
|
904
|
+
*/
|
|
823
905
|
exports.MsgCommunityPoolSpend = {
|
|
824
906
|
typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpend",
|
|
825
907
|
aminoType: "cosmos-sdk/distr/MsgCommunityPoolSpend",
|
|
@@ -925,6 +1007,15 @@ exports.MsgCommunityPoolSpend = {
|
|
|
925
1007
|
function createBaseMsgCommunityPoolSpendResponse() {
|
|
926
1008
|
return {};
|
|
927
1009
|
}
|
|
1010
|
+
/**
|
|
1011
|
+
* MsgCommunityPoolSpendResponse defines the response to executing a
|
|
1012
|
+
* MsgCommunityPoolSpend message.
|
|
1013
|
+
*
|
|
1014
|
+
* Since: cosmos-sdk 0.47
|
|
1015
|
+
* @name MsgCommunityPoolSpendResponse
|
|
1016
|
+
* @package cosmos.distribution.v1beta1
|
|
1017
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse
|
|
1018
|
+
*/
|
|
928
1019
|
exports.MsgCommunityPoolSpendResponse = {
|
|
929
1020
|
typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse",
|
|
930
1021
|
aminoType: "cosmos-sdk/MsgCommunityPoolSpendResponse",
|
|
@@ -993,6 +1084,15 @@ function createBaseMsgDepositValidatorRewardsPool() {
|
|
|
993
1084
|
amount: []
|
|
994
1085
|
};
|
|
995
1086
|
}
|
|
1087
|
+
/**
|
|
1088
|
+
* DepositValidatorRewardsPool defines the request structure to provide
|
|
1089
|
+
* additional rewards to delegators from a specific validator.
|
|
1090
|
+
*
|
|
1091
|
+
* Since: cosmos-sdk 0.50
|
|
1092
|
+
* @name MsgDepositValidatorRewardsPool
|
|
1093
|
+
* @package cosmos.distribution.v1beta1
|
|
1094
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool
|
|
1095
|
+
*/
|
|
996
1096
|
exports.MsgDepositValidatorRewardsPool = {
|
|
997
1097
|
typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool",
|
|
998
1098
|
aminoType: "cosmos-sdk/distr/MsgDepositValRewards",
|
|
@@ -1098,6 +1198,15 @@ exports.MsgDepositValidatorRewardsPool = {
|
|
|
1098
1198
|
function createBaseMsgDepositValidatorRewardsPoolResponse() {
|
|
1099
1199
|
return {};
|
|
1100
1200
|
}
|
|
1201
|
+
/**
|
|
1202
|
+
* MsgDepositValidatorRewardsPoolResponse defines the response to executing a
|
|
1203
|
+
* MsgDepositValidatorRewardsPool message.
|
|
1204
|
+
*
|
|
1205
|
+
* Since: cosmos-sdk 0.50
|
|
1206
|
+
* @name MsgDepositValidatorRewardsPoolResponse
|
|
1207
|
+
* @package cosmos.distribution.v1beta1
|
|
1208
|
+
* @see proto type: cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse
|
|
1209
|
+
*/
|
|
1101
1210
|
exports.MsgDepositValidatorRewardsPoolResponse = {
|
|
1102
1211
|
typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse",
|
|
1103
1212
|
aminoType: "cosmos-sdk/MsgDepositValidatorRewardsPoolResponse",
|
|
@@ -1,8 +1,65 @@
|
|
|
1
1
|
import { MsgSetWithdrawAddress, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, MsgFundCommunityPool, MsgUpdateParams, MsgCommunityPoolSpend, MsgDepositValidatorRewardsPool } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* SetWithdrawAddress defines a method to change the withdraw address
|
|
4
|
+
* for a delegator (or validator self-delegation).
|
|
5
|
+
* @name setWithdrawAddress
|
|
6
|
+
* @package cosmos.distribution.v1beta1
|
|
7
|
+
* @see proto service: cosmos.distribution.v1beta1.SetWithdrawAddress
|
|
8
|
+
*/
|
|
2
9
|
export declare const setWithdrawAddress: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSetWithdrawAddress | MsgSetWithdrawAddress[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
10
|
+
/**
|
|
11
|
+
* WithdrawDelegatorReward defines a method to withdraw rewards of delegator
|
|
12
|
+
* from a single validator.
|
|
13
|
+
* @name withdrawDelegatorReward
|
|
14
|
+
* @package cosmos.distribution.v1beta1
|
|
15
|
+
* @see proto service: cosmos.distribution.v1beta1.WithdrawDelegatorReward
|
|
16
|
+
*/
|
|
3
17
|
export declare const withdrawDelegatorReward: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgWithdrawDelegatorReward | MsgWithdrawDelegatorReward[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* WithdrawValidatorCommission defines a method to withdraw the
|
|
20
|
+
* full commission to the validator address.
|
|
21
|
+
* @name withdrawValidatorCommission
|
|
22
|
+
* @package cosmos.distribution.v1beta1
|
|
23
|
+
* @see proto service: cosmos.distribution.v1beta1.WithdrawValidatorCommission
|
|
24
|
+
*/
|
|
4
25
|
export declare const withdrawValidatorCommission: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgWithdrawValidatorCommission | MsgWithdrawValidatorCommission[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* FundCommunityPool defines a method to allow an account to directly
|
|
28
|
+
* fund the community pool.
|
|
29
|
+
* @name fundCommunityPool
|
|
30
|
+
* @package cosmos.distribution.v1beta1
|
|
31
|
+
* @see proto service: cosmos.distribution.v1beta1.FundCommunityPool
|
|
32
|
+
*/
|
|
5
33
|
export declare const fundCommunityPool: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgFundCommunityPool | MsgFundCommunityPool[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
34
|
+
/**
|
|
35
|
+
* UpdateParams defines a governance operation for updating the x/distribution
|
|
36
|
+
* module parameters. The authority is defined in the keeper.
|
|
37
|
+
*
|
|
38
|
+
* Since: cosmos-sdk 0.47
|
|
39
|
+
* @name updateParams
|
|
40
|
+
* @package cosmos.distribution.v1beta1
|
|
41
|
+
* @see proto service: cosmos.distribution.v1beta1.UpdateParams
|
|
42
|
+
*/
|
|
6
43
|
export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
44
|
+
/**
|
|
45
|
+
* CommunityPoolSpend defines a governance operation for sending tokens from
|
|
46
|
+
* the community pool in the x/distribution module to another account, which
|
|
47
|
+
* could be the governance module itself. The authority is defined in the
|
|
48
|
+
* keeper.
|
|
49
|
+
*
|
|
50
|
+
* Since: cosmos-sdk 0.47
|
|
51
|
+
* @name communityPoolSpend
|
|
52
|
+
* @package cosmos.distribution.v1beta1
|
|
53
|
+
* @see proto service: cosmos.distribution.v1beta1.CommunityPoolSpend
|
|
54
|
+
*/
|
|
7
55
|
export declare const communityPoolSpend: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCommunityPoolSpend | MsgCommunityPoolSpend[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
56
|
+
/**
|
|
57
|
+
* DepositValidatorRewardsPool defines a method to provide additional rewards
|
|
58
|
+
* to delegators to a specific validator.
|
|
59
|
+
*
|
|
60
|
+
* Since: cosmos-sdk 0.50
|
|
61
|
+
* @name depositValidatorRewardsPool
|
|
62
|
+
* @package cosmos.distribution.v1beta1
|
|
63
|
+
* @see proto service: cosmos.distribution.v1beta1.DepositValidatorRewardsPool
|
|
64
|
+
*/
|
|
8
65
|
export declare const depositValidatorRewardsPool: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgDepositValidatorRewardsPool | MsgDepositValidatorRewardsPool[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
@@ -3,46 +3,81 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.depositValidatorRewardsPool = exports.communityPoolSpend = exports.updateParams = exports.fundCommunityPool = exports.withdrawValidatorCommission = exports.withdrawDelegatorReward = exports.setWithdrawAddress = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const tx_1 = require("./tx");
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
/**
|
|
7
|
+
* SetWithdrawAddress defines a method to change the withdraw address
|
|
8
|
+
* for a delegator (or validator self-delegation).
|
|
9
|
+
* @name setWithdrawAddress
|
|
10
|
+
* @package cosmos.distribution.v1beta1
|
|
11
|
+
* @see proto service: cosmos.distribution.v1beta1.SetWithdrawAddress
|
|
12
|
+
*/
|
|
8
13
|
exports.setWithdrawAddress = (0, helper_func_types_1.buildTx)({
|
|
9
14
|
msg: tx_1.MsgSetWithdrawAddress
|
|
10
15
|
});
|
|
11
|
-
|
|
12
|
-
|
|
16
|
+
/**
|
|
17
|
+
* WithdrawDelegatorReward defines a method to withdraw rewards of delegator
|
|
18
|
+
* from a single validator.
|
|
19
|
+
* @name withdrawDelegatorReward
|
|
20
|
+
* @package cosmos.distribution.v1beta1
|
|
21
|
+
* @see proto service: cosmos.distribution.v1beta1.WithdrawDelegatorReward
|
|
22
|
+
*/
|
|
13
23
|
exports.withdrawDelegatorReward = (0, helper_func_types_1.buildTx)({
|
|
14
24
|
msg: tx_1.MsgWithdrawDelegatorReward
|
|
15
25
|
});
|
|
16
|
-
|
|
17
|
-
|
|
26
|
+
/**
|
|
27
|
+
* WithdrawValidatorCommission defines a method to withdraw the
|
|
28
|
+
* full commission to the validator address.
|
|
29
|
+
* @name withdrawValidatorCommission
|
|
30
|
+
* @package cosmos.distribution.v1beta1
|
|
31
|
+
* @see proto service: cosmos.distribution.v1beta1.WithdrawValidatorCommission
|
|
32
|
+
*/
|
|
18
33
|
exports.withdrawValidatorCommission = (0, helper_func_types_1.buildTx)({
|
|
19
34
|
msg: tx_1.MsgWithdrawValidatorCommission
|
|
20
35
|
});
|
|
21
|
-
|
|
22
|
-
|
|
36
|
+
/**
|
|
37
|
+
* FundCommunityPool defines a method to allow an account to directly
|
|
38
|
+
* fund the community pool.
|
|
39
|
+
* @name fundCommunityPool
|
|
40
|
+
* @package cosmos.distribution.v1beta1
|
|
41
|
+
* @see proto service: cosmos.distribution.v1beta1.FundCommunityPool
|
|
42
|
+
*/
|
|
23
43
|
exports.fundCommunityPool = (0, helper_func_types_1.buildTx)({
|
|
24
44
|
msg: tx_1.MsgFundCommunityPool
|
|
25
45
|
});
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
46
|
+
/**
|
|
47
|
+
* UpdateParams defines a governance operation for updating the x/distribution
|
|
48
|
+
* module parameters. The authority is defined in the keeper.
|
|
49
|
+
*
|
|
50
|
+
* Since: cosmos-sdk 0.47
|
|
51
|
+
* @name updateParams
|
|
52
|
+
* @package cosmos.distribution.v1beta1
|
|
53
|
+
* @see proto service: cosmos.distribution.v1beta1.UpdateParams
|
|
54
|
+
*/
|
|
30
55
|
exports.updateParams = (0, helper_func_types_1.buildTx)({
|
|
31
56
|
msg: tx_1.MsgUpdateParams
|
|
32
57
|
});
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
58
|
+
/**
|
|
59
|
+
* CommunityPoolSpend defines a governance operation for sending tokens from
|
|
60
|
+
* the community pool in the x/distribution module to another account, which
|
|
61
|
+
* could be the governance module itself. The authority is defined in the
|
|
62
|
+
* keeper.
|
|
63
|
+
*
|
|
64
|
+
* Since: cosmos-sdk 0.47
|
|
65
|
+
* @name communityPoolSpend
|
|
66
|
+
* @package cosmos.distribution.v1beta1
|
|
67
|
+
* @see proto service: cosmos.distribution.v1beta1.CommunityPoolSpend
|
|
68
|
+
*/
|
|
39
69
|
exports.communityPoolSpend = (0, helper_func_types_1.buildTx)({
|
|
40
70
|
msg: tx_1.MsgCommunityPoolSpend
|
|
41
71
|
});
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
72
|
+
/**
|
|
73
|
+
* DepositValidatorRewardsPool defines a method to provide additional rewards
|
|
74
|
+
* to delegators to a specific validator.
|
|
75
|
+
*
|
|
76
|
+
* Since: cosmos-sdk 0.50
|
|
77
|
+
* @name depositValidatorRewardsPool
|
|
78
|
+
* @package cosmos.distribution.v1beta1
|
|
79
|
+
* @see proto service: cosmos.distribution.v1beta1.DepositValidatorRewardsPool
|
|
80
|
+
*/
|
|
46
81
|
exports.depositValidatorRewardsPool = (0, helper_func_types_1.buildTx)({
|
|
47
82
|
msg: tx_1.MsgDepositValidatorRewardsPool
|
|
48
83
|
});
|
|
@@ -4,13 +4,22 @@ import { DeepPartial } from "../../../helpers";
|
|
|
4
4
|
/**
|
|
5
5
|
* MsgGrantAllowance adds permission for Grantee to spend up to Allowance
|
|
6
6
|
* of fees from the account of Granter.
|
|
7
|
+
* @name MsgGrantAllowance
|
|
8
|
+
* @package cosmos.feegrant.v1beta1
|
|
9
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowance
|
|
7
10
|
*/
|
|
8
11
|
export interface MsgGrantAllowance {
|
|
9
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* granter is the address of the user granting an allowance of their funds.
|
|
14
|
+
*/
|
|
10
15
|
granter: string;
|
|
11
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* grantee is the address of the user being granted an allowance of another user's funds.
|
|
18
|
+
*/
|
|
12
19
|
grantee: string;
|
|
13
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* allowance can be any of basic, periodic, allowed fee allowance.
|
|
22
|
+
*/
|
|
14
23
|
allowance?: Any | undefined;
|
|
15
24
|
}
|
|
16
25
|
export interface MsgGrantAllowanceProtoMsg {
|
|
@@ -18,68 +27,118 @@ export interface MsgGrantAllowanceProtoMsg {
|
|
|
18
27
|
value: Uint8Array;
|
|
19
28
|
}
|
|
20
29
|
export type MsgGrantAllowanceEncoded = Omit<MsgGrantAllowance, "allowance"> & {
|
|
21
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* allowance can be any of basic, periodic, allowed fee allowance.
|
|
32
|
+
*/
|
|
33
|
+
allowance?: AnyProtoMsg | undefined;
|
|
22
34
|
};
|
|
23
35
|
/**
|
|
24
36
|
* MsgGrantAllowance adds permission for Grantee to spend up to Allowance
|
|
25
37
|
* of fees from the account of Granter.
|
|
38
|
+
* @name MsgGrantAllowanceAmino
|
|
39
|
+
* @package cosmos.feegrant.v1beta1
|
|
40
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowance
|
|
26
41
|
*/
|
|
27
42
|
export interface MsgGrantAllowanceAmino {
|
|
28
|
-
/**
|
|
43
|
+
/**
|
|
44
|
+
* granter is the address of the user granting an allowance of their funds.
|
|
45
|
+
*/
|
|
29
46
|
granter: string;
|
|
30
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* grantee is the address of the user being granted an allowance of another user's funds.
|
|
49
|
+
*/
|
|
31
50
|
grantee: string;
|
|
32
|
-
/**
|
|
51
|
+
/**
|
|
52
|
+
* allowance can be any of basic, periodic, allowed fee allowance.
|
|
53
|
+
*/
|
|
33
54
|
allowance?: AnyAmino;
|
|
34
55
|
}
|
|
35
56
|
export interface MsgGrantAllowanceAminoMsg {
|
|
36
57
|
type: "cosmos-sdk/MsgGrantAllowance";
|
|
37
58
|
value: MsgGrantAllowanceAmino;
|
|
38
59
|
}
|
|
39
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type.
|
|
62
|
+
* @name MsgGrantAllowanceResponse
|
|
63
|
+
* @package cosmos.feegrant.v1beta1
|
|
64
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse
|
|
65
|
+
*/
|
|
40
66
|
export interface MsgGrantAllowanceResponse {
|
|
41
67
|
}
|
|
42
68
|
export interface MsgGrantAllowanceResponseProtoMsg {
|
|
43
69
|
typeUrl: "/cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse";
|
|
44
70
|
value: Uint8Array;
|
|
45
71
|
}
|
|
46
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type.
|
|
74
|
+
* @name MsgGrantAllowanceResponseAmino
|
|
75
|
+
* @package cosmos.feegrant.v1beta1
|
|
76
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse
|
|
77
|
+
*/
|
|
47
78
|
export interface MsgGrantAllowanceResponseAmino {
|
|
48
79
|
}
|
|
49
80
|
export interface MsgGrantAllowanceResponseAminoMsg {
|
|
50
81
|
type: "cosmos-sdk/MsgGrantAllowanceResponse";
|
|
51
82
|
value: MsgGrantAllowanceResponseAmino;
|
|
52
83
|
}
|
|
53
|
-
/**
|
|
84
|
+
/**
|
|
85
|
+
* MsgRevokeAllowance removes any existing Allowance from Granter to Grantee.
|
|
86
|
+
* @name MsgRevokeAllowance
|
|
87
|
+
* @package cosmos.feegrant.v1beta1
|
|
88
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowance
|
|
89
|
+
*/
|
|
54
90
|
export interface MsgRevokeAllowance {
|
|
55
|
-
/**
|
|
91
|
+
/**
|
|
92
|
+
* granter is the address of the user granting an allowance of their funds.
|
|
93
|
+
*/
|
|
56
94
|
granter: string;
|
|
57
|
-
/**
|
|
95
|
+
/**
|
|
96
|
+
* grantee is the address of the user being granted an allowance of another user's funds.
|
|
97
|
+
*/
|
|
58
98
|
grantee: string;
|
|
59
99
|
}
|
|
60
100
|
export interface MsgRevokeAllowanceProtoMsg {
|
|
61
101
|
typeUrl: "/cosmos.feegrant.v1beta1.MsgRevokeAllowance";
|
|
62
102
|
value: Uint8Array;
|
|
63
103
|
}
|
|
64
|
-
/**
|
|
104
|
+
/**
|
|
105
|
+
* MsgRevokeAllowance removes any existing Allowance from Granter to Grantee.
|
|
106
|
+
* @name MsgRevokeAllowanceAmino
|
|
107
|
+
* @package cosmos.feegrant.v1beta1
|
|
108
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowance
|
|
109
|
+
*/
|
|
65
110
|
export interface MsgRevokeAllowanceAmino {
|
|
66
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* granter is the address of the user granting an allowance of their funds.
|
|
113
|
+
*/
|
|
67
114
|
granter: string;
|
|
68
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* grantee is the address of the user being granted an allowance of another user's funds.
|
|
117
|
+
*/
|
|
69
118
|
grantee: string;
|
|
70
119
|
}
|
|
71
120
|
export interface MsgRevokeAllowanceAminoMsg {
|
|
72
121
|
type: "cosmos-sdk/MsgRevokeAllowance";
|
|
73
122
|
value: MsgRevokeAllowanceAmino;
|
|
74
123
|
}
|
|
75
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type.
|
|
126
|
+
* @name MsgRevokeAllowanceResponse
|
|
127
|
+
* @package cosmos.feegrant.v1beta1
|
|
128
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse
|
|
129
|
+
*/
|
|
76
130
|
export interface MsgRevokeAllowanceResponse {
|
|
77
131
|
}
|
|
78
132
|
export interface MsgRevokeAllowanceResponseProtoMsg {
|
|
79
133
|
typeUrl: "/cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse";
|
|
80
134
|
value: Uint8Array;
|
|
81
135
|
}
|
|
82
|
-
/**
|
|
136
|
+
/**
|
|
137
|
+
* MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type.
|
|
138
|
+
* @name MsgRevokeAllowanceResponseAmino
|
|
139
|
+
* @package cosmos.feegrant.v1beta1
|
|
140
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse
|
|
141
|
+
*/
|
|
83
142
|
export interface MsgRevokeAllowanceResponseAmino {
|
|
84
143
|
}
|
|
85
144
|
export interface MsgRevokeAllowanceResponseAminoMsg {
|
|
@@ -90,9 +149,14 @@ export interface MsgRevokeAllowanceResponseAminoMsg {
|
|
|
90
149
|
* MsgPruneAllowances prunes expired fee allowances.
|
|
91
150
|
*
|
|
92
151
|
* Since cosmos-sdk 0.50
|
|
152
|
+
* @name MsgPruneAllowances
|
|
153
|
+
* @package cosmos.feegrant.v1beta1
|
|
154
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowances
|
|
93
155
|
*/
|
|
94
156
|
export interface MsgPruneAllowances {
|
|
95
|
-
/**
|
|
157
|
+
/**
|
|
158
|
+
* pruner is the address of the user pruning expired allowances.
|
|
159
|
+
*/
|
|
96
160
|
pruner: string;
|
|
97
161
|
}
|
|
98
162
|
export interface MsgPruneAllowancesProtoMsg {
|
|
@@ -103,9 +167,14 @@ export interface MsgPruneAllowancesProtoMsg {
|
|
|
103
167
|
* MsgPruneAllowances prunes expired fee allowances.
|
|
104
168
|
*
|
|
105
169
|
* Since cosmos-sdk 0.50
|
|
170
|
+
* @name MsgPruneAllowancesAmino
|
|
171
|
+
* @package cosmos.feegrant.v1beta1
|
|
172
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowances
|
|
106
173
|
*/
|
|
107
174
|
export interface MsgPruneAllowancesAmino {
|
|
108
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* pruner is the address of the user pruning expired allowances.
|
|
177
|
+
*/
|
|
109
178
|
pruner: string;
|
|
110
179
|
}
|
|
111
180
|
export interface MsgPruneAllowancesAminoMsg {
|
|
@@ -116,6 +185,9 @@ export interface MsgPruneAllowancesAminoMsg {
|
|
|
116
185
|
* MsgPruneAllowancesResponse defines the Msg/PruneAllowancesResponse response type.
|
|
117
186
|
*
|
|
118
187
|
* Since cosmos-sdk 0.50
|
|
188
|
+
* @name MsgPruneAllowancesResponse
|
|
189
|
+
* @package cosmos.feegrant.v1beta1
|
|
190
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowancesResponse
|
|
119
191
|
*/
|
|
120
192
|
export interface MsgPruneAllowancesResponse {
|
|
121
193
|
}
|
|
@@ -127,6 +199,9 @@ export interface MsgPruneAllowancesResponseProtoMsg {
|
|
|
127
199
|
* MsgPruneAllowancesResponse defines the Msg/PruneAllowancesResponse response type.
|
|
128
200
|
*
|
|
129
201
|
* Since cosmos-sdk 0.50
|
|
202
|
+
* @name MsgPruneAllowancesResponseAmino
|
|
203
|
+
* @package cosmos.feegrant.v1beta1
|
|
204
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowancesResponse
|
|
130
205
|
*/
|
|
131
206
|
export interface MsgPruneAllowancesResponseAmino {
|
|
132
207
|
}
|
|
@@ -134,6 +209,13 @@ export interface MsgPruneAllowancesResponseAminoMsg {
|
|
|
134
209
|
type: "cosmos-sdk/MsgPruneAllowancesResponse";
|
|
135
210
|
value: MsgPruneAllowancesResponseAmino;
|
|
136
211
|
}
|
|
212
|
+
/**
|
|
213
|
+
* MsgGrantAllowance adds permission for Grantee to spend up to Allowance
|
|
214
|
+
* of fees from the account of Granter.
|
|
215
|
+
* @name MsgGrantAllowance
|
|
216
|
+
* @package cosmos.feegrant.v1beta1
|
|
217
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowance
|
|
218
|
+
*/
|
|
137
219
|
export declare const MsgGrantAllowance: {
|
|
138
220
|
typeUrl: string;
|
|
139
221
|
aminoType: string;
|
|
@@ -151,6 +233,12 @@ export declare const MsgGrantAllowance: {
|
|
|
151
233
|
toProtoMsg(message: MsgGrantAllowance): MsgGrantAllowanceProtoMsg;
|
|
152
234
|
registerTypeUrl(): void;
|
|
153
235
|
};
|
|
236
|
+
/**
|
|
237
|
+
* MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type.
|
|
238
|
+
* @name MsgGrantAllowanceResponse
|
|
239
|
+
* @package cosmos.feegrant.v1beta1
|
|
240
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse
|
|
241
|
+
*/
|
|
154
242
|
export declare const MsgGrantAllowanceResponse: {
|
|
155
243
|
typeUrl: string;
|
|
156
244
|
aminoType: string;
|
|
@@ -168,6 +256,12 @@ export declare const MsgGrantAllowanceResponse: {
|
|
|
168
256
|
toProtoMsg(message: MsgGrantAllowanceResponse): MsgGrantAllowanceResponseProtoMsg;
|
|
169
257
|
registerTypeUrl(): void;
|
|
170
258
|
};
|
|
259
|
+
/**
|
|
260
|
+
* MsgRevokeAllowance removes any existing Allowance from Granter to Grantee.
|
|
261
|
+
* @name MsgRevokeAllowance
|
|
262
|
+
* @package cosmos.feegrant.v1beta1
|
|
263
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowance
|
|
264
|
+
*/
|
|
171
265
|
export declare const MsgRevokeAllowance: {
|
|
172
266
|
typeUrl: string;
|
|
173
267
|
aminoType: string;
|
|
@@ -185,6 +279,12 @@ export declare const MsgRevokeAllowance: {
|
|
|
185
279
|
toProtoMsg(message: MsgRevokeAllowance): MsgRevokeAllowanceProtoMsg;
|
|
186
280
|
registerTypeUrl(): void;
|
|
187
281
|
};
|
|
282
|
+
/**
|
|
283
|
+
* MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type.
|
|
284
|
+
* @name MsgRevokeAllowanceResponse
|
|
285
|
+
* @package cosmos.feegrant.v1beta1
|
|
286
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse
|
|
287
|
+
*/
|
|
188
288
|
export declare const MsgRevokeAllowanceResponse: {
|
|
189
289
|
typeUrl: string;
|
|
190
290
|
aminoType: string;
|
|
@@ -202,6 +302,14 @@ export declare const MsgRevokeAllowanceResponse: {
|
|
|
202
302
|
toProtoMsg(message: MsgRevokeAllowanceResponse): MsgRevokeAllowanceResponseProtoMsg;
|
|
203
303
|
registerTypeUrl(): void;
|
|
204
304
|
};
|
|
305
|
+
/**
|
|
306
|
+
* MsgPruneAllowances prunes expired fee allowances.
|
|
307
|
+
*
|
|
308
|
+
* Since cosmos-sdk 0.50
|
|
309
|
+
* @name MsgPruneAllowances
|
|
310
|
+
* @package cosmos.feegrant.v1beta1
|
|
311
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowances
|
|
312
|
+
*/
|
|
205
313
|
export declare const MsgPruneAllowances: {
|
|
206
314
|
typeUrl: string;
|
|
207
315
|
aminoType: string;
|
|
@@ -219,6 +327,14 @@ export declare const MsgPruneAllowances: {
|
|
|
219
327
|
toProtoMsg(message: MsgPruneAllowances): MsgPruneAllowancesProtoMsg;
|
|
220
328
|
registerTypeUrl(): void;
|
|
221
329
|
};
|
|
330
|
+
/**
|
|
331
|
+
* MsgPruneAllowancesResponse defines the Msg/PruneAllowancesResponse response type.
|
|
332
|
+
*
|
|
333
|
+
* Since cosmos-sdk 0.50
|
|
334
|
+
* @name MsgPruneAllowancesResponse
|
|
335
|
+
* @package cosmos.feegrant.v1beta1
|
|
336
|
+
* @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowancesResponse
|
|
337
|
+
*/
|
|
222
338
|
export declare const MsgPruneAllowancesResponse: {
|
|
223
339
|
typeUrl: string;
|
|
224
340
|
aminoType: string;
|