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
|
@@ -12,10 +12,15 @@ import { DeepPartial } from "../../../helpers";
|
|
|
12
12
|
* <factory/{creatorAddress}/{subdenom}>. The resulting denom's admin is
|
|
13
13
|
* originally set to be the creator, but this can be changed later. The token
|
|
14
14
|
* denom does not indicate the current admin.
|
|
15
|
+
* @name MsgCreateDenom
|
|
16
|
+
* @package injective.tokenfactory.v1beta1
|
|
17
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenom
|
|
15
18
|
*/
|
|
16
19
|
export interface MsgCreateDenom {
|
|
17
20
|
sender: string;
|
|
18
|
-
/**
|
|
21
|
+
/**
|
|
22
|
+
* subdenom can be up to 44 "alphanumeric" characters long.
|
|
23
|
+
*/
|
|
19
24
|
subdenom: string;
|
|
20
25
|
name: string;
|
|
21
26
|
symbol: string;
|
|
@@ -35,10 +40,15 @@ export interface MsgCreateDenomProtoMsg {
|
|
|
35
40
|
* <factory/{creatorAddress}/{subdenom}>. The resulting denom's admin is
|
|
36
41
|
* originally set to be the creator, but this can be changed later. The token
|
|
37
42
|
* denom does not indicate the current admin.
|
|
43
|
+
* @name MsgCreateDenomAmino
|
|
44
|
+
* @package injective.tokenfactory.v1beta1
|
|
45
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenom
|
|
38
46
|
*/
|
|
39
47
|
export interface MsgCreateDenomAmino {
|
|
40
48
|
sender: string;
|
|
41
|
-
/**
|
|
49
|
+
/**
|
|
50
|
+
* subdenom can be up to 44 "alphanumeric" characters long.
|
|
51
|
+
*/
|
|
42
52
|
subdenom: string;
|
|
43
53
|
name: string;
|
|
44
54
|
symbol: string;
|
|
@@ -51,6 +61,9 @@ export interface MsgCreateDenomAminoMsg {
|
|
|
51
61
|
/**
|
|
52
62
|
* MsgCreateDenomResponse is the return value of MsgCreateDenom
|
|
53
63
|
* It returns the full string of the newly created denom
|
|
64
|
+
* @name MsgCreateDenomResponse
|
|
65
|
+
* @package injective.tokenfactory.v1beta1
|
|
66
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenomResponse
|
|
54
67
|
*/
|
|
55
68
|
export interface MsgCreateDenomResponse {
|
|
56
69
|
newTokenDenom: string;
|
|
@@ -62,6 +75,9 @@ export interface MsgCreateDenomResponseProtoMsg {
|
|
|
62
75
|
/**
|
|
63
76
|
* MsgCreateDenomResponse is the return value of MsgCreateDenom
|
|
64
77
|
* It returns the full string of the newly created denom
|
|
78
|
+
* @name MsgCreateDenomResponseAmino
|
|
79
|
+
* @package injective.tokenfactory.v1beta1
|
|
80
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenomResponse
|
|
65
81
|
*/
|
|
66
82
|
export interface MsgCreateDenomResponseAmino {
|
|
67
83
|
new_token_denom: string;
|
|
@@ -73,6 +89,9 @@ export interface MsgCreateDenomResponseAminoMsg {
|
|
|
73
89
|
/**
|
|
74
90
|
* MsgMint is the sdk.Msg type for allowing an admin account to mint
|
|
75
91
|
* more of a token. For now, we only support minting to the sender account
|
|
92
|
+
* @name MsgMint
|
|
93
|
+
* @package injective.tokenfactory.v1beta1
|
|
94
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMint
|
|
76
95
|
*/
|
|
77
96
|
export interface MsgMint {
|
|
78
97
|
sender: string;
|
|
@@ -85,6 +104,9 @@ export interface MsgMintProtoMsg {
|
|
|
85
104
|
/**
|
|
86
105
|
* MsgMint is the sdk.Msg type for allowing an admin account to mint
|
|
87
106
|
* more of a token. For now, we only support minting to the sender account
|
|
107
|
+
* @name MsgMintAmino
|
|
108
|
+
* @package injective.tokenfactory.v1beta1
|
|
109
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMint
|
|
88
110
|
*/
|
|
89
111
|
export interface MsgMintAmino {
|
|
90
112
|
sender: string;
|
|
@@ -94,12 +116,22 @@ export interface MsgMintAminoMsg {
|
|
|
94
116
|
type: "injective/tokenfactory/mint";
|
|
95
117
|
value: MsgMintAmino;
|
|
96
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* @name MsgMintResponse
|
|
121
|
+
* @package injective.tokenfactory.v1beta1
|
|
122
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMintResponse
|
|
123
|
+
*/
|
|
97
124
|
export interface MsgMintResponse {
|
|
98
125
|
}
|
|
99
126
|
export interface MsgMintResponseProtoMsg {
|
|
100
127
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgMintResponse";
|
|
101
128
|
value: Uint8Array;
|
|
102
129
|
}
|
|
130
|
+
/**
|
|
131
|
+
* @name MsgMintResponseAmino
|
|
132
|
+
* @package injective.tokenfactory.v1beta1
|
|
133
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMintResponse
|
|
134
|
+
*/
|
|
103
135
|
export interface MsgMintResponseAmino {
|
|
104
136
|
}
|
|
105
137
|
export interface MsgMintResponseAminoMsg {
|
|
@@ -109,6 +141,9 @@ export interface MsgMintResponseAminoMsg {
|
|
|
109
141
|
/**
|
|
110
142
|
* MsgBurn is the sdk.Msg type for allowing an admin account to burn
|
|
111
143
|
* a token. For now, we only support burning from the sender account.
|
|
144
|
+
* @name MsgBurn
|
|
145
|
+
* @package injective.tokenfactory.v1beta1
|
|
146
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurn
|
|
112
147
|
*/
|
|
113
148
|
export interface MsgBurn {
|
|
114
149
|
sender: string;
|
|
@@ -121,6 +156,9 @@ export interface MsgBurnProtoMsg {
|
|
|
121
156
|
/**
|
|
122
157
|
* MsgBurn is the sdk.Msg type for allowing an admin account to burn
|
|
123
158
|
* a token. For now, we only support burning from the sender account.
|
|
159
|
+
* @name MsgBurnAmino
|
|
160
|
+
* @package injective.tokenfactory.v1beta1
|
|
161
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurn
|
|
124
162
|
*/
|
|
125
163
|
export interface MsgBurnAmino {
|
|
126
164
|
sender: string;
|
|
@@ -130,12 +168,22 @@ export interface MsgBurnAminoMsg {
|
|
|
130
168
|
type: "injective/tokenfactory/burn";
|
|
131
169
|
value: MsgBurnAmino;
|
|
132
170
|
}
|
|
171
|
+
/**
|
|
172
|
+
* @name MsgBurnResponse
|
|
173
|
+
* @package injective.tokenfactory.v1beta1
|
|
174
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurnResponse
|
|
175
|
+
*/
|
|
133
176
|
export interface MsgBurnResponse {
|
|
134
177
|
}
|
|
135
178
|
export interface MsgBurnResponseProtoMsg {
|
|
136
179
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgBurnResponse";
|
|
137
180
|
value: Uint8Array;
|
|
138
181
|
}
|
|
182
|
+
/**
|
|
183
|
+
* @name MsgBurnResponseAmino
|
|
184
|
+
* @package injective.tokenfactory.v1beta1
|
|
185
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurnResponse
|
|
186
|
+
*/
|
|
139
187
|
export interface MsgBurnResponseAmino {
|
|
140
188
|
}
|
|
141
189
|
export interface MsgBurnResponseAminoMsg {
|
|
@@ -145,6 +193,9 @@ export interface MsgBurnResponseAminoMsg {
|
|
|
145
193
|
/**
|
|
146
194
|
* MsgChangeAdmin is the sdk.Msg type for allowing an admin account to reassign
|
|
147
195
|
* adminship of a denom to a new account
|
|
196
|
+
* @name MsgChangeAdmin
|
|
197
|
+
* @package injective.tokenfactory.v1beta1
|
|
198
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdmin
|
|
148
199
|
*/
|
|
149
200
|
export interface MsgChangeAdmin {
|
|
150
201
|
sender: string;
|
|
@@ -158,6 +209,9 @@ export interface MsgChangeAdminProtoMsg {
|
|
|
158
209
|
/**
|
|
159
210
|
* MsgChangeAdmin is the sdk.Msg type for allowing an admin account to reassign
|
|
160
211
|
* adminship of a denom to a new account
|
|
212
|
+
* @name MsgChangeAdminAmino
|
|
213
|
+
* @package injective.tokenfactory.v1beta1
|
|
214
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdmin
|
|
161
215
|
*/
|
|
162
216
|
export interface MsgChangeAdminAmino {
|
|
163
217
|
sender: string;
|
|
@@ -171,6 +225,9 @@ export interface MsgChangeAdminAminoMsg {
|
|
|
171
225
|
/**
|
|
172
226
|
* MsgChangeAdminResponse defines the response structure for an executed
|
|
173
227
|
* MsgChangeAdmin message.
|
|
228
|
+
* @name MsgChangeAdminResponse
|
|
229
|
+
* @package injective.tokenfactory.v1beta1
|
|
230
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdminResponse
|
|
174
231
|
*/
|
|
175
232
|
export interface MsgChangeAdminResponse {
|
|
176
233
|
}
|
|
@@ -181,6 +238,9 @@ export interface MsgChangeAdminResponseProtoMsg {
|
|
|
181
238
|
/**
|
|
182
239
|
* MsgChangeAdminResponse defines the response structure for an executed
|
|
183
240
|
* MsgChangeAdmin message.
|
|
241
|
+
* @name MsgChangeAdminResponseAmino
|
|
242
|
+
* @package injective.tokenfactory.v1beta1
|
|
243
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdminResponse
|
|
184
244
|
*/
|
|
185
245
|
export interface MsgChangeAdminResponseAmino {
|
|
186
246
|
}
|
|
@@ -191,6 +251,9 @@ export interface MsgChangeAdminResponseAminoMsg {
|
|
|
191
251
|
/**
|
|
192
252
|
* MsgSetDenomMetadata is the sdk.Msg type for allowing an admin account to set
|
|
193
253
|
* the denom's bank metadata
|
|
254
|
+
* @name MsgSetDenomMetadata
|
|
255
|
+
* @package injective.tokenfactory.v1beta1
|
|
256
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadata
|
|
194
257
|
*/
|
|
195
258
|
export interface MsgSetDenomMetadata {
|
|
196
259
|
sender: string;
|
|
@@ -203,6 +266,9 @@ export interface MsgSetDenomMetadataProtoMsg {
|
|
|
203
266
|
/**
|
|
204
267
|
* MsgSetDenomMetadata is the sdk.Msg type for allowing an admin account to set
|
|
205
268
|
* the denom's bank metadata
|
|
269
|
+
* @name MsgSetDenomMetadataAmino
|
|
270
|
+
* @package injective.tokenfactory.v1beta1
|
|
271
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadata
|
|
206
272
|
*/
|
|
207
273
|
export interface MsgSetDenomMetadataAmino {
|
|
208
274
|
sender: string;
|
|
@@ -215,6 +281,9 @@ export interface MsgSetDenomMetadataAminoMsg {
|
|
|
215
281
|
/**
|
|
216
282
|
* MsgSetDenomMetadataResponse defines the response structure for an executed
|
|
217
283
|
* MsgSetDenomMetadata message.
|
|
284
|
+
* @name MsgSetDenomMetadataResponse
|
|
285
|
+
* @package injective.tokenfactory.v1beta1
|
|
286
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadataResponse
|
|
218
287
|
*/
|
|
219
288
|
export interface MsgSetDenomMetadataResponse {
|
|
220
289
|
}
|
|
@@ -225,6 +294,9 @@ export interface MsgSetDenomMetadataResponseProtoMsg {
|
|
|
225
294
|
/**
|
|
226
295
|
* MsgSetDenomMetadataResponse defines the response structure for an executed
|
|
227
296
|
* MsgSetDenomMetadata message.
|
|
297
|
+
* @name MsgSetDenomMetadataResponseAmino
|
|
298
|
+
* @package injective.tokenfactory.v1beta1
|
|
299
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadataResponse
|
|
228
300
|
*/
|
|
229
301
|
export interface MsgSetDenomMetadataResponseAmino {
|
|
230
302
|
}
|
|
@@ -232,8 +304,15 @@ export interface MsgSetDenomMetadataResponseAminoMsg {
|
|
|
232
304
|
type: "/injective.tokenfactory.v1beta1.MsgSetDenomMetadataResponse";
|
|
233
305
|
value: MsgSetDenomMetadataResponseAmino;
|
|
234
306
|
}
|
|
307
|
+
/**
|
|
308
|
+
* @name MsgUpdateParams
|
|
309
|
+
* @package injective.tokenfactory.v1beta1
|
|
310
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParams
|
|
311
|
+
*/
|
|
235
312
|
export interface MsgUpdateParams {
|
|
236
|
-
/**
|
|
313
|
+
/**
|
|
314
|
+
* authority is the address of the governance account.
|
|
315
|
+
*/
|
|
237
316
|
authority: string;
|
|
238
317
|
/**
|
|
239
318
|
* params defines the tokenfactory parameters to update.
|
|
@@ -246,8 +325,15 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
246
325
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgUpdateParams";
|
|
247
326
|
value: Uint8Array;
|
|
248
327
|
}
|
|
328
|
+
/**
|
|
329
|
+
* @name MsgUpdateParamsAmino
|
|
330
|
+
* @package injective.tokenfactory.v1beta1
|
|
331
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParams
|
|
332
|
+
*/
|
|
249
333
|
export interface MsgUpdateParamsAmino {
|
|
250
|
-
/**
|
|
334
|
+
/**
|
|
335
|
+
* authority is the address of the governance account.
|
|
336
|
+
*/
|
|
251
337
|
authority: string;
|
|
252
338
|
/**
|
|
253
339
|
* params defines the tokenfactory parameters to update.
|
|
@@ -260,18 +346,42 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
260
346
|
type: "injective/tokenfactory/update-params";
|
|
261
347
|
value: MsgUpdateParamsAmino;
|
|
262
348
|
}
|
|
349
|
+
/**
|
|
350
|
+
* @name MsgUpdateParamsResponse
|
|
351
|
+
* @package injective.tokenfactory.v1beta1
|
|
352
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParamsResponse
|
|
353
|
+
*/
|
|
263
354
|
export interface MsgUpdateParamsResponse {
|
|
264
355
|
}
|
|
265
356
|
export interface MsgUpdateParamsResponseProtoMsg {
|
|
266
357
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgUpdateParamsResponse";
|
|
267
358
|
value: Uint8Array;
|
|
268
359
|
}
|
|
360
|
+
/**
|
|
361
|
+
* @name MsgUpdateParamsResponseAmino
|
|
362
|
+
* @package injective.tokenfactory.v1beta1
|
|
363
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParamsResponse
|
|
364
|
+
*/
|
|
269
365
|
export interface MsgUpdateParamsResponseAmino {
|
|
270
366
|
}
|
|
271
367
|
export interface MsgUpdateParamsResponseAminoMsg {
|
|
272
368
|
type: "/injective.tokenfactory.v1beta1.MsgUpdateParamsResponse";
|
|
273
369
|
value: MsgUpdateParamsResponseAmino;
|
|
274
370
|
}
|
|
371
|
+
/**
|
|
372
|
+
* MsgCreateDenom defines the message structure for the CreateDenom gRPC service
|
|
373
|
+
* method. It allows an account to create a new denom. It requires a sender
|
|
374
|
+
* address and a sub denomination. The (sender_address, sub_denomination) tuple
|
|
375
|
+
* must be unique and cannot be re-used.
|
|
376
|
+
*
|
|
377
|
+
* The resulting denom created is defined as
|
|
378
|
+
* <factory/{creatorAddress}/{subdenom}>. The resulting denom's admin is
|
|
379
|
+
* originally set to be the creator, but this can be changed later. The token
|
|
380
|
+
* denom does not indicate the current admin.
|
|
381
|
+
* @name MsgCreateDenom
|
|
382
|
+
* @package injective.tokenfactory.v1beta1
|
|
383
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenom
|
|
384
|
+
*/
|
|
275
385
|
export declare const MsgCreateDenom: {
|
|
276
386
|
typeUrl: string;
|
|
277
387
|
aminoType: string;
|
|
@@ -289,6 +399,13 @@ export declare const MsgCreateDenom: {
|
|
|
289
399
|
toProtoMsg(message: MsgCreateDenom): MsgCreateDenomProtoMsg;
|
|
290
400
|
registerTypeUrl(): void;
|
|
291
401
|
};
|
|
402
|
+
/**
|
|
403
|
+
* MsgCreateDenomResponse is the return value of MsgCreateDenom
|
|
404
|
+
* It returns the full string of the newly created denom
|
|
405
|
+
* @name MsgCreateDenomResponse
|
|
406
|
+
* @package injective.tokenfactory.v1beta1
|
|
407
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenomResponse
|
|
408
|
+
*/
|
|
292
409
|
export declare const MsgCreateDenomResponse: {
|
|
293
410
|
typeUrl: string;
|
|
294
411
|
is(o: any): o is MsgCreateDenomResponse;
|
|
@@ -304,6 +421,13 @@ export declare const MsgCreateDenomResponse: {
|
|
|
304
421
|
toProtoMsg(message: MsgCreateDenomResponse): MsgCreateDenomResponseProtoMsg;
|
|
305
422
|
registerTypeUrl(): void;
|
|
306
423
|
};
|
|
424
|
+
/**
|
|
425
|
+
* MsgMint is the sdk.Msg type for allowing an admin account to mint
|
|
426
|
+
* more of a token. For now, we only support minting to the sender account
|
|
427
|
+
* @name MsgMint
|
|
428
|
+
* @package injective.tokenfactory.v1beta1
|
|
429
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMint
|
|
430
|
+
*/
|
|
307
431
|
export declare const MsgMint: {
|
|
308
432
|
typeUrl: string;
|
|
309
433
|
aminoType: string;
|
|
@@ -321,6 +445,11 @@ export declare const MsgMint: {
|
|
|
321
445
|
toProtoMsg(message: MsgMint): MsgMintProtoMsg;
|
|
322
446
|
registerTypeUrl(): void;
|
|
323
447
|
};
|
|
448
|
+
/**
|
|
449
|
+
* @name MsgMintResponse
|
|
450
|
+
* @package injective.tokenfactory.v1beta1
|
|
451
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMintResponse
|
|
452
|
+
*/
|
|
324
453
|
export declare const MsgMintResponse: {
|
|
325
454
|
typeUrl: string;
|
|
326
455
|
is(o: any): o is MsgMintResponse;
|
|
@@ -336,6 +465,13 @@ export declare const MsgMintResponse: {
|
|
|
336
465
|
toProtoMsg(message: MsgMintResponse): MsgMintResponseProtoMsg;
|
|
337
466
|
registerTypeUrl(): void;
|
|
338
467
|
};
|
|
468
|
+
/**
|
|
469
|
+
* MsgBurn is the sdk.Msg type for allowing an admin account to burn
|
|
470
|
+
* a token. For now, we only support burning from the sender account.
|
|
471
|
+
* @name MsgBurn
|
|
472
|
+
* @package injective.tokenfactory.v1beta1
|
|
473
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurn
|
|
474
|
+
*/
|
|
339
475
|
export declare const MsgBurn: {
|
|
340
476
|
typeUrl: string;
|
|
341
477
|
aminoType: string;
|
|
@@ -353,6 +489,11 @@ export declare const MsgBurn: {
|
|
|
353
489
|
toProtoMsg(message: MsgBurn): MsgBurnProtoMsg;
|
|
354
490
|
registerTypeUrl(): void;
|
|
355
491
|
};
|
|
492
|
+
/**
|
|
493
|
+
* @name MsgBurnResponse
|
|
494
|
+
* @package injective.tokenfactory.v1beta1
|
|
495
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurnResponse
|
|
496
|
+
*/
|
|
356
497
|
export declare const MsgBurnResponse: {
|
|
357
498
|
typeUrl: string;
|
|
358
499
|
is(o: any): o is MsgBurnResponse;
|
|
@@ -368,6 +509,13 @@ export declare const MsgBurnResponse: {
|
|
|
368
509
|
toProtoMsg(message: MsgBurnResponse): MsgBurnResponseProtoMsg;
|
|
369
510
|
registerTypeUrl(): void;
|
|
370
511
|
};
|
|
512
|
+
/**
|
|
513
|
+
* MsgChangeAdmin is the sdk.Msg type for allowing an admin account to reassign
|
|
514
|
+
* adminship of a denom to a new account
|
|
515
|
+
* @name MsgChangeAdmin
|
|
516
|
+
* @package injective.tokenfactory.v1beta1
|
|
517
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdmin
|
|
518
|
+
*/
|
|
371
519
|
export declare const MsgChangeAdmin: {
|
|
372
520
|
typeUrl: string;
|
|
373
521
|
aminoType: string;
|
|
@@ -385,6 +533,13 @@ export declare const MsgChangeAdmin: {
|
|
|
385
533
|
toProtoMsg(message: MsgChangeAdmin): MsgChangeAdminProtoMsg;
|
|
386
534
|
registerTypeUrl(): void;
|
|
387
535
|
};
|
|
536
|
+
/**
|
|
537
|
+
* MsgChangeAdminResponse defines the response structure for an executed
|
|
538
|
+
* MsgChangeAdmin message.
|
|
539
|
+
* @name MsgChangeAdminResponse
|
|
540
|
+
* @package injective.tokenfactory.v1beta1
|
|
541
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdminResponse
|
|
542
|
+
*/
|
|
388
543
|
export declare const MsgChangeAdminResponse: {
|
|
389
544
|
typeUrl: string;
|
|
390
545
|
is(o: any): o is MsgChangeAdminResponse;
|
|
@@ -400,6 +555,13 @@ export declare const MsgChangeAdminResponse: {
|
|
|
400
555
|
toProtoMsg(message: MsgChangeAdminResponse): MsgChangeAdminResponseProtoMsg;
|
|
401
556
|
registerTypeUrl(): void;
|
|
402
557
|
};
|
|
558
|
+
/**
|
|
559
|
+
* MsgSetDenomMetadata is the sdk.Msg type for allowing an admin account to set
|
|
560
|
+
* the denom's bank metadata
|
|
561
|
+
* @name MsgSetDenomMetadata
|
|
562
|
+
* @package injective.tokenfactory.v1beta1
|
|
563
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadata
|
|
564
|
+
*/
|
|
403
565
|
export declare const MsgSetDenomMetadata: {
|
|
404
566
|
typeUrl: string;
|
|
405
567
|
aminoType: string;
|
|
@@ -417,6 +579,13 @@ export declare const MsgSetDenomMetadata: {
|
|
|
417
579
|
toProtoMsg(message: MsgSetDenomMetadata): MsgSetDenomMetadataProtoMsg;
|
|
418
580
|
registerTypeUrl(): void;
|
|
419
581
|
};
|
|
582
|
+
/**
|
|
583
|
+
* MsgSetDenomMetadataResponse defines the response structure for an executed
|
|
584
|
+
* MsgSetDenomMetadata message.
|
|
585
|
+
* @name MsgSetDenomMetadataResponse
|
|
586
|
+
* @package injective.tokenfactory.v1beta1
|
|
587
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadataResponse
|
|
588
|
+
*/
|
|
420
589
|
export declare const MsgSetDenomMetadataResponse: {
|
|
421
590
|
typeUrl: string;
|
|
422
591
|
is(o: any): o is MsgSetDenomMetadataResponse;
|
|
@@ -432,6 +601,11 @@ export declare const MsgSetDenomMetadataResponse: {
|
|
|
432
601
|
toProtoMsg(message: MsgSetDenomMetadataResponse): MsgSetDenomMetadataResponseProtoMsg;
|
|
433
602
|
registerTypeUrl(): void;
|
|
434
603
|
};
|
|
604
|
+
/**
|
|
605
|
+
* @name MsgUpdateParams
|
|
606
|
+
* @package injective.tokenfactory.v1beta1
|
|
607
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParams
|
|
608
|
+
*/
|
|
435
609
|
export declare const MsgUpdateParams: {
|
|
436
610
|
typeUrl: string;
|
|
437
611
|
aminoType: string;
|
|
@@ -449,6 +623,11 @@ export declare const MsgUpdateParams: {
|
|
|
449
623
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
450
624
|
registerTypeUrl(): void;
|
|
451
625
|
};
|
|
626
|
+
/**
|
|
627
|
+
* @name MsgUpdateParamsResponse
|
|
628
|
+
* @package injective.tokenfactory.v1beta1
|
|
629
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParamsResponse
|
|
630
|
+
*/
|
|
452
631
|
export declare const MsgUpdateParamsResponse: {
|
|
453
632
|
typeUrl: string;
|
|
454
633
|
is(o: any): o is MsgUpdateParamsResponse;
|
|
@@ -14,6 +14,20 @@ function createBaseMsgCreateDenom() {
|
|
|
14
14
|
decimals: 0
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* MsgCreateDenom defines the message structure for the CreateDenom gRPC service
|
|
19
|
+
* method. It allows an account to create a new denom. It requires a sender
|
|
20
|
+
* address and a sub denomination. The (sender_address, sub_denomination) tuple
|
|
21
|
+
* must be unique and cannot be re-used.
|
|
22
|
+
*
|
|
23
|
+
* The resulting denom created is defined as
|
|
24
|
+
* <factory/{creatorAddress}/{subdenom}>. The resulting denom's admin is
|
|
25
|
+
* originally set to be the creator, but this can be changed later. The token
|
|
26
|
+
* denom does not indicate the current admin.
|
|
27
|
+
* @name MsgCreateDenom
|
|
28
|
+
* @package injective.tokenfactory.v1beta1
|
|
29
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenom
|
|
30
|
+
*/
|
|
17
31
|
exports.MsgCreateDenom = {
|
|
18
32
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgCreateDenom",
|
|
19
33
|
aminoType: "injective/tokenfactory/create-denom",
|
|
@@ -135,6 +149,13 @@ function createBaseMsgCreateDenomResponse() {
|
|
|
135
149
|
newTokenDenom: ""
|
|
136
150
|
};
|
|
137
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* MsgCreateDenomResponse is the return value of MsgCreateDenom
|
|
154
|
+
* It returns the full string of the newly created denom
|
|
155
|
+
* @name MsgCreateDenomResponse
|
|
156
|
+
* @package injective.tokenfactory.v1beta1
|
|
157
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenomResponse
|
|
158
|
+
*/
|
|
138
159
|
exports.MsgCreateDenomResponse = {
|
|
139
160
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgCreateDenomResponse",
|
|
140
161
|
is(o) {
|
|
@@ -206,6 +227,13 @@ function createBaseMsgMint() {
|
|
|
206
227
|
amount: coin_1.Coin.fromPartial({})
|
|
207
228
|
};
|
|
208
229
|
}
|
|
230
|
+
/**
|
|
231
|
+
* MsgMint is the sdk.Msg type for allowing an admin account to mint
|
|
232
|
+
* more of a token. For now, we only support minting to the sender account
|
|
233
|
+
* @name MsgMint
|
|
234
|
+
* @package injective.tokenfactory.v1beta1
|
|
235
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMint
|
|
236
|
+
*/
|
|
209
237
|
exports.MsgMint = {
|
|
210
238
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgMint",
|
|
211
239
|
aminoType: "injective/tokenfactory/mint",
|
|
@@ -297,6 +325,11 @@ exports.MsgMint = {
|
|
|
297
325
|
function createBaseMsgMintResponse() {
|
|
298
326
|
return {};
|
|
299
327
|
}
|
|
328
|
+
/**
|
|
329
|
+
* @name MsgMintResponse
|
|
330
|
+
* @package injective.tokenfactory.v1beta1
|
|
331
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMintResponse
|
|
332
|
+
*/
|
|
300
333
|
exports.MsgMintResponse = {
|
|
301
334
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgMintResponse",
|
|
302
335
|
is(o) {
|
|
@@ -357,6 +390,13 @@ function createBaseMsgBurn() {
|
|
|
357
390
|
amount: coin_1.Coin.fromPartial({})
|
|
358
391
|
};
|
|
359
392
|
}
|
|
393
|
+
/**
|
|
394
|
+
* MsgBurn is the sdk.Msg type for allowing an admin account to burn
|
|
395
|
+
* a token. For now, we only support burning from the sender account.
|
|
396
|
+
* @name MsgBurn
|
|
397
|
+
* @package injective.tokenfactory.v1beta1
|
|
398
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurn
|
|
399
|
+
*/
|
|
360
400
|
exports.MsgBurn = {
|
|
361
401
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgBurn",
|
|
362
402
|
aminoType: "injective/tokenfactory/burn",
|
|
@@ -448,6 +488,11 @@ exports.MsgBurn = {
|
|
|
448
488
|
function createBaseMsgBurnResponse() {
|
|
449
489
|
return {};
|
|
450
490
|
}
|
|
491
|
+
/**
|
|
492
|
+
* @name MsgBurnResponse
|
|
493
|
+
* @package injective.tokenfactory.v1beta1
|
|
494
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurnResponse
|
|
495
|
+
*/
|
|
451
496
|
exports.MsgBurnResponse = {
|
|
452
497
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgBurnResponse",
|
|
453
498
|
is(o) {
|
|
@@ -509,6 +554,13 @@ function createBaseMsgChangeAdmin() {
|
|
|
509
554
|
newAdmin: ""
|
|
510
555
|
};
|
|
511
556
|
}
|
|
557
|
+
/**
|
|
558
|
+
* MsgChangeAdmin is the sdk.Msg type for allowing an admin account to reassign
|
|
559
|
+
* adminship of a denom to a new account
|
|
560
|
+
* @name MsgChangeAdmin
|
|
561
|
+
* @package injective.tokenfactory.v1beta1
|
|
562
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdmin
|
|
563
|
+
*/
|
|
512
564
|
exports.MsgChangeAdmin = {
|
|
513
565
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgChangeAdmin",
|
|
514
566
|
aminoType: "injective/tokenfactory/change-admin",
|
|
@@ -606,6 +658,13 @@ exports.MsgChangeAdmin = {
|
|
|
606
658
|
function createBaseMsgChangeAdminResponse() {
|
|
607
659
|
return {};
|
|
608
660
|
}
|
|
661
|
+
/**
|
|
662
|
+
* MsgChangeAdminResponse defines the response structure for an executed
|
|
663
|
+
* MsgChangeAdmin message.
|
|
664
|
+
* @name MsgChangeAdminResponse
|
|
665
|
+
* @package injective.tokenfactory.v1beta1
|
|
666
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdminResponse
|
|
667
|
+
*/
|
|
609
668
|
exports.MsgChangeAdminResponse = {
|
|
610
669
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgChangeAdminResponse",
|
|
611
670
|
is(o) {
|
|
@@ -666,6 +725,13 @@ function createBaseMsgSetDenomMetadata() {
|
|
|
666
725
|
metadata: bank_1.Metadata.fromPartial({})
|
|
667
726
|
};
|
|
668
727
|
}
|
|
728
|
+
/**
|
|
729
|
+
* MsgSetDenomMetadata is the sdk.Msg type for allowing an admin account to set
|
|
730
|
+
* the denom's bank metadata
|
|
731
|
+
* @name MsgSetDenomMetadata
|
|
732
|
+
* @package injective.tokenfactory.v1beta1
|
|
733
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadata
|
|
734
|
+
*/
|
|
669
735
|
exports.MsgSetDenomMetadata = {
|
|
670
736
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgSetDenomMetadata",
|
|
671
737
|
aminoType: "injective/tokenfactory/set-denom-metadata",
|
|
@@ -757,6 +823,13 @@ exports.MsgSetDenomMetadata = {
|
|
|
757
823
|
function createBaseMsgSetDenomMetadataResponse() {
|
|
758
824
|
return {};
|
|
759
825
|
}
|
|
826
|
+
/**
|
|
827
|
+
* MsgSetDenomMetadataResponse defines the response structure for an executed
|
|
828
|
+
* MsgSetDenomMetadata message.
|
|
829
|
+
* @name MsgSetDenomMetadataResponse
|
|
830
|
+
* @package injective.tokenfactory.v1beta1
|
|
831
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadataResponse
|
|
832
|
+
*/
|
|
760
833
|
exports.MsgSetDenomMetadataResponse = {
|
|
761
834
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgSetDenomMetadataResponse",
|
|
762
835
|
is(o) {
|
|
@@ -817,6 +890,11 @@ function createBaseMsgUpdateParams() {
|
|
|
817
890
|
params: bank_1.Params.fromPartial({})
|
|
818
891
|
};
|
|
819
892
|
}
|
|
893
|
+
/**
|
|
894
|
+
* @name MsgUpdateParams
|
|
895
|
+
* @package injective.tokenfactory.v1beta1
|
|
896
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParams
|
|
897
|
+
*/
|
|
820
898
|
exports.MsgUpdateParams = {
|
|
821
899
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgUpdateParams",
|
|
822
900
|
aminoType: "injective/tokenfactory/update-params",
|
|
@@ -908,6 +986,11 @@ exports.MsgUpdateParams = {
|
|
|
908
986
|
function createBaseMsgUpdateParamsResponse() {
|
|
909
987
|
return {};
|
|
910
988
|
}
|
|
989
|
+
/**
|
|
990
|
+
* @name MsgUpdateParamsResponse
|
|
991
|
+
* @package injective.tokenfactory.v1beta1
|
|
992
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParamsResponse
|
|
993
|
+
*/
|
|
911
994
|
exports.MsgUpdateParamsResponse = {
|
|
912
995
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgUpdateParamsResponse",
|
|
913
996
|
is(o) {
|
|
@@ -1,7 +1,37 @@
|
|
|
1
1
|
import { MsgCreateDenom, MsgMint, MsgBurn, MsgChangeAdmin, MsgSetDenomMetadata, MsgUpdateParams } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* @name createDenom
|
|
4
|
+
* @package injective.tokenfactory.v1beta1
|
|
5
|
+
* @see proto service: injective.tokenfactory.v1beta1.CreateDenom
|
|
6
|
+
*/
|
|
2
7
|
export declare const createDenom: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateDenom | MsgCreateDenom[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
8
|
+
/**
|
|
9
|
+
* @name mint
|
|
10
|
+
* @package injective.tokenfactory.v1beta1
|
|
11
|
+
* @see proto service: injective.tokenfactory.v1beta1.Mint
|
|
12
|
+
*/
|
|
3
13
|
export declare const mint: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgMint | MsgMint[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* @name burn
|
|
16
|
+
* @package injective.tokenfactory.v1beta1
|
|
17
|
+
* @see proto service: injective.tokenfactory.v1beta1.Burn
|
|
18
|
+
*/
|
|
4
19
|
export declare const burn: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgBurn | MsgBurn[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
20
|
+
/**
|
|
21
|
+
* @name changeAdmin
|
|
22
|
+
* @package injective.tokenfactory.v1beta1
|
|
23
|
+
* @see proto service: injective.tokenfactory.v1beta1.ChangeAdmin
|
|
24
|
+
*/
|
|
5
25
|
export declare const changeAdmin: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChangeAdmin | MsgChangeAdmin[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* @name setDenomMetadata
|
|
28
|
+
* @package injective.tokenfactory.v1beta1
|
|
29
|
+
* @see proto service: injective.tokenfactory.v1beta1.SetDenomMetadata
|
|
30
|
+
*/
|
|
6
31
|
export declare const setDenomMetadata: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSetDenomMetadata | MsgSetDenomMetadata[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* @name updateParams
|
|
34
|
+
* @package injective.tokenfactory.v1beta1
|
|
35
|
+
* @see proto service: injective.tokenfactory.v1beta1.UpdateParams
|
|
36
|
+
*/
|
|
7
37
|
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>;
|
|
@@ -3,21 +3,51 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.updateParams = exports.setDenomMetadata = exports.changeAdmin = exports.burn = exports.mint = exports.createDenom = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const tx_1 = require("./tx");
|
|
6
|
+
/**
|
|
7
|
+
* @name createDenom
|
|
8
|
+
* @package injective.tokenfactory.v1beta1
|
|
9
|
+
* @see proto service: injective.tokenfactory.v1beta1.CreateDenom
|
|
10
|
+
*/
|
|
6
11
|
exports.createDenom = (0, helper_func_types_1.buildTx)({
|
|
7
12
|
msg: tx_1.MsgCreateDenom
|
|
8
13
|
});
|
|
14
|
+
/**
|
|
15
|
+
* @name mint
|
|
16
|
+
* @package injective.tokenfactory.v1beta1
|
|
17
|
+
* @see proto service: injective.tokenfactory.v1beta1.Mint
|
|
18
|
+
*/
|
|
9
19
|
exports.mint = (0, helper_func_types_1.buildTx)({
|
|
10
20
|
msg: tx_1.MsgMint
|
|
11
21
|
});
|
|
22
|
+
/**
|
|
23
|
+
* @name burn
|
|
24
|
+
* @package injective.tokenfactory.v1beta1
|
|
25
|
+
* @see proto service: injective.tokenfactory.v1beta1.Burn
|
|
26
|
+
*/
|
|
12
27
|
exports.burn = (0, helper_func_types_1.buildTx)({
|
|
13
28
|
msg: tx_1.MsgBurn
|
|
14
29
|
});
|
|
30
|
+
/**
|
|
31
|
+
* @name changeAdmin
|
|
32
|
+
* @package injective.tokenfactory.v1beta1
|
|
33
|
+
* @see proto service: injective.tokenfactory.v1beta1.ChangeAdmin
|
|
34
|
+
*/
|
|
15
35
|
exports.changeAdmin = (0, helper_func_types_1.buildTx)({
|
|
16
36
|
msg: tx_1.MsgChangeAdmin
|
|
17
37
|
});
|
|
38
|
+
/**
|
|
39
|
+
* @name setDenomMetadata
|
|
40
|
+
* @package injective.tokenfactory.v1beta1
|
|
41
|
+
* @see proto service: injective.tokenfactory.v1beta1.SetDenomMetadata
|
|
42
|
+
*/
|
|
18
43
|
exports.setDenomMetadata = (0, helper_func_types_1.buildTx)({
|
|
19
44
|
msg: tx_1.MsgSetDenomMetadata
|
|
20
45
|
});
|
|
46
|
+
/**
|
|
47
|
+
* @name updateParams
|
|
48
|
+
* @package injective.tokenfactory.v1beta1
|
|
49
|
+
* @see proto service: injective.tokenfactory.v1beta1.UpdateParams
|
|
50
|
+
*/
|
|
21
51
|
exports.updateParams = (0, helper_func_types_1.buildTx)({
|
|
22
52
|
msg: tx_1.MsgUpdateParams
|
|
23
53
|
});
|