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,160 +1,335 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgDeposit, MsgWithdraw, MsgInstantSpotMarketLaunch, MsgInstantPerpetualMarketLaunch, MsgInstantExpiryFuturesMarketLaunch, MsgCreateSpotLimitOrder, MsgBatchCreateSpotLimitOrders, MsgCreateSpotMarketOrder, MsgCancelSpotOrder, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgPrivilegedExecuteContract, MsgCreateDerivativeLimitOrder, MsgBatchCreateDerivativeLimitOrders, MsgCreateDerivativeMarketOrder, MsgCancelDerivativeOrder, MsgBatchCancelDerivativeOrders, MsgInstantBinaryOptionsMarketLaunch, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCancelBinaryOptionsOrder, MsgBatchCancelBinaryOptionsOrders, MsgSubaccountTransfer, MsgExternalTransfer, MsgLiquidatePosition, MsgEmergencySettleMarket, MsgIncreasePositionMargin, MsgDecreasePositionMargin, MsgRewardsOptOut, MsgAdminUpdateBinaryOptionsMarket, MsgUpdateParams, MsgUpdateSpotMarket, MsgUpdateDerivativeMarket, MsgAuthorizeStakeGrants, MsgActivateStakeGrant } from "./tx";
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Deposit defines a method for transferring coins from the sender's bank
|
|
5
|
+
* balance into the subaccount's exchange deposits
|
|
6
|
+
* @name deposit
|
|
7
|
+
* @package injective.exchange.v1beta1
|
|
8
|
+
* @see proto service: injective.exchange.v1beta1.Deposit
|
|
9
|
+
*/
|
|
5
10
|
export const deposit = buildTx({
|
|
6
11
|
msg: MsgDeposit
|
|
7
12
|
});
|
|
8
|
-
|
|
9
|
-
|
|
13
|
+
/**
|
|
14
|
+
* Withdraw defines a method for withdrawing coins from a subaccount's
|
|
15
|
+
* deposits to the user's bank balance
|
|
16
|
+
* @name withdraw
|
|
17
|
+
* @package injective.exchange.v1beta1
|
|
18
|
+
* @see proto service: injective.exchange.v1beta1.Withdraw
|
|
19
|
+
*/
|
|
10
20
|
export const withdraw = buildTx({
|
|
11
21
|
msg: MsgWithdraw
|
|
12
22
|
});
|
|
13
|
-
|
|
14
|
-
|
|
23
|
+
/**
|
|
24
|
+
* InstantSpotMarketLaunch defines method for creating a spot market by paying
|
|
25
|
+
* listing fee without governance
|
|
26
|
+
* @name instantSpotMarketLaunch
|
|
27
|
+
* @package injective.exchange.v1beta1
|
|
28
|
+
* @see proto service: injective.exchange.v1beta1.InstantSpotMarketLaunch
|
|
29
|
+
*/
|
|
15
30
|
export const instantSpotMarketLaunch = buildTx({
|
|
16
31
|
msg: MsgInstantSpotMarketLaunch
|
|
17
32
|
});
|
|
18
|
-
|
|
19
|
-
|
|
33
|
+
/**
|
|
34
|
+
* InstantPerpetualMarketLaunch defines a method for creating a new perpetual
|
|
35
|
+
* futures market by paying listing fee without governance
|
|
36
|
+
* @name instantPerpetualMarketLaunch
|
|
37
|
+
* @package injective.exchange.v1beta1
|
|
38
|
+
* @see proto service: injective.exchange.v1beta1.InstantPerpetualMarketLaunch
|
|
39
|
+
*/
|
|
20
40
|
export const instantPerpetualMarketLaunch = buildTx({
|
|
21
41
|
msg: MsgInstantPerpetualMarketLaunch
|
|
22
42
|
});
|
|
23
|
-
|
|
24
|
-
|
|
43
|
+
/**
|
|
44
|
+
* InstantExpiryFuturesMarketLaunch defines a method for creating a new expiry
|
|
45
|
+
* futures market by paying listing fee without governance
|
|
46
|
+
* @name instantExpiryFuturesMarketLaunch
|
|
47
|
+
* @package injective.exchange.v1beta1
|
|
48
|
+
* @see proto service: injective.exchange.v1beta1.InstantExpiryFuturesMarketLaunch
|
|
49
|
+
*/
|
|
25
50
|
export const instantExpiryFuturesMarketLaunch = buildTx({
|
|
26
51
|
msg: MsgInstantExpiryFuturesMarketLaunch
|
|
27
52
|
});
|
|
28
|
-
|
|
53
|
+
/**
|
|
54
|
+
* CreateSpotLimitOrder defines a method for creating a new spot limit order.
|
|
55
|
+
* @name createSpotLimitOrder
|
|
56
|
+
* @package injective.exchange.v1beta1
|
|
57
|
+
* @see proto service: injective.exchange.v1beta1.CreateSpotLimitOrder
|
|
58
|
+
*/
|
|
29
59
|
export const createSpotLimitOrder = buildTx({
|
|
30
60
|
msg: MsgCreateSpotLimitOrder
|
|
31
61
|
});
|
|
32
|
-
|
|
33
|
-
|
|
62
|
+
/**
|
|
63
|
+
* BatchCreateSpotLimitOrder defines a method for creating a new batch of spot
|
|
64
|
+
* limit orders.
|
|
65
|
+
* @name batchCreateSpotLimitOrders
|
|
66
|
+
* @package injective.exchange.v1beta1
|
|
67
|
+
* @see proto service: injective.exchange.v1beta1.BatchCreateSpotLimitOrders
|
|
68
|
+
*/
|
|
34
69
|
export const batchCreateSpotLimitOrders = buildTx({
|
|
35
70
|
msg: MsgBatchCreateSpotLimitOrders
|
|
36
71
|
});
|
|
37
|
-
|
|
38
|
-
|
|
72
|
+
/**
|
|
73
|
+
* CreateSpotMarketOrder defines a method for creating a new spot market
|
|
74
|
+
* order.
|
|
75
|
+
* @name createSpotMarketOrder
|
|
76
|
+
* @package injective.exchange.v1beta1
|
|
77
|
+
* @see proto service: injective.exchange.v1beta1.CreateSpotMarketOrder
|
|
78
|
+
*/
|
|
39
79
|
export const createSpotMarketOrder = buildTx({
|
|
40
80
|
msg: MsgCreateSpotMarketOrder
|
|
41
81
|
});
|
|
42
|
-
|
|
82
|
+
/**
|
|
83
|
+
* MsgCancelSpotOrder defines a method for cancelling a spot order.
|
|
84
|
+
* @name cancelSpotOrder
|
|
85
|
+
* @package injective.exchange.v1beta1
|
|
86
|
+
* @see proto service: injective.exchange.v1beta1.CancelSpotOrder
|
|
87
|
+
*/
|
|
43
88
|
export const cancelSpotOrder = buildTx({
|
|
44
89
|
msg: MsgCancelSpotOrder
|
|
45
90
|
});
|
|
46
|
-
|
|
47
|
-
|
|
91
|
+
/**
|
|
92
|
+
* BatchCancelSpotOrders defines a method for cancelling a batch of spot
|
|
93
|
+
* orders in a given market.
|
|
94
|
+
* @name batchCancelSpotOrders
|
|
95
|
+
* @package injective.exchange.v1beta1
|
|
96
|
+
* @see proto service: injective.exchange.v1beta1.BatchCancelSpotOrders
|
|
97
|
+
*/
|
|
48
98
|
export const batchCancelSpotOrders = buildTx({
|
|
49
99
|
msg: MsgBatchCancelSpotOrders
|
|
50
100
|
});
|
|
51
|
-
|
|
101
|
+
/**
|
|
102
|
+
* BatchUpdateOrders defines a method for updating a batch of orders.
|
|
103
|
+
* @name batchUpdateOrders
|
|
104
|
+
* @package injective.exchange.v1beta1
|
|
105
|
+
* @see proto service: injective.exchange.v1beta1.BatchUpdateOrders
|
|
106
|
+
*/
|
|
52
107
|
export const batchUpdateOrders = buildTx({
|
|
53
108
|
msg: MsgBatchUpdateOrders
|
|
54
109
|
});
|
|
55
|
-
|
|
56
|
-
|
|
110
|
+
/**
|
|
111
|
+
* PrivilegedExecuteContract defines a method for executing a Cosmwasm
|
|
112
|
+
* contract from the exchange module with privileged capabilities.
|
|
113
|
+
* @name privilegedExecuteContract
|
|
114
|
+
* @package injective.exchange.v1beta1
|
|
115
|
+
* @see proto service: injective.exchange.v1beta1.PrivilegedExecuteContract
|
|
116
|
+
*/
|
|
57
117
|
export const privilegedExecuteContract = buildTx({
|
|
58
118
|
msg: MsgPrivilegedExecuteContract
|
|
59
119
|
});
|
|
60
|
-
|
|
61
|
-
|
|
120
|
+
/**
|
|
121
|
+
* CreateDerivativeLimitOrder defines a method for creating a new derivative
|
|
122
|
+
* limit order.
|
|
123
|
+
* @name createDerivativeLimitOrder
|
|
124
|
+
* @package injective.exchange.v1beta1
|
|
125
|
+
* @see proto service: injective.exchange.v1beta1.CreateDerivativeLimitOrder
|
|
126
|
+
*/
|
|
62
127
|
export const createDerivativeLimitOrder = buildTx({
|
|
63
128
|
msg: MsgCreateDerivativeLimitOrder
|
|
64
129
|
});
|
|
65
|
-
|
|
66
|
-
|
|
130
|
+
/**
|
|
131
|
+
* BatchCreateDerivativeLimitOrders defines a method for creating a new batch
|
|
132
|
+
* of derivative limit orders.
|
|
133
|
+
* @name batchCreateDerivativeLimitOrders
|
|
134
|
+
* @package injective.exchange.v1beta1
|
|
135
|
+
* @see proto service: injective.exchange.v1beta1.BatchCreateDerivativeLimitOrders
|
|
136
|
+
*/
|
|
67
137
|
export const batchCreateDerivativeLimitOrders = buildTx({
|
|
68
138
|
msg: MsgBatchCreateDerivativeLimitOrders
|
|
69
139
|
});
|
|
70
|
-
|
|
71
|
-
|
|
140
|
+
/**
|
|
141
|
+
* MsgCreateDerivativeLimitOrder defines a method for creating a new
|
|
142
|
+
* derivative market order.
|
|
143
|
+
* @name createDerivativeMarketOrder
|
|
144
|
+
* @package injective.exchange.v1beta1
|
|
145
|
+
* @see proto service: injective.exchange.v1beta1.CreateDerivativeMarketOrder
|
|
146
|
+
*/
|
|
72
147
|
export const createDerivativeMarketOrder = buildTx({
|
|
73
148
|
msg: MsgCreateDerivativeMarketOrder
|
|
74
149
|
});
|
|
75
|
-
|
|
76
|
-
|
|
150
|
+
/**
|
|
151
|
+
* MsgCancelDerivativeOrder defines a method for cancelling a derivative
|
|
152
|
+
* order.
|
|
153
|
+
* @name cancelDerivativeOrder
|
|
154
|
+
* @package injective.exchange.v1beta1
|
|
155
|
+
* @see proto service: injective.exchange.v1beta1.CancelDerivativeOrder
|
|
156
|
+
*/
|
|
77
157
|
export const cancelDerivativeOrder = buildTx({
|
|
78
158
|
msg: MsgCancelDerivativeOrder
|
|
79
159
|
});
|
|
80
|
-
|
|
81
|
-
|
|
160
|
+
/**
|
|
161
|
+
* MsgBatchCancelDerivativeOrders defines a method for cancelling a batch of
|
|
162
|
+
* derivative limit orders.
|
|
163
|
+
* @name batchCancelDerivativeOrders
|
|
164
|
+
* @package injective.exchange.v1beta1
|
|
165
|
+
* @see proto service: injective.exchange.v1beta1.BatchCancelDerivativeOrders
|
|
166
|
+
*/
|
|
82
167
|
export const batchCancelDerivativeOrders = buildTx({
|
|
83
168
|
msg: MsgBatchCancelDerivativeOrders
|
|
84
169
|
});
|
|
85
|
-
|
|
86
|
-
|
|
170
|
+
/**
|
|
171
|
+
* InstantBinaryOptionsMarketLaunch defines method for creating a binary
|
|
172
|
+
* options market by paying listing fee without governance
|
|
173
|
+
* @name instantBinaryOptionsMarketLaunch
|
|
174
|
+
* @package injective.exchange.v1beta1
|
|
175
|
+
* @see proto service: injective.exchange.v1beta1.InstantBinaryOptionsMarketLaunch
|
|
176
|
+
*/
|
|
87
177
|
export const instantBinaryOptionsMarketLaunch = buildTx({
|
|
88
178
|
msg: MsgInstantBinaryOptionsMarketLaunch
|
|
89
179
|
});
|
|
90
|
-
|
|
91
|
-
|
|
180
|
+
/**
|
|
181
|
+
* CreateBinaryOptionsLimitOrder defines a method for creating a new binary
|
|
182
|
+
* options limit order.
|
|
183
|
+
* @name createBinaryOptionsLimitOrder
|
|
184
|
+
* @package injective.exchange.v1beta1
|
|
185
|
+
* @see proto service: injective.exchange.v1beta1.CreateBinaryOptionsLimitOrder
|
|
186
|
+
*/
|
|
92
187
|
export const createBinaryOptionsLimitOrder = buildTx({
|
|
93
188
|
msg: MsgCreateBinaryOptionsLimitOrder
|
|
94
189
|
});
|
|
95
|
-
|
|
96
|
-
|
|
190
|
+
/**
|
|
191
|
+
* CreateBinaryOptionsMarketOrder defines a method for creating a new binary
|
|
192
|
+
* options market order.
|
|
193
|
+
* @name createBinaryOptionsMarketOrder
|
|
194
|
+
* @package injective.exchange.v1beta1
|
|
195
|
+
* @see proto service: injective.exchange.v1beta1.CreateBinaryOptionsMarketOrder
|
|
196
|
+
*/
|
|
97
197
|
export const createBinaryOptionsMarketOrder = buildTx({
|
|
98
198
|
msg: MsgCreateBinaryOptionsMarketOrder
|
|
99
199
|
});
|
|
100
|
-
|
|
101
|
-
|
|
200
|
+
/**
|
|
201
|
+
* MsgCancelBinaryOptionsOrder defines a method for cancelling a binary
|
|
202
|
+
* options order.
|
|
203
|
+
* @name cancelBinaryOptionsOrder
|
|
204
|
+
* @package injective.exchange.v1beta1
|
|
205
|
+
* @see proto service: injective.exchange.v1beta1.CancelBinaryOptionsOrder
|
|
206
|
+
*/
|
|
102
207
|
export const cancelBinaryOptionsOrder = buildTx({
|
|
103
208
|
msg: MsgCancelBinaryOptionsOrder
|
|
104
209
|
});
|
|
105
|
-
|
|
106
|
-
|
|
210
|
+
/**
|
|
211
|
+
* BatchCancelBinaryOptionsOrders defines a method for cancelling a batch of
|
|
212
|
+
* binary options limit orders.
|
|
213
|
+
* @name batchCancelBinaryOptionsOrders
|
|
214
|
+
* @package injective.exchange.v1beta1
|
|
215
|
+
* @see proto service: injective.exchange.v1beta1.BatchCancelBinaryOptionsOrders
|
|
216
|
+
*/
|
|
107
217
|
export const batchCancelBinaryOptionsOrders = buildTx({
|
|
108
218
|
msg: MsgBatchCancelBinaryOptionsOrders
|
|
109
219
|
});
|
|
110
|
-
|
|
220
|
+
/**
|
|
221
|
+
* SubaccountTransfer defines a method for transfer between subaccounts
|
|
222
|
+
* @name subaccountTransfer
|
|
223
|
+
* @package injective.exchange.v1beta1
|
|
224
|
+
* @see proto service: injective.exchange.v1beta1.SubaccountTransfer
|
|
225
|
+
*/
|
|
111
226
|
export const subaccountTransfer = buildTx({
|
|
112
227
|
msg: MsgSubaccountTransfer
|
|
113
228
|
});
|
|
114
|
-
|
|
229
|
+
/**
|
|
230
|
+
* ExternalTransfer defines a method for transfer between external accounts
|
|
231
|
+
* @name externalTransfer
|
|
232
|
+
* @package injective.exchange.v1beta1
|
|
233
|
+
* @see proto service: injective.exchange.v1beta1.ExternalTransfer
|
|
234
|
+
*/
|
|
115
235
|
export const externalTransfer = buildTx({
|
|
116
236
|
msg: MsgExternalTransfer
|
|
117
237
|
});
|
|
118
|
-
|
|
238
|
+
/**
|
|
239
|
+
* LiquidatePosition defines a method for liquidating a position
|
|
240
|
+
* @name liquidatePosition
|
|
241
|
+
* @package injective.exchange.v1beta1
|
|
242
|
+
* @see proto service: injective.exchange.v1beta1.LiquidatePosition
|
|
243
|
+
*/
|
|
119
244
|
export const liquidatePosition = buildTx({
|
|
120
245
|
msg: MsgLiquidatePosition
|
|
121
246
|
});
|
|
122
|
-
|
|
247
|
+
/**
|
|
248
|
+
* EmergencySettleMarket defines a method for emergency settling a market
|
|
249
|
+
* @name emergencySettleMarket
|
|
250
|
+
* @package injective.exchange.v1beta1
|
|
251
|
+
* @see proto service: injective.exchange.v1beta1.EmergencySettleMarket
|
|
252
|
+
*/
|
|
123
253
|
export const emergencySettleMarket = buildTx({
|
|
124
254
|
msg: MsgEmergencySettleMarket
|
|
125
255
|
});
|
|
126
|
-
|
|
256
|
+
/**
|
|
257
|
+
* IncreasePositionMargin defines a method for increasing margin of a position
|
|
258
|
+
* @name increasePositionMargin
|
|
259
|
+
* @package injective.exchange.v1beta1
|
|
260
|
+
* @see proto service: injective.exchange.v1beta1.IncreasePositionMargin
|
|
261
|
+
*/
|
|
127
262
|
export const increasePositionMargin = buildTx({
|
|
128
263
|
msg: MsgIncreasePositionMargin
|
|
129
264
|
});
|
|
130
|
-
|
|
265
|
+
/**
|
|
266
|
+
* DecreasePositionMargin defines a method for decreasing margin of a position
|
|
267
|
+
* @name decreasePositionMargin
|
|
268
|
+
* @package injective.exchange.v1beta1
|
|
269
|
+
* @see proto service: injective.exchange.v1beta1.DecreasePositionMargin
|
|
270
|
+
*/
|
|
131
271
|
export const decreasePositionMargin = buildTx({
|
|
132
272
|
msg: MsgDecreasePositionMargin
|
|
133
273
|
});
|
|
134
|
-
|
|
274
|
+
/**
|
|
275
|
+
* RewardsOptOut defines a method for opting out of rewards
|
|
276
|
+
* @name rewardsOptOut
|
|
277
|
+
* @package injective.exchange.v1beta1
|
|
278
|
+
* @see proto service: injective.exchange.v1beta1.RewardsOptOut
|
|
279
|
+
*/
|
|
135
280
|
export const rewardsOptOut = buildTx({
|
|
136
281
|
msg: MsgRewardsOptOut
|
|
137
282
|
});
|
|
138
|
-
|
|
139
|
-
|
|
283
|
+
/**
|
|
284
|
+
* AdminUpdateBinaryOptionsMarket defines method for updating a binary options
|
|
285
|
+
* market by admin
|
|
286
|
+
* @name adminUpdateBinaryOptionsMarket
|
|
287
|
+
* @package injective.exchange.v1beta1
|
|
288
|
+
* @see proto service: injective.exchange.v1beta1.AdminUpdateBinaryOptionsMarket
|
|
289
|
+
*/
|
|
140
290
|
export const adminUpdateBinaryOptionsMarket = buildTx({
|
|
141
291
|
msg: MsgAdminUpdateBinaryOptionsMarket
|
|
142
292
|
});
|
|
293
|
+
/**
|
|
294
|
+
* @name updateParams
|
|
295
|
+
* @package injective.exchange.v1beta1
|
|
296
|
+
* @see proto service: injective.exchange.v1beta1.UpdateParams
|
|
297
|
+
*/
|
|
143
298
|
export const updateParams = buildTx({
|
|
144
299
|
msg: MsgUpdateParams
|
|
145
300
|
});
|
|
146
|
-
|
|
301
|
+
/**
|
|
302
|
+
* UpdateSpotMarket modifies certain spot market fields (admin only)
|
|
303
|
+
* @name updateSpotMarket
|
|
304
|
+
* @package injective.exchange.v1beta1
|
|
305
|
+
* @see proto service: injective.exchange.v1beta1.UpdateSpotMarket
|
|
306
|
+
*/
|
|
147
307
|
export const updateSpotMarket = buildTx({
|
|
148
308
|
msg: MsgUpdateSpotMarket
|
|
149
309
|
});
|
|
150
|
-
|
|
151
|
-
|
|
310
|
+
/**
|
|
311
|
+
* UpdateDerivativeMarket modifies certain derivative market fields (admin
|
|
312
|
+
* only)
|
|
313
|
+
* @name updateDerivativeMarket
|
|
314
|
+
* @package injective.exchange.v1beta1
|
|
315
|
+
* @see proto service: injective.exchange.v1beta1.UpdateDerivativeMarket
|
|
316
|
+
*/
|
|
152
317
|
export const updateDerivativeMarket = buildTx({
|
|
153
318
|
msg: MsgUpdateDerivativeMarket
|
|
154
319
|
});
|
|
320
|
+
/**
|
|
321
|
+
* @name authorizeStakeGrants
|
|
322
|
+
* @package injective.exchange.v1beta1
|
|
323
|
+
* @see proto service: injective.exchange.v1beta1.AuthorizeStakeGrants
|
|
324
|
+
*/
|
|
155
325
|
export const authorizeStakeGrants = buildTx({
|
|
156
326
|
msg: MsgAuthorizeStakeGrants
|
|
157
327
|
});
|
|
328
|
+
/**
|
|
329
|
+
* @name activateStakeGrant
|
|
330
|
+
* @package injective.exchange.v1beta1
|
|
331
|
+
* @see proto service: injective.exchange.v1beta1.ActivateStakeGrant
|
|
332
|
+
*/
|
|
158
333
|
export const activateStakeGrant = buildTx({
|
|
159
334
|
msg: MsgActivateStakeGrant
|
|
160
335
|
});
|
|
@@ -7,6 +7,11 @@ function createBaseEventInsuranceFundUpdate() {
|
|
|
7
7
|
fund: undefined
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* @name EventInsuranceFundUpdate
|
|
12
|
+
* @package injective.insurance.v1beta1
|
|
13
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceFundUpdate
|
|
14
|
+
*/
|
|
10
15
|
export const EventInsuranceFundUpdate = {
|
|
11
16
|
typeUrl: "/injective.insurance.v1beta1.EventInsuranceFundUpdate",
|
|
12
17
|
is(o) {
|
|
@@ -82,6 +87,11 @@ function createBaseEventRequestRedemption() {
|
|
|
82
87
|
schedule: undefined
|
|
83
88
|
};
|
|
84
89
|
}
|
|
90
|
+
/**
|
|
91
|
+
* @name EventRequestRedemption
|
|
92
|
+
* @package injective.insurance.v1beta1
|
|
93
|
+
* @see proto type: injective.insurance.v1beta1.EventRequestRedemption
|
|
94
|
+
*/
|
|
85
95
|
export const EventRequestRedemption = {
|
|
86
96
|
typeUrl: "/injective.insurance.v1beta1.EventRequestRedemption",
|
|
87
97
|
is(o) {
|
|
@@ -158,6 +168,11 @@ function createBaseEventWithdrawRedemption() {
|
|
|
158
168
|
redeemCoin: Coin.fromPartial({})
|
|
159
169
|
};
|
|
160
170
|
}
|
|
171
|
+
/**
|
|
172
|
+
* @name EventWithdrawRedemption
|
|
173
|
+
* @package injective.insurance.v1beta1
|
|
174
|
+
* @see proto type: injective.insurance.v1beta1.EventWithdrawRedemption
|
|
175
|
+
*/
|
|
161
176
|
export const EventWithdrawRedemption = {
|
|
162
177
|
typeUrl: "/injective.insurance.v1beta1.EventWithdrawRedemption",
|
|
163
178
|
is(o) {
|
|
@@ -248,6 +263,11 @@ function createBaseEventUnderwrite() {
|
|
|
248
263
|
shares: Coin.fromPartial({})
|
|
249
264
|
};
|
|
250
265
|
}
|
|
266
|
+
/**
|
|
267
|
+
* @name EventUnderwrite
|
|
268
|
+
* @package injective.insurance.v1beta1
|
|
269
|
+
* @see proto type: injective.insurance.v1beta1.EventUnderwrite
|
|
270
|
+
*/
|
|
251
271
|
export const EventUnderwrite = {
|
|
252
272
|
typeUrl: "/injective.insurance.v1beta1.EventUnderwrite",
|
|
253
273
|
is(o) {
|
|
@@ -358,6 +378,11 @@ function createBaseEventInsuranceWithdraw() {
|
|
|
358
378
|
withdrawal: Coin.fromPartial({})
|
|
359
379
|
};
|
|
360
380
|
}
|
|
381
|
+
/**
|
|
382
|
+
* @name EventInsuranceWithdraw
|
|
383
|
+
* @package injective.insurance.v1beta1
|
|
384
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceWithdraw
|
|
385
|
+
*/
|
|
361
386
|
export const EventInsuranceWithdraw = {
|
|
362
387
|
typeUrl: "/injective.insurance.v1beta1.EventInsuranceWithdraw",
|
|
363
388
|
is(o) {
|
|
@@ -10,6 +10,12 @@ function createBaseGenesisState() {
|
|
|
10
10
|
nextRedemptionScheduleId: BigInt(0)
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* GenesisState defines the insurance module's genesis state.
|
|
15
|
+
* @name GenesisState
|
|
16
|
+
* @package injective.insurance.v1beta1
|
|
17
|
+
* @see proto type: injective.insurance.v1beta1.GenesisState
|
|
18
|
+
*/
|
|
13
19
|
export const GenesisState = {
|
|
14
20
|
typeUrl: "/injective.insurance.v1beta1.GenesisState",
|
|
15
21
|
is(o) {
|
|
@@ -9,6 +9,11 @@ function createBaseParams() {
|
|
|
9
9
|
defaultRedemptionNoticePeriodDuration: Duration.fromPartial({})
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* @name Params
|
|
14
|
+
* @package injective.insurance.v1beta1
|
|
15
|
+
* @see proto type: injective.insurance.v1beta1.Params
|
|
16
|
+
*/
|
|
12
17
|
export const Params = {
|
|
13
18
|
typeUrl: "/injective.insurance.v1beta1.Params",
|
|
14
19
|
aminoType: "insurance/Params",
|
|
@@ -96,6 +101,11 @@ function createBaseInsuranceFund() {
|
|
|
96
101
|
expiry: BigInt(0)
|
|
97
102
|
};
|
|
98
103
|
}
|
|
104
|
+
/**
|
|
105
|
+
* @name InsuranceFund
|
|
106
|
+
* @package injective.insurance.v1beta1
|
|
107
|
+
* @see proto type: injective.insurance.v1beta1.InsuranceFund
|
|
108
|
+
*/
|
|
99
109
|
export const InsuranceFund = {
|
|
100
110
|
typeUrl: "/injective.insurance.v1beta1.InsuranceFund",
|
|
101
111
|
is(o) {
|
|
@@ -280,6 +290,11 @@ function createBaseRedemptionSchedule() {
|
|
|
280
290
|
redemptionAmount: Coin.fromPartial({})
|
|
281
291
|
};
|
|
282
292
|
}
|
|
293
|
+
/**
|
|
294
|
+
* @name RedemptionSchedule
|
|
295
|
+
* @package injective.insurance.v1beta1
|
|
296
|
+
* @see proto type: injective.insurance.v1beta1.RedemptionSchedule
|
|
297
|
+
*/
|
|
283
298
|
export const RedemptionSchedule = {
|
|
284
299
|
typeUrl: "/injective.insurance.v1beta1.RedemptionSchedule",
|
|
285
300
|
is(o) {
|
|
@@ -6,6 +6,13 @@ import { GlobalDecoderRegistry } from "../../../registry";
|
|
|
6
6
|
function createBaseQueryInsuranceParamsRequest() {
|
|
7
7
|
return {};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
|
|
11
|
+
* RPC method.
|
|
12
|
+
* @name QueryInsuranceParamsRequest
|
|
13
|
+
* @package injective.insurance.v1beta1
|
|
14
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
|
|
15
|
+
*/
|
|
9
16
|
export const QueryInsuranceParamsRequest = {
|
|
10
17
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceParamsRequest",
|
|
11
18
|
is(o) {
|
|
@@ -65,6 +72,13 @@ function createBaseQueryInsuranceParamsResponse() {
|
|
|
65
72
|
params: Params.fromPartial({})
|
|
66
73
|
};
|
|
67
74
|
}
|
|
75
|
+
/**
|
|
76
|
+
* QueryInsuranceParamsRequest is the response type for the
|
|
77
|
+
* Query/InsuranceParams RPC method.
|
|
78
|
+
* @name QueryInsuranceParamsResponse
|
|
79
|
+
* @package injective.insurance.v1beta1
|
|
80
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
|
|
81
|
+
*/
|
|
68
82
|
export const QueryInsuranceParamsResponse = {
|
|
69
83
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceParamsResponse",
|
|
70
84
|
is(o) {
|
|
@@ -140,6 +154,13 @@ function createBaseQueryInsuranceFundRequest() {
|
|
|
140
154
|
marketId: ""
|
|
141
155
|
};
|
|
142
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
|
|
159
|
+
* RPC method.
|
|
160
|
+
* @name QueryInsuranceFundRequest
|
|
161
|
+
* @package injective.insurance.v1beta1
|
|
162
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
|
|
163
|
+
*/
|
|
143
164
|
export const QueryInsuranceFundRequest = {
|
|
144
165
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundRequest",
|
|
145
166
|
is(o) {
|
|
@@ -210,6 +231,13 @@ function createBaseQueryInsuranceFundResponse() {
|
|
|
210
231
|
fund: undefined
|
|
211
232
|
};
|
|
212
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
|
|
236
|
+
* RPC method.
|
|
237
|
+
* @name QueryInsuranceFundResponse
|
|
238
|
+
* @package injective.insurance.v1beta1
|
|
239
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
|
|
240
|
+
*/
|
|
213
241
|
export const QueryInsuranceFundResponse = {
|
|
214
242
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundResponse",
|
|
215
243
|
is(o) {
|
|
@@ -283,6 +311,13 @@ export const QueryInsuranceFundResponse = {
|
|
|
283
311
|
function createBaseQueryInsuranceFundsRequest() {
|
|
284
312
|
return {};
|
|
285
313
|
}
|
|
314
|
+
/**
|
|
315
|
+
* QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
|
|
316
|
+
* RPC method.
|
|
317
|
+
* @name QueryInsuranceFundsRequest
|
|
318
|
+
* @package injective.insurance.v1beta1
|
|
319
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
|
|
320
|
+
*/
|
|
286
321
|
export const QueryInsuranceFundsRequest = {
|
|
287
322
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundsRequest",
|
|
288
323
|
is(o) {
|
|
@@ -342,6 +377,13 @@ function createBaseQueryInsuranceFundsResponse() {
|
|
|
342
377
|
funds: []
|
|
343
378
|
};
|
|
344
379
|
}
|
|
380
|
+
/**
|
|
381
|
+
* QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
|
|
382
|
+
* RPC method.
|
|
383
|
+
* @name QueryInsuranceFundsResponse
|
|
384
|
+
* @package injective.insurance.v1beta1
|
|
385
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
|
|
386
|
+
*/
|
|
345
387
|
export const QueryInsuranceFundsResponse = {
|
|
346
388
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundsResponse",
|
|
347
389
|
is(o) {
|
|
@@ -421,6 +463,13 @@ function createBaseQueryEstimatedRedemptionsRequest() {
|
|
|
421
463
|
address: ""
|
|
422
464
|
};
|
|
423
465
|
}
|
|
466
|
+
/**
|
|
467
|
+
* QueryEstimatedRedemptionsRequest is the request type for the
|
|
468
|
+
* Query/EstimatedRedemptions RPC method.
|
|
469
|
+
* @name QueryEstimatedRedemptionsRequest
|
|
470
|
+
* @package injective.insurance.v1beta1
|
|
471
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
|
|
472
|
+
*/
|
|
424
473
|
export const QueryEstimatedRedemptionsRequest = {
|
|
425
474
|
typeUrl: "/injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest",
|
|
426
475
|
is(o) {
|
|
@@ -502,6 +551,13 @@ function createBaseQueryEstimatedRedemptionsResponse() {
|
|
|
502
551
|
amount: []
|
|
503
552
|
};
|
|
504
553
|
}
|
|
554
|
+
/**
|
|
555
|
+
* QueryEstimatedRedemptionsResponse is the response type for the
|
|
556
|
+
* Query/EstimatedRedemptions RPC method.
|
|
557
|
+
* @name QueryEstimatedRedemptionsResponse
|
|
558
|
+
* @package injective.insurance.v1beta1
|
|
559
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
|
|
560
|
+
*/
|
|
505
561
|
export const QueryEstimatedRedemptionsResponse = {
|
|
506
562
|
typeUrl: "/injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse",
|
|
507
563
|
is(o) {
|
|
@@ -581,6 +637,13 @@ function createBaseQueryPendingRedemptionsRequest() {
|
|
|
581
637
|
address: ""
|
|
582
638
|
};
|
|
583
639
|
}
|
|
640
|
+
/**
|
|
641
|
+
* QueryPendingRedemptionsRequest is the request type for the
|
|
642
|
+
* Query/PendingRedemptions RPC method.
|
|
643
|
+
* @name QueryPendingRedemptionsRequest
|
|
644
|
+
* @package injective.insurance.v1beta1
|
|
645
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
|
|
646
|
+
*/
|
|
584
647
|
export const QueryPendingRedemptionsRequest = {
|
|
585
648
|
typeUrl: "/injective.insurance.v1beta1.QueryPendingRedemptionsRequest",
|
|
586
649
|
is(o) {
|
|
@@ -662,6 +725,13 @@ function createBaseQueryPendingRedemptionsResponse() {
|
|
|
662
725
|
amount: []
|
|
663
726
|
};
|
|
664
727
|
}
|
|
728
|
+
/**
|
|
729
|
+
* QueryPendingRedemptionsResponse is the response type for the
|
|
730
|
+
* Query/PendingRedemptions RPC method.
|
|
731
|
+
* @name QueryPendingRedemptionsResponse
|
|
732
|
+
* @package injective.insurance.v1beta1
|
|
733
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
|
|
734
|
+
*/
|
|
665
735
|
export const QueryPendingRedemptionsResponse = {
|
|
666
736
|
typeUrl: "/injective.insurance.v1beta1.QueryPendingRedemptionsResponse",
|
|
667
737
|
is(o) {
|
|
@@ -738,6 +808,13 @@ export const QueryPendingRedemptionsResponse = {
|
|
|
738
808
|
function createBaseQueryModuleStateRequest() {
|
|
739
809
|
return {};
|
|
740
810
|
}
|
|
811
|
+
/**
|
|
812
|
+
* QueryModuleStateRequest is the request type for the
|
|
813
|
+
* Query/InsuranceModuleState RPC method.
|
|
814
|
+
* @name QueryModuleStateRequest
|
|
815
|
+
* @package injective.insurance.v1beta1
|
|
816
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
|
|
817
|
+
*/
|
|
741
818
|
export const QueryModuleStateRequest = {
|
|
742
819
|
typeUrl: "/injective.insurance.v1beta1.QueryModuleStateRequest",
|
|
743
820
|
is(o) {
|
|
@@ -797,6 +874,13 @@ function createBaseQueryModuleStateResponse() {
|
|
|
797
874
|
state: undefined
|
|
798
875
|
};
|
|
799
876
|
}
|
|
877
|
+
/**
|
|
878
|
+
* QueryModuleStateResponse is the response type for the
|
|
879
|
+
* Query/InsuranceModuleState RPC method.
|
|
880
|
+
* @name QueryModuleStateResponse
|
|
881
|
+
* @package injective.insurance.v1beta1
|
|
882
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
|
|
883
|
+
*/
|
|
800
884
|
export const QueryModuleStateResponse = {
|
|
801
885
|
typeUrl: "/injective.insurance.v1beta1.QueryModuleStateResponse",
|
|
802
886
|
is(o) {
|