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
|
@@ -6,6 +6,12 @@ import { GlobalDecoderRegistry } from "../../../registry";
|
|
|
6
6
|
function createBaseQueryParamsRequest() {
|
|
7
7
|
return {};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
11
|
+
* @name QueryParamsRequest
|
|
12
|
+
* @package injective.tokenfactory.v1beta1
|
|
13
|
+
* @see proto type: injective.tokenfactory.v1beta1.QueryParamsRequest
|
|
14
|
+
*/
|
|
9
15
|
export const QueryParamsRequest = {
|
|
10
16
|
typeUrl: "/injective.tokenfactory.v1beta1.QueryParamsRequest",
|
|
11
17
|
is(o) {
|
|
@@ -65,6 +71,12 @@ function createBaseQueryParamsResponse() {
|
|
|
65
71
|
params: Params.fromPartial({})
|
|
66
72
|
};
|
|
67
73
|
}
|
|
74
|
+
/**
|
|
75
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
76
|
+
* @name QueryParamsResponse
|
|
77
|
+
* @package injective.tokenfactory.v1beta1
|
|
78
|
+
* @see proto type: injective.tokenfactory.v1beta1.QueryParamsResponse
|
|
79
|
+
*/
|
|
68
80
|
export const QueryParamsResponse = {
|
|
69
81
|
typeUrl: "/injective.tokenfactory.v1beta1.QueryParamsResponse",
|
|
70
82
|
is(o) {
|
|
@@ -141,6 +153,13 @@ function createBaseQueryDenomAuthorityMetadataRequest() {
|
|
|
141
153
|
subDenom: ""
|
|
142
154
|
};
|
|
143
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* QueryDenomAuthorityMetadataRequest defines the request structure for the
|
|
158
|
+
* DenomAuthorityMetadata gRPC query.
|
|
159
|
+
* @name QueryDenomAuthorityMetadataRequest
|
|
160
|
+
* @package injective.tokenfactory.v1beta1
|
|
161
|
+
* @see proto type: injective.tokenfactory.v1beta1.QueryDenomAuthorityMetadataRequest
|
|
162
|
+
*/
|
|
144
163
|
export const QueryDenomAuthorityMetadataRequest = {
|
|
145
164
|
typeUrl: "/injective.tokenfactory.v1beta1.QueryDenomAuthorityMetadataRequest",
|
|
146
165
|
is(o) {
|
|
@@ -222,6 +241,13 @@ function createBaseQueryDenomAuthorityMetadataResponse() {
|
|
|
222
241
|
authorityMetadata: DenomAuthorityMetadata.fromPartial({})
|
|
223
242
|
};
|
|
224
243
|
}
|
|
244
|
+
/**
|
|
245
|
+
* QueryDenomAuthorityMetadataResponse defines the response structure for the
|
|
246
|
+
* DenomAuthorityMetadata gRPC query.
|
|
247
|
+
* @name QueryDenomAuthorityMetadataResponse
|
|
248
|
+
* @package injective.tokenfactory.v1beta1
|
|
249
|
+
* @see proto type: injective.tokenfactory.v1beta1.QueryDenomAuthorityMetadataResponse
|
|
250
|
+
*/
|
|
225
251
|
export const QueryDenomAuthorityMetadataResponse = {
|
|
226
252
|
typeUrl: "/injective.tokenfactory.v1beta1.QueryDenomAuthorityMetadataResponse",
|
|
227
253
|
is(o) {
|
|
@@ -297,6 +323,13 @@ function createBaseQueryDenomsFromCreatorRequest() {
|
|
|
297
323
|
creator: ""
|
|
298
324
|
};
|
|
299
325
|
}
|
|
326
|
+
/**
|
|
327
|
+
* QueryDenomsFromCreatorRequest defines the request structure for the
|
|
328
|
+
* DenomsFromCreator gRPC query.
|
|
329
|
+
* @name QueryDenomsFromCreatorRequest
|
|
330
|
+
* @package injective.tokenfactory.v1beta1
|
|
331
|
+
* @see proto type: injective.tokenfactory.v1beta1.QueryDenomsFromCreatorRequest
|
|
332
|
+
*/
|
|
300
333
|
export const QueryDenomsFromCreatorRequest = {
|
|
301
334
|
typeUrl: "/injective.tokenfactory.v1beta1.QueryDenomsFromCreatorRequest",
|
|
302
335
|
is(o) {
|
|
@@ -367,6 +400,13 @@ function createBaseQueryDenomsFromCreatorResponse() {
|
|
|
367
400
|
denoms: []
|
|
368
401
|
};
|
|
369
402
|
}
|
|
403
|
+
/**
|
|
404
|
+
* QueryDenomsFromCreatorRequest defines the response structure for the
|
|
405
|
+
* DenomsFromCreator gRPC query.
|
|
406
|
+
* @name QueryDenomsFromCreatorResponse
|
|
407
|
+
* @package injective.tokenfactory.v1beta1
|
|
408
|
+
* @see proto type: injective.tokenfactory.v1beta1.QueryDenomsFromCreatorResponse
|
|
409
|
+
*/
|
|
370
410
|
export const QueryDenomsFromCreatorResponse = {
|
|
371
411
|
typeUrl: "/injective.tokenfactory.v1beta1.QueryDenomsFromCreatorResponse",
|
|
372
412
|
is(o) {
|
|
@@ -438,6 +478,13 @@ export const QueryDenomsFromCreatorResponse = {
|
|
|
438
478
|
function createBaseQueryModuleStateRequest() {
|
|
439
479
|
return {};
|
|
440
480
|
}
|
|
481
|
+
/**
|
|
482
|
+
* QueryModuleStateRequest is the request type for the
|
|
483
|
+
* Query/TokenfactoryModuleState RPC method.
|
|
484
|
+
* @name QueryModuleStateRequest
|
|
485
|
+
* @package injective.tokenfactory.v1beta1
|
|
486
|
+
* @see proto type: injective.tokenfactory.v1beta1.QueryModuleStateRequest
|
|
487
|
+
*/
|
|
441
488
|
export const QueryModuleStateRequest = {
|
|
442
489
|
typeUrl: "/injective.tokenfactory.v1beta1.QueryModuleStateRequest",
|
|
443
490
|
is(o) {
|
|
@@ -497,6 +544,13 @@ function createBaseQueryModuleStateResponse() {
|
|
|
497
544
|
state: undefined
|
|
498
545
|
};
|
|
499
546
|
}
|
|
547
|
+
/**
|
|
548
|
+
* QueryModuleStateResponse is the response type for the
|
|
549
|
+
* Query/TokenfactoryModuleState RPC method.
|
|
550
|
+
* @name QueryModuleStateResponse
|
|
551
|
+
* @package injective.tokenfactory.v1beta1
|
|
552
|
+
* @see proto type: injective.tokenfactory.v1beta1.QueryModuleStateResponse
|
|
553
|
+
*/
|
|
500
554
|
export const QueryModuleStateResponse = {
|
|
501
555
|
typeUrl: "/injective.tokenfactory.v1beta1.QueryModuleStateResponse",
|
|
502
556
|
is(o) {
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { buildQuery } from "../../../helper-func-types";
|
|
2
2
|
import { QueryParamsRequest, QueryParamsResponse, QueryDenomAuthorityMetadataRequest, QueryDenomAuthorityMetadataResponse, QueryDenomsFromCreatorRequest, QueryDenomsFromCreatorResponse, QueryModuleStateRequest, QueryModuleStateResponse } from "./query";
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Params defines a gRPC query method that returns the tokenfactory module's
|
|
5
|
+
* parameters.
|
|
6
|
+
* @name getParams
|
|
7
|
+
* @package injective.tokenfactory.v1beta1
|
|
8
|
+
* @see proto service: injective.tokenfactory.v1beta1.Params
|
|
9
|
+
*/
|
|
5
10
|
export const getParams = buildQuery({
|
|
6
11
|
encode: QueryParamsRequest.encode,
|
|
7
12
|
decode: QueryParamsResponse.decode,
|
|
@@ -9,8 +14,13 @@ export const getParams = buildQuery({
|
|
|
9
14
|
method: "Params",
|
|
10
15
|
deps: [QueryParamsRequest, QueryParamsResponse]
|
|
11
16
|
});
|
|
12
|
-
|
|
13
|
-
DenomAuthorityMetadata
|
|
17
|
+
/**
|
|
18
|
+
* DenomAuthorityMetadata defines a gRPC query method for fetching
|
|
19
|
+
* DenomAuthorityMetadata for a particular denom.
|
|
20
|
+
* @name getDenomAuthorityMetadata
|
|
21
|
+
* @package injective.tokenfactory.v1beta1
|
|
22
|
+
* @see proto service: injective.tokenfactory.v1beta1.DenomAuthorityMetadata
|
|
23
|
+
*/
|
|
14
24
|
export const getDenomAuthorityMetadata = buildQuery({
|
|
15
25
|
encode: QueryDenomAuthorityMetadataRequest.encode,
|
|
16
26
|
decode: QueryDenomAuthorityMetadataResponse.decode,
|
|
@@ -18,8 +28,13 @@ export const getDenomAuthorityMetadata = buildQuery({
|
|
|
18
28
|
method: "DenomAuthorityMetadata",
|
|
19
29
|
deps: [QueryDenomAuthorityMetadataRequest, QueryDenomAuthorityMetadataResponse]
|
|
20
30
|
});
|
|
21
|
-
|
|
22
|
-
|
|
31
|
+
/**
|
|
32
|
+
* DenomsFromCreator defines a gRPC query method for fetching all
|
|
33
|
+
* denominations created by a specific admin/creator.
|
|
34
|
+
* @name getDenomsFromCreator
|
|
35
|
+
* @package injective.tokenfactory.v1beta1
|
|
36
|
+
* @see proto service: injective.tokenfactory.v1beta1.DenomsFromCreator
|
|
37
|
+
*/
|
|
23
38
|
export const getDenomsFromCreator = buildQuery({
|
|
24
39
|
encode: QueryDenomsFromCreatorRequest.encode,
|
|
25
40
|
decode: QueryDenomsFromCreatorResponse.decode,
|
|
@@ -27,7 +42,12 @@ export const getDenomsFromCreator = buildQuery({
|
|
|
27
42
|
method: "DenomsFromCreator",
|
|
28
43
|
deps: [QueryDenomsFromCreatorRequest, QueryDenomsFromCreatorResponse]
|
|
29
44
|
});
|
|
30
|
-
|
|
45
|
+
/**
|
|
46
|
+
* Retrieves the entire auction module's state
|
|
47
|
+
* @name getTokenfactoryModuleState
|
|
48
|
+
* @package injective.tokenfactory.v1beta1
|
|
49
|
+
* @see proto service: injective.tokenfactory.v1beta1.TokenfactoryModuleState
|
|
50
|
+
*/
|
|
31
51
|
export const getTokenfactoryModuleState = buildQuery({
|
|
32
52
|
encode: QueryModuleStateRequest.encode,
|
|
33
53
|
decode: QueryModuleStateResponse.decode,
|
|
@@ -11,6 +11,20 @@ function createBaseMsgCreateDenom() {
|
|
|
11
11
|
decimals: 0
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* MsgCreateDenom defines the message structure for the CreateDenom gRPC service
|
|
16
|
+
* method. It allows an account to create a new denom. It requires a sender
|
|
17
|
+
* address and a sub denomination. The (sender_address, sub_denomination) tuple
|
|
18
|
+
* must be unique and cannot be re-used.
|
|
19
|
+
*
|
|
20
|
+
* The resulting denom created is defined as
|
|
21
|
+
* <factory/{creatorAddress}/{subdenom}>. The resulting denom's admin is
|
|
22
|
+
* originally set to be the creator, but this can be changed later. The token
|
|
23
|
+
* denom does not indicate the current admin.
|
|
24
|
+
* @name MsgCreateDenom
|
|
25
|
+
* @package injective.tokenfactory.v1beta1
|
|
26
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenom
|
|
27
|
+
*/
|
|
14
28
|
export const MsgCreateDenom = {
|
|
15
29
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgCreateDenom",
|
|
16
30
|
aminoType: "injective/tokenfactory/create-denom",
|
|
@@ -132,6 +146,13 @@ function createBaseMsgCreateDenomResponse() {
|
|
|
132
146
|
newTokenDenom: ""
|
|
133
147
|
};
|
|
134
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* MsgCreateDenomResponse is the return value of MsgCreateDenom
|
|
151
|
+
* It returns the full string of the newly created denom
|
|
152
|
+
* @name MsgCreateDenomResponse
|
|
153
|
+
* @package injective.tokenfactory.v1beta1
|
|
154
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgCreateDenomResponse
|
|
155
|
+
*/
|
|
135
156
|
export const MsgCreateDenomResponse = {
|
|
136
157
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgCreateDenomResponse",
|
|
137
158
|
is(o) {
|
|
@@ -203,6 +224,13 @@ function createBaseMsgMint() {
|
|
|
203
224
|
amount: Coin.fromPartial({})
|
|
204
225
|
};
|
|
205
226
|
}
|
|
227
|
+
/**
|
|
228
|
+
* MsgMint is the sdk.Msg type for allowing an admin account to mint
|
|
229
|
+
* more of a token. For now, we only support minting to the sender account
|
|
230
|
+
* @name MsgMint
|
|
231
|
+
* @package injective.tokenfactory.v1beta1
|
|
232
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMint
|
|
233
|
+
*/
|
|
206
234
|
export const MsgMint = {
|
|
207
235
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgMint",
|
|
208
236
|
aminoType: "injective/tokenfactory/mint",
|
|
@@ -294,6 +322,11 @@ export const MsgMint = {
|
|
|
294
322
|
function createBaseMsgMintResponse() {
|
|
295
323
|
return {};
|
|
296
324
|
}
|
|
325
|
+
/**
|
|
326
|
+
* @name MsgMintResponse
|
|
327
|
+
* @package injective.tokenfactory.v1beta1
|
|
328
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgMintResponse
|
|
329
|
+
*/
|
|
297
330
|
export const MsgMintResponse = {
|
|
298
331
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgMintResponse",
|
|
299
332
|
is(o) {
|
|
@@ -354,6 +387,13 @@ function createBaseMsgBurn() {
|
|
|
354
387
|
amount: Coin.fromPartial({})
|
|
355
388
|
};
|
|
356
389
|
}
|
|
390
|
+
/**
|
|
391
|
+
* MsgBurn is the sdk.Msg type for allowing an admin account to burn
|
|
392
|
+
* a token. For now, we only support burning from the sender account.
|
|
393
|
+
* @name MsgBurn
|
|
394
|
+
* @package injective.tokenfactory.v1beta1
|
|
395
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurn
|
|
396
|
+
*/
|
|
357
397
|
export const MsgBurn = {
|
|
358
398
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgBurn",
|
|
359
399
|
aminoType: "injective/tokenfactory/burn",
|
|
@@ -445,6 +485,11 @@ export const MsgBurn = {
|
|
|
445
485
|
function createBaseMsgBurnResponse() {
|
|
446
486
|
return {};
|
|
447
487
|
}
|
|
488
|
+
/**
|
|
489
|
+
* @name MsgBurnResponse
|
|
490
|
+
* @package injective.tokenfactory.v1beta1
|
|
491
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgBurnResponse
|
|
492
|
+
*/
|
|
448
493
|
export const MsgBurnResponse = {
|
|
449
494
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgBurnResponse",
|
|
450
495
|
is(o) {
|
|
@@ -506,6 +551,13 @@ function createBaseMsgChangeAdmin() {
|
|
|
506
551
|
newAdmin: ""
|
|
507
552
|
};
|
|
508
553
|
}
|
|
554
|
+
/**
|
|
555
|
+
* MsgChangeAdmin is the sdk.Msg type for allowing an admin account to reassign
|
|
556
|
+
* adminship of a denom to a new account
|
|
557
|
+
* @name MsgChangeAdmin
|
|
558
|
+
* @package injective.tokenfactory.v1beta1
|
|
559
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdmin
|
|
560
|
+
*/
|
|
509
561
|
export const MsgChangeAdmin = {
|
|
510
562
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgChangeAdmin",
|
|
511
563
|
aminoType: "injective/tokenfactory/change-admin",
|
|
@@ -603,6 +655,13 @@ export const MsgChangeAdmin = {
|
|
|
603
655
|
function createBaseMsgChangeAdminResponse() {
|
|
604
656
|
return {};
|
|
605
657
|
}
|
|
658
|
+
/**
|
|
659
|
+
* MsgChangeAdminResponse defines the response structure for an executed
|
|
660
|
+
* MsgChangeAdmin message.
|
|
661
|
+
* @name MsgChangeAdminResponse
|
|
662
|
+
* @package injective.tokenfactory.v1beta1
|
|
663
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgChangeAdminResponse
|
|
664
|
+
*/
|
|
606
665
|
export const MsgChangeAdminResponse = {
|
|
607
666
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgChangeAdminResponse",
|
|
608
667
|
is(o) {
|
|
@@ -663,6 +722,13 @@ function createBaseMsgSetDenomMetadata() {
|
|
|
663
722
|
metadata: Metadata.fromPartial({})
|
|
664
723
|
};
|
|
665
724
|
}
|
|
725
|
+
/**
|
|
726
|
+
* MsgSetDenomMetadata is the sdk.Msg type for allowing an admin account to set
|
|
727
|
+
* the denom's bank metadata
|
|
728
|
+
* @name MsgSetDenomMetadata
|
|
729
|
+
* @package injective.tokenfactory.v1beta1
|
|
730
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadata
|
|
731
|
+
*/
|
|
666
732
|
export const MsgSetDenomMetadata = {
|
|
667
733
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgSetDenomMetadata",
|
|
668
734
|
aminoType: "injective/tokenfactory/set-denom-metadata",
|
|
@@ -754,6 +820,13 @@ export const MsgSetDenomMetadata = {
|
|
|
754
820
|
function createBaseMsgSetDenomMetadataResponse() {
|
|
755
821
|
return {};
|
|
756
822
|
}
|
|
823
|
+
/**
|
|
824
|
+
* MsgSetDenomMetadataResponse defines the response structure for an executed
|
|
825
|
+
* MsgSetDenomMetadata message.
|
|
826
|
+
* @name MsgSetDenomMetadataResponse
|
|
827
|
+
* @package injective.tokenfactory.v1beta1
|
|
828
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgSetDenomMetadataResponse
|
|
829
|
+
*/
|
|
757
830
|
export const MsgSetDenomMetadataResponse = {
|
|
758
831
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgSetDenomMetadataResponse",
|
|
759
832
|
is(o) {
|
|
@@ -814,6 +887,11 @@ function createBaseMsgUpdateParams() {
|
|
|
814
887
|
params: Params.fromPartial({})
|
|
815
888
|
};
|
|
816
889
|
}
|
|
890
|
+
/**
|
|
891
|
+
* @name MsgUpdateParams
|
|
892
|
+
* @package injective.tokenfactory.v1beta1
|
|
893
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParams
|
|
894
|
+
*/
|
|
817
895
|
export const MsgUpdateParams = {
|
|
818
896
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgUpdateParams",
|
|
819
897
|
aminoType: "injective/tokenfactory/update-params",
|
|
@@ -905,6 +983,11 @@ export const MsgUpdateParams = {
|
|
|
905
983
|
function createBaseMsgUpdateParamsResponse() {
|
|
906
984
|
return {};
|
|
907
985
|
}
|
|
986
|
+
/**
|
|
987
|
+
* @name MsgUpdateParamsResponse
|
|
988
|
+
* @package injective.tokenfactory.v1beta1
|
|
989
|
+
* @see proto type: injective.tokenfactory.v1beta1.MsgUpdateParamsResponse
|
|
990
|
+
*/
|
|
908
991
|
export const MsgUpdateParamsResponse = {
|
|
909
992
|
typeUrl: "/injective.tokenfactory.v1beta1.MsgUpdateParamsResponse",
|
|
910
993
|
is(o) {
|
|
@@ -1,20 +1,50 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgCreateDenom, MsgMint, MsgBurn, MsgChangeAdmin, MsgSetDenomMetadata, MsgUpdateParams } from "./tx";
|
|
3
|
+
/**
|
|
4
|
+
* @name createDenom
|
|
5
|
+
* @package injective.tokenfactory.v1beta1
|
|
6
|
+
* @see proto service: injective.tokenfactory.v1beta1.CreateDenom
|
|
7
|
+
*/
|
|
3
8
|
export const createDenom = buildTx({
|
|
4
9
|
msg: MsgCreateDenom
|
|
5
10
|
});
|
|
11
|
+
/**
|
|
12
|
+
* @name mint
|
|
13
|
+
* @package injective.tokenfactory.v1beta1
|
|
14
|
+
* @see proto service: injective.tokenfactory.v1beta1.Mint
|
|
15
|
+
*/
|
|
6
16
|
export const mint = buildTx({
|
|
7
17
|
msg: MsgMint
|
|
8
18
|
});
|
|
19
|
+
/**
|
|
20
|
+
* @name burn
|
|
21
|
+
* @package injective.tokenfactory.v1beta1
|
|
22
|
+
* @see proto service: injective.tokenfactory.v1beta1.Burn
|
|
23
|
+
*/
|
|
9
24
|
export const burn = buildTx({
|
|
10
25
|
msg: MsgBurn
|
|
11
26
|
});
|
|
27
|
+
/**
|
|
28
|
+
* @name changeAdmin
|
|
29
|
+
* @package injective.tokenfactory.v1beta1
|
|
30
|
+
* @see proto service: injective.tokenfactory.v1beta1.ChangeAdmin
|
|
31
|
+
*/
|
|
12
32
|
export const changeAdmin = buildTx({
|
|
13
33
|
msg: MsgChangeAdmin
|
|
14
34
|
});
|
|
35
|
+
/**
|
|
36
|
+
* @name setDenomMetadata
|
|
37
|
+
* @package injective.tokenfactory.v1beta1
|
|
38
|
+
* @see proto service: injective.tokenfactory.v1beta1.SetDenomMetadata
|
|
39
|
+
*/
|
|
15
40
|
export const setDenomMetadata = buildTx({
|
|
16
41
|
msg: MsgSetDenomMetadata
|
|
17
42
|
});
|
|
43
|
+
/**
|
|
44
|
+
* @name updateParams
|
|
45
|
+
* @package injective.tokenfactory.v1beta1
|
|
46
|
+
* @see proto service: injective.tokenfactory.v1beta1.UpdateParams
|
|
47
|
+
*/
|
|
18
48
|
export const updateParams = buildTx({
|
|
19
49
|
msg: MsgUpdateParams
|
|
20
50
|
});
|
|
@@ -8,6 +8,13 @@ function createBaseEthAccount() {
|
|
|
8
8
|
codeHash: new Uint8Array()
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* EthAccount implements the authtypes.AccountI interface and embeds an
|
|
13
|
+
* authtypes.BaseAccount type. It is compatible with the auth AccountKeeper.
|
|
14
|
+
* @name EthAccount
|
|
15
|
+
* @package injective.types.v1beta1
|
|
16
|
+
* @see proto type: injective.types.v1beta1.EthAccount
|
|
17
|
+
*/
|
|
11
18
|
export const EthAccount = {
|
|
12
19
|
typeUrl: "/injective.types.v1beta1.EthAccount",
|
|
13
20
|
is(o) {
|
|
@@ -7,6 +7,11 @@ function createBaseExtensionOptionsWeb3Tx() {
|
|
|
7
7
|
feePayerSig: new Uint8Array()
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* @name ExtensionOptionsWeb3Tx
|
|
12
|
+
* @package injective.types.v1beta1
|
|
13
|
+
* @see proto type: injective.types.v1beta1.ExtensionOptionsWeb3Tx
|
|
14
|
+
*/
|
|
10
15
|
export const ExtensionOptionsWeb3Tx = {
|
|
11
16
|
typeUrl: "/injective.types.v1beta1.ExtensionOptionsWeb3Tx",
|
|
12
17
|
is(o) {
|
|
@@ -7,6 +7,13 @@ function createBaseTxResponseGenericMessage() {
|
|
|
7
7
|
data: new Uint8Array()
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* base header ak message type, we can cast the bytes into corresponding message
|
|
12
|
+
* response type
|
|
13
|
+
* @name TxResponseGenericMessage
|
|
14
|
+
* @package injective.types.v1beta1
|
|
15
|
+
* @see proto type: injective.types.v1beta1.TxResponseGenericMessage
|
|
16
|
+
*/
|
|
10
17
|
export const TxResponseGenericMessage = {
|
|
11
18
|
typeUrl: "/injective.types.v1beta1.TxResponseGenericMessage",
|
|
12
19
|
is(o) {
|
|
@@ -88,6 +95,12 @@ function createBaseTxResponseData() {
|
|
|
88
95
|
messages: []
|
|
89
96
|
};
|
|
90
97
|
}
|
|
98
|
+
/**
|
|
99
|
+
* improvised message to unpack length prefixed messages in tx response data
|
|
100
|
+
* @name TxResponseData
|
|
101
|
+
* @package injective.types.v1beta1
|
|
102
|
+
* @see proto type: injective.types.v1beta1.TxResponseData
|
|
103
|
+
*/
|
|
91
104
|
export const TxResponseData = {
|
|
92
105
|
typeUrl: "/injective.types.v1beta1.TxResponseData",
|
|
93
106
|
is(o) {
|
|
@@ -8,6 +8,11 @@ function createBaseEventContractExecution() {
|
|
|
8
8
|
executionError: ""
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* @name EventContractExecution
|
|
13
|
+
* @package injective.wasmx.v1
|
|
14
|
+
* @see proto type: injective.wasmx.v1.EventContractExecution
|
|
15
|
+
*/
|
|
11
16
|
export const EventContractExecution = {
|
|
12
17
|
typeUrl: "/injective.wasmx.v1.EventContractExecution",
|
|
13
18
|
is(o) {
|
|
@@ -118,6 +123,11 @@ function createBaseEventContractRegistered() {
|
|
|
118
123
|
fundingMode: 0
|
|
119
124
|
};
|
|
120
125
|
}
|
|
126
|
+
/**
|
|
127
|
+
* @name EventContractRegistered
|
|
128
|
+
* @package injective.wasmx.v1
|
|
129
|
+
* @see proto type: injective.wasmx.v1.EventContractRegistered
|
|
130
|
+
*/
|
|
121
131
|
export const EventContractRegistered = {
|
|
122
132
|
typeUrl: "/injective.wasmx.v1.EventContractRegistered",
|
|
123
133
|
is(o) {
|
|
@@ -265,6 +275,11 @@ function createBaseEventContractDeregistered() {
|
|
|
265
275
|
contractAddress: ""
|
|
266
276
|
};
|
|
267
277
|
}
|
|
278
|
+
/**
|
|
279
|
+
* @name EventContractDeregistered
|
|
280
|
+
* @package injective.wasmx.v1
|
|
281
|
+
* @see proto type: injective.wasmx.v1.EventContractDeregistered
|
|
282
|
+
*/
|
|
268
283
|
export const EventContractDeregistered = {
|
|
269
284
|
typeUrl: "/injective.wasmx.v1.EventContractDeregistered",
|
|
270
285
|
is(o) {
|
|
@@ -7,6 +7,11 @@ function createBaseRegisteredContractWithAddress() {
|
|
|
7
7
|
registeredContract: undefined
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* @name RegisteredContractWithAddress
|
|
12
|
+
* @package injective.wasmx.v1
|
|
13
|
+
* @see proto type: injective.wasmx.v1.RegisteredContractWithAddress
|
|
14
|
+
*/
|
|
10
15
|
export const RegisteredContractWithAddress = {
|
|
11
16
|
typeUrl: "/injective.wasmx.v1.RegisteredContractWithAddress",
|
|
12
17
|
is(o) {
|
|
@@ -94,6 +99,12 @@ function createBaseGenesisState() {
|
|
|
94
99
|
registeredContracts: []
|
|
95
100
|
};
|
|
96
101
|
}
|
|
102
|
+
/**
|
|
103
|
+
* GenesisState defines the wasmx module's genesis state.
|
|
104
|
+
* @name GenesisState
|
|
105
|
+
* @package injective.wasmx.v1
|
|
106
|
+
* @see proto type: injective.wasmx.v1.GenesisState
|
|
107
|
+
*/
|
|
97
108
|
export const GenesisState = {
|
|
98
109
|
typeUrl: "/injective.wasmx.v1.GenesisState",
|
|
99
110
|
is(o) {
|
|
@@ -53,6 +53,11 @@ function createBaseContractRegistrationRequestProposal() {
|
|
|
53
53
|
contractRegistrationRequest: ContractRegistrationRequest.fromPartial({})
|
|
54
54
|
};
|
|
55
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* @name ContractRegistrationRequestProposal
|
|
58
|
+
* @package injective.wasmx.v1
|
|
59
|
+
* @see proto type: injective.wasmx.v1.ContractRegistrationRequestProposal
|
|
60
|
+
*/
|
|
56
61
|
export const ContractRegistrationRequestProposal = {
|
|
57
62
|
typeUrl: "/injective.wasmx.v1.ContractRegistrationRequestProposal",
|
|
58
63
|
aminoType: "wasmx/ContractRegistrationRequestProposal",
|
|
@@ -161,6 +166,11 @@ function createBaseBatchContractRegistrationRequestProposal() {
|
|
|
161
166
|
contractRegistrationRequests: []
|
|
162
167
|
};
|
|
163
168
|
}
|
|
169
|
+
/**
|
|
170
|
+
* @name BatchContractRegistrationRequestProposal
|
|
171
|
+
* @package injective.wasmx.v1
|
|
172
|
+
* @see proto type: injective.wasmx.v1.BatchContractRegistrationRequestProposal
|
|
173
|
+
*/
|
|
164
174
|
export const BatchContractRegistrationRequestProposal = {
|
|
165
175
|
typeUrl: "/injective.wasmx.v1.BatchContractRegistrationRequestProposal",
|
|
166
176
|
aminoType: "wasmx/BatchContractRegistrationRequestProposal",
|
|
@@ -272,6 +282,11 @@ function createBaseBatchContractDeregistrationProposal() {
|
|
|
272
282
|
contracts: []
|
|
273
283
|
};
|
|
274
284
|
}
|
|
285
|
+
/**
|
|
286
|
+
* @name BatchContractDeregistrationProposal
|
|
287
|
+
* @package injective.wasmx.v1
|
|
288
|
+
* @see proto type: injective.wasmx.v1.BatchContractDeregistrationProposal
|
|
289
|
+
*/
|
|
275
290
|
export const BatchContractDeregistrationProposal = {
|
|
276
291
|
typeUrl: "/injective.wasmx.v1.BatchContractDeregistrationProposal",
|
|
277
292
|
aminoType: "wasmx/BatchContractDeregistrationProposal",
|
|
@@ -388,6 +403,11 @@ function createBaseContractRegistrationRequest() {
|
|
|
388
403
|
fundingMode: 0
|
|
389
404
|
};
|
|
390
405
|
}
|
|
406
|
+
/**
|
|
407
|
+
* @name ContractRegistrationRequest
|
|
408
|
+
* @package injective.wasmx.v1
|
|
409
|
+
* @see proto type: injective.wasmx.v1.ContractRegistrationRequest
|
|
410
|
+
*/
|
|
391
411
|
export const ContractRegistrationRequest = {
|
|
392
412
|
typeUrl: "/injective.wasmx.v1.ContractRegistrationRequest",
|
|
393
413
|
is(o) {
|
|
@@ -553,6 +573,11 @@ function createBaseBatchStoreCodeProposal() {
|
|
|
553
573
|
proposals: []
|
|
554
574
|
};
|
|
555
575
|
}
|
|
576
|
+
/**
|
|
577
|
+
* @name BatchStoreCodeProposal
|
|
578
|
+
* @package injective.wasmx.v1
|
|
579
|
+
* @see proto type: injective.wasmx.v1.BatchStoreCodeProposal
|
|
580
|
+
*/
|
|
556
581
|
export const BatchStoreCodeProposal = {
|
|
557
582
|
typeUrl: "/injective.wasmx.v1.BatchStoreCodeProposal",
|
|
558
583
|
aminoType: "wasmx/BatchStoreCodeProposal",
|
|
@@ -5,6 +5,13 @@ import { GlobalDecoderRegistry } from "../../../registry";
|
|
|
5
5
|
function createBaseQueryWasmxParamsRequest() {
|
|
6
6
|
return {};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* QueryWasmxParamsRequest is the request type for the Query/WasmxParams RPC
|
|
10
|
+
* method.
|
|
11
|
+
* @name QueryWasmxParamsRequest
|
|
12
|
+
* @package injective.wasmx.v1
|
|
13
|
+
* @see proto type: injective.wasmx.v1.QueryWasmxParamsRequest
|
|
14
|
+
*/
|
|
8
15
|
export const QueryWasmxParamsRequest = {
|
|
9
16
|
typeUrl: "/injective.wasmx.v1.QueryWasmxParamsRequest",
|
|
10
17
|
is(o) {
|
|
@@ -64,6 +71,13 @@ function createBaseQueryWasmxParamsResponse() {
|
|
|
64
71
|
params: Params.fromPartial({})
|
|
65
72
|
};
|
|
66
73
|
}
|
|
74
|
+
/**
|
|
75
|
+
* QueryWasmxParamsRequest is the response type for the Query/WasmxParams RPC
|
|
76
|
+
* method.
|
|
77
|
+
* @name QueryWasmxParamsResponse
|
|
78
|
+
* @package injective.wasmx.v1
|
|
79
|
+
* @see proto type: injective.wasmx.v1.QueryWasmxParamsResponse
|
|
80
|
+
*/
|
|
67
81
|
export const QueryWasmxParamsResponse = {
|
|
68
82
|
typeUrl: "/injective.wasmx.v1.QueryWasmxParamsResponse",
|
|
69
83
|
is(o) {
|
|
@@ -137,6 +151,13 @@ export const QueryWasmxParamsResponse = {
|
|
|
137
151
|
function createBaseQueryModuleStateRequest() {
|
|
138
152
|
return {};
|
|
139
153
|
}
|
|
154
|
+
/**
|
|
155
|
+
* QueryModuleStateRequest is the request type for the Query/WasmxModuleState
|
|
156
|
+
* RPC method.
|
|
157
|
+
* @name QueryModuleStateRequest
|
|
158
|
+
* @package injective.wasmx.v1
|
|
159
|
+
* @see proto type: injective.wasmx.v1.QueryModuleStateRequest
|
|
160
|
+
*/
|
|
140
161
|
export const QueryModuleStateRequest = {
|
|
141
162
|
typeUrl: "/injective.wasmx.v1.QueryModuleStateRequest",
|
|
142
163
|
is(o) {
|
|
@@ -196,6 +217,13 @@ function createBaseQueryModuleStateResponse() {
|
|
|
196
217
|
state: undefined
|
|
197
218
|
};
|
|
198
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* QueryModuleStateResponse is the response type for the Query/WasmxModuleState
|
|
222
|
+
* RPC method.
|
|
223
|
+
* @name QueryModuleStateResponse
|
|
224
|
+
* @package injective.wasmx.v1
|
|
225
|
+
* @see proto type: injective.wasmx.v1.QueryModuleStateResponse
|
|
226
|
+
*/
|
|
199
227
|
export const QueryModuleStateResponse = {
|
|
200
228
|
typeUrl: "/injective.wasmx.v1.QueryModuleStateResponse",
|
|
201
229
|
is(o) {
|
|
@@ -271,6 +299,12 @@ function createBaseQueryContractRegistrationInfoRequest() {
|
|
|
271
299
|
contractAddress: ""
|
|
272
300
|
};
|
|
273
301
|
}
|
|
302
|
+
/**
|
|
303
|
+
* Contract registration info
|
|
304
|
+
* @name QueryContractRegistrationInfoRequest
|
|
305
|
+
* @package injective.wasmx.v1
|
|
306
|
+
* @see proto type: injective.wasmx.v1.QueryContractRegistrationInfoRequest
|
|
307
|
+
*/
|
|
274
308
|
export const QueryContractRegistrationInfoRequest = {
|
|
275
309
|
typeUrl: "/injective.wasmx.v1.QueryContractRegistrationInfoRequest",
|
|
276
310
|
is(o) {
|
|
@@ -341,6 +375,11 @@ function createBaseQueryContractRegistrationInfoResponse() {
|
|
|
341
375
|
contract: undefined
|
|
342
376
|
};
|
|
343
377
|
}
|
|
378
|
+
/**
|
|
379
|
+
* @name QueryContractRegistrationInfoResponse
|
|
380
|
+
* @package injective.wasmx.v1
|
|
381
|
+
* @see proto type: injective.wasmx.v1.QueryContractRegistrationInfoResponse
|
|
382
|
+
*/
|
|
344
383
|
export const QueryContractRegistrationInfoResponse = {
|
|
345
384
|
typeUrl: "/injective.wasmx.v1.QueryContractRegistrationInfoResponse",
|
|
346
385
|
is(o) {
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { buildQuery } from "../../../helper-func-types";
|
|
2
2
|
import { QueryWasmxParamsRequest, QueryWasmxParamsResponse, QueryContractRegistrationInfoRequest, QueryContractRegistrationInfoResponse, QueryModuleStateRequest, QueryModuleStateResponse } from "./query";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Retrieves wasmx params
|
|
5
|
+
* @name getWasmxParams
|
|
6
|
+
* @package injective.wasmx.v1
|
|
7
|
+
* @see proto service: injective.wasmx.v1.WasmxParams
|
|
8
|
+
*/
|
|
4
9
|
export const getWasmxParams = buildQuery({
|
|
5
10
|
encode: QueryWasmxParamsRequest.encode,
|
|
6
11
|
decode: QueryWasmxParamsResponse.decode,
|
|
@@ -8,7 +13,12 @@ export const getWasmxParams = buildQuery({
|
|
|
8
13
|
method: "WasmxParams",
|
|
9
14
|
deps: [QueryWasmxParamsRequest, QueryWasmxParamsResponse]
|
|
10
15
|
});
|
|
11
|
-
|
|
16
|
+
/**
|
|
17
|
+
* Retrieves contract registration info
|
|
18
|
+
* @name getContractRegistrationInfo
|
|
19
|
+
* @package injective.wasmx.v1
|
|
20
|
+
* @see proto service: injective.wasmx.v1.ContractRegistrationInfo
|
|
21
|
+
*/
|
|
12
22
|
export const getContractRegistrationInfo = buildQuery({
|
|
13
23
|
encode: QueryContractRegistrationInfoRequest.encode,
|
|
14
24
|
decode: QueryContractRegistrationInfoResponse.decode,
|
|
@@ -16,7 +26,12 @@ export const getContractRegistrationInfo = buildQuery({
|
|
|
16
26
|
method: "ContractRegistrationInfo",
|
|
17
27
|
deps: [QueryContractRegistrationInfoRequest, QueryContractRegistrationInfoResponse]
|
|
18
28
|
});
|
|
19
|
-
|
|
29
|
+
/**
|
|
30
|
+
* Retrieves the entire wasmx module's state
|
|
31
|
+
* @name getWasmxModuleState
|
|
32
|
+
* @package injective.wasmx.v1
|
|
33
|
+
* @see proto service: injective.wasmx.v1.WasmxModuleState
|
|
34
|
+
*/
|
|
20
35
|
export const getWasmxModuleState = buildQuery({
|
|
21
36
|
encode: QueryModuleStateRequest.encode,
|
|
22
37
|
decode: QueryModuleStateResponse.decode,
|