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
|
@@ -5,12 +5,17 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
/**
|
|
6
6
|
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
7
7
|
* account.
|
|
8
|
+
* @name MsgCreateVestingAccount
|
|
9
|
+
* @package cosmos.vesting.v1beta1
|
|
10
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
|
|
8
11
|
*/
|
|
9
12
|
export interface MsgCreateVestingAccount {
|
|
10
13
|
fromAddress: string;
|
|
11
14
|
toAddress: string;
|
|
12
15
|
amount: Coin[];
|
|
13
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* end of vesting as unix time (in seconds).
|
|
18
|
+
*/
|
|
14
19
|
endTime: bigint;
|
|
15
20
|
delayed: boolean;
|
|
16
21
|
}
|
|
@@ -21,12 +26,17 @@ export interface MsgCreateVestingAccountProtoMsg {
|
|
|
21
26
|
/**
|
|
22
27
|
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
23
28
|
* account.
|
|
29
|
+
* @name MsgCreateVestingAccountAmino
|
|
30
|
+
* @package cosmos.vesting.v1beta1
|
|
31
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
|
|
24
32
|
*/
|
|
25
33
|
export interface MsgCreateVestingAccountAmino {
|
|
26
34
|
from_address: string;
|
|
27
35
|
to_address: string;
|
|
28
36
|
amount: CoinAmino[];
|
|
29
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* end of vesting as unix time (in seconds).
|
|
39
|
+
*/
|
|
30
40
|
end_time: string;
|
|
31
41
|
delayed: boolean;
|
|
32
42
|
}
|
|
@@ -34,14 +44,24 @@ export interface MsgCreateVestingAccountAminoMsg {
|
|
|
34
44
|
type: "cosmos-sdk/MsgCreateVestingAccount";
|
|
35
45
|
value: MsgCreateVestingAccountAmino;
|
|
36
46
|
}
|
|
37
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
|
|
49
|
+
* @name MsgCreateVestingAccountResponse
|
|
50
|
+
* @package cosmos.vesting.v1beta1
|
|
51
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
|
|
52
|
+
*/
|
|
38
53
|
export interface MsgCreateVestingAccountResponse {
|
|
39
54
|
}
|
|
40
55
|
export interface MsgCreateVestingAccountResponseProtoMsg {
|
|
41
56
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse";
|
|
42
57
|
value: Uint8Array;
|
|
43
58
|
}
|
|
44
|
-
/**
|
|
59
|
+
/**
|
|
60
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
|
|
61
|
+
* @name MsgCreateVestingAccountResponseAmino
|
|
62
|
+
* @package cosmos.vesting.v1beta1
|
|
63
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
|
|
64
|
+
*/
|
|
45
65
|
export interface MsgCreateVestingAccountResponseAmino {
|
|
46
66
|
}
|
|
47
67
|
export interface MsgCreateVestingAccountResponseAminoMsg {
|
|
@@ -53,6 +73,9 @@ export interface MsgCreateVestingAccountResponseAminoMsg {
|
|
|
53
73
|
* locked account.
|
|
54
74
|
*
|
|
55
75
|
* Since: cosmos-sdk 0.46
|
|
76
|
+
* @name MsgCreatePermanentLockedAccount
|
|
77
|
+
* @package cosmos.vesting.v1beta1
|
|
78
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
|
|
56
79
|
*/
|
|
57
80
|
export interface MsgCreatePermanentLockedAccount {
|
|
58
81
|
fromAddress: string;
|
|
@@ -68,6 +91,9 @@ export interface MsgCreatePermanentLockedAccountProtoMsg {
|
|
|
68
91
|
* locked account.
|
|
69
92
|
*
|
|
70
93
|
* Since: cosmos-sdk 0.46
|
|
94
|
+
* @name MsgCreatePermanentLockedAccountAmino
|
|
95
|
+
* @package cosmos.vesting.v1beta1
|
|
96
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
|
|
71
97
|
*/
|
|
72
98
|
export interface MsgCreatePermanentLockedAccountAmino {
|
|
73
99
|
from_address: string;
|
|
@@ -82,6 +108,9 @@ export interface MsgCreatePermanentLockedAccountAminoMsg {
|
|
|
82
108
|
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
83
109
|
*
|
|
84
110
|
* Since: cosmos-sdk 0.46
|
|
111
|
+
* @name MsgCreatePermanentLockedAccountResponse
|
|
112
|
+
* @package cosmos.vesting.v1beta1
|
|
113
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
|
|
85
114
|
*/
|
|
86
115
|
export interface MsgCreatePermanentLockedAccountResponse {
|
|
87
116
|
}
|
|
@@ -93,6 +122,9 @@ export interface MsgCreatePermanentLockedAccountResponseProtoMsg {
|
|
|
93
122
|
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
94
123
|
*
|
|
95
124
|
* Since: cosmos-sdk 0.46
|
|
125
|
+
* @name MsgCreatePermanentLockedAccountResponseAmino
|
|
126
|
+
* @package cosmos.vesting.v1beta1
|
|
127
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
|
|
96
128
|
*/
|
|
97
129
|
export interface MsgCreatePermanentLockedAccountResponseAmino {
|
|
98
130
|
}
|
|
@@ -105,11 +137,16 @@ export interface MsgCreatePermanentLockedAccountResponseAminoMsg {
|
|
|
105
137
|
* account.
|
|
106
138
|
*
|
|
107
139
|
* Since: cosmos-sdk 0.46
|
|
140
|
+
* @name MsgCreatePeriodicVestingAccount
|
|
141
|
+
* @package cosmos.vesting.v1beta1
|
|
142
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
|
|
108
143
|
*/
|
|
109
144
|
export interface MsgCreatePeriodicVestingAccount {
|
|
110
145
|
fromAddress: string;
|
|
111
146
|
toAddress: string;
|
|
112
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* start of vesting as unix time (in seconds).
|
|
149
|
+
*/
|
|
113
150
|
startTime: bigint;
|
|
114
151
|
vestingPeriods: Period[];
|
|
115
152
|
}
|
|
@@ -122,11 +159,16 @@ export interface MsgCreatePeriodicVestingAccountProtoMsg {
|
|
|
122
159
|
* account.
|
|
123
160
|
*
|
|
124
161
|
* Since: cosmos-sdk 0.46
|
|
162
|
+
* @name MsgCreatePeriodicVestingAccountAmino
|
|
163
|
+
* @package cosmos.vesting.v1beta1
|
|
164
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
|
|
125
165
|
*/
|
|
126
166
|
export interface MsgCreatePeriodicVestingAccountAmino {
|
|
127
167
|
from_address: string;
|
|
128
168
|
to_address: string;
|
|
129
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* start of vesting as unix time (in seconds).
|
|
171
|
+
*/
|
|
130
172
|
start_time: string;
|
|
131
173
|
vesting_periods: PeriodAmino[];
|
|
132
174
|
}
|
|
@@ -139,6 +181,9 @@ export interface MsgCreatePeriodicVestingAccountAminoMsg {
|
|
|
139
181
|
* response type.
|
|
140
182
|
*
|
|
141
183
|
* Since: cosmos-sdk 0.46
|
|
184
|
+
* @name MsgCreatePeriodicVestingAccountResponse
|
|
185
|
+
* @package cosmos.vesting.v1beta1
|
|
186
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
|
|
142
187
|
*/
|
|
143
188
|
export interface MsgCreatePeriodicVestingAccountResponse {
|
|
144
189
|
}
|
|
@@ -151,6 +196,9 @@ export interface MsgCreatePeriodicVestingAccountResponseProtoMsg {
|
|
|
151
196
|
* response type.
|
|
152
197
|
*
|
|
153
198
|
* Since: cosmos-sdk 0.46
|
|
199
|
+
* @name MsgCreatePeriodicVestingAccountResponseAmino
|
|
200
|
+
* @package cosmos.vesting.v1beta1
|
|
201
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
|
|
154
202
|
*/
|
|
155
203
|
export interface MsgCreatePeriodicVestingAccountResponseAmino {
|
|
156
204
|
}
|
|
@@ -158,6 +206,13 @@ export interface MsgCreatePeriodicVestingAccountResponseAminoMsg {
|
|
|
158
206
|
type: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse";
|
|
159
207
|
value: MsgCreatePeriodicVestingAccountResponseAmino;
|
|
160
208
|
}
|
|
209
|
+
/**
|
|
210
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
211
|
+
* account.
|
|
212
|
+
* @name MsgCreateVestingAccount
|
|
213
|
+
* @package cosmos.vesting.v1beta1
|
|
214
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
|
|
215
|
+
*/
|
|
161
216
|
export declare const MsgCreateVestingAccount: {
|
|
162
217
|
typeUrl: string;
|
|
163
218
|
aminoType: string;
|
|
@@ -175,6 +230,12 @@ export declare const MsgCreateVestingAccount: {
|
|
|
175
230
|
toProtoMsg(message: MsgCreateVestingAccount): MsgCreateVestingAccountProtoMsg;
|
|
176
231
|
registerTypeUrl(): void;
|
|
177
232
|
};
|
|
233
|
+
/**
|
|
234
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
|
|
235
|
+
* @name MsgCreateVestingAccountResponse
|
|
236
|
+
* @package cosmos.vesting.v1beta1
|
|
237
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
|
|
238
|
+
*/
|
|
178
239
|
export declare const MsgCreateVestingAccountResponse: {
|
|
179
240
|
typeUrl: string;
|
|
180
241
|
aminoType: string;
|
|
@@ -192,6 +253,15 @@ export declare const MsgCreateVestingAccountResponse: {
|
|
|
192
253
|
toProtoMsg(message: MsgCreateVestingAccountResponse): MsgCreateVestingAccountResponseProtoMsg;
|
|
193
254
|
registerTypeUrl(): void;
|
|
194
255
|
};
|
|
256
|
+
/**
|
|
257
|
+
* MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
|
|
258
|
+
* locked account.
|
|
259
|
+
*
|
|
260
|
+
* Since: cosmos-sdk 0.46
|
|
261
|
+
* @name MsgCreatePermanentLockedAccount
|
|
262
|
+
* @package cosmos.vesting.v1beta1
|
|
263
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
|
|
264
|
+
*/
|
|
195
265
|
export declare const MsgCreatePermanentLockedAccount: {
|
|
196
266
|
typeUrl: string;
|
|
197
267
|
aminoType: string;
|
|
@@ -209,6 +279,14 @@ export declare const MsgCreatePermanentLockedAccount: {
|
|
|
209
279
|
toProtoMsg(message: MsgCreatePermanentLockedAccount): MsgCreatePermanentLockedAccountProtoMsg;
|
|
210
280
|
registerTypeUrl(): void;
|
|
211
281
|
};
|
|
282
|
+
/**
|
|
283
|
+
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
284
|
+
*
|
|
285
|
+
* Since: cosmos-sdk 0.46
|
|
286
|
+
* @name MsgCreatePermanentLockedAccountResponse
|
|
287
|
+
* @package cosmos.vesting.v1beta1
|
|
288
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
|
|
289
|
+
*/
|
|
212
290
|
export declare const MsgCreatePermanentLockedAccountResponse: {
|
|
213
291
|
typeUrl: string;
|
|
214
292
|
aminoType: string;
|
|
@@ -226,6 +304,15 @@ export declare const MsgCreatePermanentLockedAccountResponse: {
|
|
|
226
304
|
toProtoMsg(message: MsgCreatePermanentLockedAccountResponse): MsgCreatePermanentLockedAccountResponseProtoMsg;
|
|
227
305
|
registerTypeUrl(): void;
|
|
228
306
|
};
|
|
307
|
+
/**
|
|
308
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
309
|
+
* account.
|
|
310
|
+
*
|
|
311
|
+
* Since: cosmos-sdk 0.46
|
|
312
|
+
* @name MsgCreatePeriodicVestingAccount
|
|
313
|
+
* @package cosmos.vesting.v1beta1
|
|
314
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
|
|
315
|
+
*/
|
|
229
316
|
export declare const MsgCreatePeriodicVestingAccount: {
|
|
230
317
|
typeUrl: string;
|
|
231
318
|
aminoType: string;
|
|
@@ -243,6 +330,15 @@ export declare const MsgCreatePeriodicVestingAccount: {
|
|
|
243
330
|
toProtoMsg(message: MsgCreatePeriodicVestingAccount): MsgCreatePeriodicVestingAccountProtoMsg;
|
|
244
331
|
registerTypeUrl(): void;
|
|
245
332
|
};
|
|
333
|
+
/**
|
|
334
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
|
|
335
|
+
* response type.
|
|
336
|
+
*
|
|
337
|
+
* Since: cosmos-sdk 0.46
|
|
338
|
+
* @name MsgCreatePeriodicVestingAccountResponse
|
|
339
|
+
* @package cosmos.vesting.v1beta1
|
|
340
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
|
|
341
|
+
*/
|
|
246
342
|
export declare const MsgCreatePeriodicVestingAccountResponse: {
|
|
247
343
|
typeUrl: string;
|
|
248
344
|
aminoType: string;
|
|
@@ -14,6 +14,13 @@ function createBaseMsgCreateVestingAccount() {
|
|
|
14
14
|
delayed: false
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
19
|
+
* account.
|
|
20
|
+
* @name MsgCreateVestingAccount
|
|
21
|
+
* @package cosmos.vesting.v1beta1
|
|
22
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
|
|
23
|
+
*/
|
|
17
24
|
exports.MsgCreateVestingAccount = {
|
|
18
25
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccount",
|
|
19
26
|
aminoType: "cosmos-sdk/MsgCreateVestingAccount",
|
|
@@ -141,6 +148,12 @@ exports.MsgCreateVestingAccount = {
|
|
|
141
148
|
function createBaseMsgCreateVestingAccountResponse() {
|
|
142
149
|
return {};
|
|
143
150
|
}
|
|
151
|
+
/**
|
|
152
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
|
|
153
|
+
* @name MsgCreateVestingAccountResponse
|
|
154
|
+
* @package cosmos.vesting.v1beta1
|
|
155
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
|
|
156
|
+
*/
|
|
144
157
|
exports.MsgCreateVestingAccountResponse = {
|
|
145
158
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse",
|
|
146
159
|
aminoType: "cosmos-sdk/MsgCreateVestingAccountResponse",
|
|
@@ -209,6 +222,15 @@ function createBaseMsgCreatePermanentLockedAccount() {
|
|
|
209
222
|
amount: []
|
|
210
223
|
};
|
|
211
224
|
}
|
|
225
|
+
/**
|
|
226
|
+
* MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
|
|
227
|
+
* locked account.
|
|
228
|
+
*
|
|
229
|
+
* Since: cosmos-sdk 0.46
|
|
230
|
+
* @name MsgCreatePermanentLockedAccount
|
|
231
|
+
* @package cosmos.vesting.v1beta1
|
|
232
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
|
|
233
|
+
*/
|
|
212
234
|
exports.MsgCreatePermanentLockedAccount = {
|
|
213
235
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount",
|
|
214
236
|
aminoType: "cosmos-sdk/MsgCreatePermLockedAccount",
|
|
@@ -314,6 +336,14 @@ exports.MsgCreatePermanentLockedAccount = {
|
|
|
314
336
|
function createBaseMsgCreatePermanentLockedAccountResponse() {
|
|
315
337
|
return {};
|
|
316
338
|
}
|
|
339
|
+
/**
|
|
340
|
+
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
341
|
+
*
|
|
342
|
+
* Since: cosmos-sdk 0.46
|
|
343
|
+
* @name MsgCreatePermanentLockedAccountResponse
|
|
344
|
+
* @package cosmos.vesting.v1beta1
|
|
345
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
|
|
346
|
+
*/
|
|
317
347
|
exports.MsgCreatePermanentLockedAccountResponse = {
|
|
318
348
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse",
|
|
319
349
|
aminoType: "cosmos-sdk/MsgCreatePermanentLockedAccountResponse",
|
|
@@ -383,6 +413,15 @@ function createBaseMsgCreatePeriodicVestingAccount() {
|
|
|
383
413
|
vestingPeriods: []
|
|
384
414
|
};
|
|
385
415
|
}
|
|
416
|
+
/**
|
|
417
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
418
|
+
* account.
|
|
419
|
+
*
|
|
420
|
+
* Since: cosmos-sdk 0.46
|
|
421
|
+
* @name MsgCreatePeriodicVestingAccount
|
|
422
|
+
* @package cosmos.vesting.v1beta1
|
|
423
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
|
|
424
|
+
*/
|
|
386
425
|
exports.MsgCreatePeriodicVestingAccount = {
|
|
387
426
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount",
|
|
388
427
|
aminoType: "cosmos-sdk/MsgCreatePeriodVestAccount",
|
|
@@ -499,6 +538,15 @@ exports.MsgCreatePeriodicVestingAccount = {
|
|
|
499
538
|
function createBaseMsgCreatePeriodicVestingAccountResponse() {
|
|
500
539
|
return {};
|
|
501
540
|
}
|
|
541
|
+
/**
|
|
542
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
|
|
543
|
+
* response type.
|
|
544
|
+
*
|
|
545
|
+
* Since: cosmos-sdk 0.46
|
|
546
|
+
* @name MsgCreatePeriodicVestingAccountResponse
|
|
547
|
+
* @package cosmos.vesting.v1beta1
|
|
548
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
|
|
549
|
+
*/
|
|
502
550
|
exports.MsgCreatePeriodicVestingAccountResponse = {
|
|
503
551
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse",
|
|
504
552
|
aminoType: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse",
|
|
@@ -1,4 +1,29 @@
|
|
|
1
1
|
import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeriodicVestingAccount } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* CreateVestingAccount defines a method that enables creating a vesting
|
|
4
|
+
* account.
|
|
5
|
+
* @name createVestingAccount
|
|
6
|
+
* @package cosmos.vesting.v1beta1
|
|
7
|
+
* @see proto service: cosmos.vesting.v1beta1.CreateVestingAccount
|
|
8
|
+
*/
|
|
2
9
|
export declare const createVestingAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateVestingAccount | MsgCreateVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
10
|
+
/**
|
|
11
|
+
* CreatePermanentLockedAccount defines a method that enables creating a permanent
|
|
12
|
+
* locked account.
|
|
13
|
+
*
|
|
14
|
+
* Since: cosmos-sdk 0.46
|
|
15
|
+
* @name createPermanentLockedAccount
|
|
16
|
+
* @package cosmos.vesting.v1beta1
|
|
17
|
+
* @see proto service: cosmos.vesting.v1beta1.CreatePermanentLockedAccount
|
|
18
|
+
*/
|
|
3
19
|
export declare const createPermanentLockedAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreatePermanentLockedAccount | MsgCreatePermanentLockedAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
20
|
+
/**
|
|
21
|
+
* CreatePeriodicVestingAccount defines a method that enables creating a
|
|
22
|
+
* periodic vesting account.
|
|
23
|
+
*
|
|
24
|
+
* Since: cosmos-sdk 0.46
|
|
25
|
+
* @name createPeriodicVestingAccount
|
|
26
|
+
* @package cosmos.vesting.v1beta1
|
|
27
|
+
* @see proto service: cosmos.vesting.v1beta1.CreatePeriodicVestingAccount
|
|
28
|
+
*/
|
|
4
29
|
export declare const createPeriodicVestingAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreatePeriodicVestingAccount | MsgCreatePeriodicVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
@@ -3,22 +3,37 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.createPeriodicVestingAccount = exports.createPermanentLockedAccount = exports.createVestingAccount = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const tx_1 = require("./tx");
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
/**
|
|
7
|
+
* CreateVestingAccount defines a method that enables creating a vesting
|
|
8
|
+
* account.
|
|
9
|
+
* @name createVestingAccount
|
|
10
|
+
* @package cosmos.vesting.v1beta1
|
|
11
|
+
* @see proto service: cosmos.vesting.v1beta1.CreateVestingAccount
|
|
12
|
+
*/
|
|
8
13
|
exports.createVestingAccount = (0, helper_func_types_1.buildTx)({
|
|
9
14
|
msg: tx_1.MsgCreateVestingAccount
|
|
10
15
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
16
|
+
/**
|
|
17
|
+
* CreatePermanentLockedAccount defines a method that enables creating a permanent
|
|
18
|
+
* locked account.
|
|
19
|
+
*
|
|
20
|
+
* Since: cosmos-sdk 0.46
|
|
21
|
+
* @name createPermanentLockedAccount
|
|
22
|
+
* @package cosmos.vesting.v1beta1
|
|
23
|
+
* @see proto service: cosmos.vesting.v1beta1.CreatePermanentLockedAccount
|
|
24
|
+
*/
|
|
15
25
|
exports.createPermanentLockedAccount = (0, helper_func_types_1.buildTx)({
|
|
16
26
|
msg: tx_1.MsgCreatePermanentLockedAccount
|
|
17
27
|
});
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
28
|
+
/**
|
|
29
|
+
* CreatePeriodicVestingAccount defines a method that enables creating a
|
|
30
|
+
* periodic vesting account.
|
|
31
|
+
*
|
|
32
|
+
* Since: cosmos-sdk 0.46
|
|
33
|
+
* @name createPeriodicVestingAccount
|
|
34
|
+
* @package cosmos.vesting.v1beta1
|
|
35
|
+
* @see proto service: cosmos.vesting.v1beta1.CreatePeriodicVestingAccount
|
|
36
|
+
*/
|
|
22
37
|
exports.createPeriodicVestingAccount = (0, helper_func_types_1.buildTx)({
|
|
23
38
|
msg: tx_1.MsgCreatePeriodicVestingAccount
|
|
24
39
|
});
|
|
@@ -5,13 +5,18 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
/**
|
|
6
6
|
* BaseVestingAccount implements the VestingAccount interface. It contains all
|
|
7
7
|
* the necessary fields needed for any vesting account implementation.
|
|
8
|
+
* @name BaseVestingAccount
|
|
9
|
+
* @package cosmos.vesting.v1beta1
|
|
10
|
+
* @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
|
|
8
11
|
*/
|
|
9
12
|
export interface BaseVestingAccount {
|
|
10
13
|
baseAccount?: BaseAccount;
|
|
11
14
|
originalVesting: Coin[];
|
|
12
15
|
delegatedFree: Coin[];
|
|
13
16
|
delegatedVesting: Coin[];
|
|
14
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* Vesting end time, as unix timestamp (in seconds).
|
|
19
|
+
*/
|
|
15
20
|
endTime: bigint;
|
|
16
21
|
}
|
|
17
22
|
export interface BaseVestingAccountProtoMsg {
|
|
@@ -21,13 +26,18 @@ export interface BaseVestingAccountProtoMsg {
|
|
|
21
26
|
/**
|
|
22
27
|
* BaseVestingAccount implements the VestingAccount interface. It contains all
|
|
23
28
|
* the necessary fields needed for any vesting account implementation.
|
|
29
|
+
* @name BaseVestingAccountAmino
|
|
30
|
+
* @package cosmos.vesting.v1beta1
|
|
31
|
+
* @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
|
|
24
32
|
*/
|
|
25
33
|
export interface BaseVestingAccountAmino {
|
|
26
34
|
base_account?: BaseAccountAmino;
|
|
27
35
|
original_vesting: CoinAmino[];
|
|
28
36
|
delegated_free: CoinAmino[];
|
|
29
37
|
delegated_vesting: CoinAmino[];
|
|
30
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* Vesting end time, as unix timestamp (in seconds).
|
|
40
|
+
*/
|
|
31
41
|
end_time: string;
|
|
32
42
|
}
|
|
33
43
|
export interface BaseVestingAccountAminoMsg {
|
|
@@ -37,10 +47,15 @@ export interface BaseVestingAccountAminoMsg {
|
|
|
37
47
|
/**
|
|
38
48
|
* ContinuousVestingAccount implements the VestingAccount interface. It
|
|
39
49
|
* continuously vests by unlocking coins linearly with respect to time.
|
|
50
|
+
* @name ContinuousVestingAccount
|
|
51
|
+
* @package cosmos.vesting.v1beta1
|
|
52
|
+
* @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
|
|
40
53
|
*/
|
|
41
54
|
export interface ContinuousVestingAccount {
|
|
42
55
|
baseVestingAccount?: BaseVestingAccount;
|
|
43
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* Vesting start time, as unix timestamp (in seconds).
|
|
58
|
+
*/
|
|
44
59
|
startTime: bigint;
|
|
45
60
|
}
|
|
46
61
|
export interface ContinuousVestingAccountProtoMsg {
|
|
@@ -50,10 +65,15 @@ export interface ContinuousVestingAccountProtoMsg {
|
|
|
50
65
|
/**
|
|
51
66
|
* ContinuousVestingAccount implements the VestingAccount interface. It
|
|
52
67
|
* continuously vests by unlocking coins linearly with respect to time.
|
|
68
|
+
* @name ContinuousVestingAccountAmino
|
|
69
|
+
* @package cosmos.vesting.v1beta1
|
|
70
|
+
* @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
|
|
53
71
|
*/
|
|
54
72
|
export interface ContinuousVestingAccountAmino {
|
|
55
73
|
base_vesting_account?: BaseVestingAccountAmino;
|
|
56
|
-
/**
|
|
74
|
+
/**
|
|
75
|
+
* Vesting start time, as unix timestamp (in seconds).
|
|
76
|
+
*/
|
|
57
77
|
start_time: string;
|
|
58
78
|
}
|
|
59
79
|
export interface ContinuousVestingAccountAminoMsg {
|
|
@@ -64,6 +84,9 @@ export interface ContinuousVestingAccountAminoMsg {
|
|
|
64
84
|
* DelayedVestingAccount implements the VestingAccount interface. It vests all
|
|
65
85
|
* coins after a specific time, but non prior. In other words, it keeps them
|
|
66
86
|
* locked until a specified time.
|
|
87
|
+
* @name DelayedVestingAccount
|
|
88
|
+
* @package cosmos.vesting.v1beta1
|
|
89
|
+
* @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
|
|
67
90
|
*/
|
|
68
91
|
export interface DelayedVestingAccount {
|
|
69
92
|
baseVestingAccount?: BaseVestingAccount;
|
|
@@ -76,6 +99,9 @@ export interface DelayedVestingAccountProtoMsg {
|
|
|
76
99
|
* DelayedVestingAccount implements the VestingAccount interface. It vests all
|
|
77
100
|
* coins after a specific time, but non prior. In other words, it keeps them
|
|
78
101
|
* locked until a specified time.
|
|
102
|
+
* @name DelayedVestingAccountAmino
|
|
103
|
+
* @package cosmos.vesting.v1beta1
|
|
104
|
+
* @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
|
|
79
105
|
*/
|
|
80
106
|
export interface DelayedVestingAccountAmino {
|
|
81
107
|
base_vesting_account?: BaseVestingAccountAmino;
|
|
@@ -84,9 +110,16 @@ export interface DelayedVestingAccountAminoMsg {
|
|
|
84
110
|
type: "cosmos-sdk/DelayedVestingAccount";
|
|
85
111
|
value: DelayedVestingAccountAmino;
|
|
86
112
|
}
|
|
87
|
-
/**
|
|
113
|
+
/**
|
|
114
|
+
* Period defines a length of time and amount of coins that will vest.
|
|
115
|
+
* @name Period
|
|
116
|
+
* @package cosmos.vesting.v1beta1
|
|
117
|
+
* @see proto type: cosmos.vesting.v1beta1.Period
|
|
118
|
+
*/
|
|
88
119
|
export interface Period {
|
|
89
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* Period duration in seconds.
|
|
122
|
+
*/
|
|
90
123
|
length: bigint;
|
|
91
124
|
amount: Coin[];
|
|
92
125
|
}
|
|
@@ -94,9 +127,16 @@ export interface PeriodProtoMsg {
|
|
|
94
127
|
typeUrl: "/cosmos.vesting.v1beta1.Period";
|
|
95
128
|
value: Uint8Array;
|
|
96
129
|
}
|
|
97
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* Period defines a length of time and amount of coins that will vest.
|
|
132
|
+
* @name PeriodAmino
|
|
133
|
+
* @package cosmos.vesting.v1beta1
|
|
134
|
+
* @see proto type: cosmos.vesting.v1beta1.Period
|
|
135
|
+
*/
|
|
98
136
|
export interface PeriodAmino {
|
|
99
|
-
/**
|
|
137
|
+
/**
|
|
138
|
+
* Period duration in seconds.
|
|
139
|
+
*/
|
|
100
140
|
length: string;
|
|
101
141
|
amount: CoinAmino[];
|
|
102
142
|
}
|
|
@@ -107,6 +147,9 @@ export interface PeriodAminoMsg {
|
|
|
107
147
|
/**
|
|
108
148
|
* PeriodicVestingAccount implements the VestingAccount interface. It
|
|
109
149
|
* periodically vests by unlocking coins during each specified period.
|
|
150
|
+
* @name PeriodicVestingAccount
|
|
151
|
+
* @package cosmos.vesting.v1beta1
|
|
152
|
+
* @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
|
|
110
153
|
*/
|
|
111
154
|
export interface PeriodicVestingAccount {
|
|
112
155
|
baseVestingAccount?: BaseVestingAccount;
|
|
@@ -120,6 +163,9 @@ export interface PeriodicVestingAccountProtoMsg {
|
|
|
120
163
|
/**
|
|
121
164
|
* PeriodicVestingAccount implements the VestingAccount interface. It
|
|
122
165
|
* periodically vests by unlocking coins during each specified period.
|
|
166
|
+
* @name PeriodicVestingAccountAmino
|
|
167
|
+
* @package cosmos.vesting.v1beta1
|
|
168
|
+
* @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
|
|
123
169
|
*/
|
|
124
170
|
export interface PeriodicVestingAccountAmino {
|
|
125
171
|
base_vesting_account?: BaseVestingAccountAmino;
|
|
@@ -136,6 +182,9 @@ export interface PeriodicVestingAccountAminoMsg {
|
|
|
136
182
|
* still be used for delegating and for governance votes even while locked.
|
|
137
183
|
*
|
|
138
184
|
* Since: cosmos-sdk 0.43
|
|
185
|
+
* @name PermanentLockedAccount
|
|
186
|
+
* @package cosmos.vesting.v1beta1
|
|
187
|
+
* @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
|
|
139
188
|
*/
|
|
140
189
|
export interface PermanentLockedAccount {
|
|
141
190
|
baseVestingAccount?: BaseVestingAccount;
|
|
@@ -150,6 +199,9 @@ export interface PermanentLockedAccountProtoMsg {
|
|
|
150
199
|
* still be used for delegating and for governance votes even while locked.
|
|
151
200
|
*
|
|
152
201
|
* Since: cosmos-sdk 0.43
|
|
202
|
+
* @name PermanentLockedAccountAmino
|
|
203
|
+
* @package cosmos.vesting.v1beta1
|
|
204
|
+
* @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
|
|
153
205
|
*/
|
|
154
206
|
export interface PermanentLockedAccountAmino {
|
|
155
207
|
base_vesting_account?: BaseVestingAccountAmino;
|
|
@@ -158,6 +210,13 @@ export interface PermanentLockedAccountAminoMsg {
|
|
|
158
210
|
type: "cosmos-sdk/PermanentLockedAccount";
|
|
159
211
|
value: PermanentLockedAccountAmino;
|
|
160
212
|
}
|
|
213
|
+
/**
|
|
214
|
+
* BaseVestingAccount implements the VestingAccount interface. It contains all
|
|
215
|
+
* the necessary fields needed for any vesting account implementation.
|
|
216
|
+
* @name BaseVestingAccount
|
|
217
|
+
* @package cosmos.vesting.v1beta1
|
|
218
|
+
* @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
|
|
219
|
+
*/
|
|
161
220
|
export declare const BaseVestingAccount: {
|
|
162
221
|
typeUrl: string;
|
|
163
222
|
aminoType: string;
|
|
@@ -175,6 +234,13 @@ export declare const BaseVestingAccount: {
|
|
|
175
234
|
toProtoMsg(message: BaseVestingAccount): BaseVestingAccountProtoMsg;
|
|
176
235
|
registerTypeUrl(): void;
|
|
177
236
|
};
|
|
237
|
+
/**
|
|
238
|
+
* ContinuousVestingAccount implements the VestingAccount interface. It
|
|
239
|
+
* continuously vests by unlocking coins linearly with respect to time.
|
|
240
|
+
* @name ContinuousVestingAccount
|
|
241
|
+
* @package cosmos.vesting.v1beta1
|
|
242
|
+
* @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
|
|
243
|
+
*/
|
|
178
244
|
export declare const ContinuousVestingAccount: {
|
|
179
245
|
typeUrl: string;
|
|
180
246
|
aminoType: string;
|
|
@@ -192,6 +258,14 @@ export declare const ContinuousVestingAccount: {
|
|
|
192
258
|
toProtoMsg(message: ContinuousVestingAccount): ContinuousVestingAccountProtoMsg;
|
|
193
259
|
registerTypeUrl(): void;
|
|
194
260
|
};
|
|
261
|
+
/**
|
|
262
|
+
* DelayedVestingAccount implements the VestingAccount interface. It vests all
|
|
263
|
+
* coins after a specific time, but non prior. In other words, it keeps them
|
|
264
|
+
* locked until a specified time.
|
|
265
|
+
* @name DelayedVestingAccount
|
|
266
|
+
* @package cosmos.vesting.v1beta1
|
|
267
|
+
* @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
|
|
268
|
+
*/
|
|
195
269
|
export declare const DelayedVestingAccount: {
|
|
196
270
|
typeUrl: string;
|
|
197
271
|
aminoType: string;
|
|
@@ -209,6 +283,12 @@ export declare const DelayedVestingAccount: {
|
|
|
209
283
|
toProtoMsg(message: DelayedVestingAccount): DelayedVestingAccountProtoMsg;
|
|
210
284
|
registerTypeUrl(): void;
|
|
211
285
|
};
|
|
286
|
+
/**
|
|
287
|
+
* Period defines a length of time and amount of coins that will vest.
|
|
288
|
+
* @name Period
|
|
289
|
+
* @package cosmos.vesting.v1beta1
|
|
290
|
+
* @see proto type: cosmos.vesting.v1beta1.Period
|
|
291
|
+
*/
|
|
212
292
|
export declare const Period: {
|
|
213
293
|
typeUrl: string;
|
|
214
294
|
aminoType: string;
|
|
@@ -226,6 +306,13 @@ export declare const Period: {
|
|
|
226
306
|
toProtoMsg(message: Period): PeriodProtoMsg;
|
|
227
307
|
registerTypeUrl(): void;
|
|
228
308
|
};
|
|
309
|
+
/**
|
|
310
|
+
* PeriodicVestingAccount implements the VestingAccount interface. It
|
|
311
|
+
* periodically vests by unlocking coins during each specified period.
|
|
312
|
+
* @name PeriodicVestingAccount
|
|
313
|
+
* @package cosmos.vesting.v1beta1
|
|
314
|
+
* @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
|
|
315
|
+
*/
|
|
229
316
|
export declare const PeriodicVestingAccount: {
|
|
230
317
|
typeUrl: string;
|
|
231
318
|
aminoType: string;
|
|
@@ -243,6 +330,16 @@ export declare const PeriodicVestingAccount: {
|
|
|
243
330
|
toProtoMsg(message: PeriodicVestingAccount): PeriodicVestingAccountProtoMsg;
|
|
244
331
|
registerTypeUrl(): void;
|
|
245
332
|
};
|
|
333
|
+
/**
|
|
334
|
+
* PermanentLockedAccount implements the VestingAccount interface. It does
|
|
335
|
+
* not ever release coins, locking them indefinitely. Coins in this account can
|
|
336
|
+
* still be used for delegating and for governance votes even while locked.
|
|
337
|
+
*
|
|
338
|
+
* Since: cosmos-sdk 0.43
|
|
339
|
+
* @name PermanentLockedAccount
|
|
340
|
+
* @package cosmos.vesting.v1beta1
|
|
341
|
+
* @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
|
|
342
|
+
*/
|
|
246
343
|
export declare const PermanentLockedAccount: {
|
|
247
344
|
typeUrl: string;
|
|
248
345
|
aminoType: string;
|