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
package/cosmwasm/wasm/v1/tx.js
CHANGED
|
@@ -14,6 +14,12 @@ function createBaseMsgStoreCode() {
|
|
|
14
14
|
instantiatePermission: undefined
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* MsgStoreCode submit Wasm code to the system
|
|
19
|
+
* @name MsgStoreCode
|
|
20
|
+
* @package cosmwasm.wasm.v1
|
|
21
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCode
|
|
22
|
+
*/
|
|
17
23
|
exports.MsgStoreCode = {
|
|
18
24
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreCode",
|
|
19
25
|
aminoType: "wasm/MsgStoreCode",
|
|
@@ -119,6 +125,12 @@ function createBaseMsgStoreCodeResponse() {
|
|
|
119
125
|
checksum: new Uint8Array()
|
|
120
126
|
};
|
|
121
127
|
}
|
|
128
|
+
/**
|
|
129
|
+
* MsgStoreCodeResponse returns store result data.
|
|
130
|
+
* @name MsgStoreCodeResponse
|
|
131
|
+
* @package cosmwasm.wasm.v1
|
|
132
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCodeResponse
|
|
133
|
+
*/
|
|
122
134
|
exports.MsgStoreCodeResponse = {
|
|
123
135
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreCodeResponse",
|
|
124
136
|
aminoType: "wasm/MsgStoreCodeResponse",
|
|
@@ -212,6 +224,13 @@ function createBaseMsgInstantiateContract() {
|
|
|
212
224
|
funds: []
|
|
213
225
|
};
|
|
214
226
|
}
|
|
227
|
+
/**
|
|
228
|
+
* MsgInstantiateContract create a new smart contract instance for the given
|
|
229
|
+
* code id.
|
|
230
|
+
* @name MsgInstantiateContract
|
|
231
|
+
* @package cosmwasm.wasm.v1
|
|
232
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract
|
|
233
|
+
*/
|
|
215
234
|
exports.MsgInstantiateContract = {
|
|
216
235
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract",
|
|
217
236
|
aminoType: "wasm/MsgInstantiateContract",
|
|
@@ -353,6 +372,12 @@ function createBaseMsgInstantiateContractResponse() {
|
|
|
353
372
|
data: new Uint8Array()
|
|
354
373
|
};
|
|
355
374
|
}
|
|
375
|
+
/**
|
|
376
|
+
* MsgInstantiateContractResponse return instantiation result data
|
|
377
|
+
* @name MsgInstantiateContractResponse
|
|
378
|
+
* @package cosmwasm.wasm.v1
|
|
379
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContractResponse
|
|
380
|
+
*/
|
|
356
381
|
exports.MsgInstantiateContractResponse = {
|
|
357
382
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContractResponse",
|
|
358
383
|
aminoType: "wasm/MsgInstantiateContractResponse",
|
|
@@ -448,6 +473,13 @@ function createBaseMsgInstantiateContract2() {
|
|
|
448
473
|
fixMsg: false
|
|
449
474
|
};
|
|
450
475
|
}
|
|
476
|
+
/**
|
|
477
|
+
* MsgInstantiateContract2 create a new smart contract instance for the given
|
|
478
|
+
* code id with a predictable address.
|
|
479
|
+
* @name MsgInstantiateContract2
|
|
480
|
+
* @package cosmwasm.wasm.v1
|
|
481
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2
|
|
482
|
+
*/
|
|
451
483
|
exports.MsgInstantiateContract2 = {
|
|
452
484
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract2",
|
|
453
485
|
aminoType: "wasm/MsgInstantiateContract2",
|
|
@@ -611,6 +643,12 @@ function createBaseMsgInstantiateContract2Response() {
|
|
|
611
643
|
data: new Uint8Array()
|
|
612
644
|
};
|
|
613
645
|
}
|
|
646
|
+
/**
|
|
647
|
+
* MsgInstantiateContract2Response return instantiation result data
|
|
648
|
+
* @name MsgInstantiateContract2Response
|
|
649
|
+
* @package cosmwasm.wasm.v1
|
|
650
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2Response
|
|
651
|
+
*/
|
|
614
652
|
exports.MsgInstantiateContract2Response = {
|
|
615
653
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract2Response",
|
|
616
654
|
aminoType: "wasm/MsgInstantiateContract2Response",
|
|
@@ -702,6 +740,12 @@ function createBaseMsgExecuteContract() {
|
|
|
702
740
|
funds: []
|
|
703
741
|
};
|
|
704
742
|
}
|
|
743
|
+
/**
|
|
744
|
+
* MsgExecuteContract submits the given message data to a smart contract
|
|
745
|
+
* @name MsgExecuteContract
|
|
746
|
+
* @package cosmwasm.wasm.v1
|
|
747
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContract
|
|
748
|
+
*/
|
|
705
749
|
exports.MsgExecuteContract = {
|
|
706
750
|
typeUrl: "/cosmwasm.wasm.v1.MsgExecuteContract",
|
|
707
751
|
aminoType: "wasm/MsgExecuteContract",
|
|
@@ -820,6 +864,12 @@ function createBaseMsgExecuteContractResponse() {
|
|
|
820
864
|
data: new Uint8Array()
|
|
821
865
|
};
|
|
822
866
|
}
|
|
867
|
+
/**
|
|
868
|
+
* MsgExecuteContractResponse returns execution result data.
|
|
869
|
+
* @name MsgExecuteContractResponse
|
|
870
|
+
* @package cosmwasm.wasm.v1
|
|
871
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContractResponse
|
|
872
|
+
*/
|
|
823
873
|
exports.MsgExecuteContractResponse = {
|
|
824
874
|
typeUrl: "/cosmwasm.wasm.v1.MsgExecuteContractResponse",
|
|
825
875
|
aminoType: "wasm/MsgExecuteContractResponse",
|
|
@@ -900,6 +950,12 @@ function createBaseMsgMigrateContract() {
|
|
|
900
950
|
msg: new Uint8Array()
|
|
901
951
|
};
|
|
902
952
|
}
|
|
953
|
+
/**
|
|
954
|
+
* MsgMigrateContract runs a code upgrade/ downgrade for a smart contract
|
|
955
|
+
* @name MsgMigrateContract
|
|
956
|
+
* @package cosmwasm.wasm.v1
|
|
957
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContract
|
|
958
|
+
*/
|
|
903
959
|
exports.MsgMigrateContract = {
|
|
904
960
|
typeUrl: "/cosmwasm.wasm.v1.MsgMigrateContract",
|
|
905
961
|
aminoType: "wasm/MsgMigrateContract",
|
|
@@ -1010,6 +1066,12 @@ function createBaseMsgMigrateContractResponse() {
|
|
|
1010
1066
|
data: new Uint8Array()
|
|
1011
1067
|
};
|
|
1012
1068
|
}
|
|
1069
|
+
/**
|
|
1070
|
+
* MsgMigrateContractResponse returns contract migration result data.
|
|
1071
|
+
* @name MsgMigrateContractResponse
|
|
1072
|
+
* @package cosmwasm.wasm.v1
|
|
1073
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContractResponse
|
|
1074
|
+
*/
|
|
1013
1075
|
exports.MsgMigrateContractResponse = {
|
|
1014
1076
|
typeUrl: "/cosmwasm.wasm.v1.MsgMigrateContractResponse",
|
|
1015
1077
|
aminoType: "wasm/MsgMigrateContractResponse",
|
|
@@ -1089,6 +1151,12 @@ function createBaseMsgUpdateAdmin() {
|
|
|
1089
1151
|
contract: ""
|
|
1090
1152
|
};
|
|
1091
1153
|
}
|
|
1154
|
+
/**
|
|
1155
|
+
* MsgUpdateAdmin sets a new admin for a smart contract
|
|
1156
|
+
* @name MsgUpdateAdmin
|
|
1157
|
+
* @package cosmwasm.wasm.v1
|
|
1158
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdmin
|
|
1159
|
+
*/
|
|
1092
1160
|
exports.MsgUpdateAdmin = {
|
|
1093
1161
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateAdmin",
|
|
1094
1162
|
aminoType: "wasm/MsgUpdateAdmin",
|
|
@@ -1186,6 +1254,12 @@ exports.MsgUpdateAdmin = {
|
|
|
1186
1254
|
function createBaseMsgUpdateAdminResponse() {
|
|
1187
1255
|
return {};
|
|
1188
1256
|
}
|
|
1257
|
+
/**
|
|
1258
|
+
* MsgUpdateAdminResponse returns empty data
|
|
1259
|
+
* @name MsgUpdateAdminResponse
|
|
1260
|
+
* @package cosmwasm.wasm.v1
|
|
1261
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdminResponse
|
|
1262
|
+
*/
|
|
1189
1263
|
exports.MsgUpdateAdminResponse = {
|
|
1190
1264
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateAdminResponse",
|
|
1191
1265
|
aminoType: "wasm/MsgUpdateAdminResponse",
|
|
@@ -1253,6 +1327,12 @@ function createBaseMsgClearAdmin() {
|
|
|
1253
1327
|
contract: ""
|
|
1254
1328
|
};
|
|
1255
1329
|
}
|
|
1330
|
+
/**
|
|
1331
|
+
* MsgClearAdmin removes any admin stored for a smart contract
|
|
1332
|
+
* @name MsgClearAdmin
|
|
1333
|
+
* @package cosmwasm.wasm.v1
|
|
1334
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdmin
|
|
1335
|
+
*/
|
|
1256
1336
|
exports.MsgClearAdmin = {
|
|
1257
1337
|
typeUrl: "/cosmwasm.wasm.v1.MsgClearAdmin",
|
|
1258
1338
|
aminoType: "wasm/MsgClearAdmin",
|
|
@@ -1339,6 +1419,12 @@ exports.MsgClearAdmin = {
|
|
|
1339
1419
|
function createBaseMsgClearAdminResponse() {
|
|
1340
1420
|
return {};
|
|
1341
1421
|
}
|
|
1422
|
+
/**
|
|
1423
|
+
* MsgClearAdminResponse returns empty data
|
|
1424
|
+
* @name MsgClearAdminResponse
|
|
1425
|
+
* @package cosmwasm.wasm.v1
|
|
1426
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdminResponse
|
|
1427
|
+
*/
|
|
1342
1428
|
exports.MsgClearAdminResponse = {
|
|
1343
1429
|
typeUrl: "/cosmwasm.wasm.v1.MsgClearAdminResponse",
|
|
1344
1430
|
aminoType: "wasm/MsgClearAdminResponse",
|
|
@@ -1407,6 +1493,12 @@ function createBaseMsgUpdateInstantiateConfig() {
|
|
|
1407
1493
|
newInstantiatePermission: undefined
|
|
1408
1494
|
};
|
|
1409
1495
|
}
|
|
1496
|
+
/**
|
|
1497
|
+
* MsgUpdateInstantiateConfig updates instantiate config for a smart contract
|
|
1498
|
+
* @name MsgUpdateInstantiateConfig
|
|
1499
|
+
* @package cosmwasm.wasm.v1
|
|
1500
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfig
|
|
1501
|
+
*/
|
|
1410
1502
|
exports.MsgUpdateInstantiateConfig = {
|
|
1411
1503
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateInstantiateConfig",
|
|
1412
1504
|
aminoType: "wasm/MsgUpdateInstantiateConfig",
|
|
@@ -1509,6 +1601,12 @@ exports.MsgUpdateInstantiateConfig = {
|
|
|
1509
1601
|
function createBaseMsgUpdateInstantiateConfigResponse() {
|
|
1510
1602
|
return {};
|
|
1511
1603
|
}
|
|
1604
|
+
/**
|
|
1605
|
+
* MsgUpdateInstantiateConfigResponse returns empty data
|
|
1606
|
+
* @name MsgUpdateInstantiateConfigResponse
|
|
1607
|
+
* @package cosmwasm.wasm.v1
|
|
1608
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse
|
|
1609
|
+
*/
|
|
1512
1610
|
exports.MsgUpdateInstantiateConfigResponse = {
|
|
1513
1611
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse",
|
|
1514
1612
|
aminoType: "wasm/MsgUpdateInstantiateConfigResponse",
|
|
@@ -1576,6 +1674,14 @@ function createBaseMsgUpdateParams() {
|
|
|
1576
1674
|
params: types_1.Params.fromPartial({})
|
|
1577
1675
|
};
|
|
1578
1676
|
}
|
|
1677
|
+
/**
|
|
1678
|
+
* MsgUpdateParams is the MsgUpdateParams request type.
|
|
1679
|
+
*
|
|
1680
|
+
* Since: 0.40
|
|
1681
|
+
* @name MsgUpdateParams
|
|
1682
|
+
* @package cosmwasm.wasm.v1
|
|
1683
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParams
|
|
1684
|
+
*/
|
|
1579
1685
|
exports.MsgUpdateParams = {
|
|
1580
1686
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateParams",
|
|
1581
1687
|
aminoType: "wasm/MsgUpdateParams",
|
|
@@ -1667,6 +1773,15 @@ exports.MsgUpdateParams = {
|
|
|
1667
1773
|
function createBaseMsgUpdateParamsResponse() {
|
|
1668
1774
|
return {};
|
|
1669
1775
|
}
|
|
1776
|
+
/**
|
|
1777
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
1778
|
+
* MsgUpdateParams message.
|
|
1779
|
+
*
|
|
1780
|
+
* Since: 0.40
|
|
1781
|
+
* @name MsgUpdateParamsResponse
|
|
1782
|
+
* @package cosmwasm.wasm.v1
|
|
1783
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParamsResponse
|
|
1784
|
+
*/
|
|
1670
1785
|
exports.MsgUpdateParamsResponse = {
|
|
1671
1786
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateParamsResponse",
|
|
1672
1787
|
aminoType: "wasm/MsgUpdateParamsResponse",
|
|
@@ -1735,6 +1850,14 @@ function createBaseMsgSudoContract() {
|
|
|
1735
1850
|
msg: new Uint8Array()
|
|
1736
1851
|
};
|
|
1737
1852
|
}
|
|
1853
|
+
/**
|
|
1854
|
+
* MsgSudoContract is the MsgSudoContract request type.
|
|
1855
|
+
*
|
|
1856
|
+
* Since: 0.40
|
|
1857
|
+
* @name MsgSudoContract
|
|
1858
|
+
* @package cosmwasm.wasm.v1
|
|
1859
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContract
|
|
1860
|
+
*/
|
|
1738
1861
|
exports.MsgSudoContract = {
|
|
1739
1862
|
typeUrl: "/cosmwasm.wasm.v1.MsgSudoContract",
|
|
1740
1863
|
aminoType: "wasm/MsgSudoContract",
|
|
@@ -1834,6 +1957,15 @@ function createBaseMsgSudoContractResponse() {
|
|
|
1834
1957
|
data: new Uint8Array()
|
|
1835
1958
|
};
|
|
1836
1959
|
}
|
|
1960
|
+
/**
|
|
1961
|
+
* MsgSudoContractResponse defines the response structure for executing a
|
|
1962
|
+
* MsgSudoContract message.
|
|
1963
|
+
*
|
|
1964
|
+
* Since: 0.40
|
|
1965
|
+
* @name MsgSudoContractResponse
|
|
1966
|
+
* @package cosmwasm.wasm.v1
|
|
1967
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContractResponse
|
|
1968
|
+
*/
|
|
1837
1969
|
exports.MsgSudoContractResponse = {
|
|
1838
1970
|
typeUrl: "/cosmwasm.wasm.v1.MsgSudoContractResponse",
|
|
1839
1971
|
aminoType: "wasm/MsgSudoContractResponse",
|
|
@@ -1912,6 +2044,14 @@ function createBaseMsgPinCodes() {
|
|
|
1912
2044
|
codeIds: []
|
|
1913
2045
|
};
|
|
1914
2046
|
}
|
|
2047
|
+
/**
|
|
2048
|
+
* MsgPinCodes is the MsgPinCodes request type.
|
|
2049
|
+
*
|
|
2050
|
+
* Since: 0.40
|
|
2051
|
+
* @name MsgPinCodes
|
|
2052
|
+
* @package cosmwasm.wasm.v1
|
|
2053
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodes
|
|
2054
|
+
*/
|
|
1915
2055
|
exports.MsgPinCodes = {
|
|
1916
2056
|
typeUrl: "/cosmwasm.wasm.v1.MsgPinCodes",
|
|
1917
2057
|
aminoType: "wasm/MsgPinCodes",
|
|
@@ -2011,6 +2151,15 @@ exports.MsgPinCodes = {
|
|
|
2011
2151
|
function createBaseMsgPinCodesResponse() {
|
|
2012
2152
|
return {};
|
|
2013
2153
|
}
|
|
2154
|
+
/**
|
|
2155
|
+
* MsgPinCodesResponse defines the response structure for executing a
|
|
2156
|
+
* MsgPinCodes message.
|
|
2157
|
+
*
|
|
2158
|
+
* Since: 0.40
|
|
2159
|
+
* @name MsgPinCodesResponse
|
|
2160
|
+
* @package cosmwasm.wasm.v1
|
|
2161
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodesResponse
|
|
2162
|
+
*/
|
|
2014
2163
|
exports.MsgPinCodesResponse = {
|
|
2015
2164
|
typeUrl: "/cosmwasm.wasm.v1.MsgPinCodesResponse",
|
|
2016
2165
|
aminoType: "wasm/MsgPinCodesResponse",
|
|
@@ -2078,6 +2227,14 @@ function createBaseMsgUnpinCodes() {
|
|
|
2078
2227
|
codeIds: []
|
|
2079
2228
|
};
|
|
2080
2229
|
}
|
|
2230
|
+
/**
|
|
2231
|
+
* MsgUnpinCodes is the MsgUnpinCodes request type.
|
|
2232
|
+
*
|
|
2233
|
+
* Since: 0.40
|
|
2234
|
+
* @name MsgUnpinCodes
|
|
2235
|
+
* @package cosmwasm.wasm.v1
|
|
2236
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodes
|
|
2237
|
+
*/
|
|
2081
2238
|
exports.MsgUnpinCodes = {
|
|
2082
2239
|
typeUrl: "/cosmwasm.wasm.v1.MsgUnpinCodes",
|
|
2083
2240
|
aminoType: "wasm/MsgUnpinCodes",
|
|
@@ -2177,6 +2334,15 @@ exports.MsgUnpinCodes = {
|
|
|
2177
2334
|
function createBaseMsgUnpinCodesResponse() {
|
|
2178
2335
|
return {};
|
|
2179
2336
|
}
|
|
2337
|
+
/**
|
|
2338
|
+
* MsgUnpinCodesResponse defines the response structure for executing a
|
|
2339
|
+
* MsgUnpinCodes message.
|
|
2340
|
+
*
|
|
2341
|
+
* Since: 0.40
|
|
2342
|
+
* @name MsgUnpinCodesResponse
|
|
2343
|
+
* @package cosmwasm.wasm.v1
|
|
2344
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodesResponse
|
|
2345
|
+
*/
|
|
2180
2346
|
exports.MsgUnpinCodesResponse = {
|
|
2181
2347
|
typeUrl: "/cosmwasm.wasm.v1.MsgUnpinCodesResponse",
|
|
2182
2348
|
aminoType: "wasm/MsgUnpinCodesResponse",
|
|
@@ -2253,6 +2419,15 @@ function createBaseMsgStoreAndInstantiateContract() {
|
|
|
2253
2419
|
codeHash: new Uint8Array()
|
|
2254
2420
|
};
|
|
2255
2421
|
}
|
|
2422
|
+
/**
|
|
2423
|
+
* MsgStoreAndInstantiateContract is the MsgStoreAndInstantiateContract
|
|
2424
|
+
* request type.
|
|
2425
|
+
*
|
|
2426
|
+
* Since: 0.40
|
|
2427
|
+
* @name MsgStoreAndInstantiateContract
|
|
2428
|
+
* @package cosmwasm.wasm.v1
|
|
2429
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContract
|
|
2430
|
+
*/
|
|
2256
2431
|
exports.MsgStoreAndInstantiateContract = {
|
|
2257
2432
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndInstantiateContract",
|
|
2258
2433
|
aminoType: "wasm/MsgStoreAndInstantiateContract",
|
|
@@ -2450,6 +2625,15 @@ function createBaseMsgStoreAndInstantiateContractResponse() {
|
|
|
2450
2625
|
data: new Uint8Array()
|
|
2451
2626
|
};
|
|
2452
2627
|
}
|
|
2628
|
+
/**
|
|
2629
|
+
* MsgStoreAndInstantiateContractResponse defines the response structure
|
|
2630
|
+
* for executing a MsgStoreAndInstantiateContract message.
|
|
2631
|
+
*
|
|
2632
|
+
* Since: 0.40
|
|
2633
|
+
* @name MsgStoreAndInstantiateContractResponse
|
|
2634
|
+
* @package cosmwasm.wasm.v1
|
|
2635
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContractResponse
|
|
2636
|
+
*/
|
|
2453
2637
|
exports.MsgStoreAndInstantiateContractResponse = {
|
|
2454
2638
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndInstantiateContractResponse",
|
|
2455
2639
|
aminoType: "wasm/MsgStoreAndInstantiateContractResponse",
|
|
@@ -2539,6 +2723,13 @@ function createBaseMsgAddCodeUploadParamsAddresses() {
|
|
|
2539
2723
|
addresses: []
|
|
2540
2724
|
};
|
|
2541
2725
|
}
|
|
2726
|
+
/**
|
|
2727
|
+
* MsgAddCodeUploadParamsAddresses is the
|
|
2728
|
+
* MsgAddCodeUploadParamsAddresses request type.
|
|
2729
|
+
* @name MsgAddCodeUploadParamsAddresses
|
|
2730
|
+
* @package cosmwasm.wasm.v1
|
|
2731
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddresses
|
|
2732
|
+
*/
|
|
2542
2733
|
exports.MsgAddCodeUploadParamsAddresses = {
|
|
2543
2734
|
typeUrl: "/cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddresses",
|
|
2544
2735
|
aminoType: "wasm/MsgAddCodeUploadParamsAddresses",
|
|
@@ -2628,6 +2819,13 @@ exports.MsgAddCodeUploadParamsAddresses = {
|
|
|
2628
2819
|
function createBaseMsgAddCodeUploadParamsAddressesResponse() {
|
|
2629
2820
|
return {};
|
|
2630
2821
|
}
|
|
2822
|
+
/**
|
|
2823
|
+
* MsgAddCodeUploadParamsAddressesResponse defines the response
|
|
2824
|
+
* structure for executing a MsgAddCodeUploadParamsAddresses message.
|
|
2825
|
+
* @name MsgAddCodeUploadParamsAddressesResponse
|
|
2826
|
+
* @package cosmwasm.wasm.v1
|
|
2827
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddressesResponse
|
|
2828
|
+
*/
|
|
2631
2829
|
exports.MsgAddCodeUploadParamsAddressesResponse = {
|
|
2632
2830
|
typeUrl: "/cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddressesResponse",
|
|
2633
2831
|
aminoType: "wasm/MsgAddCodeUploadParamsAddressesResponse",
|
|
@@ -2695,6 +2893,13 @@ function createBaseMsgRemoveCodeUploadParamsAddresses() {
|
|
|
2695
2893
|
addresses: []
|
|
2696
2894
|
};
|
|
2697
2895
|
}
|
|
2896
|
+
/**
|
|
2897
|
+
* MsgRemoveCodeUploadParamsAddresses is the
|
|
2898
|
+
* MsgRemoveCodeUploadParamsAddresses request type.
|
|
2899
|
+
* @name MsgRemoveCodeUploadParamsAddresses
|
|
2900
|
+
* @package cosmwasm.wasm.v1
|
|
2901
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddresses
|
|
2902
|
+
*/
|
|
2698
2903
|
exports.MsgRemoveCodeUploadParamsAddresses = {
|
|
2699
2904
|
typeUrl: "/cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddresses",
|
|
2700
2905
|
aminoType: "wasm/MsgRemoveCodeUploadParamsAddresses",
|
|
@@ -2784,6 +2989,13 @@ exports.MsgRemoveCodeUploadParamsAddresses = {
|
|
|
2784
2989
|
function createBaseMsgRemoveCodeUploadParamsAddressesResponse() {
|
|
2785
2990
|
return {};
|
|
2786
2991
|
}
|
|
2992
|
+
/**
|
|
2993
|
+
* MsgRemoveCodeUploadParamsAddressesResponse defines the response
|
|
2994
|
+
* structure for executing a MsgRemoveCodeUploadParamsAddresses message.
|
|
2995
|
+
* @name MsgRemoveCodeUploadParamsAddressesResponse
|
|
2996
|
+
* @package cosmwasm.wasm.v1
|
|
2997
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddressesResponse
|
|
2998
|
+
*/
|
|
2787
2999
|
exports.MsgRemoveCodeUploadParamsAddressesResponse = {
|
|
2788
3000
|
typeUrl: "/cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddressesResponse",
|
|
2789
3001
|
aminoType: "wasm/MsgRemoveCodeUploadParamsAddressesResponse",
|
|
@@ -2854,6 +3066,15 @@ function createBaseMsgStoreAndMigrateContract() {
|
|
|
2854
3066
|
msg: new Uint8Array()
|
|
2855
3067
|
};
|
|
2856
3068
|
}
|
|
3069
|
+
/**
|
|
3070
|
+
* MsgStoreAndMigrateContract is the MsgStoreAndMigrateContract
|
|
3071
|
+
* request type.
|
|
3072
|
+
*
|
|
3073
|
+
* Since: 0.42
|
|
3074
|
+
* @name MsgStoreAndMigrateContract
|
|
3075
|
+
* @package cosmwasm.wasm.v1
|
|
3076
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContract
|
|
3077
|
+
*/
|
|
2857
3078
|
exports.MsgStoreAndMigrateContract = {
|
|
2858
3079
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndMigrateContract",
|
|
2859
3080
|
aminoType: "wasm/MsgStoreAndMigrateContract",
|
|
@@ -2982,6 +3203,15 @@ function createBaseMsgStoreAndMigrateContractResponse() {
|
|
|
2982
3203
|
data: new Uint8Array()
|
|
2983
3204
|
};
|
|
2984
3205
|
}
|
|
3206
|
+
/**
|
|
3207
|
+
* MsgStoreAndMigrateContractResponse defines the response structure
|
|
3208
|
+
* for executing a MsgStoreAndMigrateContract message.
|
|
3209
|
+
*
|
|
3210
|
+
* Since: 0.42
|
|
3211
|
+
* @name MsgStoreAndMigrateContractResponse
|
|
3212
|
+
* @package cosmwasm.wasm.v1
|
|
3213
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse
|
|
3214
|
+
*/
|
|
2985
3215
|
exports.MsgStoreAndMigrateContractResponse = {
|
|
2986
3216
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse",
|
|
2987
3217
|
aminoType: "wasm/MsgStoreAndMigrateContractResponse",
|
|
@@ -3083,6 +3313,12 @@ function createBaseMsgUpdateContractLabel() {
|
|
|
3083
3313
|
contract: ""
|
|
3084
3314
|
};
|
|
3085
3315
|
}
|
|
3316
|
+
/**
|
|
3317
|
+
* MsgUpdateContractLabel sets a new label for a smart contract
|
|
3318
|
+
* @name MsgUpdateContractLabel
|
|
3319
|
+
* @package cosmwasm.wasm.v1
|
|
3320
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabel
|
|
3321
|
+
*/
|
|
3086
3322
|
exports.MsgUpdateContractLabel = {
|
|
3087
3323
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateContractLabel",
|
|
3088
3324
|
aminoType: "wasm/MsgUpdateContractLabel",
|
|
@@ -3180,6 +3416,12 @@ exports.MsgUpdateContractLabel = {
|
|
|
3180
3416
|
function createBaseMsgUpdateContractLabelResponse() {
|
|
3181
3417
|
return {};
|
|
3182
3418
|
}
|
|
3419
|
+
/**
|
|
3420
|
+
* MsgUpdateContractLabelResponse returns empty data
|
|
3421
|
+
* @name MsgUpdateContractLabelResponse
|
|
3422
|
+
* @package cosmwasm.wasm.v1
|
|
3423
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabelResponse
|
|
3424
|
+
*/
|
|
3183
3425
|
exports.MsgUpdateContractLabelResponse = {
|
|
3184
3426
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateContractLabelResponse",
|
|
3185
3427
|
aminoType: "wasm/MsgUpdateContractLabelResponse",
|
|
@@ -1,18 +1,146 @@
|
|
|
1
1
|
import { MsgStoreCode, MsgInstantiateContract, MsgInstantiateContract2, MsgExecuteContract, MsgMigrateContract, MsgUpdateAdmin, MsgClearAdmin, MsgUpdateInstantiateConfig, MsgUpdateParams, MsgSudoContract, MsgPinCodes, MsgUnpinCodes, MsgStoreAndInstantiateContract, MsgRemoveCodeUploadParamsAddresses, MsgAddCodeUploadParamsAddresses, MsgStoreAndMigrateContract, MsgUpdateContractLabel } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* StoreCode to submit Wasm code to the system
|
|
4
|
+
* @name storeCode
|
|
5
|
+
* @package cosmwasm.wasm.v1
|
|
6
|
+
* @see proto service: cosmwasm.wasm.v1.StoreCode
|
|
7
|
+
*/
|
|
2
8
|
export declare const storeCode: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgStoreCode | MsgStoreCode[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* InstantiateContract creates a new smart contract instance for the given
|
|
11
|
+
* code id.
|
|
12
|
+
* @name instantiateContract
|
|
13
|
+
* @package cosmwasm.wasm.v1
|
|
14
|
+
* @see proto service: cosmwasm.wasm.v1.InstantiateContract
|
|
15
|
+
*/
|
|
3
16
|
export declare const instantiateContract: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgInstantiateContract | MsgInstantiateContract[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* InstantiateContract2 creates a new smart contract instance for the given
|
|
19
|
+
* code id with a predictable address
|
|
20
|
+
* @name instantiateContract2
|
|
21
|
+
* @package cosmwasm.wasm.v1
|
|
22
|
+
* @see proto service: cosmwasm.wasm.v1.InstantiateContract2
|
|
23
|
+
*/
|
|
4
24
|
export declare const instantiateContract2: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgInstantiateContract2 | MsgInstantiateContract2[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* Execute submits the given message data to a smart contract
|
|
27
|
+
* @name executeContract
|
|
28
|
+
* @package cosmwasm.wasm.v1
|
|
29
|
+
* @see proto service: cosmwasm.wasm.v1.ExecuteContract
|
|
30
|
+
*/
|
|
5
31
|
export declare const executeContract: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgExecuteContract | MsgExecuteContract[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* Migrate runs a code upgrade/ downgrade for a smart contract
|
|
34
|
+
* @name migrateContract
|
|
35
|
+
* @package cosmwasm.wasm.v1
|
|
36
|
+
* @see proto service: cosmwasm.wasm.v1.MigrateContract
|
|
37
|
+
*/
|
|
6
38
|
export declare const migrateContract: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgMigrateContract | MsgMigrateContract[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
39
|
+
/**
|
|
40
|
+
* UpdateAdmin sets a new admin for a smart contract
|
|
41
|
+
* @name updateAdmin
|
|
42
|
+
* @package cosmwasm.wasm.v1
|
|
43
|
+
* @see proto service: cosmwasm.wasm.v1.UpdateAdmin
|
|
44
|
+
*/
|
|
7
45
|
export declare const updateAdmin: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateAdmin | MsgUpdateAdmin[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
46
|
+
/**
|
|
47
|
+
* ClearAdmin removes any admin stored for a smart contract
|
|
48
|
+
* @name clearAdmin
|
|
49
|
+
* @package cosmwasm.wasm.v1
|
|
50
|
+
* @see proto service: cosmwasm.wasm.v1.ClearAdmin
|
|
51
|
+
*/
|
|
8
52
|
export declare const clearAdmin: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgClearAdmin | MsgClearAdmin[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
53
|
+
/**
|
|
54
|
+
* UpdateInstantiateConfig updates instantiate config for a smart contract
|
|
55
|
+
* @name updateInstantiateConfig
|
|
56
|
+
* @package cosmwasm.wasm.v1
|
|
57
|
+
* @see proto service: cosmwasm.wasm.v1.UpdateInstantiateConfig
|
|
58
|
+
*/
|
|
9
59
|
export declare const updateInstantiateConfig: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateInstantiateConfig | MsgUpdateInstantiateConfig[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
60
|
+
/**
|
|
61
|
+
* UpdateParams defines a governance operation for updating the x/wasm
|
|
62
|
+
* module parameters. The authority is defined in the keeper.
|
|
63
|
+
*
|
|
64
|
+
* Since: 0.40
|
|
65
|
+
* @name updateParams
|
|
66
|
+
* @package cosmwasm.wasm.v1
|
|
67
|
+
* @see proto service: cosmwasm.wasm.v1.UpdateParams
|
|
68
|
+
*/
|
|
10
69
|
export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
70
|
+
/**
|
|
71
|
+
* SudoContract defines a governance operation for calling sudo
|
|
72
|
+
* on a contract. The authority is defined in the keeper.
|
|
73
|
+
*
|
|
74
|
+
* Since: 0.40
|
|
75
|
+
* @name sudoContract
|
|
76
|
+
* @package cosmwasm.wasm.v1
|
|
77
|
+
* @see proto service: cosmwasm.wasm.v1.SudoContract
|
|
78
|
+
*/
|
|
11
79
|
export declare const sudoContract: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSudoContract | MsgSudoContract[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
80
|
+
/**
|
|
81
|
+
* PinCodes defines a governance operation for pinning a set of
|
|
82
|
+
* code ids in the wasmvm cache. The authority is defined in the keeper.
|
|
83
|
+
*
|
|
84
|
+
* Since: 0.40
|
|
85
|
+
* @name pinCodes
|
|
86
|
+
* @package cosmwasm.wasm.v1
|
|
87
|
+
* @see proto service: cosmwasm.wasm.v1.PinCodes
|
|
88
|
+
*/
|
|
12
89
|
export declare const pinCodes: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgPinCodes | MsgPinCodes[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
90
|
+
/**
|
|
91
|
+
* UnpinCodes defines a governance operation for unpinning a set of
|
|
92
|
+
* code ids in the wasmvm cache. The authority is defined in the keeper.
|
|
93
|
+
*
|
|
94
|
+
* Since: 0.40
|
|
95
|
+
* @name unpinCodes
|
|
96
|
+
* @package cosmwasm.wasm.v1
|
|
97
|
+
* @see proto service: cosmwasm.wasm.v1.UnpinCodes
|
|
98
|
+
*/
|
|
13
99
|
export declare const unpinCodes: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUnpinCodes | MsgUnpinCodes[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
100
|
+
/**
|
|
101
|
+
* StoreAndInstantiateContract defines a governance operation for storing
|
|
102
|
+
* and instantiating the contract. The authority is defined in the keeper.
|
|
103
|
+
*
|
|
104
|
+
* Since: 0.40
|
|
105
|
+
* @name storeAndInstantiateContract
|
|
106
|
+
* @package cosmwasm.wasm.v1
|
|
107
|
+
* @see proto service: cosmwasm.wasm.v1.StoreAndInstantiateContract
|
|
108
|
+
*/
|
|
14
109
|
export declare const storeAndInstantiateContract: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgStoreAndInstantiateContract | MsgStoreAndInstantiateContract[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
110
|
+
/**
|
|
111
|
+
* RemoveCodeUploadParamsAddresses defines a governance operation for
|
|
112
|
+
* removing addresses from code upload params.
|
|
113
|
+
* The authority is defined in the keeper.
|
|
114
|
+
* @name removeCodeUploadParamsAddresses
|
|
115
|
+
* @package cosmwasm.wasm.v1
|
|
116
|
+
* @see proto service: cosmwasm.wasm.v1.RemoveCodeUploadParamsAddresses
|
|
117
|
+
*/
|
|
15
118
|
export declare const removeCodeUploadParamsAddresses: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRemoveCodeUploadParamsAddresses | MsgRemoveCodeUploadParamsAddresses[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
119
|
+
/**
|
|
120
|
+
* AddCodeUploadParamsAddresses defines a governance operation for
|
|
121
|
+
* adding addresses to code upload params.
|
|
122
|
+
* The authority is defined in the keeper.
|
|
123
|
+
* @name addCodeUploadParamsAddresses
|
|
124
|
+
* @package cosmwasm.wasm.v1
|
|
125
|
+
* @see proto service: cosmwasm.wasm.v1.AddCodeUploadParamsAddresses
|
|
126
|
+
*/
|
|
16
127
|
export declare const addCodeUploadParamsAddresses: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgAddCodeUploadParamsAddresses | MsgAddCodeUploadParamsAddresses[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
128
|
+
/**
|
|
129
|
+
* StoreAndMigrateContract defines a governance operation for storing
|
|
130
|
+
* and migrating the contract. The authority is defined in the keeper.
|
|
131
|
+
*
|
|
132
|
+
* Since: 0.42
|
|
133
|
+
* @name storeAndMigrateContract
|
|
134
|
+
* @package cosmwasm.wasm.v1
|
|
135
|
+
* @see proto service: cosmwasm.wasm.v1.StoreAndMigrateContract
|
|
136
|
+
*/
|
|
17
137
|
export declare const storeAndMigrateContract: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgStoreAndMigrateContract | MsgStoreAndMigrateContract[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
138
|
+
/**
|
|
139
|
+
* UpdateContractLabel sets a new label for a smart contract
|
|
140
|
+
*
|
|
141
|
+
* Since: 0.43
|
|
142
|
+
* @name updateContractLabel
|
|
143
|
+
* @package cosmwasm.wasm.v1
|
|
144
|
+
* @see proto service: cosmwasm.wasm.v1.UpdateContractLabel
|
|
145
|
+
*/
|
|
18
146
|
export declare const updateContractLabel: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateContractLabel | MsgUpdateContractLabel[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|