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
|
@@ -4,6 +4,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
4
4
|
/**
|
|
5
5
|
* EthAccount implements the authtypes.AccountI interface and embeds an
|
|
6
6
|
* authtypes.BaseAccount type. It is compatible with the auth AccountKeeper.
|
|
7
|
+
* @name EthAccount
|
|
8
|
+
* @package injective.types.v1beta1
|
|
9
|
+
* @see proto type: injective.types.v1beta1.EthAccount
|
|
7
10
|
*/
|
|
8
11
|
export interface EthAccount {
|
|
9
12
|
baseAccount?: BaseAccount;
|
|
@@ -16,6 +19,9 @@ export interface EthAccountProtoMsg {
|
|
|
16
19
|
/**
|
|
17
20
|
* EthAccount implements the authtypes.AccountI interface and embeds an
|
|
18
21
|
* authtypes.BaseAccount type. It is compatible with the auth AccountKeeper.
|
|
22
|
+
* @name EthAccountAmino
|
|
23
|
+
* @package injective.types.v1beta1
|
|
24
|
+
* @see proto type: injective.types.v1beta1.EthAccount
|
|
19
25
|
*/
|
|
20
26
|
export interface EthAccountAmino {
|
|
21
27
|
base_account?: BaseAccountAmino;
|
|
@@ -25,6 +31,13 @@ export interface EthAccountAminoMsg {
|
|
|
25
31
|
type: "/injective.types.v1beta1.EthAccount";
|
|
26
32
|
value: EthAccountAmino;
|
|
27
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* EthAccount implements the authtypes.AccountI interface and embeds an
|
|
36
|
+
* authtypes.BaseAccount type. It is compatible with the auth AccountKeeper.
|
|
37
|
+
* @name EthAccount
|
|
38
|
+
* @package injective.types.v1beta1
|
|
39
|
+
* @see proto type: injective.types.v1beta1.EthAccount
|
|
40
|
+
*/
|
|
28
41
|
export declare const EthAccount: {
|
|
29
42
|
typeUrl: string;
|
|
30
43
|
is(o: any): o is EthAccount;
|
|
@@ -11,6 +11,13 @@ function createBaseEthAccount() {
|
|
|
11
11
|
codeHash: new Uint8Array()
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* EthAccount implements the authtypes.AccountI interface and embeds an
|
|
16
|
+
* authtypes.BaseAccount type. It is compatible with the auth AccountKeeper.
|
|
17
|
+
* @name EthAccount
|
|
18
|
+
* @package injective.types.v1beta1
|
|
19
|
+
* @see proto type: injective.types.v1beta1.EthAccount
|
|
20
|
+
*/
|
|
14
21
|
exports.EthAccount = {
|
|
15
22
|
typeUrl: "/injective.types.v1beta1.EthAccount",
|
|
16
23
|
is(o) {
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../helpers";
|
|
3
|
+
/**
|
|
4
|
+
* @name ExtensionOptionsWeb3Tx
|
|
5
|
+
* @package injective.types.v1beta1
|
|
6
|
+
* @see proto type: injective.types.v1beta1.ExtensionOptionsWeb3Tx
|
|
7
|
+
*/
|
|
3
8
|
export interface ExtensionOptionsWeb3Tx {
|
|
4
9
|
/**
|
|
5
10
|
* typedDataChainID used only in EIP712 Domain and should match
|
|
@@ -21,6 +26,11 @@ export interface ExtensionOptionsWeb3TxProtoMsg {
|
|
|
21
26
|
typeUrl: "/injective.types.v1beta1.ExtensionOptionsWeb3Tx";
|
|
22
27
|
value: Uint8Array;
|
|
23
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* @name ExtensionOptionsWeb3TxAmino
|
|
31
|
+
* @package injective.types.v1beta1
|
|
32
|
+
* @see proto type: injective.types.v1beta1.ExtensionOptionsWeb3Tx
|
|
33
|
+
*/
|
|
24
34
|
export interface ExtensionOptionsWeb3TxAmino {
|
|
25
35
|
/**
|
|
26
36
|
* typedDataChainID used only in EIP712 Domain and should match
|
|
@@ -42,6 +52,11 @@ export interface ExtensionOptionsWeb3TxAminoMsg {
|
|
|
42
52
|
type: "/injective.types.v1beta1.ExtensionOptionsWeb3Tx";
|
|
43
53
|
value: ExtensionOptionsWeb3TxAmino;
|
|
44
54
|
}
|
|
55
|
+
/**
|
|
56
|
+
* @name ExtensionOptionsWeb3Tx
|
|
57
|
+
* @package injective.types.v1beta1
|
|
58
|
+
* @see proto type: injective.types.v1beta1.ExtensionOptionsWeb3Tx
|
|
59
|
+
*/
|
|
45
60
|
export declare const ExtensionOptionsWeb3Tx: {
|
|
46
61
|
typeUrl: string;
|
|
47
62
|
is(o: any): o is ExtensionOptionsWeb3Tx;
|
|
@@ -10,6 +10,11 @@ function createBaseExtensionOptionsWeb3Tx() {
|
|
|
10
10
|
feePayerSig: new Uint8Array()
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* @name ExtensionOptionsWeb3Tx
|
|
15
|
+
* @package injective.types.v1beta1
|
|
16
|
+
* @see proto type: injective.types.v1beta1.ExtensionOptionsWeb3Tx
|
|
17
|
+
*/
|
|
13
18
|
exports.ExtensionOptionsWeb3Tx = {
|
|
14
19
|
typeUrl: "/injective.types.v1beta1.ExtensionOptionsWeb3Tx",
|
|
15
20
|
is(o) {
|
|
@@ -3,6 +3,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
3
3
|
/**
|
|
4
4
|
* base header ak message type, we can cast the bytes into corresponding message
|
|
5
5
|
* response type
|
|
6
|
+
* @name TxResponseGenericMessage
|
|
7
|
+
* @package injective.types.v1beta1
|
|
8
|
+
* @see proto type: injective.types.v1beta1.TxResponseGenericMessage
|
|
6
9
|
*/
|
|
7
10
|
export interface TxResponseGenericMessage {
|
|
8
11
|
header: string;
|
|
@@ -15,6 +18,9 @@ export interface TxResponseGenericMessageProtoMsg {
|
|
|
15
18
|
/**
|
|
16
19
|
* base header ak message type, we can cast the bytes into corresponding message
|
|
17
20
|
* response type
|
|
21
|
+
* @name TxResponseGenericMessageAmino
|
|
22
|
+
* @package injective.types.v1beta1
|
|
23
|
+
* @see proto type: injective.types.v1beta1.TxResponseGenericMessage
|
|
18
24
|
*/
|
|
19
25
|
export interface TxResponseGenericMessageAmino {
|
|
20
26
|
header: string;
|
|
@@ -24,7 +30,12 @@ export interface TxResponseGenericMessageAminoMsg {
|
|
|
24
30
|
type: "/injective.types.v1beta1.TxResponseGenericMessage";
|
|
25
31
|
value: TxResponseGenericMessageAmino;
|
|
26
32
|
}
|
|
27
|
-
/**
|
|
33
|
+
/**
|
|
34
|
+
* improvised message to unpack length prefixed messages in tx response data
|
|
35
|
+
* @name TxResponseData
|
|
36
|
+
* @package injective.types.v1beta1
|
|
37
|
+
* @see proto type: injective.types.v1beta1.TxResponseData
|
|
38
|
+
*/
|
|
28
39
|
export interface TxResponseData {
|
|
29
40
|
messages: TxResponseGenericMessage[];
|
|
30
41
|
}
|
|
@@ -32,7 +43,12 @@ export interface TxResponseDataProtoMsg {
|
|
|
32
43
|
typeUrl: "/injective.types.v1beta1.TxResponseData";
|
|
33
44
|
value: Uint8Array;
|
|
34
45
|
}
|
|
35
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* improvised message to unpack length prefixed messages in tx response data
|
|
48
|
+
* @name TxResponseDataAmino
|
|
49
|
+
* @package injective.types.v1beta1
|
|
50
|
+
* @see proto type: injective.types.v1beta1.TxResponseData
|
|
51
|
+
*/
|
|
36
52
|
export interface TxResponseDataAmino {
|
|
37
53
|
messages: TxResponseGenericMessageAmino[];
|
|
38
54
|
}
|
|
@@ -40,6 +56,13 @@ export interface TxResponseDataAminoMsg {
|
|
|
40
56
|
type: "/injective.types.v1beta1.TxResponseData";
|
|
41
57
|
value: TxResponseDataAmino;
|
|
42
58
|
}
|
|
59
|
+
/**
|
|
60
|
+
* base header ak message type, we can cast the bytes into corresponding message
|
|
61
|
+
* response type
|
|
62
|
+
* @name TxResponseGenericMessage
|
|
63
|
+
* @package injective.types.v1beta1
|
|
64
|
+
* @see proto type: injective.types.v1beta1.TxResponseGenericMessage
|
|
65
|
+
*/
|
|
43
66
|
export declare const TxResponseGenericMessage: {
|
|
44
67
|
typeUrl: string;
|
|
45
68
|
is(o: any): o is TxResponseGenericMessage;
|
|
@@ -55,6 +78,12 @@ export declare const TxResponseGenericMessage: {
|
|
|
55
78
|
toProtoMsg(message: TxResponseGenericMessage): TxResponseGenericMessageProtoMsg;
|
|
56
79
|
registerTypeUrl(): void;
|
|
57
80
|
};
|
|
81
|
+
/**
|
|
82
|
+
* improvised message to unpack length prefixed messages in tx response data
|
|
83
|
+
* @name TxResponseData
|
|
84
|
+
* @package injective.types.v1beta1
|
|
85
|
+
* @see proto type: injective.types.v1beta1.TxResponseData
|
|
86
|
+
*/
|
|
58
87
|
export declare const TxResponseData: {
|
|
59
88
|
typeUrl: string;
|
|
60
89
|
is(o: any): o is TxResponseData;
|
|
@@ -10,6 +10,13 @@ function createBaseTxResponseGenericMessage() {
|
|
|
10
10
|
data: new Uint8Array()
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* base header ak message type, we can cast the bytes into corresponding message
|
|
15
|
+
* response type
|
|
16
|
+
* @name TxResponseGenericMessage
|
|
17
|
+
* @package injective.types.v1beta1
|
|
18
|
+
* @see proto type: injective.types.v1beta1.TxResponseGenericMessage
|
|
19
|
+
*/
|
|
13
20
|
exports.TxResponseGenericMessage = {
|
|
14
21
|
typeUrl: "/injective.types.v1beta1.TxResponseGenericMessage",
|
|
15
22
|
is(o) {
|
|
@@ -91,6 +98,12 @@ function createBaseTxResponseData() {
|
|
|
91
98
|
messages: []
|
|
92
99
|
};
|
|
93
100
|
}
|
|
101
|
+
/**
|
|
102
|
+
* improvised message to unpack length prefixed messages in tx response data
|
|
103
|
+
* @name TxResponseData
|
|
104
|
+
* @package injective.types.v1beta1
|
|
105
|
+
* @see proto type: injective.types.v1beta1.TxResponseData
|
|
106
|
+
*/
|
|
94
107
|
exports.TxResponseData = {
|
|
95
108
|
typeUrl: "/injective.types.v1beta1.TxResponseData",
|
|
96
109
|
is(o) {
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { FundingMode } from "./proposal";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
+
/**
|
|
5
|
+
* @name EventContractExecution
|
|
6
|
+
* @package injective.wasmx.v1
|
|
7
|
+
* @see proto type: injective.wasmx.v1.EventContractExecution
|
|
8
|
+
*/
|
|
4
9
|
export interface EventContractExecution {
|
|
5
10
|
contractAddress: string;
|
|
6
11
|
response: Uint8Array;
|
|
@@ -11,6 +16,11 @@ export interface EventContractExecutionProtoMsg {
|
|
|
11
16
|
typeUrl: "/injective.wasmx.v1.EventContractExecution";
|
|
12
17
|
value: Uint8Array;
|
|
13
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* @name EventContractExecutionAmino
|
|
21
|
+
* @package injective.wasmx.v1
|
|
22
|
+
* @see proto type: injective.wasmx.v1.EventContractExecution
|
|
23
|
+
*/
|
|
14
24
|
export interface EventContractExecutionAmino {
|
|
15
25
|
contract_address: string;
|
|
16
26
|
response: string;
|
|
@@ -21,6 +31,11 @@ export interface EventContractExecutionAminoMsg {
|
|
|
21
31
|
type: "/injective.wasmx.v1.EventContractExecution";
|
|
22
32
|
value: EventContractExecutionAmino;
|
|
23
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* @name EventContractRegistered
|
|
36
|
+
* @package injective.wasmx.v1
|
|
37
|
+
* @see proto type: injective.wasmx.v1.EventContractRegistered
|
|
38
|
+
*/
|
|
24
39
|
export interface EventContractRegistered {
|
|
25
40
|
contractAddress: string;
|
|
26
41
|
gasPrice: bigint;
|
|
@@ -35,6 +50,11 @@ export interface EventContractRegisteredProtoMsg {
|
|
|
35
50
|
typeUrl: "/injective.wasmx.v1.EventContractRegistered";
|
|
36
51
|
value: Uint8Array;
|
|
37
52
|
}
|
|
53
|
+
/**
|
|
54
|
+
* @name EventContractRegisteredAmino
|
|
55
|
+
* @package injective.wasmx.v1
|
|
56
|
+
* @see proto type: injective.wasmx.v1.EventContractRegistered
|
|
57
|
+
*/
|
|
38
58
|
export interface EventContractRegisteredAmino {
|
|
39
59
|
contract_address: string;
|
|
40
60
|
gas_price: string;
|
|
@@ -49,6 +69,11 @@ export interface EventContractRegisteredAminoMsg {
|
|
|
49
69
|
type: "/injective.wasmx.v1.EventContractRegistered";
|
|
50
70
|
value: EventContractRegisteredAmino;
|
|
51
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* @name EventContractDeregistered
|
|
74
|
+
* @package injective.wasmx.v1
|
|
75
|
+
* @see proto type: injective.wasmx.v1.EventContractDeregistered
|
|
76
|
+
*/
|
|
52
77
|
export interface EventContractDeregistered {
|
|
53
78
|
contractAddress: string;
|
|
54
79
|
}
|
|
@@ -56,6 +81,11 @@ export interface EventContractDeregisteredProtoMsg {
|
|
|
56
81
|
typeUrl: "/injective.wasmx.v1.EventContractDeregistered";
|
|
57
82
|
value: Uint8Array;
|
|
58
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* @name EventContractDeregisteredAmino
|
|
86
|
+
* @package injective.wasmx.v1
|
|
87
|
+
* @see proto type: injective.wasmx.v1.EventContractDeregistered
|
|
88
|
+
*/
|
|
59
89
|
export interface EventContractDeregisteredAmino {
|
|
60
90
|
contract_address: string;
|
|
61
91
|
}
|
|
@@ -63,6 +93,11 @@ export interface EventContractDeregisteredAminoMsg {
|
|
|
63
93
|
type: "/injective.wasmx.v1.EventContractDeregistered";
|
|
64
94
|
value: EventContractDeregisteredAmino;
|
|
65
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* @name EventContractExecution
|
|
98
|
+
* @package injective.wasmx.v1
|
|
99
|
+
* @see proto type: injective.wasmx.v1.EventContractExecution
|
|
100
|
+
*/
|
|
66
101
|
export declare const EventContractExecution: {
|
|
67
102
|
typeUrl: string;
|
|
68
103
|
is(o: any): o is EventContractExecution;
|
|
@@ -78,6 +113,11 @@ export declare const EventContractExecution: {
|
|
|
78
113
|
toProtoMsg(message: EventContractExecution): EventContractExecutionProtoMsg;
|
|
79
114
|
registerTypeUrl(): void;
|
|
80
115
|
};
|
|
116
|
+
/**
|
|
117
|
+
* @name EventContractRegistered
|
|
118
|
+
* @package injective.wasmx.v1
|
|
119
|
+
* @see proto type: injective.wasmx.v1.EventContractRegistered
|
|
120
|
+
*/
|
|
81
121
|
export declare const EventContractRegistered: {
|
|
82
122
|
typeUrl: string;
|
|
83
123
|
is(o: any): o is EventContractRegistered;
|
|
@@ -93,6 +133,11 @@ export declare const EventContractRegistered: {
|
|
|
93
133
|
toProtoMsg(message: EventContractRegistered): EventContractRegisteredProtoMsg;
|
|
94
134
|
registerTypeUrl(): void;
|
|
95
135
|
};
|
|
136
|
+
/**
|
|
137
|
+
* @name EventContractDeregistered
|
|
138
|
+
* @package injective.wasmx.v1
|
|
139
|
+
* @see proto type: injective.wasmx.v1.EventContractDeregistered
|
|
140
|
+
*/
|
|
96
141
|
export declare const EventContractDeregistered: {
|
|
97
142
|
typeUrl: string;
|
|
98
143
|
is(o: any): o is EventContractDeregistered;
|
|
@@ -11,6 +11,11 @@ function createBaseEventContractExecution() {
|
|
|
11
11
|
executionError: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* @name EventContractExecution
|
|
16
|
+
* @package injective.wasmx.v1
|
|
17
|
+
* @see proto type: injective.wasmx.v1.EventContractExecution
|
|
18
|
+
*/
|
|
14
19
|
exports.EventContractExecution = {
|
|
15
20
|
typeUrl: "/injective.wasmx.v1.EventContractExecution",
|
|
16
21
|
is(o) {
|
|
@@ -121,6 +126,11 @@ function createBaseEventContractRegistered() {
|
|
|
121
126
|
fundingMode: 0
|
|
122
127
|
};
|
|
123
128
|
}
|
|
129
|
+
/**
|
|
130
|
+
* @name EventContractRegistered
|
|
131
|
+
* @package injective.wasmx.v1
|
|
132
|
+
* @see proto type: injective.wasmx.v1.EventContractRegistered
|
|
133
|
+
*/
|
|
124
134
|
exports.EventContractRegistered = {
|
|
125
135
|
typeUrl: "/injective.wasmx.v1.EventContractRegistered",
|
|
126
136
|
is(o) {
|
|
@@ -268,6 +278,11 @@ function createBaseEventContractDeregistered() {
|
|
|
268
278
|
contractAddress: ""
|
|
269
279
|
};
|
|
270
280
|
}
|
|
281
|
+
/**
|
|
282
|
+
* @name EventContractDeregistered
|
|
283
|
+
* @package injective.wasmx.v1
|
|
284
|
+
* @see proto type: injective.wasmx.v1.EventContractDeregistered
|
|
285
|
+
*/
|
|
271
286
|
exports.EventContractDeregistered = {
|
|
272
287
|
typeUrl: "/injective.wasmx.v1.EventContractDeregistered",
|
|
273
288
|
is(o) {
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { RegisteredContract, RegisteredContractAmino, Params, ParamsAmino } from "./wasmx";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
+
/**
|
|
5
|
+
* @name RegisteredContractWithAddress
|
|
6
|
+
* @package injective.wasmx.v1
|
|
7
|
+
* @see proto type: injective.wasmx.v1.RegisteredContractWithAddress
|
|
8
|
+
*/
|
|
4
9
|
export interface RegisteredContractWithAddress {
|
|
5
10
|
address: string;
|
|
6
11
|
registeredContract?: RegisteredContract;
|
|
@@ -9,6 +14,11 @@ export interface RegisteredContractWithAddressProtoMsg {
|
|
|
9
14
|
typeUrl: "/injective.wasmx.v1.RegisteredContractWithAddress";
|
|
10
15
|
value: Uint8Array;
|
|
11
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* @name RegisteredContractWithAddressAmino
|
|
19
|
+
* @package injective.wasmx.v1
|
|
20
|
+
* @see proto type: injective.wasmx.v1.RegisteredContractWithAddress
|
|
21
|
+
*/
|
|
12
22
|
export interface RegisteredContractWithAddressAmino {
|
|
13
23
|
address: string;
|
|
14
24
|
registered_contract?: RegisteredContractAmino;
|
|
@@ -17,9 +27,16 @@ export interface RegisteredContractWithAddressAminoMsg {
|
|
|
17
27
|
type: "/injective.wasmx.v1.RegisteredContractWithAddress";
|
|
18
28
|
value: RegisteredContractWithAddressAmino;
|
|
19
29
|
}
|
|
20
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* GenesisState defines the wasmx module's genesis state.
|
|
32
|
+
* @name GenesisState
|
|
33
|
+
* @package injective.wasmx.v1
|
|
34
|
+
* @see proto type: injective.wasmx.v1.GenesisState
|
|
35
|
+
*/
|
|
21
36
|
export interface GenesisState {
|
|
22
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* params defines all the parameters of related to wasmx.
|
|
39
|
+
*/
|
|
23
40
|
params: Params;
|
|
24
41
|
/**
|
|
25
42
|
* registered_contracts is an array containing the genesis registered
|
|
@@ -31,9 +48,16 @@ export interface GenesisStateProtoMsg {
|
|
|
31
48
|
typeUrl: "/injective.wasmx.v1.GenesisState";
|
|
32
49
|
value: Uint8Array;
|
|
33
50
|
}
|
|
34
|
-
/**
|
|
51
|
+
/**
|
|
52
|
+
* GenesisState defines the wasmx module's genesis state.
|
|
53
|
+
* @name GenesisStateAmino
|
|
54
|
+
* @package injective.wasmx.v1
|
|
55
|
+
* @see proto type: injective.wasmx.v1.GenesisState
|
|
56
|
+
*/
|
|
35
57
|
export interface GenesisStateAmino {
|
|
36
|
-
/**
|
|
58
|
+
/**
|
|
59
|
+
* params defines all the parameters of related to wasmx.
|
|
60
|
+
*/
|
|
37
61
|
params: ParamsAmino;
|
|
38
62
|
/**
|
|
39
63
|
* registered_contracts is an array containing the genesis registered
|
|
@@ -45,6 +69,11 @@ export interface GenesisStateAminoMsg {
|
|
|
45
69
|
type: "/injective.wasmx.v1.GenesisState";
|
|
46
70
|
value: GenesisStateAmino;
|
|
47
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* @name RegisteredContractWithAddress
|
|
74
|
+
* @package injective.wasmx.v1
|
|
75
|
+
* @see proto type: injective.wasmx.v1.RegisteredContractWithAddress
|
|
76
|
+
*/
|
|
48
77
|
export declare const RegisteredContractWithAddress: {
|
|
49
78
|
typeUrl: string;
|
|
50
79
|
is(o: any): o is RegisteredContractWithAddress;
|
|
@@ -60,6 +89,12 @@ export declare const RegisteredContractWithAddress: {
|
|
|
60
89
|
toProtoMsg(message: RegisteredContractWithAddress): RegisteredContractWithAddressProtoMsg;
|
|
61
90
|
registerTypeUrl(): void;
|
|
62
91
|
};
|
|
92
|
+
/**
|
|
93
|
+
* GenesisState defines the wasmx module's genesis state.
|
|
94
|
+
* @name GenesisState
|
|
95
|
+
* @package injective.wasmx.v1
|
|
96
|
+
* @see proto type: injective.wasmx.v1.GenesisState
|
|
97
|
+
*/
|
|
63
98
|
export declare const GenesisState: {
|
|
64
99
|
typeUrl: string;
|
|
65
100
|
is(o: any): o is GenesisState;
|
|
@@ -10,6 +10,11 @@ function createBaseRegisteredContractWithAddress() {
|
|
|
10
10
|
registeredContract: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* @name RegisteredContractWithAddress
|
|
15
|
+
* @package injective.wasmx.v1
|
|
16
|
+
* @see proto type: injective.wasmx.v1.RegisteredContractWithAddress
|
|
17
|
+
*/
|
|
13
18
|
exports.RegisteredContractWithAddress = {
|
|
14
19
|
typeUrl: "/injective.wasmx.v1.RegisteredContractWithAddress",
|
|
15
20
|
is(o) {
|
|
@@ -97,6 +102,12 @@ function createBaseGenesisState() {
|
|
|
97
102
|
registeredContracts: []
|
|
98
103
|
};
|
|
99
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* GenesisState defines the wasmx module's genesis state.
|
|
107
|
+
* @name GenesisState
|
|
108
|
+
* @package injective.wasmx.v1
|
|
109
|
+
* @see proto type: injective.wasmx.v1.GenesisState
|
|
110
|
+
*/
|
|
100
111
|
exports.GenesisState = {
|
|
101
112
|
typeUrl: "/injective.wasmx.v1.GenesisState",
|
|
102
113
|
is(o) {
|
|
@@ -11,6 +11,11 @@ export declare enum FundingMode {
|
|
|
11
11
|
export declare const FundingModeAmino: typeof FundingMode;
|
|
12
12
|
export declare function fundingModeFromJSON(object: any): FundingMode;
|
|
13
13
|
export declare function fundingModeToJSON(object: FundingMode): string;
|
|
14
|
+
/**
|
|
15
|
+
* @name ContractRegistrationRequestProposal
|
|
16
|
+
* @package injective.wasmx.v1
|
|
17
|
+
* @see proto type: injective.wasmx.v1.ContractRegistrationRequestProposal
|
|
18
|
+
*/
|
|
14
19
|
export interface ContractRegistrationRequestProposal {
|
|
15
20
|
title: string;
|
|
16
21
|
description: string;
|
|
@@ -20,6 +25,11 @@ export interface ContractRegistrationRequestProposalProtoMsg {
|
|
|
20
25
|
typeUrl: "/injective.wasmx.v1.ContractRegistrationRequestProposal";
|
|
21
26
|
value: Uint8Array;
|
|
22
27
|
}
|
|
28
|
+
/**
|
|
29
|
+
* @name ContractRegistrationRequestProposalAmino
|
|
30
|
+
* @package injective.wasmx.v1
|
|
31
|
+
* @see proto type: injective.wasmx.v1.ContractRegistrationRequestProposal
|
|
32
|
+
*/
|
|
23
33
|
export interface ContractRegistrationRequestProposalAmino {
|
|
24
34
|
title: string;
|
|
25
35
|
description: string;
|
|
@@ -29,6 +39,11 @@ export interface ContractRegistrationRequestProposalAminoMsg {
|
|
|
29
39
|
type: "wasmx/ContractRegistrationRequestProposal";
|
|
30
40
|
value: ContractRegistrationRequestProposalAmino;
|
|
31
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* @name BatchContractRegistrationRequestProposal
|
|
44
|
+
* @package injective.wasmx.v1
|
|
45
|
+
* @see proto type: injective.wasmx.v1.BatchContractRegistrationRequestProposal
|
|
46
|
+
*/
|
|
32
47
|
export interface BatchContractRegistrationRequestProposal {
|
|
33
48
|
title: string;
|
|
34
49
|
description: string;
|
|
@@ -38,6 +53,11 @@ export interface BatchContractRegistrationRequestProposalProtoMsg {
|
|
|
38
53
|
typeUrl: "/injective.wasmx.v1.BatchContractRegistrationRequestProposal";
|
|
39
54
|
value: Uint8Array;
|
|
40
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* @name BatchContractRegistrationRequestProposalAmino
|
|
58
|
+
* @package injective.wasmx.v1
|
|
59
|
+
* @see proto type: injective.wasmx.v1.BatchContractRegistrationRequestProposal
|
|
60
|
+
*/
|
|
41
61
|
export interface BatchContractRegistrationRequestProposalAmino {
|
|
42
62
|
title: string;
|
|
43
63
|
description: string;
|
|
@@ -47,6 +67,11 @@ export interface BatchContractRegistrationRequestProposalAminoMsg {
|
|
|
47
67
|
type: "wasmx/BatchContractRegistrationRequestProposal";
|
|
48
68
|
value: BatchContractRegistrationRequestProposalAmino;
|
|
49
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* @name BatchContractDeregistrationProposal
|
|
72
|
+
* @package injective.wasmx.v1
|
|
73
|
+
* @see proto type: injective.wasmx.v1.BatchContractDeregistrationProposal
|
|
74
|
+
*/
|
|
50
75
|
export interface BatchContractDeregistrationProposal {
|
|
51
76
|
title: string;
|
|
52
77
|
description: string;
|
|
@@ -56,6 +81,11 @@ export interface BatchContractDeregistrationProposalProtoMsg {
|
|
|
56
81
|
typeUrl: "/injective.wasmx.v1.BatchContractDeregistrationProposal";
|
|
57
82
|
value: Uint8Array;
|
|
58
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* @name BatchContractDeregistrationProposalAmino
|
|
86
|
+
* @package injective.wasmx.v1
|
|
87
|
+
* @see proto type: injective.wasmx.v1.BatchContractDeregistrationProposal
|
|
88
|
+
*/
|
|
59
89
|
export interface BatchContractDeregistrationProposalAmino {
|
|
60
90
|
title: string;
|
|
61
91
|
description: string;
|
|
@@ -65,12 +95,23 @@ export interface BatchContractDeregistrationProposalAminoMsg {
|
|
|
65
95
|
type: "wasmx/BatchContractDeregistrationProposal";
|
|
66
96
|
value: BatchContractDeregistrationProposalAmino;
|
|
67
97
|
}
|
|
98
|
+
/**
|
|
99
|
+
* @name ContractRegistrationRequest
|
|
100
|
+
* @package injective.wasmx.v1
|
|
101
|
+
* @see proto type: injective.wasmx.v1.ContractRegistrationRequest
|
|
102
|
+
*/
|
|
68
103
|
export interface ContractRegistrationRequest {
|
|
69
|
-
/**
|
|
104
|
+
/**
|
|
105
|
+
* Unique Identifier for contract instance to be registered.
|
|
106
|
+
*/
|
|
70
107
|
contractAddress: string;
|
|
71
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Maximum gas to be used for the smart contract execution.
|
|
110
|
+
*/
|
|
72
111
|
gasLimit: bigint;
|
|
73
|
-
/**
|
|
112
|
+
/**
|
|
113
|
+
* gas price to be used for the smart contract execution.
|
|
114
|
+
*/
|
|
74
115
|
gasPrice: bigint;
|
|
75
116
|
shouldPinContract: boolean;
|
|
76
117
|
/**
|
|
@@ -93,19 +134,32 @@ export interface ContractRegistrationRequest {
|
|
|
93
134
|
* funding_mode is other than SelfFunded
|
|
94
135
|
*/
|
|
95
136
|
granterAddress: string;
|
|
96
|
-
/**
|
|
137
|
+
/**
|
|
138
|
+
* Specifies how the contract will fund its execution
|
|
139
|
+
*/
|
|
97
140
|
fundingMode: FundingMode;
|
|
98
141
|
}
|
|
99
142
|
export interface ContractRegistrationRequestProtoMsg {
|
|
100
143
|
typeUrl: "/injective.wasmx.v1.ContractRegistrationRequest";
|
|
101
144
|
value: Uint8Array;
|
|
102
145
|
}
|
|
146
|
+
/**
|
|
147
|
+
* @name ContractRegistrationRequestAmino
|
|
148
|
+
* @package injective.wasmx.v1
|
|
149
|
+
* @see proto type: injective.wasmx.v1.ContractRegistrationRequest
|
|
150
|
+
*/
|
|
103
151
|
export interface ContractRegistrationRequestAmino {
|
|
104
|
-
/**
|
|
152
|
+
/**
|
|
153
|
+
* Unique Identifier for contract instance to be registered.
|
|
154
|
+
*/
|
|
105
155
|
contract_address: string;
|
|
106
|
-
/**
|
|
156
|
+
/**
|
|
157
|
+
* Maximum gas to be used for the smart contract execution.
|
|
158
|
+
*/
|
|
107
159
|
gas_limit: string;
|
|
108
|
-
/**
|
|
160
|
+
/**
|
|
161
|
+
* gas price to be used for the smart contract execution.
|
|
162
|
+
*/
|
|
109
163
|
gas_price: string;
|
|
110
164
|
should_pin_contract: boolean;
|
|
111
165
|
/**
|
|
@@ -128,13 +182,20 @@ export interface ContractRegistrationRequestAmino {
|
|
|
128
182
|
* funding_mode is other than SelfFunded
|
|
129
183
|
*/
|
|
130
184
|
granter_address: string;
|
|
131
|
-
/**
|
|
185
|
+
/**
|
|
186
|
+
* Specifies how the contract will fund its execution
|
|
187
|
+
*/
|
|
132
188
|
funding_mode: FundingMode;
|
|
133
189
|
}
|
|
134
190
|
export interface ContractRegistrationRequestAminoMsg {
|
|
135
191
|
type: "/injective.wasmx.v1.ContractRegistrationRequest";
|
|
136
192
|
value: ContractRegistrationRequestAmino;
|
|
137
193
|
}
|
|
194
|
+
/**
|
|
195
|
+
* @name BatchStoreCodeProposal
|
|
196
|
+
* @package injective.wasmx.v1
|
|
197
|
+
* @see proto type: injective.wasmx.v1.BatchStoreCodeProposal
|
|
198
|
+
*/
|
|
138
199
|
export interface BatchStoreCodeProposal {
|
|
139
200
|
title: string;
|
|
140
201
|
description: string;
|
|
@@ -144,6 +205,11 @@ export interface BatchStoreCodeProposalProtoMsg {
|
|
|
144
205
|
typeUrl: "/injective.wasmx.v1.BatchStoreCodeProposal";
|
|
145
206
|
value: Uint8Array;
|
|
146
207
|
}
|
|
208
|
+
/**
|
|
209
|
+
* @name BatchStoreCodeProposalAmino
|
|
210
|
+
* @package injective.wasmx.v1
|
|
211
|
+
* @see proto type: injective.wasmx.v1.BatchStoreCodeProposal
|
|
212
|
+
*/
|
|
147
213
|
export interface BatchStoreCodeProposalAmino {
|
|
148
214
|
title: string;
|
|
149
215
|
description: string;
|
|
@@ -153,6 +219,11 @@ export interface BatchStoreCodeProposalAminoMsg {
|
|
|
153
219
|
type: "wasmx/BatchStoreCodeProposal";
|
|
154
220
|
value: BatchStoreCodeProposalAmino;
|
|
155
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* @name ContractRegistrationRequestProposal
|
|
224
|
+
* @package injective.wasmx.v1
|
|
225
|
+
* @see proto type: injective.wasmx.v1.ContractRegistrationRequestProposal
|
|
226
|
+
*/
|
|
156
227
|
export declare const ContractRegistrationRequestProposal: {
|
|
157
228
|
typeUrl: string;
|
|
158
229
|
aminoType: string;
|
|
@@ -170,6 +241,11 @@ export declare const ContractRegistrationRequestProposal: {
|
|
|
170
241
|
toProtoMsg(message: ContractRegistrationRequestProposal): ContractRegistrationRequestProposalProtoMsg;
|
|
171
242
|
registerTypeUrl(): void;
|
|
172
243
|
};
|
|
244
|
+
/**
|
|
245
|
+
* @name BatchContractRegistrationRequestProposal
|
|
246
|
+
* @package injective.wasmx.v1
|
|
247
|
+
* @see proto type: injective.wasmx.v1.BatchContractRegistrationRequestProposal
|
|
248
|
+
*/
|
|
173
249
|
export declare const BatchContractRegistrationRequestProposal: {
|
|
174
250
|
typeUrl: string;
|
|
175
251
|
aminoType: string;
|
|
@@ -187,6 +263,11 @@ export declare const BatchContractRegistrationRequestProposal: {
|
|
|
187
263
|
toProtoMsg(message: BatchContractRegistrationRequestProposal): BatchContractRegistrationRequestProposalProtoMsg;
|
|
188
264
|
registerTypeUrl(): void;
|
|
189
265
|
};
|
|
266
|
+
/**
|
|
267
|
+
* @name BatchContractDeregistrationProposal
|
|
268
|
+
* @package injective.wasmx.v1
|
|
269
|
+
* @see proto type: injective.wasmx.v1.BatchContractDeregistrationProposal
|
|
270
|
+
*/
|
|
190
271
|
export declare const BatchContractDeregistrationProposal: {
|
|
191
272
|
typeUrl: string;
|
|
192
273
|
aminoType: string;
|
|
@@ -204,6 +285,11 @@ export declare const BatchContractDeregistrationProposal: {
|
|
|
204
285
|
toProtoMsg(message: BatchContractDeregistrationProposal): BatchContractDeregistrationProposalProtoMsg;
|
|
205
286
|
registerTypeUrl(): void;
|
|
206
287
|
};
|
|
288
|
+
/**
|
|
289
|
+
* @name ContractRegistrationRequest
|
|
290
|
+
* @package injective.wasmx.v1
|
|
291
|
+
* @see proto type: injective.wasmx.v1.ContractRegistrationRequest
|
|
292
|
+
*/
|
|
207
293
|
export declare const ContractRegistrationRequest: {
|
|
208
294
|
typeUrl: string;
|
|
209
295
|
is(o: any): o is ContractRegistrationRequest;
|
|
@@ -219,6 +305,11 @@ export declare const ContractRegistrationRequest: {
|
|
|
219
305
|
toProtoMsg(message: ContractRegistrationRequest): ContractRegistrationRequestProtoMsg;
|
|
220
306
|
registerTypeUrl(): void;
|
|
221
307
|
};
|
|
308
|
+
/**
|
|
309
|
+
* @name BatchStoreCodeProposal
|
|
310
|
+
* @package injective.wasmx.v1
|
|
311
|
+
* @see proto type: injective.wasmx.v1.BatchStoreCodeProposal
|
|
312
|
+
*/
|
|
222
313
|
export declare const BatchStoreCodeProposal: {
|
|
223
314
|
typeUrl: string;
|
|
224
315
|
aminoType: string;
|