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
|
@@ -6,6 +6,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
6
6
|
/**
|
|
7
7
|
* QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
|
|
8
8
|
* RPC method.
|
|
9
|
+
* @name QueryInsuranceParamsRequest
|
|
10
|
+
* @package injective.insurance.v1beta1
|
|
11
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
|
|
9
12
|
*/
|
|
10
13
|
export interface QueryInsuranceParamsRequest {
|
|
11
14
|
}
|
|
@@ -16,6 +19,9 @@ export interface QueryInsuranceParamsRequestProtoMsg {
|
|
|
16
19
|
/**
|
|
17
20
|
* QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
|
|
18
21
|
* RPC method.
|
|
22
|
+
* @name QueryInsuranceParamsRequestAmino
|
|
23
|
+
* @package injective.insurance.v1beta1
|
|
24
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
|
|
19
25
|
*/
|
|
20
26
|
export interface QueryInsuranceParamsRequestAmino {
|
|
21
27
|
}
|
|
@@ -26,6 +32,9 @@ export interface QueryInsuranceParamsRequestAminoMsg {
|
|
|
26
32
|
/**
|
|
27
33
|
* QueryInsuranceParamsRequest is the response type for the
|
|
28
34
|
* Query/InsuranceParams RPC method.
|
|
35
|
+
* @name QueryInsuranceParamsResponse
|
|
36
|
+
* @package injective.insurance.v1beta1
|
|
37
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
|
|
29
38
|
*/
|
|
30
39
|
export interface QueryInsuranceParamsResponse {
|
|
31
40
|
params: Params;
|
|
@@ -37,6 +46,9 @@ export interface QueryInsuranceParamsResponseProtoMsg {
|
|
|
37
46
|
/**
|
|
38
47
|
* QueryInsuranceParamsRequest is the response type for the
|
|
39
48
|
* Query/InsuranceParams RPC method.
|
|
49
|
+
* @name QueryInsuranceParamsResponseAmino
|
|
50
|
+
* @package injective.insurance.v1beta1
|
|
51
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
|
|
40
52
|
*/
|
|
41
53
|
export interface QueryInsuranceParamsResponseAmino {
|
|
42
54
|
params: ParamsAmino;
|
|
@@ -48,9 +60,14 @@ export interface QueryInsuranceParamsResponseAminoMsg {
|
|
|
48
60
|
/**
|
|
49
61
|
* QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
|
|
50
62
|
* RPC method.
|
|
63
|
+
* @name QueryInsuranceFundRequest
|
|
64
|
+
* @package injective.insurance.v1beta1
|
|
65
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
|
|
51
66
|
*/
|
|
52
67
|
export interface QueryInsuranceFundRequest {
|
|
53
|
-
/**
|
|
68
|
+
/**
|
|
69
|
+
* Market ID for the market
|
|
70
|
+
*/
|
|
54
71
|
marketId: string;
|
|
55
72
|
}
|
|
56
73
|
export interface QueryInsuranceFundRequestProtoMsg {
|
|
@@ -60,9 +77,14 @@ export interface QueryInsuranceFundRequestProtoMsg {
|
|
|
60
77
|
/**
|
|
61
78
|
* QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
|
|
62
79
|
* RPC method.
|
|
80
|
+
* @name QueryInsuranceFundRequestAmino
|
|
81
|
+
* @package injective.insurance.v1beta1
|
|
82
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
|
|
63
83
|
*/
|
|
64
84
|
export interface QueryInsuranceFundRequestAmino {
|
|
65
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* Market ID for the market
|
|
87
|
+
*/
|
|
66
88
|
market_id: string;
|
|
67
89
|
}
|
|
68
90
|
export interface QueryInsuranceFundRequestAminoMsg {
|
|
@@ -72,6 +94,9 @@ export interface QueryInsuranceFundRequestAminoMsg {
|
|
|
72
94
|
/**
|
|
73
95
|
* QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
|
|
74
96
|
* RPC method.
|
|
97
|
+
* @name QueryInsuranceFundResponse
|
|
98
|
+
* @package injective.insurance.v1beta1
|
|
99
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
|
|
75
100
|
*/
|
|
76
101
|
export interface QueryInsuranceFundResponse {
|
|
77
102
|
fund?: InsuranceFund;
|
|
@@ -83,6 +108,9 @@ export interface QueryInsuranceFundResponseProtoMsg {
|
|
|
83
108
|
/**
|
|
84
109
|
* QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
|
|
85
110
|
* RPC method.
|
|
111
|
+
* @name QueryInsuranceFundResponseAmino
|
|
112
|
+
* @package injective.insurance.v1beta1
|
|
113
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
|
|
86
114
|
*/
|
|
87
115
|
export interface QueryInsuranceFundResponseAmino {
|
|
88
116
|
fund?: InsuranceFundAmino;
|
|
@@ -94,6 +122,9 @@ export interface QueryInsuranceFundResponseAminoMsg {
|
|
|
94
122
|
/**
|
|
95
123
|
* QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
|
|
96
124
|
* RPC method.
|
|
125
|
+
* @name QueryInsuranceFundsRequest
|
|
126
|
+
* @package injective.insurance.v1beta1
|
|
127
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
|
|
97
128
|
*/
|
|
98
129
|
export interface QueryInsuranceFundsRequest {
|
|
99
130
|
}
|
|
@@ -104,6 +135,9 @@ export interface QueryInsuranceFundsRequestProtoMsg {
|
|
|
104
135
|
/**
|
|
105
136
|
* QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
|
|
106
137
|
* RPC method.
|
|
138
|
+
* @name QueryInsuranceFundsRequestAmino
|
|
139
|
+
* @package injective.insurance.v1beta1
|
|
140
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
|
|
107
141
|
*/
|
|
108
142
|
export interface QueryInsuranceFundsRequestAmino {
|
|
109
143
|
}
|
|
@@ -114,6 +148,9 @@ export interface QueryInsuranceFundsRequestAminoMsg {
|
|
|
114
148
|
/**
|
|
115
149
|
* QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
|
|
116
150
|
* RPC method.
|
|
151
|
+
* @name QueryInsuranceFundsResponse
|
|
152
|
+
* @package injective.insurance.v1beta1
|
|
153
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
|
|
117
154
|
*/
|
|
118
155
|
export interface QueryInsuranceFundsResponse {
|
|
119
156
|
funds: InsuranceFund[];
|
|
@@ -125,6 +162,9 @@ export interface QueryInsuranceFundsResponseProtoMsg {
|
|
|
125
162
|
/**
|
|
126
163
|
* QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
|
|
127
164
|
* RPC method.
|
|
165
|
+
* @name QueryInsuranceFundsResponseAmino
|
|
166
|
+
* @package injective.insurance.v1beta1
|
|
167
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
|
|
128
168
|
*/
|
|
129
169
|
export interface QueryInsuranceFundsResponseAmino {
|
|
130
170
|
funds: InsuranceFundAmino[];
|
|
@@ -136,6 +176,9 @@ export interface QueryInsuranceFundsResponseAminoMsg {
|
|
|
136
176
|
/**
|
|
137
177
|
* QueryEstimatedRedemptionsRequest is the request type for the
|
|
138
178
|
* Query/EstimatedRedemptions RPC method.
|
|
179
|
+
* @name QueryEstimatedRedemptionsRequest
|
|
180
|
+
* @package injective.insurance.v1beta1
|
|
181
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
|
|
139
182
|
*/
|
|
140
183
|
export interface QueryEstimatedRedemptionsRequest {
|
|
141
184
|
marketId: string;
|
|
@@ -148,6 +191,9 @@ export interface QueryEstimatedRedemptionsRequestProtoMsg {
|
|
|
148
191
|
/**
|
|
149
192
|
* QueryEstimatedRedemptionsRequest is the request type for the
|
|
150
193
|
* Query/EstimatedRedemptions RPC method.
|
|
194
|
+
* @name QueryEstimatedRedemptionsRequestAmino
|
|
195
|
+
* @package injective.insurance.v1beta1
|
|
196
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
|
|
151
197
|
*/
|
|
152
198
|
export interface QueryEstimatedRedemptionsRequestAmino {
|
|
153
199
|
marketId: string;
|
|
@@ -160,6 +206,9 @@ export interface QueryEstimatedRedemptionsRequestAminoMsg {
|
|
|
160
206
|
/**
|
|
161
207
|
* QueryEstimatedRedemptionsResponse is the response type for the
|
|
162
208
|
* Query/EstimatedRedemptions RPC method.
|
|
209
|
+
* @name QueryEstimatedRedemptionsResponse
|
|
210
|
+
* @package injective.insurance.v1beta1
|
|
211
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
|
|
163
212
|
*/
|
|
164
213
|
export interface QueryEstimatedRedemptionsResponse {
|
|
165
214
|
amount: Coin[];
|
|
@@ -171,6 +220,9 @@ export interface QueryEstimatedRedemptionsResponseProtoMsg {
|
|
|
171
220
|
/**
|
|
172
221
|
* QueryEstimatedRedemptionsResponse is the response type for the
|
|
173
222
|
* Query/EstimatedRedemptions RPC method.
|
|
223
|
+
* @name QueryEstimatedRedemptionsResponseAmino
|
|
224
|
+
* @package injective.insurance.v1beta1
|
|
225
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
|
|
174
226
|
*/
|
|
175
227
|
export interface QueryEstimatedRedemptionsResponseAmino {
|
|
176
228
|
amount: CoinAmino[];
|
|
@@ -182,6 +234,9 @@ export interface QueryEstimatedRedemptionsResponseAminoMsg {
|
|
|
182
234
|
/**
|
|
183
235
|
* QueryPendingRedemptionsRequest is the request type for the
|
|
184
236
|
* Query/PendingRedemptions RPC method.
|
|
237
|
+
* @name QueryPendingRedemptionsRequest
|
|
238
|
+
* @package injective.insurance.v1beta1
|
|
239
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
|
|
185
240
|
*/
|
|
186
241
|
export interface QueryPendingRedemptionsRequest {
|
|
187
242
|
marketId: string;
|
|
@@ -194,6 +249,9 @@ export interface QueryPendingRedemptionsRequestProtoMsg {
|
|
|
194
249
|
/**
|
|
195
250
|
* QueryPendingRedemptionsRequest is the request type for the
|
|
196
251
|
* Query/PendingRedemptions RPC method.
|
|
252
|
+
* @name QueryPendingRedemptionsRequestAmino
|
|
253
|
+
* @package injective.insurance.v1beta1
|
|
254
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
|
|
197
255
|
*/
|
|
198
256
|
export interface QueryPendingRedemptionsRequestAmino {
|
|
199
257
|
marketId: string;
|
|
@@ -206,6 +264,9 @@ export interface QueryPendingRedemptionsRequestAminoMsg {
|
|
|
206
264
|
/**
|
|
207
265
|
* QueryPendingRedemptionsResponse is the response type for the
|
|
208
266
|
* Query/PendingRedemptions RPC method.
|
|
267
|
+
* @name QueryPendingRedemptionsResponse
|
|
268
|
+
* @package injective.insurance.v1beta1
|
|
269
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
|
|
209
270
|
*/
|
|
210
271
|
export interface QueryPendingRedemptionsResponse {
|
|
211
272
|
amount: Coin[];
|
|
@@ -217,6 +278,9 @@ export interface QueryPendingRedemptionsResponseProtoMsg {
|
|
|
217
278
|
/**
|
|
218
279
|
* QueryPendingRedemptionsResponse is the response type for the
|
|
219
280
|
* Query/PendingRedemptions RPC method.
|
|
281
|
+
* @name QueryPendingRedemptionsResponseAmino
|
|
282
|
+
* @package injective.insurance.v1beta1
|
|
283
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
|
|
220
284
|
*/
|
|
221
285
|
export interface QueryPendingRedemptionsResponseAmino {
|
|
222
286
|
amount: CoinAmino[];
|
|
@@ -228,6 +292,9 @@ export interface QueryPendingRedemptionsResponseAminoMsg {
|
|
|
228
292
|
/**
|
|
229
293
|
* QueryModuleStateRequest is the request type for the
|
|
230
294
|
* Query/InsuranceModuleState RPC method.
|
|
295
|
+
* @name QueryModuleStateRequest
|
|
296
|
+
* @package injective.insurance.v1beta1
|
|
297
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
|
|
231
298
|
*/
|
|
232
299
|
export interface QueryModuleStateRequest {
|
|
233
300
|
}
|
|
@@ -238,6 +305,9 @@ export interface QueryModuleStateRequestProtoMsg {
|
|
|
238
305
|
/**
|
|
239
306
|
* QueryModuleStateRequest is the request type for the
|
|
240
307
|
* Query/InsuranceModuleState RPC method.
|
|
308
|
+
* @name QueryModuleStateRequestAmino
|
|
309
|
+
* @package injective.insurance.v1beta1
|
|
310
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
|
|
241
311
|
*/
|
|
242
312
|
export interface QueryModuleStateRequestAmino {
|
|
243
313
|
}
|
|
@@ -248,6 +318,9 @@ export interface QueryModuleStateRequestAminoMsg {
|
|
|
248
318
|
/**
|
|
249
319
|
* QueryModuleStateResponse is the response type for the
|
|
250
320
|
* Query/InsuranceModuleState RPC method.
|
|
321
|
+
* @name QueryModuleStateResponse
|
|
322
|
+
* @package injective.insurance.v1beta1
|
|
323
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
|
|
251
324
|
*/
|
|
252
325
|
export interface QueryModuleStateResponse {
|
|
253
326
|
state?: GenesisState;
|
|
@@ -259,6 +332,9 @@ export interface QueryModuleStateResponseProtoMsg {
|
|
|
259
332
|
/**
|
|
260
333
|
* QueryModuleStateResponse is the response type for the
|
|
261
334
|
* Query/InsuranceModuleState RPC method.
|
|
335
|
+
* @name QueryModuleStateResponseAmino
|
|
336
|
+
* @package injective.insurance.v1beta1
|
|
337
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
|
|
262
338
|
*/
|
|
263
339
|
export interface QueryModuleStateResponseAmino {
|
|
264
340
|
state?: GenesisStateAmino;
|
|
@@ -267,6 +343,13 @@ export interface QueryModuleStateResponseAminoMsg {
|
|
|
267
343
|
type: "/injective.insurance.v1beta1.QueryModuleStateResponse";
|
|
268
344
|
value: QueryModuleStateResponseAmino;
|
|
269
345
|
}
|
|
346
|
+
/**
|
|
347
|
+
* QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
|
|
348
|
+
* RPC method.
|
|
349
|
+
* @name QueryInsuranceParamsRequest
|
|
350
|
+
* @package injective.insurance.v1beta1
|
|
351
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
|
|
352
|
+
*/
|
|
270
353
|
export declare const QueryInsuranceParamsRequest: {
|
|
271
354
|
typeUrl: string;
|
|
272
355
|
is(o: any): o is QueryInsuranceParamsRequest;
|
|
@@ -282,6 +365,13 @@ export declare const QueryInsuranceParamsRequest: {
|
|
|
282
365
|
toProtoMsg(message: QueryInsuranceParamsRequest): QueryInsuranceParamsRequestProtoMsg;
|
|
283
366
|
registerTypeUrl(): void;
|
|
284
367
|
};
|
|
368
|
+
/**
|
|
369
|
+
* QueryInsuranceParamsRequest is the response type for the
|
|
370
|
+
* Query/InsuranceParams RPC method.
|
|
371
|
+
* @name QueryInsuranceParamsResponse
|
|
372
|
+
* @package injective.insurance.v1beta1
|
|
373
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
|
|
374
|
+
*/
|
|
285
375
|
export declare const QueryInsuranceParamsResponse: {
|
|
286
376
|
typeUrl: string;
|
|
287
377
|
is(o: any): o is QueryInsuranceParamsResponse;
|
|
@@ -297,6 +387,13 @@ export declare const QueryInsuranceParamsResponse: {
|
|
|
297
387
|
toProtoMsg(message: QueryInsuranceParamsResponse): QueryInsuranceParamsResponseProtoMsg;
|
|
298
388
|
registerTypeUrl(): void;
|
|
299
389
|
};
|
|
390
|
+
/**
|
|
391
|
+
* QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
|
|
392
|
+
* RPC method.
|
|
393
|
+
* @name QueryInsuranceFundRequest
|
|
394
|
+
* @package injective.insurance.v1beta1
|
|
395
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
|
|
396
|
+
*/
|
|
300
397
|
export declare const QueryInsuranceFundRequest: {
|
|
301
398
|
typeUrl: string;
|
|
302
399
|
is(o: any): o is QueryInsuranceFundRequest;
|
|
@@ -312,6 +409,13 @@ export declare const QueryInsuranceFundRequest: {
|
|
|
312
409
|
toProtoMsg(message: QueryInsuranceFundRequest): QueryInsuranceFundRequestProtoMsg;
|
|
313
410
|
registerTypeUrl(): void;
|
|
314
411
|
};
|
|
412
|
+
/**
|
|
413
|
+
* QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
|
|
414
|
+
* RPC method.
|
|
415
|
+
* @name QueryInsuranceFundResponse
|
|
416
|
+
* @package injective.insurance.v1beta1
|
|
417
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
|
|
418
|
+
*/
|
|
315
419
|
export declare const QueryInsuranceFundResponse: {
|
|
316
420
|
typeUrl: string;
|
|
317
421
|
is(o: any): o is QueryInsuranceFundResponse;
|
|
@@ -327,6 +431,13 @@ export declare const QueryInsuranceFundResponse: {
|
|
|
327
431
|
toProtoMsg(message: QueryInsuranceFundResponse): QueryInsuranceFundResponseProtoMsg;
|
|
328
432
|
registerTypeUrl(): void;
|
|
329
433
|
};
|
|
434
|
+
/**
|
|
435
|
+
* QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
|
|
436
|
+
* RPC method.
|
|
437
|
+
* @name QueryInsuranceFundsRequest
|
|
438
|
+
* @package injective.insurance.v1beta1
|
|
439
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
|
|
440
|
+
*/
|
|
330
441
|
export declare const QueryInsuranceFundsRequest: {
|
|
331
442
|
typeUrl: string;
|
|
332
443
|
is(o: any): o is QueryInsuranceFundsRequest;
|
|
@@ -342,6 +453,13 @@ export declare const QueryInsuranceFundsRequest: {
|
|
|
342
453
|
toProtoMsg(message: QueryInsuranceFundsRequest): QueryInsuranceFundsRequestProtoMsg;
|
|
343
454
|
registerTypeUrl(): void;
|
|
344
455
|
};
|
|
456
|
+
/**
|
|
457
|
+
* QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
|
|
458
|
+
* RPC method.
|
|
459
|
+
* @name QueryInsuranceFundsResponse
|
|
460
|
+
* @package injective.insurance.v1beta1
|
|
461
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
|
|
462
|
+
*/
|
|
345
463
|
export declare const QueryInsuranceFundsResponse: {
|
|
346
464
|
typeUrl: string;
|
|
347
465
|
is(o: any): o is QueryInsuranceFundsResponse;
|
|
@@ -357,6 +475,13 @@ export declare const QueryInsuranceFundsResponse: {
|
|
|
357
475
|
toProtoMsg(message: QueryInsuranceFundsResponse): QueryInsuranceFundsResponseProtoMsg;
|
|
358
476
|
registerTypeUrl(): void;
|
|
359
477
|
};
|
|
478
|
+
/**
|
|
479
|
+
* QueryEstimatedRedemptionsRequest is the request type for the
|
|
480
|
+
* Query/EstimatedRedemptions RPC method.
|
|
481
|
+
* @name QueryEstimatedRedemptionsRequest
|
|
482
|
+
* @package injective.insurance.v1beta1
|
|
483
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
|
|
484
|
+
*/
|
|
360
485
|
export declare const QueryEstimatedRedemptionsRequest: {
|
|
361
486
|
typeUrl: string;
|
|
362
487
|
is(o: any): o is QueryEstimatedRedemptionsRequest;
|
|
@@ -372,6 +497,13 @@ export declare const QueryEstimatedRedemptionsRequest: {
|
|
|
372
497
|
toProtoMsg(message: QueryEstimatedRedemptionsRequest): QueryEstimatedRedemptionsRequestProtoMsg;
|
|
373
498
|
registerTypeUrl(): void;
|
|
374
499
|
};
|
|
500
|
+
/**
|
|
501
|
+
* QueryEstimatedRedemptionsResponse is the response type for the
|
|
502
|
+
* Query/EstimatedRedemptions RPC method.
|
|
503
|
+
* @name QueryEstimatedRedemptionsResponse
|
|
504
|
+
* @package injective.insurance.v1beta1
|
|
505
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
|
|
506
|
+
*/
|
|
375
507
|
export declare const QueryEstimatedRedemptionsResponse: {
|
|
376
508
|
typeUrl: string;
|
|
377
509
|
is(o: any): o is QueryEstimatedRedemptionsResponse;
|
|
@@ -387,6 +519,13 @@ export declare const QueryEstimatedRedemptionsResponse: {
|
|
|
387
519
|
toProtoMsg(message: QueryEstimatedRedemptionsResponse): QueryEstimatedRedemptionsResponseProtoMsg;
|
|
388
520
|
registerTypeUrl(): void;
|
|
389
521
|
};
|
|
522
|
+
/**
|
|
523
|
+
* QueryPendingRedemptionsRequest is the request type for the
|
|
524
|
+
* Query/PendingRedemptions RPC method.
|
|
525
|
+
* @name QueryPendingRedemptionsRequest
|
|
526
|
+
* @package injective.insurance.v1beta1
|
|
527
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
|
|
528
|
+
*/
|
|
390
529
|
export declare const QueryPendingRedemptionsRequest: {
|
|
391
530
|
typeUrl: string;
|
|
392
531
|
is(o: any): o is QueryPendingRedemptionsRequest;
|
|
@@ -402,6 +541,13 @@ export declare const QueryPendingRedemptionsRequest: {
|
|
|
402
541
|
toProtoMsg(message: QueryPendingRedemptionsRequest): QueryPendingRedemptionsRequestProtoMsg;
|
|
403
542
|
registerTypeUrl(): void;
|
|
404
543
|
};
|
|
544
|
+
/**
|
|
545
|
+
* QueryPendingRedemptionsResponse is the response type for the
|
|
546
|
+
* Query/PendingRedemptions RPC method.
|
|
547
|
+
* @name QueryPendingRedemptionsResponse
|
|
548
|
+
* @package injective.insurance.v1beta1
|
|
549
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
|
|
550
|
+
*/
|
|
405
551
|
export declare const QueryPendingRedemptionsResponse: {
|
|
406
552
|
typeUrl: string;
|
|
407
553
|
is(o: any): o is QueryPendingRedemptionsResponse;
|
|
@@ -417,6 +563,13 @@ export declare const QueryPendingRedemptionsResponse: {
|
|
|
417
563
|
toProtoMsg(message: QueryPendingRedemptionsResponse): QueryPendingRedemptionsResponseProtoMsg;
|
|
418
564
|
registerTypeUrl(): void;
|
|
419
565
|
};
|
|
566
|
+
/**
|
|
567
|
+
* QueryModuleStateRequest is the request type for the
|
|
568
|
+
* Query/InsuranceModuleState RPC method.
|
|
569
|
+
* @name QueryModuleStateRequest
|
|
570
|
+
* @package injective.insurance.v1beta1
|
|
571
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
|
|
572
|
+
*/
|
|
420
573
|
export declare const QueryModuleStateRequest: {
|
|
421
574
|
typeUrl: string;
|
|
422
575
|
is(o: any): o is QueryModuleStateRequest;
|
|
@@ -432,6 +585,13 @@ export declare const QueryModuleStateRequest: {
|
|
|
432
585
|
toProtoMsg(message: QueryModuleStateRequest): QueryModuleStateRequestProtoMsg;
|
|
433
586
|
registerTypeUrl(): void;
|
|
434
587
|
};
|
|
588
|
+
/**
|
|
589
|
+
* QueryModuleStateResponse is the response type for the
|
|
590
|
+
* Query/InsuranceModuleState RPC method.
|
|
591
|
+
* @name QueryModuleStateResponse
|
|
592
|
+
* @package injective.insurance.v1beta1
|
|
593
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
|
|
594
|
+
*/
|
|
435
595
|
export declare const QueryModuleStateResponse: {
|
|
436
596
|
typeUrl: string;
|
|
437
597
|
is(o: any): o is QueryModuleStateResponse;
|
|
@@ -9,6 +9,13 @@ const registry_1 = require("../../../registry");
|
|
|
9
9
|
function createBaseQueryInsuranceParamsRequest() {
|
|
10
10
|
return {};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
|
|
14
|
+
* RPC method.
|
|
15
|
+
* @name QueryInsuranceParamsRequest
|
|
16
|
+
* @package injective.insurance.v1beta1
|
|
17
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
|
|
18
|
+
*/
|
|
12
19
|
exports.QueryInsuranceParamsRequest = {
|
|
13
20
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceParamsRequest",
|
|
14
21
|
is(o) {
|
|
@@ -68,6 +75,13 @@ function createBaseQueryInsuranceParamsResponse() {
|
|
|
68
75
|
params: insurance_1.Params.fromPartial({})
|
|
69
76
|
};
|
|
70
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* QueryInsuranceParamsRequest is the response type for the
|
|
80
|
+
* Query/InsuranceParams RPC method.
|
|
81
|
+
* @name QueryInsuranceParamsResponse
|
|
82
|
+
* @package injective.insurance.v1beta1
|
|
83
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
|
|
84
|
+
*/
|
|
71
85
|
exports.QueryInsuranceParamsResponse = {
|
|
72
86
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceParamsResponse",
|
|
73
87
|
is(o) {
|
|
@@ -143,6 +157,13 @@ function createBaseQueryInsuranceFundRequest() {
|
|
|
143
157
|
marketId: ""
|
|
144
158
|
};
|
|
145
159
|
}
|
|
160
|
+
/**
|
|
161
|
+
* QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
|
|
162
|
+
* RPC method.
|
|
163
|
+
* @name QueryInsuranceFundRequest
|
|
164
|
+
* @package injective.insurance.v1beta1
|
|
165
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
|
|
166
|
+
*/
|
|
146
167
|
exports.QueryInsuranceFundRequest = {
|
|
147
168
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundRequest",
|
|
148
169
|
is(o) {
|
|
@@ -213,6 +234,13 @@ function createBaseQueryInsuranceFundResponse() {
|
|
|
213
234
|
fund: undefined
|
|
214
235
|
};
|
|
215
236
|
}
|
|
237
|
+
/**
|
|
238
|
+
* QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
|
|
239
|
+
* RPC method.
|
|
240
|
+
* @name QueryInsuranceFundResponse
|
|
241
|
+
* @package injective.insurance.v1beta1
|
|
242
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
|
|
243
|
+
*/
|
|
216
244
|
exports.QueryInsuranceFundResponse = {
|
|
217
245
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundResponse",
|
|
218
246
|
is(o) {
|
|
@@ -286,6 +314,13 @@ exports.QueryInsuranceFundResponse = {
|
|
|
286
314
|
function createBaseQueryInsuranceFundsRequest() {
|
|
287
315
|
return {};
|
|
288
316
|
}
|
|
317
|
+
/**
|
|
318
|
+
* QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
|
|
319
|
+
* RPC method.
|
|
320
|
+
* @name QueryInsuranceFundsRequest
|
|
321
|
+
* @package injective.insurance.v1beta1
|
|
322
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
|
|
323
|
+
*/
|
|
289
324
|
exports.QueryInsuranceFundsRequest = {
|
|
290
325
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundsRequest",
|
|
291
326
|
is(o) {
|
|
@@ -345,6 +380,13 @@ function createBaseQueryInsuranceFundsResponse() {
|
|
|
345
380
|
funds: []
|
|
346
381
|
};
|
|
347
382
|
}
|
|
383
|
+
/**
|
|
384
|
+
* QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
|
|
385
|
+
* RPC method.
|
|
386
|
+
* @name QueryInsuranceFundsResponse
|
|
387
|
+
* @package injective.insurance.v1beta1
|
|
388
|
+
* @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
|
|
389
|
+
*/
|
|
348
390
|
exports.QueryInsuranceFundsResponse = {
|
|
349
391
|
typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundsResponse",
|
|
350
392
|
is(o) {
|
|
@@ -424,6 +466,13 @@ function createBaseQueryEstimatedRedemptionsRequest() {
|
|
|
424
466
|
address: ""
|
|
425
467
|
};
|
|
426
468
|
}
|
|
469
|
+
/**
|
|
470
|
+
* QueryEstimatedRedemptionsRequest is the request type for the
|
|
471
|
+
* Query/EstimatedRedemptions RPC method.
|
|
472
|
+
* @name QueryEstimatedRedemptionsRequest
|
|
473
|
+
* @package injective.insurance.v1beta1
|
|
474
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
|
|
475
|
+
*/
|
|
427
476
|
exports.QueryEstimatedRedemptionsRequest = {
|
|
428
477
|
typeUrl: "/injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest",
|
|
429
478
|
is(o) {
|
|
@@ -505,6 +554,13 @@ function createBaseQueryEstimatedRedemptionsResponse() {
|
|
|
505
554
|
amount: []
|
|
506
555
|
};
|
|
507
556
|
}
|
|
557
|
+
/**
|
|
558
|
+
* QueryEstimatedRedemptionsResponse is the response type for the
|
|
559
|
+
* Query/EstimatedRedemptions RPC method.
|
|
560
|
+
* @name QueryEstimatedRedemptionsResponse
|
|
561
|
+
* @package injective.insurance.v1beta1
|
|
562
|
+
* @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
|
|
563
|
+
*/
|
|
508
564
|
exports.QueryEstimatedRedemptionsResponse = {
|
|
509
565
|
typeUrl: "/injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse",
|
|
510
566
|
is(o) {
|
|
@@ -584,6 +640,13 @@ function createBaseQueryPendingRedemptionsRequest() {
|
|
|
584
640
|
address: ""
|
|
585
641
|
};
|
|
586
642
|
}
|
|
643
|
+
/**
|
|
644
|
+
* QueryPendingRedemptionsRequest is the request type for the
|
|
645
|
+
* Query/PendingRedemptions RPC method.
|
|
646
|
+
* @name QueryPendingRedemptionsRequest
|
|
647
|
+
* @package injective.insurance.v1beta1
|
|
648
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
|
|
649
|
+
*/
|
|
587
650
|
exports.QueryPendingRedemptionsRequest = {
|
|
588
651
|
typeUrl: "/injective.insurance.v1beta1.QueryPendingRedemptionsRequest",
|
|
589
652
|
is(o) {
|
|
@@ -665,6 +728,13 @@ function createBaseQueryPendingRedemptionsResponse() {
|
|
|
665
728
|
amount: []
|
|
666
729
|
};
|
|
667
730
|
}
|
|
731
|
+
/**
|
|
732
|
+
* QueryPendingRedemptionsResponse is the response type for the
|
|
733
|
+
* Query/PendingRedemptions RPC method.
|
|
734
|
+
* @name QueryPendingRedemptionsResponse
|
|
735
|
+
* @package injective.insurance.v1beta1
|
|
736
|
+
* @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
|
|
737
|
+
*/
|
|
668
738
|
exports.QueryPendingRedemptionsResponse = {
|
|
669
739
|
typeUrl: "/injective.insurance.v1beta1.QueryPendingRedemptionsResponse",
|
|
670
740
|
is(o) {
|
|
@@ -741,6 +811,13 @@ exports.QueryPendingRedemptionsResponse = {
|
|
|
741
811
|
function createBaseQueryModuleStateRequest() {
|
|
742
812
|
return {};
|
|
743
813
|
}
|
|
814
|
+
/**
|
|
815
|
+
* QueryModuleStateRequest is the request type for the
|
|
816
|
+
* Query/InsuranceModuleState RPC method.
|
|
817
|
+
* @name QueryModuleStateRequest
|
|
818
|
+
* @package injective.insurance.v1beta1
|
|
819
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
|
|
820
|
+
*/
|
|
744
821
|
exports.QueryModuleStateRequest = {
|
|
745
822
|
typeUrl: "/injective.insurance.v1beta1.QueryModuleStateRequest",
|
|
746
823
|
is(o) {
|
|
@@ -800,6 +877,13 @@ function createBaseQueryModuleStateResponse() {
|
|
|
800
877
|
state: undefined
|
|
801
878
|
};
|
|
802
879
|
}
|
|
880
|
+
/**
|
|
881
|
+
* QueryModuleStateResponse is the response type for the
|
|
882
|
+
* Query/InsuranceModuleState RPC method.
|
|
883
|
+
* @name QueryModuleStateResponse
|
|
884
|
+
* @package injective.insurance.v1beta1
|
|
885
|
+
* @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
|
|
886
|
+
*/
|
|
803
887
|
exports.QueryModuleStateResponse = {
|
|
804
888
|
typeUrl: "/injective.insurance.v1beta1.QueryModuleStateResponse",
|
|
805
889
|
is(o) {
|
|
@@ -1,7 +1,44 @@
|
|
|
1
1
|
import { QueryInsuranceParamsRequest, QueryInsuranceParamsResponse, QueryInsuranceFundRequest, QueryInsuranceFundResponse, QueryInsuranceFundsRequest, QueryInsuranceFundsResponse, QueryEstimatedRedemptionsRequest, QueryEstimatedRedemptionsResponse, QueryPendingRedemptionsRequest, QueryPendingRedemptionsResponse, QueryModuleStateRequest, QueryModuleStateResponse } from "./query";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves insurance params
|
|
4
|
+
* @name getInsuranceParams
|
|
5
|
+
* @package injective.insurance.v1beta1
|
|
6
|
+
* @see proto service: injective.insurance.v1beta1.InsuranceParams
|
|
7
|
+
*/
|
|
2
8
|
export declare const getInsuranceParams: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryInsuranceParamsRequest) => Promise<QueryInsuranceParamsResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* Retrieves individual insurance fund information from market id
|
|
11
|
+
* @name getInsuranceFund
|
|
12
|
+
* @package injective.insurance.v1beta1
|
|
13
|
+
* @see proto service: injective.insurance.v1beta1.InsuranceFund
|
|
14
|
+
*/
|
|
3
15
|
export declare const getInsuranceFund: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryInsuranceFundRequest) => Promise<QueryInsuranceFundResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Retrieves all insurance funds
|
|
18
|
+
* @name getInsuranceFunds
|
|
19
|
+
* @package injective.insurance.v1beta1
|
|
20
|
+
* @see proto service: injective.insurance.v1beta1.InsuranceFunds
|
|
21
|
+
*/
|
|
4
22
|
export declare const getInsuranceFunds: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryInsuranceFundsRequest) => Promise<QueryInsuranceFundsResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* Retrives the value of insurance fund share token at current price (not
|
|
25
|
+
* pending redemption)
|
|
26
|
+
* @name getEstimatedRedemptions
|
|
27
|
+
* @package injective.insurance.v1beta1
|
|
28
|
+
* @see proto service: injective.insurance.v1beta1.EstimatedRedemptions
|
|
29
|
+
*/
|
|
5
30
|
export declare const getEstimatedRedemptions: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryEstimatedRedemptionsRequest) => Promise<QueryEstimatedRedemptionsResponse>;
|
|
31
|
+
/**
|
|
32
|
+
* Retrieves pending redemptions' share token at current price
|
|
33
|
+
* @name getPendingRedemptions
|
|
34
|
+
* @package injective.insurance.v1beta1
|
|
35
|
+
* @see proto service: injective.insurance.v1beta1.PendingRedemptions
|
|
36
|
+
*/
|
|
6
37
|
export declare const getPendingRedemptions: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryPendingRedemptionsRequest) => Promise<QueryPendingRedemptionsResponse>;
|
|
38
|
+
/**
|
|
39
|
+
* Retrieves the entire insurance module's state
|
|
40
|
+
* @name getInsuranceModuleState
|
|
41
|
+
* @package injective.insurance.v1beta1
|
|
42
|
+
* @see proto service: injective.insurance.v1beta1.InsuranceModuleState
|
|
43
|
+
*/
|
|
7
44
|
export declare const getInsuranceModuleState: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryModuleStateRequest) => Promise<QueryModuleStateResponse>;
|