injectivejs 1.11.13 → 1.11.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
|
@@ -5,15 +5,26 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
/**
|
|
6
6
|
* MsgExecuteContractCompat submits the given message data to a smart contract,
|
|
7
7
|
* compatible with EIP712
|
|
8
|
+
* @name MsgExecuteContractCompat
|
|
9
|
+
* @package injective.wasmx.v1
|
|
10
|
+
* @see proto type: injective.wasmx.v1.MsgExecuteContractCompat
|
|
8
11
|
*/
|
|
9
12
|
export interface MsgExecuteContractCompat {
|
|
10
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* Sender is the that actor that signed the messages
|
|
15
|
+
*/
|
|
11
16
|
sender: string;
|
|
12
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* Contract is the address of the smart contract
|
|
19
|
+
*/
|
|
13
20
|
contract: string;
|
|
14
|
-
/**
|
|
21
|
+
/**
|
|
22
|
+
* Msg json encoded message to be passed to the contract
|
|
23
|
+
*/
|
|
15
24
|
msg: string;
|
|
16
|
-
/**
|
|
25
|
+
/**
|
|
26
|
+
* Funds coins that are transferred to the contract on execution
|
|
27
|
+
*/
|
|
17
28
|
funds: string;
|
|
18
29
|
}
|
|
19
30
|
export interface MsgExecuteContractCompatProtoMsg {
|
|
@@ -23,143 +34,259 @@ export interface MsgExecuteContractCompatProtoMsg {
|
|
|
23
34
|
/**
|
|
24
35
|
* MsgExecuteContractCompat submits the given message data to a smart contract,
|
|
25
36
|
* compatible with EIP712
|
|
37
|
+
* @name MsgExecuteContractCompatAmino
|
|
38
|
+
* @package injective.wasmx.v1
|
|
39
|
+
* @see proto type: injective.wasmx.v1.MsgExecuteContractCompat
|
|
26
40
|
*/
|
|
27
41
|
export interface MsgExecuteContractCompatAmino {
|
|
28
|
-
/**
|
|
42
|
+
/**
|
|
43
|
+
* Sender is the that actor that signed the messages
|
|
44
|
+
*/
|
|
29
45
|
sender: string;
|
|
30
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* Contract is the address of the smart contract
|
|
48
|
+
*/
|
|
31
49
|
contract: string;
|
|
32
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* Msg json encoded message to be passed to the contract
|
|
52
|
+
*/
|
|
33
53
|
msg: string;
|
|
34
|
-
/**
|
|
54
|
+
/**
|
|
55
|
+
* Funds coins that are transferred to the contract on execution
|
|
56
|
+
*/
|
|
35
57
|
funds: string;
|
|
36
58
|
}
|
|
37
59
|
export interface MsgExecuteContractCompatAminoMsg {
|
|
38
60
|
type: "wasmx/MsgExecuteContractCompat";
|
|
39
61
|
value: MsgExecuteContractCompatAmino;
|
|
40
62
|
}
|
|
41
|
-
/**
|
|
63
|
+
/**
|
|
64
|
+
* MsgExecuteContractCompatResponse returns execution result data.
|
|
65
|
+
* @name MsgExecuteContractCompatResponse
|
|
66
|
+
* @package injective.wasmx.v1
|
|
67
|
+
* @see proto type: injective.wasmx.v1.MsgExecuteContractCompatResponse
|
|
68
|
+
*/
|
|
42
69
|
export interface MsgExecuteContractCompatResponse {
|
|
43
|
-
/**
|
|
70
|
+
/**
|
|
71
|
+
* Data contains bytes to returned from the contract
|
|
72
|
+
*/
|
|
44
73
|
data: Uint8Array;
|
|
45
74
|
}
|
|
46
75
|
export interface MsgExecuteContractCompatResponseProtoMsg {
|
|
47
76
|
typeUrl: "/injective.wasmx.v1.MsgExecuteContractCompatResponse";
|
|
48
77
|
value: Uint8Array;
|
|
49
78
|
}
|
|
50
|
-
/**
|
|
79
|
+
/**
|
|
80
|
+
* MsgExecuteContractCompatResponse returns execution result data.
|
|
81
|
+
* @name MsgExecuteContractCompatResponseAmino
|
|
82
|
+
* @package injective.wasmx.v1
|
|
83
|
+
* @see proto type: injective.wasmx.v1.MsgExecuteContractCompatResponse
|
|
84
|
+
*/
|
|
51
85
|
export interface MsgExecuteContractCompatResponseAmino {
|
|
52
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* Data contains bytes to returned from the contract
|
|
88
|
+
*/
|
|
53
89
|
data: string;
|
|
54
90
|
}
|
|
55
91
|
export interface MsgExecuteContractCompatResponseAminoMsg {
|
|
56
92
|
type: "/injective.wasmx.v1.MsgExecuteContractCompatResponse";
|
|
57
93
|
value: MsgExecuteContractCompatResponseAmino;
|
|
58
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* @name MsgUpdateContract
|
|
97
|
+
* @package injective.wasmx.v1
|
|
98
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateContract
|
|
99
|
+
*/
|
|
59
100
|
export interface MsgUpdateContract {
|
|
60
101
|
sender: string;
|
|
61
|
-
/**
|
|
102
|
+
/**
|
|
103
|
+
* Unique Identifier for contract instance to be registered.
|
|
104
|
+
*/
|
|
62
105
|
contractAddress: string;
|
|
63
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* Maximum gas to be used for the smart contract execution.
|
|
108
|
+
*/
|
|
64
109
|
gasLimit: bigint;
|
|
65
|
-
/**
|
|
110
|
+
/**
|
|
111
|
+
* gas price to be used for the smart contract execution.
|
|
112
|
+
*/
|
|
66
113
|
gasPrice: bigint;
|
|
67
|
-
/**
|
|
114
|
+
/**
|
|
115
|
+
* optional - admin account that will be allowed to perform any changes
|
|
116
|
+
*/
|
|
68
117
|
adminAddress?: string;
|
|
69
118
|
}
|
|
70
119
|
export interface MsgUpdateContractProtoMsg {
|
|
71
120
|
typeUrl: "/injective.wasmx.v1.MsgUpdateContract";
|
|
72
121
|
value: Uint8Array;
|
|
73
122
|
}
|
|
123
|
+
/**
|
|
124
|
+
* @name MsgUpdateContractAmino
|
|
125
|
+
* @package injective.wasmx.v1
|
|
126
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateContract
|
|
127
|
+
*/
|
|
74
128
|
export interface MsgUpdateContractAmino {
|
|
75
129
|
sender: string;
|
|
76
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* Unique Identifier for contract instance to be registered.
|
|
132
|
+
*/
|
|
77
133
|
contract_address: string;
|
|
78
|
-
/**
|
|
134
|
+
/**
|
|
135
|
+
* Maximum gas to be used for the smart contract execution.
|
|
136
|
+
*/
|
|
79
137
|
gas_limit: string;
|
|
80
|
-
/**
|
|
138
|
+
/**
|
|
139
|
+
* gas price to be used for the smart contract execution.
|
|
140
|
+
*/
|
|
81
141
|
gas_price: string;
|
|
82
|
-
/**
|
|
142
|
+
/**
|
|
143
|
+
* optional - admin account that will be allowed to perform any changes
|
|
144
|
+
*/
|
|
83
145
|
admin_address?: string;
|
|
84
146
|
}
|
|
85
147
|
export interface MsgUpdateContractAminoMsg {
|
|
86
148
|
type: "wasmx/MsgUpdateContract";
|
|
87
149
|
value: MsgUpdateContractAmino;
|
|
88
150
|
}
|
|
151
|
+
/**
|
|
152
|
+
* @name MsgUpdateContractResponse
|
|
153
|
+
* @package injective.wasmx.v1
|
|
154
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateContractResponse
|
|
155
|
+
*/
|
|
89
156
|
export interface MsgUpdateContractResponse {
|
|
90
157
|
}
|
|
91
158
|
export interface MsgUpdateContractResponseProtoMsg {
|
|
92
159
|
typeUrl: "/injective.wasmx.v1.MsgUpdateContractResponse";
|
|
93
160
|
value: Uint8Array;
|
|
94
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
* @name MsgUpdateContractResponseAmino
|
|
164
|
+
* @package injective.wasmx.v1
|
|
165
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateContractResponse
|
|
166
|
+
*/
|
|
95
167
|
export interface MsgUpdateContractResponseAmino {
|
|
96
168
|
}
|
|
97
169
|
export interface MsgUpdateContractResponseAminoMsg {
|
|
98
170
|
type: "/injective.wasmx.v1.MsgUpdateContractResponse";
|
|
99
171
|
value: MsgUpdateContractResponseAmino;
|
|
100
172
|
}
|
|
173
|
+
/**
|
|
174
|
+
* @name MsgActivateContract
|
|
175
|
+
* @package injective.wasmx.v1
|
|
176
|
+
* @see proto type: injective.wasmx.v1.MsgActivateContract
|
|
177
|
+
*/
|
|
101
178
|
export interface MsgActivateContract {
|
|
102
179
|
sender: string;
|
|
103
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* Unique Identifier for contract instance to be activated.
|
|
182
|
+
*/
|
|
104
183
|
contractAddress: string;
|
|
105
184
|
}
|
|
106
185
|
export interface MsgActivateContractProtoMsg {
|
|
107
186
|
typeUrl: "/injective.wasmx.v1.MsgActivateContract";
|
|
108
187
|
value: Uint8Array;
|
|
109
188
|
}
|
|
189
|
+
/**
|
|
190
|
+
* @name MsgActivateContractAmino
|
|
191
|
+
* @package injective.wasmx.v1
|
|
192
|
+
* @see proto type: injective.wasmx.v1.MsgActivateContract
|
|
193
|
+
*/
|
|
110
194
|
export interface MsgActivateContractAmino {
|
|
111
195
|
sender: string;
|
|
112
|
-
/**
|
|
196
|
+
/**
|
|
197
|
+
* Unique Identifier for contract instance to be activated.
|
|
198
|
+
*/
|
|
113
199
|
contract_address: string;
|
|
114
200
|
}
|
|
115
201
|
export interface MsgActivateContractAminoMsg {
|
|
116
202
|
type: "wasmx/MsgActivateContract";
|
|
117
203
|
value: MsgActivateContractAmino;
|
|
118
204
|
}
|
|
205
|
+
/**
|
|
206
|
+
* @name MsgActivateContractResponse
|
|
207
|
+
* @package injective.wasmx.v1
|
|
208
|
+
* @see proto type: injective.wasmx.v1.MsgActivateContractResponse
|
|
209
|
+
*/
|
|
119
210
|
export interface MsgActivateContractResponse {
|
|
120
211
|
}
|
|
121
212
|
export interface MsgActivateContractResponseProtoMsg {
|
|
122
213
|
typeUrl: "/injective.wasmx.v1.MsgActivateContractResponse";
|
|
123
214
|
value: Uint8Array;
|
|
124
215
|
}
|
|
216
|
+
/**
|
|
217
|
+
* @name MsgActivateContractResponseAmino
|
|
218
|
+
* @package injective.wasmx.v1
|
|
219
|
+
* @see proto type: injective.wasmx.v1.MsgActivateContractResponse
|
|
220
|
+
*/
|
|
125
221
|
export interface MsgActivateContractResponseAmino {
|
|
126
222
|
}
|
|
127
223
|
export interface MsgActivateContractResponseAminoMsg {
|
|
128
224
|
type: "/injective.wasmx.v1.MsgActivateContractResponse";
|
|
129
225
|
value: MsgActivateContractResponseAmino;
|
|
130
226
|
}
|
|
227
|
+
/**
|
|
228
|
+
* @name MsgDeactivateContract
|
|
229
|
+
* @package injective.wasmx.v1
|
|
230
|
+
* @see proto type: injective.wasmx.v1.MsgDeactivateContract
|
|
231
|
+
*/
|
|
131
232
|
export interface MsgDeactivateContract {
|
|
132
233
|
sender: string;
|
|
133
|
-
/**
|
|
234
|
+
/**
|
|
235
|
+
* Unique Identifier for contract instance to be deactivated.
|
|
236
|
+
*/
|
|
134
237
|
contractAddress: string;
|
|
135
238
|
}
|
|
136
239
|
export interface MsgDeactivateContractProtoMsg {
|
|
137
240
|
typeUrl: "/injective.wasmx.v1.MsgDeactivateContract";
|
|
138
241
|
value: Uint8Array;
|
|
139
242
|
}
|
|
243
|
+
/**
|
|
244
|
+
* @name MsgDeactivateContractAmino
|
|
245
|
+
* @package injective.wasmx.v1
|
|
246
|
+
* @see proto type: injective.wasmx.v1.MsgDeactivateContract
|
|
247
|
+
*/
|
|
140
248
|
export interface MsgDeactivateContractAmino {
|
|
141
249
|
sender: string;
|
|
142
|
-
/**
|
|
250
|
+
/**
|
|
251
|
+
* Unique Identifier for contract instance to be deactivated.
|
|
252
|
+
*/
|
|
143
253
|
contract_address: string;
|
|
144
254
|
}
|
|
145
255
|
export interface MsgDeactivateContractAminoMsg {
|
|
146
256
|
type: "wasmx/MsgDeactivateContract";
|
|
147
257
|
value: MsgDeactivateContractAmino;
|
|
148
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* @name MsgDeactivateContractResponse
|
|
261
|
+
* @package injective.wasmx.v1
|
|
262
|
+
* @see proto type: injective.wasmx.v1.MsgDeactivateContractResponse
|
|
263
|
+
*/
|
|
149
264
|
export interface MsgDeactivateContractResponse {
|
|
150
265
|
}
|
|
151
266
|
export interface MsgDeactivateContractResponseProtoMsg {
|
|
152
267
|
typeUrl: "/injective.wasmx.v1.MsgDeactivateContractResponse";
|
|
153
268
|
value: Uint8Array;
|
|
154
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* @name MsgDeactivateContractResponseAmino
|
|
272
|
+
* @package injective.wasmx.v1
|
|
273
|
+
* @see proto type: injective.wasmx.v1.MsgDeactivateContractResponse
|
|
274
|
+
*/
|
|
155
275
|
export interface MsgDeactivateContractResponseAmino {
|
|
156
276
|
}
|
|
157
277
|
export interface MsgDeactivateContractResponseAminoMsg {
|
|
158
278
|
type: "/injective.wasmx.v1.MsgDeactivateContractResponse";
|
|
159
279
|
value: MsgDeactivateContractResponseAmino;
|
|
160
280
|
}
|
|
281
|
+
/**
|
|
282
|
+
* @name MsgUpdateParams
|
|
283
|
+
* @package injective.wasmx.v1
|
|
284
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateParams
|
|
285
|
+
*/
|
|
161
286
|
export interface MsgUpdateParams {
|
|
162
|
-
/**
|
|
287
|
+
/**
|
|
288
|
+
* authority is the address of the governance account.
|
|
289
|
+
*/
|
|
163
290
|
authority: string;
|
|
164
291
|
/**
|
|
165
292
|
* params defines the wasmx parameters to update.
|
|
@@ -172,8 +299,15 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
172
299
|
typeUrl: "/injective.wasmx.v1.MsgUpdateParams";
|
|
173
300
|
value: Uint8Array;
|
|
174
301
|
}
|
|
302
|
+
/**
|
|
303
|
+
* @name MsgUpdateParamsAmino
|
|
304
|
+
* @package injective.wasmx.v1
|
|
305
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateParams
|
|
306
|
+
*/
|
|
175
307
|
export interface MsgUpdateParamsAmino {
|
|
176
|
-
/**
|
|
308
|
+
/**
|
|
309
|
+
* authority is the address of the governance account.
|
|
310
|
+
*/
|
|
177
311
|
authority: string;
|
|
178
312
|
/**
|
|
179
313
|
* params defines the wasmx parameters to update.
|
|
@@ -186,18 +320,33 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
186
320
|
type: "wasmx/MsgUpdateParams";
|
|
187
321
|
value: MsgUpdateParamsAmino;
|
|
188
322
|
}
|
|
323
|
+
/**
|
|
324
|
+
* @name MsgUpdateParamsResponse
|
|
325
|
+
* @package injective.wasmx.v1
|
|
326
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateParamsResponse
|
|
327
|
+
*/
|
|
189
328
|
export interface MsgUpdateParamsResponse {
|
|
190
329
|
}
|
|
191
330
|
export interface MsgUpdateParamsResponseProtoMsg {
|
|
192
331
|
typeUrl: "/injective.wasmx.v1.MsgUpdateParamsResponse";
|
|
193
332
|
value: Uint8Array;
|
|
194
333
|
}
|
|
334
|
+
/**
|
|
335
|
+
* @name MsgUpdateParamsResponseAmino
|
|
336
|
+
* @package injective.wasmx.v1
|
|
337
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateParamsResponse
|
|
338
|
+
*/
|
|
195
339
|
export interface MsgUpdateParamsResponseAmino {
|
|
196
340
|
}
|
|
197
341
|
export interface MsgUpdateParamsResponseAminoMsg {
|
|
198
342
|
type: "/injective.wasmx.v1.MsgUpdateParamsResponse";
|
|
199
343
|
value: MsgUpdateParamsResponseAmino;
|
|
200
344
|
}
|
|
345
|
+
/**
|
|
346
|
+
* @name MsgRegisterContract
|
|
347
|
+
* @package injective.wasmx.v1
|
|
348
|
+
* @see proto type: injective.wasmx.v1.MsgRegisterContract
|
|
349
|
+
*/
|
|
201
350
|
export interface MsgRegisterContract {
|
|
202
351
|
sender: string;
|
|
203
352
|
contractRegistrationRequest: ContractRegistrationRequest;
|
|
@@ -206,6 +355,11 @@ export interface MsgRegisterContractProtoMsg {
|
|
|
206
355
|
typeUrl: "/injective.wasmx.v1.MsgRegisterContract";
|
|
207
356
|
value: Uint8Array;
|
|
208
357
|
}
|
|
358
|
+
/**
|
|
359
|
+
* @name MsgRegisterContractAmino
|
|
360
|
+
* @package injective.wasmx.v1
|
|
361
|
+
* @see proto type: injective.wasmx.v1.MsgRegisterContract
|
|
362
|
+
*/
|
|
209
363
|
export interface MsgRegisterContractAmino {
|
|
210
364
|
sender: string;
|
|
211
365
|
contract_registration_request: ContractRegistrationRequestAmino;
|
|
@@ -214,18 +368,35 @@ export interface MsgRegisterContractAminoMsg {
|
|
|
214
368
|
type: "wasmx/MsgRegisterContract";
|
|
215
369
|
value: MsgRegisterContractAmino;
|
|
216
370
|
}
|
|
371
|
+
/**
|
|
372
|
+
* @name MsgRegisterContractResponse
|
|
373
|
+
* @package injective.wasmx.v1
|
|
374
|
+
* @see proto type: injective.wasmx.v1.MsgRegisterContractResponse
|
|
375
|
+
*/
|
|
217
376
|
export interface MsgRegisterContractResponse {
|
|
218
377
|
}
|
|
219
378
|
export interface MsgRegisterContractResponseProtoMsg {
|
|
220
379
|
typeUrl: "/injective.wasmx.v1.MsgRegisterContractResponse";
|
|
221
380
|
value: Uint8Array;
|
|
222
381
|
}
|
|
382
|
+
/**
|
|
383
|
+
* @name MsgRegisterContractResponseAmino
|
|
384
|
+
* @package injective.wasmx.v1
|
|
385
|
+
* @see proto type: injective.wasmx.v1.MsgRegisterContractResponse
|
|
386
|
+
*/
|
|
223
387
|
export interface MsgRegisterContractResponseAmino {
|
|
224
388
|
}
|
|
225
389
|
export interface MsgRegisterContractResponseAminoMsg {
|
|
226
390
|
type: "/injective.wasmx.v1.MsgRegisterContractResponse";
|
|
227
391
|
value: MsgRegisterContractResponseAmino;
|
|
228
392
|
}
|
|
393
|
+
/**
|
|
394
|
+
* MsgExecuteContractCompat submits the given message data to a smart contract,
|
|
395
|
+
* compatible with EIP712
|
|
396
|
+
* @name MsgExecuteContractCompat
|
|
397
|
+
* @package injective.wasmx.v1
|
|
398
|
+
* @see proto type: injective.wasmx.v1.MsgExecuteContractCompat
|
|
399
|
+
*/
|
|
229
400
|
export declare const MsgExecuteContractCompat: {
|
|
230
401
|
typeUrl: string;
|
|
231
402
|
aminoType: string;
|
|
@@ -243,6 +414,12 @@ export declare const MsgExecuteContractCompat: {
|
|
|
243
414
|
toProtoMsg(message: MsgExecuteContractCompat): MsgExecuteContractCompatProtoMsg;
|
|
244
415
|
registerTypeUrl(): void;
|
|
245
416
|
};
|
|
417
|
+
/**
|
|
418
|
+
* MsgExecuteContractCompatResponse returns execution result data.
|
|
419
|
+
* @name MsgExecuteContractCompatResponse
|
|
420
|
+
* @package injective.wasmx.v1
|
|
421
|
+
* @see proto type: injective.wasmx.v1.MsgExecuteContractCompatResponse
|
|
422
|
+
*/
|
|
246
423
|
export declare const MsgExecuteContractCompatResponse: {
|
|
247
424
|
typeUrl: string;
|
|
248
425
|
is(o: any): o is MsgExecuteContractCompatResponse;
|
|
@@ -258,6 +435,11 @@ export declare const MsgExecuteContractCompatResponse: {
|
|
|
258
435
|
toProtoMsg(message: MsgExecuteContractCompatResponse): MsgExecuteContractCompatResponseProtoMsg;
|
|
259
436
|
registerTypeUrl(): void;
|
|
260
437
|
};
|
|
438
|
+
/**
|
|
439
|
+
* @name MsgUpdateContract
|
|
440
|
+
* @package injective.wasmx.v1
|
|
441
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateContract
|
|
442
|
+
*/
|
|
261
443
|
export declare const MsgUpdateContract: {
|
|
262
444
|
typeUrl: string;
|
|
263
445
|
aminoType: string;
|
|
@@ -275,6 +457,11 @@ export declare const MsgUpdateContract: {
|
|
|
275
457
|
toProtoMsg(message: MsgUpdateContract): MsgUpdateContractProtoMsg;
|
|
276
458
|
registerTypeUrl(): void;
|
|
277
459
|
};
|
|
460
|
+
/**
|
|
461
|
+
* @name MsgUpdateContractResponse
|
|
462
|
+
* @package injective.wasmx.v1
|
|
463
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateContractResponse
|
|
464
|
+
*/
|
|
278
465
|
export declare const MsgUpdateContractResponse: {
|
|
279
466
|
typeUrl: string;
|
|
280
467
|
is(o: any): o is MsgUpdateContractResponse;
|
|
@@ -290,6 +477,11 @@ export declare const MsgUpdateContractResponse: {
|
|
|
290
477
|
toProtoMsg(message: MsgUpdateContractResponse): MsgUpdateContractResponseProtoMsg;
|
|
291
478
|
registerTypeUrl(): void;
|
|
292
479
|
};
|
|
480
|
+
/**
|
|
481
|
+
* @name MsgActivateContract
|
|
482
|
+
* @package injective.wasmx.v1
|
|
483
|
+
* @see proto type: injective.wasmx.v1.MsgActivateContract
|
|
484
|
+
*/
|
|
293
485
|
export declare const MsgActivateContract: {
|
|
294
486
|
typeUrl: string;
|
|
295
487
|
aminoType: string;
|
|
@@ -307,6 +499,11 @@ export declare const MsgActivateContract: {
|
|
|
307
499
|
toProtoMsg(message: MsgActivateContract): MsgActivateContractProtoMsg;
|
|
308
500
|
registerTypeUrl(): void;
|
|
309
501
|
};
|
|
502
|
+
/**
|
|
503
|
+
* @name MsgActivateContractResponse
|
|
504
|
+
* @package injective.wasmx.v1
|
|
505
|
+
* @see proto type: injective.wasmx.v1.MsgActivateContractResponse
|
|
506
|
+
*/
|
|
310
507
|
export declare const MsgActivateContractResponse: {
|
|
311
508
|
typeUrl: string;
|
|
312
509
|
is(o: any): o is MsgActivateContractResponse;
|
|
@@ -322,6 +519,11 @@ export declare const MsgActivateContractResponse: {
|
|
|
322
519
|
toProtoMsg(message: MsgActivateContractResponse): MsgActivateContractResponseProtoMsg;
|
|
323
520
|
registerTypeUrl(): void;
|
|
324
521
|
};
|
|
522
|
+
/**
|
|
523
|
+
* @name MsgDeactivateContract
|
|
524
|
+
* @package injective.wasmx.v1
|
|
525
|
+
* @see proto type: injective.wasmx.v1.MsgDeactivateContract
|
|
526
|
+
*/
|
|
325
527
|
export declare const MsgDeactivateContract: {
|
|
326
528
|
typeUrl: string;
|
|
327
529
|
aminoType: string;
|
|
@@ -339,6 +541,11 @@ export declare const MsgDeactivateContract: {
|
|
|
339
541
|
toProtoMsg(message: MsgDeactivateContract): MsgDeactivateContractProtoMsg;
|
|
340
542
|
registerTypeUrl(): void;
|
|
341
543
|
};
|
|
544
|
+
/**
|
|
545
|
+
* @name MsgDeactivateContractResponse
|
|
546
|
+
* @package injective.wasmx.v1
|
|
547
|
+
* @see proto type: injective.wasmx.v1.MsgDeactivateContractResponse
|
|
548
|
+
*/
|
|
342
549
|
export declare const MsgDeactivateContractResponse: {
|
|
343
550
|
typeUrl: string;
|
|
344
551
|
is(o: any): o is MsgDeactivateContractResponse;
|
|
@@ -354,6 +561,11 @@ export declare const MsgDeactivateContractResponse: {
|
|
|
354
561
|
toProtoMsg(message: MsgDeactivateContractResponse): MsgDeactivateContractResponseProtoMsg;
|
|
355
562
|
registerTypeUrl(): void;
|
|
356
563
|
};
|
|
564
|
+
/**
|
|
565
|
+
* @name MsgUpdateParams
|
|
566
|
+
* @package injective.wasmx.v1
|
|
567
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateParams
|
|
568
|
+
*/
|
|
357
569
|
export declare const MsgUpdateParams: {
|
|
358
570
|
typeUrl: string;
|
|
359
571
|
aminoType: string;
|
|
@@ -371,6 +583,11 @@ export declare const MsgUpdateParams: {
|
|
|
371
583
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
372
584
|
registerTypeUrl(): void;
|
|
373
585
|
};
|
|
586
|
+
/**
|
|
587
|
+
* @name MsgUpdateParamsResponse
|
|
588
|
+
* @package injective.wasmx.v1
|
|
589
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateParamsResponse
|
|
590
|
+
*/
|
|
374
591
|
export declare const MsgUpdateParamsResponse: {
|
|
375
592
|
typeUrl: string;
|
|
376
593
|
is(o: any): o is MsgUpdateParamsResponse;
|
|
@@ -386,6 +603,11 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
386
603
|
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
387
604
|
registerTypeUrl(): void;
|
|
388
605
|
};
|
|
606
|
+
/**
|
|
607
|
+
* @name MsgRegisterContract
|
|
608
|
+
* @package injective.wasmx.v1
|
|
609
|
+
* @see proto type: injective.wasmx.v1.MsgRegisterContract
|
|
610
|
+
*/
|
|
389
611
|
export declare const MsgRegisterContract: {
|
|
390
612
|
typeUrl: string;
|
|
391
613
|
aminoType: string;
|
|
@@ -403,6 +625,11 @@ export declare const MsgRegisterContract: {
|
|
|
403
625
|
toProtoMsg(message: MsgRegisterContract): MsgRegisterContractProtoMsg;
|
|
404
626
|
registerTypeUrl(): void;
|
|
405
627
|
};
|
|
628
|
+
/**
|
|
629
|
+
* @name MsgRegisterContractResponse
|
|
630
|
+
* @package injective.wasmx.v1
|
|
631
|
+
* @see proto type: injective.wasmx.v1.MsgRegisterContractResponse
|
|
632
|
+
*/
|
|
406
633
|
export declare const MsgRegisterContractResponse: {
|
|
407
634
|
typeUrl: string;
|
|
408
635
|
is(o: any): o is MsgRegisterContractResponse;
|
package/injective/wasmx/v1/tx.js
CHANGED
|
@@ -14,6 +14,13 @@ function createBaseMsgExecuteContractCompat() {
|
|
|
14
14
|
funds: ""
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* MsgExecuteContractCompat submits the given message data to a smart contract,
|
|
19
|
+
* compatible with EIP712
|
|
20
|
+
* @name MsgExecuteContractCompat
|
|
21
|
+
* @package injective.wasmx.v1
|
|
22
|
+
* @see proto type: injective.wasmx.v1.MsgExecuteContractCompat
|
|
23
|
+
*/
|
|
17
24
|
exports.MsgExecuteContractCompat = {
|
|
18
25
|
typeUrl: "/injective.wasmx.v1.MsgExecuteContractCompat",
|
|
19
26
|
aminoType: "wasmx/MsgExecuteContractCompat",
|
|
@@ -124,6 +131,12 @@ function createBaseMsgExecuteContractCompatResponse() {
|
|
|
124
131
|
data: new Uint8Array()
|
|
125
132
|
};
|
|
126
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* MsgExecuteContractCompatResponse returns execution result data.
|
|
136
|
+
* @name MsgExecuteContractCompatResponse
|
|
137
|
+
* @package injective.wasmx.v1
|
|
138
|
+
* @see proto type: injective.wasmx.v1.MsgExecuteContractCompatResponse
|
|
139
|
+
*/
|
|
127
140
|
exports.MsgExecuteContractCompatResponse = {
|
|
128
141
|
typeUrl: "/injective.wasmx.v1.MsgExecuteContractCompatResponse",
|
|
129
142
|
is(o) {
|
|
@@ -198,6 +211,11 @@ function createBaseMsgUpdateContract() {
|
|
|
198
211
|
adminAddress: undefined
|
|
199
212
|
};
|
|
200
213
|
}
|
|
214
|
+
/**
|
|
215
|
+
* @name MsgUpdateContract
|
|
216
|
+
* @package injective.wasmx.v1
|
|
217
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateContract
|
|
218
|
+
*/
|
|
201
219
|
exports.MsgUpdateContract = {
|
|
202
220
|
typeUrl: "/injective.wasmx.v1.MsgUpdateContract",
|
|
203
221
|
aminoType: "wasmx/MsgUpdateContract",
|
|
@@ -317,6 +335,11 @@ exports.MsgUpdateContract = {
|
|
|
317
335
|
function createBaseMsgUpdateContractResponse() {
|
|
318
336
|
return {};
|
|
319
337
|
}
|
|
338
|
+
/**
|
|
339
|
+
* @name MsgUpdateContractResponse
|
|
340
|
+
* @package injective.wasmx.v1
|
|
341
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateContractResponse
|
|
342
|
+
*/
|
|
320
343
|
exports.MsgUpdateContractResponse = {
|
|
321
344
|
typeUrl: "/injective.wasmx.v1.MsgUpdateContractResponse",
|
|
322
345
|
is(o) {
|
|
@@ -377,6 +400,11 @@ function createBaseMsgActivateContract() {
|
|
|
377
400
|
contractAddress: ""
|
|
378
401
|
};
|
|
379
402
|
}
|
|
403
|
+
/**
|
|
404
|
+
* @name MsgActivateContract
|
|
405
|
+
* @package injective.wasmx.v1
|
|
406
|
+
* @see proto type: injective.wasmx.v1.MsgActivateContract
|
|
407
|
+
*/
|
|
380
408
|
exports.MsgActivateContract = {
|
|
381
409
|
typeUrl: "/injective.wasmx.v1.MsgActivateContract",
|
|
382
410
|
aminoType: "wasmx/MsgActivateContract",
|
|
@@ -463,6 +491,11 @@ exports.MsgActivateContract = {
|
|
|
463
491
|
function createBaseMsgActivateContractResponse() {
|
|
464
492
|
return {};
|
|
465
493
|
}
|
|
494
|
+
/**
|
|
495
|
+
* @name MsgActivateContractResponse
|
|
496
|
+
* @package injective.wasmx.v1
|
|
497
|
+
* @see proto type: injective.wasmx.v1.MsgActivateContractResponse
|
|
498
|
+
*/
|
|
466
499
|
exports.MsgActivateContractResponse = {
|
|
467
500
|
typeUrl: "/injective.wasmx.v1.MsgActivateContractResponse",
|
|
468
501
|
is(o) {
|
|
@@ -523,6 +556,11 @@ function createBaseMsgDeactivateContract() {
|
|
|
523
556
|
contractAddress: ""
|
|
524
557
|
};
|
|
525
558
|
}
|
|
559
|
+
/**
|
|
560
|
+
* @name MsgDeactivateContract
|
|
561
|
+
* @package injective.wasmx.v1
|
|
562
|
+
* @see proto type: injective.wasmx.v1.MsgDeactivateContract
|
|
563
|
+
*/
|
|
526
564
|
exports.MsgDeactivateContract = {
|
|
527
565
|
typeUrl: "/injective.wasmx.v1.MsgDeactivateContract",
|
|
528
566
|
aminoType: "wasmx/MsgDeactivateContract",
|
|
@@ -609,6 +647,11 @@ exports.MsgDeactivateContract = {
|
|
|
609
647
|
function createBaseMsgDeactivateContractResponse() {
|
|
610
648
|
return {};
|
|
611
649
|
}
|
|
650
|
+
/**
|
|
651
|
+
* @name MsgDeactivateContractResponse
|
|
652
|
+
* @package injective.wasmx.v1
|
|
653
|
+
* @see proto type: injective.wasmx.v1.MsgDeactivateContractResponse
|
|
654
|
+
*/
|
|
612
655
|
exports.MsgDeactivateContractResponse = {
|
|
613
656
|
typeUrl: "/injective.wasmx.v1.MsgDeactivateContractResponse",
|
|
614
657
|
is(o) {
|
|
@@ -669,6 +712,11 @@ function createBaseMsgUpdateParams() {
|
|
|
669
712
|
params: wasmx_1.Params.fromPartial({})
|
|
670
713
|
};
|
|
671
714
|
}
|
|
715
|
+
/**
|
|
716
|
+
* @name MsgUpdateParams
|
|
717
|
+
* @package injective.wasmx.v1
|
|
718
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateParams
|
|
719
|
+
*/
|
|
672
720
|
exports.MsgUpdateParams = {
|
|
673
721
|
typeUrl: "/injective.wasmx.v1.MsgUpdateParams",
|
|
674
722
|
aminoType: "wasmx/MsgUpdateParams",
|
|
@@ -760,6 +808,11 @@ exports.MsgUpdateParams = {
|
|
|
760
808
|
function createBaseMsgUpdateParamsResponse() {
|
|
761
809
|
return {};
|
|
762
810
|
}
|
|
811
|
+
/**
|
|
812
|
+
* @name MsgUpdateParamsResponse
|
|
813
|
+
* @package injective.wasmx.v1
|
|
814
|
+
* @see proto type: injective.wasmx.v1.MsgUpdateParamsResponse
|
|
815
|
+
*/
|
|
763
816
|
exports.MsgUpdateParamsResponse = {
|
|
764
817
|
typeUrl: "/injective.wasmx.v1.MsgUpdateParamsResponse",
|
|
765
818
|
is(o) {
|
|
@@ -820,6 +873,11 @@ function createBaseMsgRegisterContract() {
|
|
|
820
873
|
contractRegistrationRequest: proposal_1.ContractRegistrationRequest.fromPartial({})
|
|
821
874
|
};
|
|
822
875
|
}
|
|
876
|
+
/**
|
|
877
|
+
* @name MsgRegisterContract
|
|
878
|
+
* @package injective.wasmx.v1
|
|
879
|
+
* @see proto type: injective.wasmx.v1.MsgRegisterContract
|
|
880
|
+
*/
|
|
823
881
|
exports.MsgRegisterContract = {
|
|
824
882
|
typeUrl: "/injective.wasmx.v1.MsgRegisterContract",
|
|
825
883
|
aminoType: "wasmx/MsgRegisterContract",
|
|
@@ -911,6 +969,11 @@ exports.MsgRegisterContract = {
|
|
|
911
969
|
function createBaseMsgRegisterContractResponse() {
|
|
912
970
|
return {};
|
|
913
971
|
}
|
|
972
|
+
/**
|
|
973
|
+
* @name MsgRegisterContractResponse
|
|
974
|
+
* @package injective.wasmx.v1
|
|
975
|
+
* @see proto type: injective.wasmx.v1.MsgRegisterContractResponse
|
|
976
|
+
*/
|
|
914
977
|
exports.MsgRegisterContractResponse = {
|
|
915
978
|
typeUrl: "/injective.wasmx.v1.MsgRegisterContractResponse",
|
|
916
979
|
is(o) {
|