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
|
@@ -12,6 +12,13 @@ function createBaseQueryContractInfoRequest() {
|
|
|
12
12
|
address: ""
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* QueryContractInfoRequest is the request type for the Query/ContractInfo RPC
|
|
17
|
+
* method
|
|
18
|
+
* @name QueryContractInfoRequest
|
|
19
|
+
* @package cosmwasm.wasm.v1
|
|
20
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractInfoRequest
|
|
21
|
+
*/
|
|
15
22
|
exports.QueryContractInfoRequest = {
|
|
16
23
|
typeUrl: "/cosmwasm.wasm.v1.QueryContractInfoRequest",
|
|
17
24
|
aminoType: "wasm/QueryContractInfoRequest",
|
|
@@ -90,6 +97,13 @@ function createBaseQueryContractInfoResponse() {
|
|
|
90
97
|
contractInfo: types_1.ContractInfo.fromPartial({})
|
|
91
98
|
};
|
|
92
99
|
}
|
|
100
|
+
/**
|
|
101
|
+
* QueryContractInfoResponse is the response type for the Query/ContractInfo RPC
|
|
102
|
+
* method
|
|
103
|
+
* @name QueryContractInfoResponse
|
|
104
|
+
* @package cosmwasm.wasm.v1
|
|
105
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractInfoResponse
|
|
106
|
+
*/
|
|
93
107
|
exports.QueryContractInfoResponse = {
|
|
94
108
|
typeUrl: "/cosmwasm.wasm.v1.QueryContractInfoResponse",
|
|
95
109
|
aminoType: "wasm/QueryContractInfoResponse",
|
|
@@ -184,6 +198,13 @@ function createBaseQueryContractHistoryRequest() {
|
|
|
184
198
|
pagination: undefined
|
|
185
199
|
};
|
|
186
200
|
}
|
|
201
|
+
/**
|
|
202
|
+
* QueryContractHistoryRequest is the request type for the Query/ContractHistory
|
|
203
|
+
* RPC method
|
|
204
|
+
* @name QueryContractHistoryRequest
|
|
205
|
+
* @package cosmwasm.wasm.v1
|
|
206
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractHistoryRequest
|
|
207
|
+
*/
|
|
187
208
|
exports.QueryContractHistoryRequest = {
|
|
188
209
|
typeUrl: "/cosmwasm.wasm.v1.QueryContractHistoryRequest",
|
|
189
210
|
aminoType: "wasm/QueryContractHistoryRequest",
|
|
@@ -278,6 +299,13 @@ function createBaseQueryContractHistoryResponse() {
|
|
|
278
299
|
pagination: undefined
|
|
279
300
|
};
|
|
280
301
|
}
|
|
302
|
+
/**
|
|
303
|
+
* QueryContractHistoryResponse is the response type for the
|
|
304
|
+
* Query/ContractHistory RPC method
|
|
305
|
+
* @name QueryContractHistoryResponse
|
|
306
|
+
* @package cosmwasm.wasm.v1
|
|
307
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractHistoryResponse
|
|
308
|
+
*/
|
|
281
309
|
exports.QueryContractHistoryResponse = {
|
|
282
310
|
typeUrl: "/cosmwasm.wasm.v1.QueryContractHistoryResponse",
|
|
283
311
|
aminoType: "wasm/QueryContractHistoryResponse",
|
|
@@ -376,6 +404,13 @@ function createBaseQueryContractsByCodeRequest() {
|
|
|
376
404
|
pagination: undefined
|
|
377
405
|
};
|
|
378
406
|
}
|
|
407
|
+
/**
|
|
408
|
+
* QueryContractsByCodeRequest is the request type for the Query/ContractsByCode
|
|
409
|
+
* RPC method
|
|
410
|
+
* @name QueryContractsByCodeRequest
|
|
411
|
+
* @package cosmwasm.wasm.v1
|
|
412
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeRequest
|
|
413
|
+
*/
|
|
379
414
|
exports.QueryContractsByCodeRequest = {
|
|
380
415
|
typeUrl: "/cosmwasm.wasm.v1.QueryContractsByCodeRequest",
|
|
381
416
|
aminoType: "wasm/QueryContractsByCodeRequest",
|
|
@@ -470,6 +505,13 @@ function createBaseQueryContractsByCodeResponse() {
|
|
|
470
505
|
pagination: undefined
|
|
471
506
|
};
|
|
472
507
|
}
|
|
508
|
+
/**
|
|
509
|
+
* QueryContractsByCodeResponse is the response type for the
|
|
510
|
+
* Query/ContractsByCode RPC method
|
|
511
|
+
* @name QueryContractsByCodeResponse
|
|
512
|
+
* @package cosmwasm.wasm.v1
|
|
513
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeResponse
|
|
514
|
+
*/
|
|
473
515
|
exports.QueryContractsByCodeResponse = {
|
|
474
516
|
typeUrl: "/cosmwasm.wasm.v1.QueryContractsByCodeResponse",
|
|
475
517
|
aminoType: "wasm/QueryContractsByCodeResponse",
|
|
@@ -567,6 +609,13 @@ function createBaseQueryAllContractStateRequest() {
|
|
|
567
609
|
pagination: undefined
|
|
568
610
|
};
|
|
569
611
|
}
|
|
612
|
+
/**
|
|
613
|
+
* QueryAllContractStateRequest is the request type for the
|
|
614
|
+
* Query/AllContractState RPC method
|
|
615
|
+
* @name QueryAllContractStateRequest
|
|
616
|
+
* @package cosmwasm.wasm.v1
|
|
617
|
+
* @see proto type: cosmwasm.wasm.v1.QueryAllContractStateRequest
|
|
618
|
+
*/
|
|
570
619
|
exports.QueryAllContractStateRequest = {
|
|
571
620
|
typeUrl: "/cosmwasm.wasm.v1.QueryAllContractStateRequest",
|
|
572
621
|
aminoType: "wasm/QueryAllContractStateRequest",
|
|
@@ -661,6 +710,13 @@ function createBaseQueryAllContractStateResponse() {
|
|
|
661
710
|
pagination: undefined
|
|
662
711
|
};
|
|
663
712
|
}
|
|
713
|
+
/**
|
|
714
|
+
* QueryAllContractStateResponse is the response type for the
|
|
715
|
+
* Query/AllContractState RPC method
|
|
716
|
+
* @name QueryAllContractStateResponse
|
|
717
|
+
* @package cosmwasm.wasm.v1
|
|
718
|
+
* @see proto type: cosmwasm.wasm.v1.QueryAllContractStateResponse
|
|
719
|
+
*/
|
|
664
720
|
exports.QueryAllContractStateResponse = {
|
|
665
721
|
typeUrl: "/cosmwasm.wasm.v1.QueryAllContractStateResponse",
|
|
666
722
|
aminoType: "wasm/QueryAllContractStateResponse",
|
|
@@ -759,6 +815,13 @@ function createBaseQueryRawContractStateRequest() {
|
|
|
759
815
|
queryData: new Uint8Array()
|
|
760
816
|
};
|
|
761
817
|
}
|
|
818
|
+
/**
|
|
819
|
+
* QueryRawContractStateRequest is the request type for the
|
|
820
|
+
* Query/RawContractState RPC method
|
|
821
|
+
* @name QueryRawContractStateRequest
|
|
822
|
+
* @package cosmwasm.wasm.v1
|
|
823
|
+
* @see proto type: cosmwasm.wasm.v1.QueryRawContractStateRequest
|
|
824
|
+
*/
|
|
762
825
|
exports.QueryRawContractStateRequest = {
|
|
763
826
|
typeUrl: "/cosmwasm.wasm.v1.QueryRawContractStateRequest",
|
|
764
827
|
aminoType: "wasm/QueryRawContractStateRequest",
|
|
@@ -847,6 +910,13 @@ function createBaseQueryRawContractStateResponse() {
|
|
|
847
910
|
data: new Uint8Array()
|
|
848
911
|
};
|
|
849
912
|
}
|
|
913
|
+
/**
|
|
914
|
+
* QueryRawContractStateResponse is the response type for the
|
|
915
|
+
* Query/RawContractState RPC method
|
|
916
|
+
* @name QueryRawContractStateResponse
|
|
917
|
+
* @package cosmwasm.wasm.v1
|
|
918
|
+
* @see proto type: cosmwasm.wasm.v1.QueryRawContractStateResponse
|
|
919
|
+
*/
|
|
850
920
|
exports.QueryRawContractStateResponse = {
|
|
851
921
|
typeUrl: "/cosmwasm.wasm.v1.QueryRawContractStateResponse",
|
|
852
922
|
aminoType: "wasm/QueryRawContractStateResponse",
|
|
@@ -925,6 +995,13 @@ function createBaseQuerySmartContractStateRequest() {
|
|
|
925
995
|
queryData: new Uint8Array()
|
|
926
996
|
};
|
|
927
997
|
}
|
|
998
|
+
/**
|
|
999
|
+
* QuerySmartContractStateRequest is the request type for the
|
|
1000
|
+
* Query/SmartContractState RPC method
|
|
1001
|
+
* @name QuerySmartContractStateRequest
|
|
1002
|
+
* @package cosmwasm.wasm.v1
|
|
1003
|
+
* @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateRequest
|
|
1004
|
+
*/
|
|
928
1005
|
exports.QuerySmartContractStateRequest = {
|
|
929
1006
|
typeUrl: "/cosmwasm.wasm.v1.QuerySmartContractStateRequest",
|
|
930
1007
|
aminoType: "wasm/QuerySmartContractStateRequest",
|
|
@@ -1013,6 +1090,13 @@ function createBaseQuerySmartContractStateResponse() {
|
|
|
1013
1090
|
data: new Uint8Array()
|
|
1014
1091
|
};
|
|
1015
1092
|
}
|
|
1093
|
+
/**
|
|
1094
|
+
* QuerySmartContractStateResponse is the response type for the
|
|
1095
|
+
* Query/SmartContractState RPC method
|
|
1096
|
+
* @name QuerySmartContractStateResponse
|
|
1097
|
+
* @package cosmwasm.wasm.v1
|
|
1098
|
+
* @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateResponse
|
|
1099
|
+
*/
|
|
1016
1100
|
exports.QuerySmartContractStateResponse = {
|
|
1017
1101
|
typeUrl: "/cosmwasm.wasm.v1.QuerySmartContractStateResponse",
|
|
1018
1102
|
aminoType: "wasm/QuerySmartContractStateResponse",
|
|
@@ -1090,6 +1174,12 @@ function createBaseQueryCodeRequest() {
|
|
|
1090
1174
|
codeId: BigInt(0)
|
|
1091
1175
|
};
|
|
1092
1176
|
}
|
|
1177
|
+
/**
|
|
1178
|
+
* QueryCodeRequest is the request type for the Query/Code RPC method
|
|
1179
|
+
* @name QueryCodeRequest
|
|
1180
|
+
* @package cosmwasm.wasm.v1
|
|
1181
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeRequest
|
|
1182
|
+
*/
|
|
1093
1183
|
exports.QueryCodeRequest = {
|
|
1094
1184
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodeRequest",
|
|
1095
1185
|
aminoType: "wasm/QueryCodeRequest",
|
|
@@ -1167,6 +1257,12 @@ function createBaseQueryCodeInfoRequest() {
|
|
|
1167
1257
|
codeId: BigInt(0)
|
|
1168
1258
|
};
|
|
1169
1259
|
}
|
|
1260
|
+
/**
|
|
1261
|
+
* QueryCodeInfoRequest is the request type for the Query/CodeInfo RPC method
|
|
1262
|
+
* @name QueryCodeInfoRequest
|
|
1263
|
+
* @package cosmwasm.wasm.v1
|
|
1264
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeInfoRequest
|
|
1265
|
+
*/
|
|
1170
1266
|
exports.QueryCodeInfoRequest = {
|
|
1171
1267
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodeInfoRequest",
|
|
1172
1268
|
aminoType: "wasm/QueryCodeInfoRequest",
|
|
@@ -1247,6 +1343,12 @@ function createBaseQueryCodeInfoResponse() {
|
|
|
1247
1343
|
instantiatePermission: types_1.AccessConfig.fromPartial({})
|
|
1248
1344
|
};
|
|
1249
1345
|
}
|
|
1346
|
+
/**
|
|
1347
|
+
* QueryCodeInfoResponse is the response type for the Query/CodeInfo RPC method
|
|
1348
|
+
* @name QueryCodeInfoResponse
|
|
1349
|
+
* @package cosmwasm.wasm.v1
|
|
1350
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeInfoResponse
|
|
1351
|
+
*/
|
|
1250
1352
|
exports.QueryCodeInfoResponse = {
|
|
1251
1353
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodeInfoResponse",
|
|
1252
1354
|
aminoType: "wasm/QueryCodeInfoResponse",
|
|
@@ -1365,6 +1467,12 @@ function createBaseCodeInfoResponse() {
|
|
|
1365
1467
|
instantiatePermission: types_1.AccessConfig.fromPartial({})
|
|
1366
1468
|
};
|
|
1367
1469
|
}
|
|
1470
|
+
/**
|
|
1471
|
+
* CodeInfoResponse contains code meta data from CodeInfo
|
|
1472
|
+
* @name CodeInfoResponse
|
|
1473
|
+
* @package cosmwasm.wasm.v1
|
|
1474
|
+
* @see proto type: cosmwasm.wasm.v1.CodeInfoResponse
|
|
1475
|
+
*/
|
|
1368
1476
|
exports.CodeInfoResponse = {
|
|
1369
1477
|
typeUrl: "/cosmwasm.wasm.v1.CodeInfoResponse",
|
|
1370
1478
|
aminoType: "wasm/CodeInfoResponse",
|
|
@@ -1481,6 +1589,12 @@ function createBaseQueryCodeResponse() {
|
|
|
1481
1589
|
data: new Uint8Array()
|
|
1482
1590
|
};
|
|
1483
1591
|
}
|
|
1592
|
+
/**
|
|
1593
|
+
* QueryCodeResponse is the response type for the Query/Code RPC method
|
|
1594
|
+
* @name QueryCodeResponse
|
|
1595
|
+
* @package cosmwasm.wasm.v1
|
|
1596
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeResponse
|
|
1597
|
+
*/
|
|
1484
1598
|
exports.QueryCodeResponse = {
|
|
1485
1599
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodeResponse",
|
|
1486
1600
|
aminoType: "wasm/QueryCodeResponse",
|
|
@@ -1574,6 +1688,12 @@ function createBaseQueryCodesRequest() {
|
|
|
1574
1688
|
pagination: undefined
|
|
1575
1689
|
};
|
|
1576
1690
|
}
|
|
1691
|
+
/**
|
|
1692
|
+
* QueryCodesRequest is the request type for the Query/Codes RPC method
|
|
1693
|
+
* @name QueryCodesRequest
|
|
1694
|
+
* @package cosmwasm.wasm.v1
|
|
1695
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodesRequest
|
|
1696
|
+
*/
|
|
1577
1697
|
exports.QueryCodesRequest = {
|
|
1578
1698
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodesRequest",
|
|
1579
1699
|
aminoType: "wasm/QueryCodesRequest",
|
|
@@ -1657,6 +1777,12 @@ function createBaseQueryCodesResponse() {
|
|
|
1657
1777
|
pagination: undefined
|
|
1658
1778
|
};
|
|
1659
1779
|
}
|
|
1780
|
+
/**
|
|
1781
|
+
* QueryCodesResponse is the response type for the Query/Codes RPC method
|
|
1782
|
+
* @name QueryCodesResponse
|
|
1783
|
+
* @package cosmwasm.wasm.v1
|
|
1784
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodesResponse
|
|
1785
|
+
*/
|
|
1660
1786
|
exports.QueryCodesResponse = {
|
|
1661
1787
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodesResponse",
|
|
1662
1788
|
aminoType: "wasm/QueryCodesResponse",
|
|
@@ -1754,6 +1880,13 @@ function createBaseQueryPinnedCodesRequest() {
|
|
|
1754
1880
|
pagination: undefined
|
|
1755
1881
|
};
|
|
1756
1882
|
}
|
|
1883
|
+
/**
|
|
1884
|
+
* QueryPinnedCodesRequest is the request type for the Query/PinnedCodes
|
|
1885
|
+
* RPC method
|
|
1886
|
+
* @name QueryPinnedCodesRequest
|
|
1887
|
+
* @package cosmwasm.wasm.v1
|
|
1888
|
+
* @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesRequest
|
|
1889
|
+
*/
|
|
1757
1890
|
exports.QueryPinnedCodesRequest = {
|
|
1758
1891
|
typeUrl: "/cosmwasm.wasm.v1.QueryPinnedCodesRequest",
|
|
1759
1892
|
aminoType: "wasm/QueryPinnedCodesRequest",
|
|
@@ -1837,6 +1970,13 @@ function createBaseQueryPinnedCodesResponse() {
|
|
|
1837
1970
|
pagination: undefined
|
|
1838
1971
|
};
|
|
1839
1972
|
}
|
|
1973
|
+
/**
|
|
1974
|
+
* QueryPinnedCodesResponse is the response type for the
|
|
1975
|
+
* Query/PinnedCodes RPC method
|
|
1976
|
+
* @name QueryPinnedCodesResponse
|
|
1977
|
+
* @package cosmwasm.wasm.v1
|
|
1978
|
+
* @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesResponse
|
|
1979
|
+
*/
|
|
1840
1980
|
exports.QueryPinnedCodesResponse = {
|
|
1841
1981
|
typeUrl: "/cosmwasm.wasm.v1.QueryPinnedCodesResponse",
|
|
1842
1982
|
aminoType: "wasm/QueryPinnedCodesResponse",
|
|
@@ -1941,6 +2081,12 @@ exports.QueryPinnedCodesResponse = {
|
|
|
1941
2081
|
function createBaseQueryParamsRequest() {
|
|
1942
2082
|
return {};
|
|
1943
2083
|
}
|
|
2084
|
+
/**
|
|
2085
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
2086
|
+
* @name QueryParamsRequest
|
|
2087
|
+
* @package cosmwasm.wasm.v1
|
|
2088
|
+
* @see proto type: cosmwasm.wasm.v1.QueryParamsRequest
|
|
2089
|
+
*/
|
|
1944
2090
|
exports.QueryParamsRequest = {
|
|
1945
2091
|
typeUrl: "/cosmwasm.wasm.v1.QueryParamsRequest",
|
|
1946
2092
|
aminoType: "wasm/QueryParamsRequest",
|
|
@@ -2007,6 +2153,12 @@ function createBaseQueryParamsResponse() {
|
|
|
2007
2153
|
params: types_1.Params.fromPartial({})
|
|
2008
2154
|
};
|
|
2009
2155
|
}
|
|
2156
|
+
/**
|
|
2157
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
2158
|
+
* @name QueryParamsResponse
|
|
2159
|
+
* @package cosmwasm.wasm.v1
|
|
2160
|
+
* @see proto type: cosmwasm.wasm.v1.QueryParamsResponse
|
|
2161
|
+
*/
|
|
2010
2162
|
exports.QueryParamsResponse = {
|
|
2011
2163
|
typeUrl: "/cosmwasm.wasm.v1.QueryParamsResponse",
|
|
2012
2164
|
aminoType: "wasm/QueryParamsResponse",
|
|
@@ -2090,6 +2242,13 @@ function createBaseQueryContractsByCreatorRequest() {
|
|
|
2090
2242
|
pagination: undefined
|
|
2091
2243
|
};
|
|
2092
2244
|
}
|
|
2245
|
+
/**
|
|
2246
|
+
* QueryContractsByCreatorRequest is the request type for the
|
|
2247
|
+
* Query/ContractsByCreator RPC method.
|
|
2248
|
+
* @name QueryContractsByCreatorRequest
|
|
2249
|
+
* @package cosmwasm.wasm.v1
|
|
2250
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorRequest
|
|
2251
|
+
*/
|
|
2093
2252
|
exports.QueryContractsByCreatorRequest = {
|
|
2094
2253
|
typeUrl: "/cosmwasm.wasm.v1.QueryContractsByCreatorRequest",
|
|
2095
2254
|
aminoType: "wasm/QueryContractsByCreatorRequest",
|
|
@@ -2184,6 +2343,13 @@ function createBaseQueryContractsByCreatorResponse() {
|
|
|
2184
2343
|
pagination: undefined
|
|
2185
2344
|
};
|
|
2186
2345
|
}
|
|
2346
|
+
/**
|
|
2347
|
+
* QueryContractsByCreatorResponse is the response type for the
|
|
2348
|
+
* Query/ContractsByCreator RPC method.
|
|
2349
|
+
* @name QueryContractsByCreatorResponse
|
|
2350
|
+
* @package cosmwasm.wasm.v1
|
|
2351
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorResponse
|
|
2352
|
+
*/
|
|
2187
2353
|
exports.QueryContractsByCreatorResponse = {
|
|
2188
2354
|
typeUrl: "/cosmwasm.wasm.v1.QueryContractsByCreatorResponse",
|
|
2189
2355
|
aminoType: "wasm/QueryContractsByCreatorResponse",
|
|
@@ -2278,6 +2444,13 @@ exports.QueryContractsByCreatorResponse = {
|
|
|
2278
2444
|
function createBaseQueryWasmLimitsConfigRequest() {
|
|
2279
2445
|
return {};
|
|
2280
2446
|
}
|
|
2447
|
+
/**
|
|
2448
|
+
* QueryWasmLimitsConfigRequest is the request type for the
|
|
2449
|
+
* Query/WasmLimitsConfig RPC method.
|
|
2450
|
+
* @name QueryWasmLimitsConfigRequest
|
|
2451
|
+
* @package cosmwasm.wasm.v1
|
|
2452
|
+
* @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigRequest
|
|
2453
|
+
*/
|
|
2281
2454
|
exports.QueryWasmLimitsConfigRequest = {
|
|
2282
2455
|
typeUrl: "/cosmwasm.wasm.v1.QueryWasmLimitsConfigRequest",
|
|
2283
2456
|
aminoType: "wasm/QueryWasmLimitsConfigRequest",
|
|
@@ -2344,6 +2517,14 @@ function createBaseQueryWasmLimitsConfigResponse() {
|
|
|
2344
2517
|
config: ""
|
|
2345
2518
|
};
|
|
2346
2519
|
}
|
|
2520
|
+
/**
|
|
2521
|
+
* QueryWasmLimitsConfigResponse is the response type for the
|
|
2522
|
+
* Query/WasmLimitsConfig RPC method. It contains the JSON encoded limits for
|
|
2523
|
+
* static validation of Wasm files.
|
|
2524
|
+
* @name QueryWasmLimitsConfigResponse
|
|
2525
|
+
* @package cosmwasm.wasm.v1
|
|
2526
|
+
* @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigResponse
|
|
2527
|
+
*/
|
|
2347
2528
|
exports.QueryWasmLimitsConfigResponse = {
|
|
2348
2529
|
typeUrl: "/cosmwasm.wasm.v1.QueryWasmLimitsConfigResponse",
|
|
2349
2530
|
aminoType: "wasm/QueryWasmLimitsConfigResponse",
|
|
@@ -2424,6 +2605,13 @@ function createBaseQueryBuildAddressRequest() {
|
|
|
2424
2605
|
initArgs: new Uint8Array()
|
|
2425
2606
|
};
|
|
2426
2607
|
}
|
|
2608
|
+
/**
|
|
2609
|
+
* QueryBuildAddressRequest is the request type for the Query/BuildAddress RPC
|
|
2610
|
+
* method.
|
|
2611
|
+
* @name QueryBuildAddressRequest
|
|
2612
|
+
* @package cosmwasm.wasm.v1
|
|
2613
|
+
* @see proto type: cosmwasm.wasm.v1.QueryBuildAddressRequest
|
|
2614
|
+
*/
|
|
2427
2615
|
exports.QueryBuildAddressRequest = {
|
|
2428
2616
|
typeUrl: "/cosmwasm.wasm.v1.QueryBuildAddressRequest",
|
|
2429
2617
|
aminoType: "wasm/QueryBuildAddressRequest",
|
|
@@ -2534,6 +2722,13 @@ function createBaseQueryBuildAddressResponse() {
|
|
|
2534
2722
|
address: ""
|
|
2535
2723
|
};
|
|
2536
2724
|
}
|
|
2725
|
+
/**
|
|
2726
|
+
* QueryBuildAddressResponse is the response type for the Query/BuildAddress RPC
|
|
2727
|
+
* method.
|
|
2728
|
+
* @name QueryBuildAddressResponse
|
|
2729
|
+
* @package cosmwasm.wasm.v1
|
|
2730
|
+
* @see proto type: cosmwasm.wasm.v1.QueryBuildAddressResponse
|
|
2731
|
+
*/
|
|
2537
2732
|
exports.QueryBuildAddressResponse = {
|
|
2538
2733
|
typeUrl: "/cosmwasm.wasm.v1.QueryBuildAddressResponse",
|
|
2539
2734
|
aminoType: "wasm/QueryBuildAddressResponse",
|
|
@@ -1,15 +1,100 @@
|
|
|
1
1
|
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";
|
|
2
|
+
/**
|
|
3
|
+
* ContractInfo gets the contract meta data
|
|
4
|
+
* @name getContractInfo
|
|
5
|
+
* @package cosmwasm.wasm.v1
|
|
6
|
+
* @see proto service: cosmwasm.wasm.v1.ContractInfo
|
|
7
|
+
*/
|
|
2
8
|
export declare const getContractInfo: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryContractInfoRequest) => Promise<QueryContractInfoResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* ContractHistory gets the contract code history
|
|
11
|
+
* @name getContractHistory
|
|
12
|
+
* @package cosmwasm.wasm.v1
|
|
13
|
+
* @see proto service: cosmwasm.wasm.v1.ContractHistory
|
|
14
|
+
*/
|
|
3
15
|
export declare const getContractHistory: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryContractHistoryRequest) => Promise<QueryContractHistoryResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* ContractsByCode lists all smart contracts for a code id
|
|
18
|
+
* @name getContractsByCode
|
|
19
|
+
* @package cosmwasm.wasm.v1
|
|
20
|
+
* @see proto service: cosmwasm.wasm.v1.ContractsByCode
|
|
21
|
+
*/
|
|
4
22
|
export declare const getContractsByCode: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryContractsByCodeRequest) => Promise<QueryContractsByCodeResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* AllContractState gets all raw store data for a single contract
|
|
25
|
+
* @name getAllContractState
|
|
26
|
+
* @package cosmwasm.wasm.v1
|
|
27
|
+
* @see proto service: cosmwasm.wasm.v1.AllContractState
|
|
28
|
+
*/
|
|
5
29
|
export declare const getAllContractState: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryAllContractStateRequest) => Promise<QueryAllContractStateResponse>;
|
|
30
|
+
/**
|
|
31
|
+
* RawContractState gets single key from the raw store data of a contract
|
|
32
|
+
* @name getRawContractState
|
|
33
|
+
* @package cosmwasm.wasm.v1
|
|
34
|
+
* @see proto service: cosmwasm.wasm.v1.RawContractState
|
|
35
|
+
*/
|
|
6
36
|
export declare const getRawContractState: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryRawContractStateRequest) => Promise<QueryRawContractStateResponse>;
|
|
37
|
+
/**
|
|
38
|
+
* SmartContractState get smart query result from the contract
|
|
39
|
+
* @name getSmartContractState
|
|
40
|
+
* @package cosmwasm.wasm.v1
|
|
41
|
+
* @see proto service: cosmwasm.wasm.v1.SmartContractState
|
|
42
|
+
*/
|
|
7
43
|
export declare const getSmartContractState: (client: import("../../../helper-func-types").EndpointOrRpc, request: QuerySmartContractStateRequest) => Promise<QuerySmartContractStateResponse>;
|
|
44
|
+
/**
|
|
45
|
+
* Code gets the binary code and metadata for a single wasm code
|
|
46
|
+
* @name getCode
|
|
47
|
+
* @package cosmwasm.wasm.v1
|
|
48
|
+
* @see proto service: cosmwasm.wasm.v1.Code
|
|
49
|
+
*/
|
|
8
50
|
export declare const getCode: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryCodeRequest) => Promise<QueryCodeResponse>;
|
|
51
|
+
/**
|
|
52
|
+
* Codes gets the metadata for all stored wasm codes
|
|
53
|
+
* @name getCodes
|
|
54
|
+
* @package cosmwasm.wasm.v1
|
|
55
|
+
* @see proto service: cosmwasm.wasm.v1.Codes
|
|
56
|
+
*/
|
|
9
57
|
export declare const getCodes: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryCodesRequest) => Promise<QueryCodesResponse>;
|
|
58
|
+
/**
|
|
59
|
+
* CodeInfo gets the metadata for a single wasm code
|
|
60
|
+
* @name getCodeInfo
|
|
61
|
+
* @package cosmwasm.wasm.v1
|
|
62
|
+
* @see proto service: cosmwasm.wasm.v1.CodeInfo
|
|
63
|
+
*/
|
|
10
64
|
export declare const getCodeInfo: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryCodeInfoRequest) => Promise<QueryCodeInfoResponse>;
|
|
65
|
+
/**
|
|
66
|
+
* PinnedCodes gets the pinned code ids
|
|
67
|
+
* @name getPinnedCodes
|
|
68
|
+
* @package cosmwasm.wasm.v1
|
|
69
|
+
* @see proto service: cosmwasm.wasm.v1.PinnedCodes
|
|
70
|
+
*/
|
|
11
71
|
export declare const getPinnedCodes: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryPinnedCodesRequest) => Promise<QueryPinnedCodesResponse>;
|
|
72
|
+
/**
|
|
73
|
+
* Params gets the module params
|
|
74
|
+
* @name getParams
|
|
75
|
+
* @package cosmwasm.wasm.v1
|
|
76
|
+
* @see proto service: cosmwasm.wasm.v1.Params
|
|
77
|
+
*/
|
|
12
78
|
export declare const getParams: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryParamsRequest) => Promise<QueryParamsResponse>;
|
|
79
|
+
/**
|
|
80
|
+
* ContractsByCreator gets the contracts by creator
|
|
81
|
+
* @name getContractsByCreator
|
|
82
|
+
* @package cosmwasm.wasm.v1
|
|
83
|
+
* @see proto service: cosmwasm.wasm.v1.ContractsByCreator
|
|
84
|
+
*/
|
|
13
85
|
export declare const getContractsByCreator: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryContractsByCreatorRequest) => Promise<QueryContractsByCreatorResponse>;
|
|
86
|
+
/**
|
|
87
|
+
* WasmLimitsConfig gets the configured limits for static validation of Wasm
|
|
88
|
+
* files, encoded in JSON.
|
|
89
|
+
* @name getWasmLimitsConfig
|
|
90
|
+
* @package cosmwasm.wasm.v1
|
|
91
|
+
* @see proto service: cosmwasm.wasm.v1.WasmLimitsConfig
|
|
92
|
+
*/
|
|
14
93
|
export declare const getWasmLimitsConfig: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryWasmLimitsConfigRequest) => Promise<QueryWasmLimitsConfigResponse>;
|
|
94
|
+
/**
|
|
95
|
+
* BuildAddress builds a contract address
|
|
96
|
+
* @name getBuildAddress
|
|
97
|
+
* @package cosmwasm.wasm.v1
|
|
98
|
+
* @see proto service: cosmwasm.wasm.v1.BuildAddress
|
|
99
|
+
*/
|
|
15
100
|
export declare const getBuildAddress: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryBuildAddressRequest) => Promise<QueryBuildAddressResponse>;
|
|
@@ -3,7 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getBuildAddress = exports.getWasmLimitsConfig = exports.getContractsByCreator = exports.getParams = exports.getPinnedCodes = exports.getCodeInfo = exports.getCodes = exports.getCode = exports.getSmartContractState = exports.getRawContractState = exports.getAllContractState = exports.getContractsByCode = exports.getContractHistory = exports.getContractInfo = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const query_1 = require("./query");
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* ContractInfo gets the contract meta data
|
|
8
|
+
* @name getContractInfo
|
|
9
|
+
* @package cosmwasm.wasm.v1
|
|
10
|
+
* @see proto service: cosmwasm.wasm.v1.ContractInfo
|
|
11
|
+
*/
|
|
7
12
|
exports.getContractInfo = (0, helper_func_types_1.buildQuery)({
|
|
8
13
|
encode: query_1.QueryContractInfoRequest.encode,
|
|
9
14
|
decode: query_1.QueryContractInfoResponse.decode,
|
|
@@ -11,7 +16,12 @@ exports.getContractInfo = (0, helper_func_types_1.buildQuery)({
|
|
|
11
16
|
method: "ContractInfo",
|
|
12
17
|
deps: [query_1.QueryContractInfoRequest, query_1.QueryContractInfoResponse]
|
|
13
18
|
});
|
|
14
|
-
|
|
19
|
+
/**
|
|
20
|
+
* ContractHistory gets the contract code history
|
|
21
|
+
* @name getContractHistory
|
|
22
|
+
* @package cosmwasm.wasm.v1
|
|
23
|
+
* @see proto service: cosmwasm.wasm.v1.ContractHistory
|
|
24
|
+
*/
|
|
15
25
|
exports.getContractHistory = (0, helper_func_types_1.buildQuery)({
|
|
16
26
|
encode: query_1.QueryContractHistoryRequest.encode,
|
|
17
27
|
decode: query_1.QueryContractHistoryResponse.decode,
|
|
@@ -19,7 +29,12 @@ exports.getContractHistory = (0, helper_func_types_1.buildQuery)({
|
|
|
19
29
|
method: "ContractHistory",
|
|
20
30
|
deps: [query_1.QueryContractHistoryRequest, query_1.QueryContractHistoryResponse]
|
|
21
31
|
});
|
|
22
|
-
|
|
32
|
+
/**
|
|
33
|
+
* ContractsByCode lists all smart contracts for a code id
|
|
34
|
+
* @name getContractsByCode
|
|
35
|
+
* @package cosmwasm.wasm.v1
|
|
36
|
+
* @see proto service: cosmwasm.wasm.v1.ContractsByCode
|
|
37
|
+
*/
|
|
23
38
|
exports.getContractsByCode = (0, helper_func_types_1.buildQuery)({
|
|
24
39
|
encode: query_1.QueryContractsByCodeRequest.encode,
|
|
25
40
|
decode: query_1.QueryContractsByCodeResponse.decode,
|
|
@@ -27,7 +42,12 @@ exports.getContractsByCode = (0, helper_func_types_1.buildQuery)({
|
|
|
27
42
|
method: "ContractsByCode",
|
|
28
43
|
deps: [query_1.QueryContractsByCodeRequest, query_1.QueryContractsByCodeResponse]
|
|
29
44
|
});
|
|
30
|
-
|
|
45
|
+
/**
|
|
46
|
+
* AllContractState gets all raw store data for a single contract
|
|
47
|
+
* @name getAllContractState
|
|
48
|
+
* @package cosmwasm.wasm.v1
|
|
49
|
+
* @see proto service: cosmwasm.wasm.v1.AllContractState
|
|
50
|
+
*/
|
|
31
51
|
exports.getAllContractState = (0, helper_func_types_1.buildQuery)({
|
|
32
52
|
encode: query_1.QueryAllContractStateRequest.encode,
|
|
33
53
|
decode: query_1.QueryAllContractStateResponse.decode,
|
|
@@ -35,7 +55,12 @@ exports.getAllContractState = (0, helper_func_types_1.buildQuery)({
|
|
|
35
55
|
method: "AllContractState",
|
|
36
56
|
deps: [query_1.QueryAllContractStateRequest, query_1.QueryAllContractStateResponse]
|
|
37
57
|
});
|
|
38
|
-
|
|
58
|
+
/**
|
|
59
|
+
* RawContractState gets single key from the raw store data of a contract
|
|
60
|
+
* @name getRawContractState
|
|
61
|
+
* @package cosmwasm.wasm.v1
|
|
62
|
+
* @see proto service: cosmwasm.wasm.v1.RawContractState
|
|
63
|
+
*/
|
|
39
64
|
exports.getRawContractState = (0, helper_func_types_1.buildQuery)({
|
|
40
65
|
encode: query_1.QueryRawContractStateRequest.encode,
|
|
41
66
|
decode: query_1.QueryRawContractStateResponse.decode,
|
|
@@ -43,7 +68,12 @@ exports.getRawContractState = (0, helper_func_types_1.buildQuery)({
|
|
|
43
68
|
method: "RawContractState",
|
|
44
69
|
deps: [query_1.QueryRawContractStateRequest, query_1.QueryRawContractStateResponse]
|
|
45
70
|
});
|
|
46
|
-
|
|
71
|
+
/**
|
|
72
|
+
* SmartContractState get smart query result from the contract
|
|
73
|
+
* @name getSmartContractState
|
|
74
|
+
* @package cosmwasm.wasm.v1
|
|
75
|
+
* @see proto service: cosmwasm.wasm.v1.SmartContractState
|
|
76
|
+
*/
|
|
47
77
|
exports.getSmartContractState = (0, helper_func_types_1.buildQuery)({
|
|
48
78
|
encode: query_1.QuerySmartContractStateRequest.encode,
|
|
49
79
|
decode: query_1.QuerySmartContractStateResponse.decode,
|
|
@@ -51,7 +81,12 @@ exports.getSmartContractState = (0, helper_func_types_1.buildQuery)({
|
|
|
51
81
|
method: "SmartContractState",
|
|
52
82
|
deps: [query_1.QuerySmartContractStateRequest, query_1.QuerySmartContractStateResponse]
|
|
53
83
|
});
|
|
54
|
-
|
|
84
|
+
/**
|
|
85
|
+
* Code gets the binary code and metadata for a single wasm code
|
|
86
|
+
* @name getCode
|
|
87
|
+
* @package cosmwasm.wasm.v1
|
|
88
|
+
* @see proto service: cosmwasm.wasm.v1.Code
|
|
89
|
+
*/
|
|
55
90
|
exports.getCode = (0, helper_func_types_1.buildQuery)({
|
|
56
91
|
encode: query_1.QueryCodeRequest.encode,
|
|
57
92
|
decode: query_1.QueryCodeResponse.decode,
|
|
@@ -59,7 +94,12 @@ exports.getCode = (0, helper_func_types_1.buildQuery)({
|
|
|
59
94
|
method: "Code",
|
|
60
95
|
deps: [query_1.QueryCodeRequest, query_1.QueryCodeResponse]
|
|
61
96
|
});
|
|
62
|
-
|
|
97
|
+
/**
|
|
98
|
+
* Codes gets the metadata for all stored wasm codes
|
|
99
|
+
* @name getCodes
|
|
100
|
+
* @package cosmwasm.wasm.v1
|
|
101
|
+
* @see proto service: cosmwasm.wasm.v1.Codes
|
|
102
|
+
*/
|
|
63
103
|
exports.getCodes = (0, helper_func_types_1.buildQuery)({
|
|
64
104
|
encode: query_1.QueryCodesRequest.encode,
|
|
65
105
|
decode: query_1.QueryCodesResponse.decode,
|
|
@@ -67,7 +107,12 @@ exports.getCodes = (0, helper_func_types_1.buildQuery)({
|
|
|
67
107
|
method: "Codes",
|
|
68
108
|
deps: [query_1.QueryCodesRequest, query_1.QueryCodesResponse]
|
|
69
109
|
});
|
|
70
|
-
|
|
110
|
+
/**
|
|
111
|
+
* CodeInfo gets the metadata for a single wasm code
|
|
112
|
+
* @name getCodeInfo
|
|
113
|
+
* @package cosmwasm.wasm.v1
|
|
114
|
+
* @see proto service: cosmwasm.wasm.v1.CodeInfo
|
|
115
|
+
*/
|
|
71
116
|
exports.getCodeInfo = (0, helper_func_types_1.buildQuery)({
|
|
72
117
|
encode: query_1.QueryCodeInfoRequest.encode,
|
|
73
118
|
decode: query_1.QueryCodeInfoResponse.decode,
|
|
@@ -75,7 +120,12 @@ exports.getCodeInfo = (0, helper_func_types_1.buildQuery)({
|
|
|
75
120
|
method: "CodeInfo",
|
|
76
121
|
deps: [query_1.QueryCodeInfoRequest, query_1.QueryCodeInfoResponse]
|
|
77
122
|
});
|
|
78
|
-
|
|
123
|
+
/**
|
|
124
|
+
* PinnedCodes gets the pinned code ids
|
|
125
|
+
* @name getPinnedCodes
|
|
126
|
+
* @package cosmwasm.wasm.v1
|
|
127
|
+
* @see proto service: cosmwasm.wasm.v1.PinnedCodes
|
|
128
|
+
*/
|
|
79
129
|
exports.getPinnedCodes = (0, helper_func_types_1.buildQuery)({
|
|
80
130
|
encode: query_1.QueryPinnedCodesRequest.encode,
|
|
81
131
|
decode: query_1.QueryPinnedCodesResponse.decode,
|
|
@@ -83,7 +133,12 @@ exports.getPinnedCodes = (0, helper_func_types_1.buildQuery)({
|
|
|
83
133
|
method: "PinnedCodes",
|
|
84
134
|
deps: [query_1.QueryPinnedCodesRequest, query_1.QueryPinnedCodesResponse]
|
|
85
135
|
});
|
|
86
|
-
|
|
136
|
+
/**
|
|
137
|
+
* Params gets the module params
|
|
138
|
+
* @name getParams
|
|
139
|
+
* @package cosmwasm.wasm.v1
|
|
140
|
+
* @see proto service: cosmwasm.wasm.v1.Params
|
|
141
|
+
*/
|
|
87
142
|
exports.getParams = (0, helper_func_types_1.buildQuery)({
|
|
88
143
|
encode: query_1.QueryParamsRequest.encode,
|
|
89
144
|
decode: query_1.QueryParamsResponse.decode,
|
|
@@ -91,7 +146,12 @@ exports.getParams = (0, helper_func_types_1.buildQuery)({
|
|
|
91
146
|
method: "Params",
|
|
92
147
|
deps: [query_1.QueryParamsRequest, query_1.QueryParamsResponse]
|
|
93
148
|
});
|
|
94
|
-
|
|
149
|
+
/**
|
|
150
|
+
* ContractsByCreator gets the contracts by creator
|
|
151
|
+
* @name getContractsByCreator
|
|
152
|
+
* @package cosmwasm.wasm.v1
|
|
153
|
+
* @see proto service: cosmwasm.wasm.v1.ContractsByCreator
|
|
154
|
+
*/
|
|
95
155
|
exports.getContractsByCreator = (0, helper_func_types_1.buildQuery)({
|
|
96
156
|
encode: query_1.QueryContractsByCreatorRequest.encode,
|
|
97
157
|
decode: query_1.QueryContractsByCreatorResponse.decode,
|
|
@@ -99,8 +159,13 @@ exports.getContractsByCreator = (0, helper_func_types_1.buildQuery)({
|
|
|
99
159
|
method: "ContractsByCreator",
|
|
100
160
|
deps: [query_1.QueryContractsByCreatorRequest, query_1.QueryContractsByCreatorResponse]
|
|
101
161
|
});
|
|
102
|
-
|
|
103
|
-
|
|
162
|
+
/**
|
|
163
|
+
* WasmLimitsConfig gets the configured limits for static validation of Wasm
|
|
164
|
+
* files, encoded in JSON.
|
|
165
|
+
* @name getWasmLimitsConfig
|
|
166
|
+
* @package cosmwasm.wasm.v1
|
|
167
|
+
* @see proto service: cosmwasm.wasm.v1.WasmLimitsConfig
|
|
168
|
+
*/
|
|
104
169
|
exports.getWasmLimitsConfig = (0, helper_func_types_1.buildQuery)({
|
|
105
170
|
encode: query_1.QueryWasmLimitsConfigRequest.encode,
|
|
106
171
|
decode: query_1.QueryWasmLimitsConfigResponse.decode,
|
|
@@ -108,7 +173,12 @@ exports.getWasmLimitsConfig = (0, helper_func_types_1.buildQuery)({
|
|
|
108
173
|
method: "WasmLimitsConfig",
|
|
109
174
|
deps: [query_1.QueryWasmLimitsConfigRequest, query_1.QueryWasmLimitsConfigResponse]
|
|
110
175
|
});
|
|
111
|
-
|
|
176
|
+
/**
|
|
177
|
+
* BuildAddress builds a contract address
|
|
178
|
+
* @name getBuildAddress
|
|
179
|
+
* @package cosmwasm.wasm.v1
|
|
180
|
+
* @see proto service: cosmwasm.wasm.v1.BuildAddress
|
|
181
|
+
*/
|
|
112
182
|
exports.getBuildAddress = (0, helper_func_types_1.buildQuery)({
|
|
113
183
|
encode: query_1.QueryBuildAddressRequest.encode,
|
|
114
184
|
decode: query_1.QueryBuildAddressResponse.decode,
|