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
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { buildQuery } from "../../../helper-func-types";
|
|
2
2
|
import { QueryContractInfoRequest, QueryContractInfoResponse, QueryContractHistoryRequest, QueryContractHistoryResponse, QueryContractsByCodeRequest, QueryContractsByCodeResponse, QueryAllContractStateRequest, QueryAllContractStateResponse, QueryRawContractStateRequest, QueryRawContractStateResponse, QuerySmartContractStateRequest, QuerySmartContractStateResponse, QueryCodeRequest, QueryCodeResponse, QueryCodesRequest, QueryCodesResponse, QueryCodeInfoRequest, QueryCodeInfoResponse, QueryPinnedCodesRequest, QueryPinnedCodesResponse, QueryParamsRequest, QueryParamsResponse, QueryContractsByCreatorRequest, QueryContractsByCreatorResponse, QueryWasmLimitsConfigRequest, QueryWasmLimitsConfigResponse, QueryBuildAddressRequest, QueryBuildAddressResponse } from "./query";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* ContractInfo gets the contract meta data
|
|
5
|
+
* @name getContractInfo
|
|
6
|
+
* @package cosmwasm.wasm.v1
|
|
7
|
+
* @see proto service: cosmwasm.wasm.v1.ContractInfo
|
|
8
|
+
*/
|
|
4
9
|
export const getContractInfo = buildQuery({
|
|
5
10
|
encode: QueryContractInfoRequest.encode,
|
|
6
11
|
decode: QueryContractInfoResponse.decode,
|
|
@@ -8,7 +13,12 @@ export const getContractInfo = buildQuery({
|
|
|
8
13
|
method: "ContractInfo",
|
|
9
14
|
deps: [QueryContractInfoRequest, QueryContractInfoResponse]
|
|
10
15
|
});
|
|
11
|
-
|
|
16
|
+
/**
|
|
17
|
+
* ContractHistory gets the contract code history
|
|
18
|
+
* @name getContractHistory
|
|
19
|
+
* @package cosmwasm.wasm.v1
|
|
20
|
+
* @see proto service: cosmwasm.wasm.v1.ContractHistory
|
|
21
|
+
*/
|
|
12
22
|
export const getContractHistory = buildQuery({
|
|
13
23
|
encode: QueryContractHistoryRequest.encode,
|
|
14
24
|
decode: QueryContractHistoryResponse.decode,
|
|
@@ -16,7 +26,12 @@ export const getContractHistory = buildQuery({
|
|
|
16
26
|
method: "ContractHistory",
|
|
17
27
|
deps: [QueryContractHistoryRequest, QueryContractHistoryResponse]
|
|
18
28
|
});
|
|
19
|
-
|
|
29
|
+
/**
|
|
30
|
+
* ContractsByCode lists all smart contracts for a code id
|
|
31
|
+
* @name getContractsByCode
|
|
32
|
+
* @package cosmwasm.wasm.v1
|
|
33
|
+
* @see proto service: cosmwasm.wasm.v1.ContractsByCode
|
|
34
|
+
*/
|
|
20
35
|
export const getContractsByCode = buildQuery({
|
|
21
36
|
encode: QueryContractsByCodeRequest.encode,
|
|
22
37
|
decode: QueryContractsByCodeResponse.decode,
|
|
@@ -24,7 +39,12 @@ export const getContractsByCode = buildQuery({
|
|
|
24
39
|
method: "ContractsByCode",
|
|
25
40
|
deps: [QueryContractsByCodeRequest, QueryContractsByCodeResponse]
|
|
26
41
|
});
|
|
27
|
-
|
|
42
|
+
/**
|
|
43
|
+
* AllContractState gets all raw store data for a single contract
|
|
44
|
+
* @name getAllContractState
|
|
45
|
+
* @package cosmwasm.wasm.v1
|
|
46
|
+
* @see proto service: cosmwasm.wasm.v1.AllContractState
|
|
47
|
+
*/
|
|
28
48
|
export const getAllContractState = buildQuery({
|
|
29
49
|
encode: QueryAllContractStateRequest.encode,
|
|
30
50
|
decode: QueryAllContractStateResponse.decode,
|
|
@@ -32,7 +52,12 @@ export const getAllContractState = buildQuery({
|
|
|
32
52
|
method: "AllContractState",
|
|
33
53
|
deps: [QueryAllContractStateRequest, QueryAllContractStateResponse]
|
|
34
54
|
});
|
|
35
|
-
|
|
55
|
+
/**
|
|
56
|
+
* RawContractState gets single key from the raw store data of a contract
|
|
57
|
+
* @name getRawContractState
|
|
58
|
+
* @package cosmwasm.wasm.v1
|
|
59
|
+
* @see proto service: cosmwasm.wasm.v1.RawContractState
|
|
60
|
+
*/
|
|
36
61
|
export const getRawContractState = buildQuery({
|
|
37
62
|
encode: QueryRawContractStateRequest.encode,
|
|
38
63
|
decode: QueryRawContractStateResponse.decode,
|
|
@@ -40,7 +65,12 @@ export const getRawContractState = buildQuery({
|
|
|
40
65
|
method: "RawContractState",
|
|
41
66
|
deps: [QueryRawContractStateRequest, QueryRawContractStateResponse]
|
|
42
67
|
});
|
|
43
|
-
|
|
68
|
+
/**
|
|
69
|
+
* SmartContractState get smart query result from the contract
|
|
70
|
+
* @name getSmartContractState
|
|
71
|
+
* @package cosmwasm.wasm.v1
|
|
72
|
+
* @see proto service: cosmwasm.wasm.v1.SmartContractState
|
|
73
|
+
*/
|
|
44
74
|
export const getSmartContractState = buildQuery({
|
|
45
75
|
encode: QuerySmartContractStateRequest.encode,
|
|
46
76
|
decode: QuerySmartContractStateResponse.decode,
|
|
@@ -48,7 +78,12 @@ export const getSmartContractState = buildQuery({
|
|
|
48
78
|
method: "SmartContractState",
|
|
49
79
|
deps: [QuerySmartContractStateRequest, QuerySmartContractStateResponse]
|
|
50
80
|
});
|
|
51
|
-
|
|
81
|
+
/**
|
|
82
|
+
* Code gets the binary code and metadata for a single wasm code
|
|
83
|
+
* @name getCode
|
|
84
|
+
* @package cosmwasm.wasm.v1
|
|
85
|
+
* @see proto service: cosmwasm.wasm.v1.Code
|
|
86
|
+
*/
|
|
52
87
|
export const getCode = buildQuery({
|
|
53
88
|
encode: QueryCodeRequest.encode,
|
|
54
89
|
decode: QueryCodeResponse.decode,
|
|
@@ -56,7 +91,12 @@ export const getCode = buildQuery({
|
|
|
56
91
|
method: "Code",
|
|
57
92
|
deps: [QueryCodeRequest, QueryCodeResponse]
|
|
58
93
|
});
|
|
59
|
-
|
|
94
|
+
/**
|
|
95
|
+
* Codes gets the metadata for all stored wasm codes
|
|
96
|
+
* @name getCodes
|
|
97
|
+
* @package cosmwasm.wasm.v1
|
|
98
|
+
* @see proto service: cosmwasm.wasm.v1.Codes
|
|
99
|
+
*/
|
|
60
100
|
export const getCodes = buildQuery({
|
|
61
101
|
encode: QueryCodesRequest.encode,
|
|
62
102
|
decode: QueryCodesResponse.decode,
|
|
@@ -64,7 +104,12 @@ export const getCodes = buildQuery({
|
|
|
64
104
|
method: "Codes",
|
|
65
105
|
deps: [QueryCodesRequest, QueryCodesResponse]
|
|
66
106
|
});
|
|
67
|
-
|
|
107
|
+
/**
|
|
108
|
+
* CodeInfo gets the metadata for a single wasm code
|
|
109
|
+
* @name getCodeInfo
|
|
110
|
+
* @package cosmwasm.wasm.v1
|
|
111
|
+
* @see proto service: cosmwasm.wasm.v1.CodeInfo
|
|
112
|
+
*/
|
|
68
113
|
export const getCodeInfo = buildQuery({
|
|
69
114
|
encode: QueryCodeInfoRequest.encode,
|
|
70
115
|
decode: QueryCodeInfoResponse.decode,
|
|
@@ -72,7 +117,12 @@ export const getCodeInfo = buildQuery({
|
|
|
72
117
|
method: "CodeInfo",
|
|
73
118
|
deps: [QueryCodeInfoRequest, QueryCodeInfoResponse]
|
|
74
119
|
});
|
|
75
|
-
|
|
120
|
+
/**
|
|
121
|
+
* PinnedCodes gets the pinned code ids
|
|
122
|
+
* @name getPinnedCodes
|
|
123
|
+
* @package cosmwasm.wasm.v1
|
|
124
|
+
* @see proto service: cosmwasm.wasm.v1.PinnedCodes
|
|
125
|
+
*/
|
|
76
126
|
export const getPinnedCodes = buildQuery({
|
|
77
127
|
encode: QueryPinnedCodesRequest.encode,
|
|
78
128
|
decode: QueryPinnedCodesResponse.decode,
|
|
@@ -80,7 +130,12 @@ export const getPinnedCodes = buildQuery({
|
|
|
80
130
|
method: "PinnedCodes",
|
|
81
131
|
deps: [QueryPinnedCodesRequest, QueryPinnedCodesResponse]
|
|
82
132
|
});
|
|
83
|
-
|
|
133
|
+
/**
|
|
134
|
+
* Params gets the module params
|
|
135
|
+
* @name getParams
|
|
136
|
+
* @package cosmwasm.wasm.v1
|
|
137
|
+
* @see proto service: cosmwasm.wasm.v1.Params
|
|
138
|
+
*/
|
|
84
139
|
export const getParams = buildQuery({
|
|
85
140
|
encode: QueryParamsRequest.encode,
|
|
86
141
|
decode: QueryParamsResponse.decode,
|
|
@@ -88,7 +143,12 @@ export const getParams = buildQuery({
|
|
|
88
143
|
method: "Params",
|
|
89
144
|
deps: [QueryParamsRequest, QueryParamsResponse]
|
|
90
145
|
});
|
|
91
|
-
|
|
146
|
+
/**
|
|
147
|
+
* ContractsByCreator gets the contracts by creator
|
|
148
|
+
* @name getContractsByCreator
|
|
149
|
+
* @package cosmwasm.wasm.v1
|
|
150
|
+
* @see proto service: cosmwasm.wasm.v1.ContractsByCreator
|
|
151
|
+
*/
|
|
92
152
|
export const getContractsByCreator = buildQuery({
|
|
93
153
|
encode: QueryContractsByCreatorRequest.encode,
|
|
94
154
|
decode: QueryContractsByCreatorResponse.decode,
|
|
@@ -96,8 +156,13 @@ export const getContractsByCreator = buildQuery({
|
|
|
96
156
|
method: "ContractsByCreator",
|
|
97
157
|
deps: [QueryContractsByCreatorRequest, QueryContractsByCreatorResponse]
|
|
98
158
|
});
|
|
99
|
-
|
|
100
|
-
|
|
159
|
+
/**
|
|
160
|
+
* WasmLimitsConfig gets the configured limits for static validation of Wasm
|
|
161
|
+
* files, encoded in JSON.
|
|
162
|
+
* @name getWasmLimitsConfig
|
|
163
|
+
* @package cosmwasm.wasm.v1
|
|
164
|
+
* @see proto service: cosmwasm.wasm.v1.WasmLimitsConfig
|
|
165
|
+
*/
|
|
101
166
|
export const getWasmLimitsConfig = buildQuery({
|
|
102
167
|
encode: QueryWasmLimitsConfigRequest.encode,
|
|
103
168
|
decode: QueryWasmLimitsConfigResponse.decode,
|
|
@@ -105,7 +170,12 @@ export const getWasmLimitsConfig = buildQuery({
|
|
|
105
170
|
method: "WasmLimitsConfig",
|
|
106
171
|
deps: [QueryWasmLimitsConfigRequest, QueryWasmLimitsConfigResponse]
|
|
107
172
|
});
|
|
108
|
-
|
|
173
|
+
/**
|
|
174
|
+
* BuildAddress builds a contract address
|
|
175
|
+
* @name getBuildAddress
|
|
176
|
+
* @package cosmwasm.wasm.v1
|
|
177
|
+
* @see proto service: cosmwasm.wasm.v1.BuildAddress
|
|
178
|
+
*/
|
|
109
179
|
export const getBuildAddress = buildQuery({
|
|
110
180
|
encode: QueryBuildAddressRequest.encode,
|
|
111
181
|
decode: QueryBuildAddressResponse.decode,
|
|
@@ -11,6 +11,12 @@ function createBaseMsgStoreCode() {
|
|
|
11
11
|
instantiatePermission: undefined
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* MsgStoreCode submit Wasm code to the system
|
|
16
|
+
* @name MsgStoreCode
|
|
17
|
+
* @package cosmwasm.wasm.v1
|
|
18
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCode
|
|
19
|
+
*/
|
|
14
20
|
export const MsgStoreCode = {
|
|
15
21
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreCode",
|
|
16
22
|
aminoType: "wasm/MsgStoreCode",
|
|
@@ -116,6 +122,12 @@ function createBaseMsgStoreCodeResponse() {
|
|
|
116
122
|
checksum: new Uint8Array()
|
|
117
123
|
};
|
|
118
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* MsgStoreCodeResponse returns store result data.
|
|
127
|
+
* @name MsgStoreCodeResponse
|
|
128
|
+
* @package cosmwasm.wasm.v1
|
|
129
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCodeResponse
|
|
130
|
+
*/
|
|
119
131
|
export const MsgStoreCodeResponse = {
|
|
120
132
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreCodeResponse",
|
|
121
133
|
aminoType: "wasm/MsgStoreCodeResponse",
|
|
@@ -209,6 +221,13 @@ function createBaseMsgInstantiateContract() {
|
|
|
209
221
|
funds: []
|
|
210
222
|
};
|
|
211
223
|
}
|
|
224
|
+
/**
|
|
225
|
+
* MsgInstantiateContract create a new smart contract instance for the given
|
|
226
|
+
* code id.
|
|
227
|
+
* @name MsgInstantiateContract
|
|
228
|
+
* @package cosmwasm.wasm.v1
|
|
229
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract
|
|
230
|
+
*/
|
|
212
231
|
export const MsgInstantiateContract = {
|
|
213
232
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract",
|
|
214
233
|
aminoType: "wasm/MsgInstantiateContract",
|
|
@@ -350,6 +369,12 @@ function createBaseMsgInstantiateContractResponse() {
|
|
|
350
369
|
data: new Uint8Array()
|
|
351
370
|
};
|
|
352
371
|
}
|
|
372
|
+
/**
|
|
373
|
+
* MsgInstantiateContractResponse return instantiation result data
|
|
374
|
+
* @name MsgInstantiateContractResponse
|
|
375
|
+
* @package cosmwasm.wasm.v1
|
|
376
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContractResponse
|
|
377
|
+
*/
|
|
353
378
|
export const MsgInstantiateContractResponse = {
|
|
354
379
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContractResponse",
|
|
355
380
|
aminoType: "wasm/MsgInstantiateContractResponse",
|
|
@@ -445,6 +470,13 @@ function createBaseMsgInstantiateContract2() {
|
|
|
445
470
|
fixMsg: false
|
|
446
471
|
};
|
|
447
472
|
}
|
|
473
|
+
/**
|
|
474
|
+
* MsgInstantiateContract2 create a new smart contract instance for the given
|
|
475
|
+
* code id with a predictable address.
|
|
476
|
+
* @name MsgInstantiateContract2
|
|
477
|
+
* @package cosmwasm.wasm.v1
|
|
478
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2
|
|
479
|
+
*/
|
|
448
480
|
export const MsgInstantiateContract2 = {
|
|
449
481
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract2",
|
|
450
482
|
aminoType: "wasm/MsgInstantiateContract2",
|
|
@@ -608,6 +640,12 @@ function createBaseMsgInstantiateContract2Response() {
|
|
|
608
640
|
data: new Uint8Array()
|
|
609
641
|
};
|
|
610
642
|
}
|
|
643
|
+
/**
|
|
644
|
+
* MsgInstantiateContract2Response return instantiation result data
|
|
645
|
+
* @name MsgInstantiateContract2Response
|
|
646
|
+
* @package cosmwasm.wasm.v1
|
|
647
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2Response
|
|
648
|
+
*/
|
|
611
649
|
export const MsgInstantiateContract2Response = {
|
|
612
650
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract2Response",
|
|
613
651
|
aminoType: "wasm/MsgInstantiateContract2Response",
|
|
@@ -699,6 +737,12 @@ function createBaseMsgExecuteContract() {
|
|
|
699
737
|
funds: []
|
|
700
738
|
};
|
|
701
739
|
}
|
|
740
|
+
/**
|
|
741
|
+
* MsgExecuteContract submits the given message data to a smart contract
|
|
742
|
+
* @name MsgExecuteContract
|
|
743
|
+
* @package cosmwasm.wasm.v1
|
|
744
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContract
|
|
745
|
+
*/
|
|
702
746
|
export const MsgExecuteContract = {
|
|
703
747
|
typeUrl: "/cosmwasm.wasm.v1.MsgExecuteContract",
|
|
704
748
|
aminoType: "wasm/MsgExecuteContract",
|
|
@@ -817,6 +861,12 @@ function createBaseMsgExecuteContractResponse() {
|
|
|
817
861
|
data: new Uint8Array()
|
|
818
862
|
};
|
|
819
863
|
}
|
|
864
|
+
/**
|
|
865
|
+
* MsgExecuteContractResponse returns execution result data.
|
|
866
|
+
* @name MsgExecuteContractResponse
|
|
867
|
+
* @package cosmwasm.wasm.v1
|
|
868
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContractResponse
|
|
869
|
+
*/
|
|
820
870
|
export const MsgExecuteContractResponse = {
|
|
821
871
|
typeUrl: "/cosmwasm.wasm.v1.MsgExecuteContractResponse",
|
|
822
872
|
aminoType: "wasm/MsgExecuteContractResponse",
|
|
@@ -897,6 +947,12 @@ function createBaseMsgMigrateContract() {
|
|
|
897
947
|
msg: new Uint8Array()
|
|
898
948
|
};
|
|
899
949
|
}
|
|
950
|
+
/**
|
|
951
|
+
* MsgMigrateContract runs a code upgrade/ downgrade for a smart contract
|
|
952
|
+
* @name MsgMigrateContract
|
|
953
|
+
* @package cosmwasm.wasm.v1
|
|
954
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContract
|
|
955
|
+
*/
|
|
900
956
|
export const MsgMigrateContract = {
|
|
901
957
|
typeUrl: "/cosmwasm.wasm.v1.MsgMigrateContract",
|
|
902
958
|
aminoType: "wasm/MsgMigrateContract",
|
|
@@ -1007,6 +1063,12 @@ function createBaseMsgMigrateContractResponse() {
|
|
|
1007
1063
|
data: new Uint8Array()
|
|
1008
1064
|
};
|
|
1009
1065
|
}
|
|
1066
|
+
/**
|
|
1067
|
+
* MsgMigrateContractResponse returns contract migration result data.
|
|
1068
|
+
* @name MsgMigrateContractResponse
|
|
1069
|
+
* @package cosmwasm.wasm.v1
|
|
1070
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContractResponse
|
|
1071
|
+
*/
|
|
1010
1072
|
export const MsgMigrateContractResponse = {
|
|
1011
1073
|
typeUrl: "/cosmwasm.wasm.v1.MsgMigrateContractResponse",
|
|
1012
1074
|
aminoType: "wasm/MsgMigrateContractResponse",
|
|
@@ -1086,6 +1148,12 @@ function createBaseMsgUpdateAdmin() {
|
|
|
1086
1148
|
contract: ""
|
|
1087
1149
|
};
|
|
1088
1150
|
}
|
|
1151
|
+
/**
|
|
1152
|
+
* MsgUpdateAdmin sets a new admin for a smart contract
|
|
1153
|
+
* @name MsgUpdateAdmin
|
|
1154
|
+
* @package cosmwasm.wasm.v1
|
|
1155
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdmin
|
|
1156
|
+
*/
|
|
1089
1157
|
export const MsgUpdateAdmin = {
|
|
1090
1158
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateAdmin",
|
|
1091
1159
|
aminoType: "wasm/MsgUpdateAdmin",
|
|
@@ -1183,6 +1251,12 @@ export const MsgUpdateAdmin = {
|
|
|
1183
1251
|
function createBaseMsgUpdateAdminResponse() {
|
|
1184
1252
|
return {};
|
|
1185
1253
|
}
|
|
1254
|
+
/**
|
|
1255
|
+
* MsgUpdateAdminResponse returns empty data
|
|
1256
|
+
* @name MsgUpdateAdminResponse
|
|
1257
|
+
* @package cosmwasm.wasm.v1
|
|
1258
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdminResponse
|
|
1259
|
+
*/
|
|
1186
1260
|
export const MsgUpdateAdminResponse = {
|
|
1187
1261
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateAdminResponse",
|
|
1188
1262
|
aminoType: "wasm/MsgUpdateAdminResponse",
|
|
@@ -1250,6 +1324,12 @@ function createBaseMsgClearAdmin() {
|
|
|
1250
1324
|
contract: ""
|
|
1251
1325
|
};
|
|
1252
1326
|
}
|
|
1327
|
+
/**
|
|
1328
|
+
* MsgClearAdmin removes any admin stored for a smart contract
|
|
1329
|
+
* @name MsgClearAdmin
|
|
1330
|
+
* @package cosmwasm.wasm.v1
|
|
1331
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdmin
|
|
1332
|
+
*/
|
|
1253
1333
|
export const MsgClearAdmin = {
|
|
1254
1334
|
typeUrl: "/cosmwasm.wasm.v1.MsgClearAdmin",
|
|
1255
1335
|
aminoType: "wasm/MsgClearAdmin",
|
|
@@ -1336,6 +1416,12 @@ export const MsgClearAdmin = {
|
|
|
1336
1416
|
function createBaseMsgClearAdminResponse() {
|
|
1337
1417
|
return {};
|
|
1338
1418
|
}
|
|
1419
|
+
/**
|
|
1420
|
+
* MsgClearAdminResponse returns empty data
|
|
1421
|
+
* @name MsgClearAdminResponse
|
|
1422
|
+
* @package cosmwasm.wasm.v1
|
|
1423
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdminResponse
|
|
1424
|
+
*/
|
|
1339
1425
|
export const MsgClearAdminResponse = {
|
|
1340
1426
|
typeUrl: "/cosmwasm.wasm.v1.MsgClearAdminResponse",
|
|
1341
1427
|
aminoType: "wasm/MsgClearAdminResponse",
|
|
@@ -1404,6 +1490,12 @@ function createBaseMsgUpdateInstantiateConfig() {
|
|
|
1404
1490
|
newInstantiatePermission: undefined
|
|
1405
1491
|
};
|
|
1406
1492
|
}
|
|
1493
|
+
/**
|
|
1494
|
+
* MsgUpdateInstantiateConfig updates instantiate config for a smart contract
|
|
1495
|
+
* @name MsgUpdateInstantiateConfig
|
|
1496
|
+
* @package cosmwasm.wasm.v1
|
|
1497
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfig
|
|
1498
|
+
*/
|
|
1407
1499
|
export const MsgUpdateInstantiateConfig = {
|
|
1408
1500
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateInstantiateConfig",
|
|
1409
1501
|
aminoType: "wasm/MsgUpdateInstantiateConfig",
|
|
@@ -1506,6 +1598,12 @@ export const MsgUpdateInstantiateConfig = {
|
|
|
1506
1598
|
function createBaseMsgUpdateInstantiateConfigResponse() {
|
|
1507
1599
|
return {};
|
|
1508
1600
|
}
|
|
1601
|
+
/**
|
|
1602
|
+
* MsgUpdateInstantiateConfigResponse returns empty data
|
|
1603
|
+
* @name MsgUpdateInstantiateConfigResponse
|
|
1604
|
+
* @package cosmwasm.wasm.v1
|
|
1605
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse
|
|
1606
|
+
*/
|
|
1509
1607
|
export const MsgUpdateInstantiateConfigResponse = {
|
|
1510
1608
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse",
|
|
1511
1609
|
aminoType: "wasm/MsgUpdateInstantiateConfigResponse",
|
|
@@ -1573,6 +1671,14 @@ function createBaseMsgUpdateParams() {
|
|
|
1573
1671
|
params: Params.fromPartial({})
|
|
1574
1672
|
};
|
|
1575
1673
|
}
|
|
1674
|
+
/**
|
|
1675
|
+
* MsgUpdateParams is the MsgUpdateParams request type.
|
|
1676
|
+
*
|
|
1677
|
+
* Since: 0.40
|
|
1678
|
+
* @name MsgUpdateParams
|
|
1679
|
+
* @package cosmwasm.wasm.v1
|
|
1680
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParams
|
|
1681
|
+
*/
|
|
1576
1682
|
export const MsgUpdateParams = {
|
|
1577
1683
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateParams",
|
|
1578
1684
|
aminoType: "wasm/MsgUpdateParams",
|
|
@@ -1664,6 +1770,15 @@ export const MsgUpdateParams = {
|
|
|
1664
1770
|
function createBaseMsgUpdateParamsResponse() {
|
|
1665
1771
|
return {};
|
|
1666
1772
|
}
|
|
1773
|
+
/**
|
|
1774
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
1775
|
+
* MsgUpdateParams message.
|
|
1776
|
+
*
|
|
1777
|
+
* Since: 0.40
|
|
1778
|
+
* @name MsgUpdateParamsResponse
|
|
1779
|
+
* @package cosmwasm.wasm.v1
|
|
1780
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParamsResponse
|
|
1781
|
+
*/
|
|
1667
1782
|
export const MsgUpdateParamsResponse = {
|
|
1668
1783
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateParamsResponse",
|
|
1669
1784
|
aminoType: "wasm/MsgUpdateParamsResponse",
|
|
@@ -1732,6 +1847,14 @@ function createBaseMsgSudoContract() {
|
|
|
1732
1847
|
msg: new Uint8Array()
|
|
1733
1848
|
};
|
|
1734
1849
|
}
|
|
1850
|
+
/**
|
|
1851
|
+
* MsgSudoContract is the MsgSudoContract request type.
|
|
1852
|
+
*
|
|
1853
|
+
* Since: 0.40
|
|
1854
|
+
* @name MsgSudoContract
|
|
1855
|
+
* @package cosmwasm.wasm.v1
|
|
1856
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContract
|
|
1857
|
+
*/
|
|
1735
1858
|
export const MsgSudoContract = {
|
|
1736
1859
|
typeUrl: "/cosmwasm.wasm.v1.MsgSudoContract",
|
|
1737
1860
|
aminoType: "wasm/MsgSudoContract",
|
|
@@ -1831,6 +1954,15 @@ function createBaseMsgSudoContractResponse() {
|
|
|
1831
1954
|
data: new Uint8Array()
|
|
1832
1955
|
};
|
|
1833
1956
|
}
|
|
1957
|
+
/**
|
|
1958
|
+
* MsgSudoContractResponse defines the response structure for executing a
|
|
1959
|
+
* MsgSudoContract message.
|
|
1960
|
+
*
|
|
1961
|
+
* Since: 0.40
|
|
1962
|
+
* @name MsgSudoContractResponse
|
|
1963
|
+
* @package cosmwasm.wasm.v1
|
|
1964
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContractResponse
|
|
1965
|
+
*/
|
|
1834
1966
|
export const MsgSudoContractResponse = {
|
|
1835
1967
|
typeUrl: "/cosmwasm.wasm.v1.MsgSudoContractResponse",
|
|
1836
1968
|
aminoType: "wasm/MsgSudoContractResponse",
|
|
@@ -1909,6 +2041,14 @@ function createBaseMsgPinCodes() {
|
|
|
1909
2041
|
codeIds: []
|
|
1910
2042
|
};
|
|
1911
2043
|
}
|
|
2044
|
+
/**
|
|
2045
|
+
* MsgPinCodes is the MsgPinCodes request type.
|
|
2046
|
+
*
|
|
2047
|
+
* Since: 0.40
|
|
2048
|
+
* @name MsgPinCodes
|
|
2049
|
+
* @package cosmwasm.wasm.v1
|
|
2050
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodes
|
|
2051
|
+
*/
|
|
1912
2052
|
export const MsgPinCodes = {
|
|
1913
2053
|
typeUrl: "/cosmwasm.wasm.v1.MsgPinCodes",
|
|
1914
2054
|
aminoType: "wasm/MsgPinCodes",
|
|
@@ -2008,6 +2148,15 @@ export const MsgPinCodes = {
|
|
|
2008
2148
|
function createBaseMsgPinCodesResponse() {
|
|
2009
2149
|
return {};
|
|
2010
2150
|
}
|
|
2151
|
+
/**
|
|
2152
|
+
* MsgPinCodesResponse defines the response structure for executing a
|
|
2153
|
+
* MsgPinCodes message.
|
|
2154
|
+
*
|
|
2155
|
+
* Since: 0.40
|
|
2156
|
+
* @name MsgPinCodesResponse
|
|
2157
|
+
* @package cosmwasm.wasm.v1
|
|
2158
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodesResponse
|
|
2159
|
+
*/
|
|
2011
2160
|
export const MsgPinCodesResponse = {
|
|
2012
2161
|
typeUrl: "/cosmwasm.wasm.v1.MsgPinCodesResponse",
|
|
2013
2162
|
aminoType: "wasm/MsgPinCodesResponse",
|
|
@@ -2075,6 +2224,14 @@ function createBaseMsgUnpinCodes() {
|
|
|
2075
2224
|
codeIds: []
|
|
2076
2225
|
};
|
|
2077
2226
|
}
|
|
2227
|
+
/**
|
|
2228
|
+
* MsgUnpinCodes is the MsgUnpinCodes request type.
|
|
2229
|
+
*
|
|
2230
|
+
* Since: 0.40
|
|
2231
|
+
* @name MsgUnpinCodes
|
|
2232
|
+
* @package cosmwasm.wasm.v1
|
|
2233
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodes
|
|
2234
|
+
*/
|
|
2078
2235
|
export const MsgUnpinCodes = {
|
|
2079
2236
|
typeUrl: "/cosmwasm.wasm.v1.MsgUnpinCodes",
|
|
2080
2237
|
aminoType: "wasm/MsgUnpinCodes",
|
|
@@ -2174,6 +2331,15 @@ export const MsgUnpinCodes = {
|
|
|
2174
2331
|
function createBaseMsgUnpinCodesResponse() {
|
|
2175
2332
|
return {};
|
|
2176
2333
|
}
|
|
2334
|
+
/**
|
|
2335
|
+
* MsgUnpinCodesResponse defines the response structure for executing a
|
|
2336
|
+
* MsgUnpinCodes message.
|
|
2337
|
+
*
|
|
2338
|
+
* Since: 0.40
|
|
2339
|
+
* @name MsgUnpinCodesResponse
|
|
2340
|
+
* @package cosmwasm.wasm.v1
|
|
2341
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodesResponse
|
|
2342
|
+
*/
|
|
2177
2343
|
export const MsgUnpinCodesResponse = {
|
|
2178
2344
|
typeUrl: "/cosmwasm.wasm.v1.MsgUnpinCodesResponse",
|
|
2179
2345
|
aminoType: "wasm/MsgUnpinCodesResponse",
|
|
@@ -2250,6 +2416,15 @@ function createBaseMsgStoreAndInstantiateContract() {
|
|
|
2250
2416
|
codeHash: new Uint8Array()
|
|
2251
2417
|
};
|
|
2252
2418
|
}
|
|
2419
|
+
/**
|
|
2420
|
+
* MsgStoreAndInstantiateContract is the MsgStoreAndInstantiateContract
|
|
2421
|
+
* request type.
|
|
2422
|
+
*
|
|
2423
|
+
* Since: 0.40
|
|
2424
|
+
* @name MsgStoreAndInstantiateContract
|
|
2425
|
+
* @package cosmwasm.wasm.v1
|
|
2426
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContract
|
|
2427
|
+
*/
|
|
2253
2428
|
export const MsgStoreAndInstantiateContract = {
|
|
2254
2429
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndInstantiateContract",
|
|
2255
2430
|
aminoType: "wasm/MsgStoreAndInstantiateContract",
|
|
@@ -2447,6 +2622,15 @@ function createBaseMsgStoreAndInstantiateContractResponse() {
|
|
|
2447
2622
|
data: new Uint8Array()
|
|
2448
2623
|
};
|
|
2449
2624
|
}
|
|
2625
|
+
/**
|
|
2626
|
+
* MsgStoreAndInstantiateContractResponse defines the response structure
|
|
2627
|
+
* for executing a MsgStoreAndInstantiateContract message.
|
|
2628
|
+
*
|
|
2629
|
+
* Since: 0.40
|
|
2630
|
+
* @name MsgStoreAndInstantiateContractResponse
|
|
2631
|
+
* @package cosmwasm.wasm.v1
|
|
2632
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContractResponse
|
|
2633
|
+
*/
|
|
2450
2634
|
export const MsgStoreAndInstantiateContractResponse = {
|
|
2451
2635
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndInstantiateContractResponse",
|
|
2452
2636
|
aminoType: "wasm/MsgStoreAndInstantiateContractResponse",
|
|
@@ -2536,6 +2720,13 @@ function createBaseMsgAddCodeUploadParamsAddresses() {
|
|
|
2536
2720
|
addresses: []
|
|
2537
2721
|
};
|
|
2538
2722
|
}
|
|
2723
|
+
/**
|
|
2724
|
+
* MsgAddCodeUploadParamsAddresses is the
|
|
2725
|
+
* MsgAddCodeUploadParamsAddresses request type.
|
|
2726
|
+
* @name MsgAddCodeUploadParamsAddresses
|
|
2727
|
+
* @package cosmwasm.wasm.v1
|
|
2728
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddresses
|
|
2729
|
+
*/
|
|
2539
2730
|
export const MsgAddCodeUploadParamsAddresses = {
|
|
2540
2731
|
typeUrl: "/cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddresses",
|
|
2541
2732
|
aminoType: "wasm/MsgAddCodeUploadParamsAddresses",
|
|
@@ -2625,6 +2816,13 @@ export const MsgAddCodeUploadParamsAddresses = {
|
|
|
2625
2816
|
function createBaseMsgAddCodeUploadParamsAddressesResponse() {
|
|
2626
2817
|
return {};
|
|
2627
2818
|
}
|
|
2819
|
+
/**
|
|
2820
|
+
* MsgAddCodeUploadParamsAddressesResponse defines the response
|
|
2821
|
+
* structure for executing a MsgAddCodeUploadParamsAddresses message.
|
|
2822
|
+
* @name MsgAddCodeUploadParamsAddressesResponse
|
|
2823
|
+
* @package cosmwasm.wasm.v1
|
|
2824
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddressesResponse
|
|
2825
|
+
*/
|
|
2628
2826
|
export const MsgAddCodeUploadParamsAddressesResponse = {
|
|
2629
2827
|
typeUrl: "/cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddressesResponse",
|
|
2630
2828
|
aminoType: "wasm/MsgAddCodeUploadParamsAddressesResponse",
|
|
@@ -2692,6 +2890,13 @@ function createBaseMsgRemoveCodeUploadParamsAddresses() {
|
|
|
2692
2890
|
addresses: []
|
|
2693
2891
|
};
|
|
2694
2892
|
}
|
|
2893
|
+
/**
|
|
2894
|
+
* MsgRemoveCodeUploadParamsAddresses is the
|
|
2895
|
+
* MsgRemoveCodeUploadParamsAddresses request type.
|
|
2896
|
+
* @name MsgRemoveCodeUploadParamsAddresses
|
|
2897
|
+
* @package cosmwasm.wasm.v1
|
|
2898
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddresses
|
|
2899
|
+
*/
|
|
2695
2900
|
export const MsgRemoveCodeUploadParamsAddresses = {
|
|
2696
2901
|
typeUrl: "/cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddresses",
|
|
2697
2902
|
aminoType: "wasm/MsgRemoveCodeUploadParamsAddresses",
|
|
@@ -2781,6 +2986,13 @@ export const MsgRemoveCodeUploadParamsAddresses = {
|
|
|
2781
2986
|
function createBaseMsgRemoveCodeUploadParamsAddressesResponse() {
|
|
2782
2987
|
return {};
|
|
2783
2988
|
}
|
|
2989
|
+
/**
|
|
2990
|
+
* MsgRemoveCodeUploadParamsAddressesResponse defines the response
|
|
2991
|
+
* structure for executing a MsgRemoveCodeUploadParamsAddresses message.
|
|
2992
|
+
* @name MsgRemoveCodeUploadParamsAddressesResponse
|
|
2993
|
+
* @package cosmwasm.wasm.v1
|
|
2994
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddressesResponse
|
|
2995
|
+
*/
|
|
2784
2996
|
export const MsgRemoveCodeUploadParamsAddressesResponse = {
|
|
2785
2997
|
typeUrl: "/cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddressesResponse",
|
|
2786
2998
|
aminoType: "wasm/MsgRemoveCodeUploadParamsAddressesResponse",
|
|
@@ -2851,6 +3063,15 @@ function createBaseMsgStoreAndMigrateContract() {
|
|
|
2851
3063
|
msg: new Uint8Array()
|
|
2852
3064
|
};
|
|
2853
3065
|
}
|
|
3066
|
+
/**
|
|
3067
|
+
* MsgStoreAndMigrateContract is the MsgStoreAndMigrateContract
|
|
3068
|
+
* request type.
|
|
3069
|
+
*
|
|
3070
|
+
* Since: 0.42
|
|
3071
|
+
* @name MsgStoreAndMigrateContract
|
|
3072
|
+
* @package cosmwasm.wasm.v1
|
|
3073
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContract
|
|
3074
|
+
*/
|
|
2854
3075
|
export const MsgStoreAndMigrateContract = {
|
|
2855
3076
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndMigrateContract",
|
|
2856
3077
|
aminoType: "wasm/MsgStoreAndMigrateContract",
|
|
@@ -2979,6 +3200,15 @@ function createBaseMsgStoreAndMigrateContractResponse() {
|
|
|
2979
3200
|
data: new Uint8Array()
|
|
2980
3201
|
};
|
|
2981
3202
|
}
|
|
3203
|
+
/**
|
|
3204
|
+
* MsgStoreAndMigrateContractResponse defines the response structure
|
|
3205
|
+
* for executing a MsgStoreAndMigrateContract message.
|
|
3206
|
+
*
|
|
3207
|
+
* Since: 0.42
|
|
3208
|
+
* @name MsgStoreAndMigrateContractResponse
|
|
3209
|
+
* @package cosmwasm.wasm.v1
|
|
3210
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse
|
|
3211
|
+
*/
|
|
2982
3212
|
export const MsgStoreAndMigrateContractResponse = {
|
|
2983
3213
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse",
|
|
2984
3214
|
aminoType: "wasm/MsgStoreAndMigrateContractResponse",
|
|
@@ -3080,6 +3310,12 @@ function createBaseMsgUpdateContractLabel() {
|
|
|
3080
3310
|
contract: ""
|
|
3081
3311
|
};
|
|
3082
3312
|
}
|
|
3313
|
+
/**
|
|
3314
|
+
* MsgUpdateContractLabel sets a new label for a smart contract
|
|
3315
|
+
* @name MsgUpdateContractLabel
|
|
3316
|
+
* @package cosmwasm.wasm.v1
|
|
3317
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabel
|
|
3318
|
+
*/
|
|
3083
3319
|
export const MsgUpdateContractLabel = {
|
|
3084
3320
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateContractLabel",
|
|
3085
3321
|
aminoType: "wasm/MsgUpdateContractLabel",
|
|
@@ -3177,6 +3413,12 @@ export const MsgUpdateContractLabel = {
|
|
|
3177
3413
|
function createBaseMsgUpdateContractLabelResponse() {
|
|
3178
3414
|
return {};
|
|
3179
3415
|
}
|
|
3416
|
+
/**
|
|
3417
|
+
* MsgUpdateContractLabelResponse returns empty data
|
|
3418
|
+
* @name MsgUpdateContractLabelResponse
|
|
3419
|
+
* @package cosmwasm.wasm.v1
|
|
3420
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabelResponse
|
|
3421
|
+
*/
|
|
3180
3422
|
export const MsgUpdateContractLabelResponse = {
|
|
3181
3423
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateContractLabelResponse",
|
|
3182
3424
|
aminoType: "wasm/MsgUpdateContractLabelResponse",
|