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
|
@@ -2,6 +2,11 @@ import { OracleType, OracleInfo, OracleInfoAmino, PythPriceState, PythPriceState
|
|
|
2
2
|
import { GenesisState, GenesisStateAmino } from "./genesis";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../helpers";
|
|
5
|
+
/**
|
|
6
|
+
* @name QueryPythPriceRequest
|
|
7
|
+
* @package injective.oracle.v1beta1
|
|
8
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceRequest
|
|
9
|
+
*/
|
|
5
10
|
export interface QueryPythPriceRequest {
|
|
6
11
|
priceId: string;
|
|
7
12
|
}
|
|
@@ -9,6 +14,11 @@ export interface QueryPythPriceRequestProtoMsg {
|
|
|
9
14
|
typeUrl: "/injective.oracle.v1beta1.QueryPythPriceRequest";
|
|
10
15
|
value: Uint8Array;
|
|
11
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* @name QueryPythPriceRequestAmino
|
|
19
|
+
* @package injective.oracle.v1beta1
|
|
20
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceRequest
|
|
21
|
+
*/
|
|
12
22
|
export interface QueryPythPriceRequestAmino {
|
|
13
23
|
price_id: string;
|
|
14
24
|
}
|
|
@@ -16,6 +26,11 @@ export interface QueryPythPriceRequestAminoMsg {
|
|
|
16
26
|
type: "/injective.oracle.v1beta1.QueryPythPriceRequest";
|
|
17
27
|
value: QueryPythPriceRequestAmino;
|
|
18
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* @name QueryPythPriceResponse
|
|
31
|
+
* @package injective.oracle.v1beta1
|
|
32
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceResponse
|
|
33
|
+
*/
|
|
19
34
|
export interface QueryPythPriceResponse {
|
|
20
35
|
priceState?: PythPriceState;
|
|
21
36
|
}
|
|
@@ -23,6 +38,11 @@ export interface QueryPythPriceResponseProtoMsg {
|
|
|
23
38
|
typeUrl: "/injective.oracle.v1beta1.QueryPythPriceResponse";
|
|
24
39
|
value: Uint8Array;
|
|
25
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* @name QueryPythPriceResponseAmino
|
|
43
|
+
* @package injective.oracle.v1beta1
|
|
44
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceResponse
|
|
45
|
+
*/
|
|
26
46
|
export interface QueryPythPriceResponseAmino {
|
|
27
47
|
price_state?: PythPriceStateAmino;
|
|
28
48
|
}
|
|
@@ -33,6 +53,9 @@ export interface QueryPythPriceResponseAminoMsg {
|
|
|
33
53
|
/**
|
|
34
54
|
* QueryOracleParamsRequest is the request type for the Query/OracleParams RPC
|
|
35
55
|
* method.
|
|
56
|
+
* @name QueryParamsRequest
|
|
57
|
+
* @package injective.oracle.v1beta1
|
|
58
|
+
* @see proto type: injective.oracle.v1beta1.QueryParamsRequest
|
|
36
59
|
*/
|
|
37
60
|
export interface QueryParamsRequest {
|
|
38
61
|
}
|
|
@@ -43,6 +66,9 @@ export interface QueryParamsRequestProtoMsg {
|
|
|
43
66
|
/**
|
|
44
67
|
* QueryOracleParamsRequest is the request type for the Query/OracleParams RPC
|
|
45
68
|
* method.
|
|
69
|
+
* @name QueryParamsRequestAmino
|
|
70
|
+
* @package injective.oracle.v1beta1
|
|
71
|
+
* @see proto type: injective.oracle.v1beta1.QueryParamsRequest
|
|
46
72
|
*/
|
|
47
73
|
export interface QueryParamsRequestAmino {
|
|
48
74
|
}
|
|
@@ -53,6 +79,9 @@ export interface QueryParamsRequestAminoMsg {
|
|
|
53
79
|
/**
|
|
54
80
|
* QueryOracleParamsResponse is the response type for the Query/OracleParams RPC
|
|
55
81
|
* method.
|
|
82
|
+
* @name QueryParamsResponse
|
|
83
|
+
* @package injective.oracle.v1beta1
|
|
84
|
+
* @see proto type: injective.oracle.v1beta1.QueryParamsResponse
|
|
56
85
|
*/
|
|
57
86
|
export interface QueryParamsResponse {
|
|
58
87
|
params: Params;
|
|
@@ -64,6 +93,9 @@ export interface QueryParamsResponseProtoMsg {
|
|
|
64
93
|
/**
|
|
65
94
|
* QueryOracleParamsResponse is the response type for the Query/OracleParams RPC
|
|
66
95
|
* method.
|
|
96
|
+
* @name QueryParamsResponseAmino
|
|
97
|
+
* @package injective.oracle.v1beta1
|
|
98
|
+
* @see proto type: injective.oracle.v1beta1.QueryParamsResponse
|
|
67
99
|
*/
|
|
68
100
|
export interface QueryParamsResponseAmino {
|
|
69
101
|
params: ParamsAmino;
|
|
@@ -75,6 +107,9 @@ export interface QueryParamsResponseAminoMsg {
|
|
|
75
107
|
/**
|
|
76
108
|
* QueryBandRelayersRequest is the request type for the Query/BandRelayers RPC
|
|
77
109
|
* method.
|
|
110
|
+
* @name QueryBandRelayersRequest
|
|
111
|
+
* @package injective.oracle.v1beta1
|
|
112
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandRelayersRequest
|
|
78
113
|
*/
|
|
79
114
|
export interface QueryBandRelayersRequest {
|
|
80
115
|
}
|
|
@@ -85,6 +120,9 @@ export interface QueryBandRelayersRequestProtoMsg {
|
|
|
85
120
|
/**
|
|
86
121
|
* QueryBandRelayersRequest is the request type for the Query/BandRelayers RPC
|
|
87
122
|
* method.
|
|
123
|
+
* @name QueryBandRelayersRequestAmino
|
|
124
|
+
* @package injective.oracle.v1beta1
|
|
125
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandRelayersRequest
|
|
88
126
|
*/
|
|
89
127
|
export interface QueryBandRelayersRequestAmino {
|
|
90
128
|
}
|
|
@@ -95,6 +133,9 @@ export interface QueryBandRelayersRequestAminoMsg {
|
|
|
95
133
|
/**
|
|
96
134
|
* QueryBandRelayersResponse is the response type for the Query/BandRelayers RPC
|
|
97
135
|
* method.
|
|
136
|
+
* @name QueryBandRelayersResponse
|
|
137
|
+
* @package injective.oracle.v1beta1
|
|
138
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandRelayersResponse
|
|
98
139
|
*/
|
|
99
140
|
export interface QueryBandRelayersResponse {
|
|
100
141
|
relayers: string[];
|
|
@@ -106,6 +147,9 @@ export interface QueryBandRelayersResponseProtoMsg {
|
|
|
106
147
|
/**
|
|
107
148
|
* QueryBandRelayersResponse is the response type for the Query/BandRelayers RPC
|
|
108
149
|
* method.
|
|
150
|
+
* @name QueryBandRelayersResponseAmino
|
|
151
|
+
* @package injective.oracle.v1beta1
|
|
152
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandRelayersResponse
|
|
109
153
|
*/
|
|
110
154
|
export interface QueryBandRelayersResponseAmino {
|
|
111
155
|
relayers: string[];
|
|
@@ -117,6 +161,9 @@ export interface QueryBandRelayersResponseAminoMsg {
|
|
|
117
161
|
/**
|
|
118
162
|
* QueryBandPriceStatesRequest is the request type for the Query/BandPriceStates
|
|
119
163
|
* RPC method.
|
|
164
|
+
* @name QueryBandPriceStatesRequest
|
|
165
|
+
* @package injective.oracle.v1beta1
|
|
166
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandPriceStatesRequest
|
|
120
167
|
*/
|
|
121
168
|
export interface QueryBandPriceStatesRequest {
|
|
122
169
|
}
|
|
@@ -127,6 +174,9 @@ export interface QueryBandPriceStatesRequestProtoMsg {
|
|
|
127
174
|
/**
|
|
128
175
|
* QueryBandPriceStatesRequest is the request type for the Query/BandPriceStates
|
|
129
176
|
* RPC method.
|
|
177
|
+
* @name QueryBandPriceStatesRequestAmino
|
|
178
|
+
* @package injective.oracle.v1beta1
|
|
179
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandPriceStatesRequest
|
|
130
180
|
*/
|
|
131
181
|
export interface QueryBandPriceStatesRequestAmino {
|
|
132
182
|
}
|
|
@@ -137,6 +187,9 @@ export interface QueryBandPriceStatesRequestAminoMsg {
|
|
|
137
187
|
/**
|
|
138
188
|
* QueryBandPriceStatesResponse is the response type for the
|
|
139
189
|
* Query/BandPriceStates RPC method.
|
|
190
|
+
* @name QueryBandPriceStatesResponse
|
|
191
|
+
* @package injective.oracle.v1beta1
|
|
192
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandPriceStatesResponse
|
|
140
193
|
*/
|
|
141
194
|
export interface QueryBandPriceStatesResponse {
|
|
142
195
|
priceStates: BandPriceState[];
|
|
@@ -148,6 +201,9 @@ export interface QueryBandPriceStatesResponseProtoMsg {
|
|
|
148
201
|
/**
|
|
149
202
|
* QueryBandPriceStatesResponse is the response type for the
|
|
150
203
|
* Query/BandPriceStates RPC method.
|
|
204
|
+
* @name QueryBandPriceStatesResponseAmino
|
|
205
|
+
* @package injective.oracle.v1beta1
|
|
206
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandPriceStatesResponse
|
|
151
207
|
*/
|
|
152
208
|
export interface QueryBandPriceStatesResponseAmino {
|
|
153
209
|
price_states: BandPriceStateAmino[];
|
|
@@ -159,6 +215,9 @@ export interface QueryBandPriceStatesResponseAminoMsg {
|
|
|
159
215
|
/**
|
|
160
216
|
* QueryBandIBCPriceStatesRequest is the request type for the
|
|
161
217
|
* Query/BandIBCPriceStates RPC method.
|
|
218
|
+
* @name QueryBandIBCPriceStatesRequest
|
|
219
|
+
* @package injective.oracle.v1beta1
|
|
220
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandIBCPriceStatesRequest
|
|
162
221
|
*/
|
|
163
222
|
export interface QueryBandIBCPriceStatesRequest {
|
|
164
223
|
}
|
|
@@ -169,6 +228,9 @@ export interface QueryBandIBCPriceStatesRequestProtoMsg {
|
|
|
169
228
|
/**
|
|
170
229
|
* QueryBandIBCPriceStatesRequest is the request type for the
|
|
171
230
|
* Query/BandIBCPriceStates RPC method.
|
|
231
|
+
* @name QueryBandIBCPriceStatesRequestAmino
|
|
232
|
+
* @package injective.oracle.v1beta1
|
|
233
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandIBCPriceStatesRequest
|
|
172
234
|
*/
|
|
173
235
|
export interface QueryBandIBCPriceStatesRequestAmino {
|
|
174
236
|
}
|
|
@@ -179,6 +241,9 @@ export interface QueryBandIBCPriceStatesRequestAminoMsg {
|
|
|
179
241
|
/**
|
|
180
242
|
* QueryBandIBCPriceStatesResponse is the response type for the
|
|
181
243
|
* Query/BandIBCPriceStates RPC method.
|
|
244
|
+
* @name QueryBandIBCPriceStatesResponse
|
|
245
|
+
* @package injective.oracle.v1beta1
|
|
246
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandIBCPriceStatesResponse
|
|
182
247
|
*/
|
|
183
248
|
export interface QueryBandIBCPriceStatesResponse {
|
|
184
249
|
priceStates: BandPriceState[];
|
|
@@ -190,6 +255,9 @@ export interface QueryBandIBCPriceStatesResponseProtoMsg {
|
|
|
190
255
|
/**
|
|
191
256
|
* QueryBandIBCPriceStatesResponse is the response type for the
|
|
192
257
|
* Query/BandIBCPriceStates RPC method.
|
|
258
|
+
* @name QueryBandIBCPriceStatesResponseAmino
|
|
259
|
+
* @package injective.oracle.v1beta1
|
|
260
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandIBCPriceStatesResponse
|
|
193
261
|
*/
|
|
194
262
|
export interface QueryBandIBCPriceStatesResponseAmino {
|
|
195
263
|
price_states: BandPriceStateAmino[];
|
|
@@ -201,6 +269,9 @@ export interface QueryBandIBCPriceStatesResponseAminoMsg {
|
|
|
201
269
|
/**
|
|
202
270
|
* QueryPriceFeedPriceStatesRequest is the request type for the
|
|
203
271
|
* Query/PriceFeedPriceStates RPC method.
|
|
272
|
+
* @name QueryPriceFeedPriceStatesRequest
|
|
273
|
+
* @package injective.oracle.v1beta1
|
|
274
|
+
* @see proto type: injective.oracle.v1beta1.QueryPriceFeedPriceStatesRequest
|
|
204
275
|
*/
|
|
205
276
|
export interface QueryPriceFeedPriceStatesRequest {
|
|
206
277
|
}
|
|
@@ -211,6 +282,9 @@ export interface QueryPriceFeedPriceStatesRequestProtoMsg {
|
|
|
211
282
|
/**
|
|
212
283
|
* QueryPriceFeedPriceStatesRequest is the request type for the
|
|
213
284
|
* Query/PriceFeedPriceStates RPC method.
|
|
285
|
+
* @name QueryPriceFeedPriceStatesRequestAmino
|
|
286
|
+
* @package injective.oracle.v1beta1
|
|
287
|
+
* @see proto type: injective.oracle.v1beta1.QueryPriceFeedPriceStatesRequest
|
|
214
288
|
*/
|
|
215
289
|
export interface QueryPriceFeedPriceStatesRequestAmino {
|
|
216
290
|
}
|
|
@@ -221,6 +295,9 @@ export interface QueryPriceFeedPriceStatesRequestAminoMsg {
|
|
|
221
295
|
/**
|
|
222
296
|
* QueryPriceFeedPriceStatesResponse is the response type for the
|
|
223
297
|
* Query/PriceFeedPriceStates RPC method.
|
|
298
|
+
* @name QueryPriceFeedPriceStatesResponse
|
|
299
|
+
* @package injective.oracle.v1beta1
|
|
300
|
+
* @see proto type: injective.oracle.v1beta1.QueryPriceFeedPriceStatesResponse
|
|
224
301
|
*/
|
|
225
302
|
export interface QueryPriceFeedPriceStatesResponse {
|
|
226
303
|
priceStates: PriceFeedState[];
|
|
@@ -232,6 +309,9 @@ export interface QueryPriceFeedPriceStatesResponseProtoMsg {
|
|
|
232
309
|
/**
|
|
233
310
|
* QueryPriceFeedPriceStatesResponse is the response type for the
|
|
234
311
|
* Query/PriceFeedPriceStates RPC method.
|
|
312
|
+
* @name QueryPriceFeedPriceStatesResponseAmino
|
|
313
|
+
* @package injective.oracle.v1beta1
|
|
314
|
+
* @see proto type: injective.oracle.v1beta1.QueryPriceFeedPriceStatesResponse
|
|
235
315
|
*/
|
|
236
316
|
export interface QueryPriceFeedPriceStatesResponseAmino {
|
|
237
317
|
price_states: PriceFeedStateAmino[];
|
|
@@ -243,6 +323,9 @@ export interface QueryPriceFeedPriceStatesResponseAminoMsg {
|
|
|
243
323
|
/**
|
|
244
324
|
* QueryCoinbasePriceStatesRequest is the request type for the
|
|
245
325
|
* Query/CoinbasePriceStates RPC method.
|
|
326
|
+
* @name QueryCoinbasePriceStatesRequest
|
|
327
|
+
* @package injective.oracle.v1beta1
|
|
328
|
+
* @see proto type: injective.oracle.v1beta1.QueryCoinbasePriceStatesRequest
|
|
246
329
|
*/
|
|
247
330
|
export interface QueryCoinbasePriceStatesRequest {
|
|
248
331
|
}
|
|
@@ -253,6 +336,9 @@ export interface QueryCoinbasePriceStatesRequestProtoMsg {
|
|
|
253
336
|
/**
|
|
254
337
|
* QueryCoinbasePriceStatesRequest is the request type for the
|
|
255
338
|
* Query/CoinbasePriceStates RPC method.
|
|
339
|
+
* @name QueryCoinbasePriceStatesRequestAmino
|
|
340
|
+
* @package injective.oracle.v1beta1
|
|
341
|
+
* @see proto type: injective.oracle.v1beta1.QueryCoinbasePriceStatesRequest
|
|
256
342
|
*/
|
|
257
343
|
export interface QueryCoinbasePriceStatesRequestAmino {
|
|
258
344
|
}
|
|
@@ -263,6 +349,9 @@ export interface QueryCoinbasePriceStatesRequestAminoMsg {
|
|
|
263
349
|
/**
|
|
264
350
|
* QueryCoinbasePriceStatesResponse is the response type for the
|
|
265
351
|
* Query/CoinbasePriceStates RPC method.
|
|
352
|
+
* @name QueryCoinbasePriceStatesResponse
|
|
353
|
+
* @package injective.oracle.v1beta1
|
|
354
|
+
* @see proto type: injective.oracle.v1beta1.QueryCoinbasePriceStatesResponse
|
|
266
355
|
*/
|
|
267
356
|
export interface QueryCoinbasePriceStatesResponse {
|
|
268
357
|
priceStates: CoinbasePriceState[];
|
|
@@ -274,6 +363,9 @@ export interface QueryCoinbasePriceStatesResponseProtoMsg {
|
|
|
274
363
|
/**
|
|
275
364
|
* QueryCoinbasePriceStatesResponse is the response type for the
|
|
276
365
|
* Query/CoinbasePriceStates RPC method.
|
|
366
|
+
* @name QueryCoinbasePriceStatesResponseAmino
|
|
367
|
+
* @package injective.oracle.v1beta1
|
|
368
|
+
* @see proto type: injective.oracle.v1beta1.QueryCoinbasePriceStatesResponse
|
|
277
369
|
*/
|
|
278
370
|
export interface QueryCoinbasePriceStatesResponseAmino {
|
|
279
371
|
price_states: CoinbasePriceStateAmino[];
|
|
@@ -285,6 +377,9 @@ export interface QueryCoinbasePriceStatesResponseAminoMsg {
|
|
|
285
377
|
/**
|
|
286
378
|
* QueryPythPriceStatesRequest is the request type for the
|
|
287
379
|
* Query/CoinbasePriceStates RPC method.
|
|
380
|
+
* @name QueryPythPriceStatesRequest
|
|
381
|
+
* @package injective.oracle.v1beta1
|
|
382
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceStatesRequest
|
|
288
383
|
*/
|
|
289
384
|
export interface QueryPythPriceStatesRequest {
|
|
290
385
|
}
|
|
@@ -295,6 +390,9 @@ export interface QueryPythPriceStatesRequestProtoMsg {
|
|
|
295
390
|
/**
|
|
296
391
|
* QueryPythPriceStatesRequest is the request type for the
|
|
297
392
|
* Query/CoinbasePriceStates RPC method.
|
|
393
|
+
* @name QueryPythPriceStatesRequestAmino
|
|
394
|
+
* @package injective.oracle.v1beta1
|
|
395
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceStatesRequest
|
|
298
396
|
*/
|
|
299
397
|
export interface QueryPythPriceStatesRequestAmino {
|
|
300
398
|
}
|
|
@@ -305,6 +403,9 @@ export interface QueryPythPriceStatesRequestAminoMsg {
|
|
|
305
403
|
/**
|
|
306
404
|
* QueryPythPriceStatesResponse is the response type for the
|
|
307
405
|
* Query/CoinbasePriceStates RPC method.
|
|
406
|
+
* @name QueryPythPriceStatesResponse
|
|
407
|
+
* @package injective.oracle.v1beta1
|
|
408
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceStatesResponse
|
|
308
409
|
*/
|
|
309
410
|
export interface QueryPythPriceStatesResponse {
|
|
310
411
|
priceStates: PythPriceState[];
|
|
@@ -316,6 +417,9 @@ export interface QueryPythPriceStatesResponseProtoMsg {
|
|
|
316
417
|
/**
|
|
317
418
|
* QueryPythPriceStatesResponse is the response type for the
|
|
318
419
|
* Query/CoinbasePriceStates RPC method.
|
|
420
|
+
* @name QueryPythPriceStatesResponseAmino
|
|
421
|
+
* @package injective.oracle.v1beta1
|
|
422
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceStatesResponse
|
|
319
423
|
*/
|
|
320
424
|
export interface QueryPythPriceStatesResponseAmino {
|
|
321
425
|
price_states: PythPriceStateAmino[];
|
|
@@ -327,6 +431,9 @@ export interface QueryPythPriceStatesResponseAminoMsg {
|
|
|
327
431
|
/**
|
|
328
432
|
* QueryStorkPriceStatesRequest is the request type for the
|
|
329
433
|
* Query/StorkPriceStates RPC method.
|
|
434
|
+
* @name QueryStorkPriceStatesRequest
|
|
435
|
+
* @package injective.oracle.v1beta1
|
|
436
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPriceStatesRequest
|
|
330
437
|
*/
|
|
331
438
|
export interface QueryStorkPriceStatesRequest {
|
|
332
439
|
}
|
|
@@ -337,6 +444,9 @@ export interface QueryStorkPriceStatesRequestProtoMsg {
|
|
|
337
444
|
/**
|
|
338
445
|
* QueryStorkPriceStatesRequest is the request type for the
|
|
339
446
|
* Query/StorkPriceStates RPC method.
|
|
447
|
+
* @name QueryStorkPriceStatesRequestAmino
|
|
448
|
+
* @package injective.oracle.v1beta1
|
|
449
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPriceStatesRequest
|
|
340
450
|
*/
|
|
341
451
|
export interface QueryStorkPriceStatesRequestAmino {
|
|
342
452
|
}
|
|
@@ -347,6 +457,9 @@ export interface QueryStorkPriceStatesRequestAminoMsg {
|
|
|
347
457
|
/**
|
|
348
458
|
* QueryStorkPriceStatesResponse is the response type for the
|
|
349
459
|
* Query/StorkPriceStates RPC method.
|
|
460
|
+
* @name QueryStorkPriceStatesResponse
|
|
461
|
+
* @package injective.oracle.v1beta1
|
|
462
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPriceStatesResponse
|
|
350
463
|
*/
|
|
351
464
|
export interface QueryStorkPriceStatesResponse {
|
|
352
465
|
priceStates: StorkPriceState[];
|
|
@@ -358,6 +471,9 @@ export interface QueryStorkPriceStatesResponseProtoMsg {
|
|
|
358
471
|
/**
|
|
359
472
|
* QueryStorkPriceStatesResponse is the response type for the
|
|
360
473
|
* Query/StorkPriceStates RPC method.
|
|
474
|
+
* @name QueryStorkPriceStatesResponseAmino
|
|
475
|
+
* @package injective.oracle.v1beta1
|
|
476
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPriceStatesResponse
|
|
361
477
|
*/
|
|
362
478
|
export interface QueryStorkPriceStatesResponseAmino {
|
|
363
479
|
price_states: StorkPriceStateAmino[];
|
|
@@ -369,6 +485,9 @@ export interface QueryStorkPriceStatesResponseAminoMsg {
|
|
|
369
485
|
/**
|
|
370
486
|
* QueryStorkPublishersRequest is the request type for the
|
|
371
487
|
* Query/StorkPublishers RPC method.
|
|
488
|
+
* @name QueryStorkPublishersRequest
|
|
489
|
+
* @package injective.oracle.v1beta1
|
|
490
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPublishersRequest
|
|
372
491
|
*/
|
|
373
492
|
export interface QueryStorkPublishersRequest {
|
|
374
493
|
}
|
|
@@ -379,6 +498,9 @@ export interface QueryStorkPublishersRequestProtoMsg {
|
|
|
379
498
|
/**
|
|
380
499
|
* QueryStorkPublishersRequest is the request type for the
|
|
381
500
|
* Query/StorkPublishers RPC method.
|
|
501
|
+
* @name QueryStorkPublishersRequestAmino
|
|
502
|
+
* @package injective.oracle.v1beta1
|
|
503
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPublishersRequest
|
|
382
504
|
*/
|
|
383
505
|
export interface QueryStorkPublishersRequestAmino {
|
|
384
506
|
}
|
|
@@ -389,6 +511,9 @@ export interface QueryStorkPublishersRequestAminoMsg {
|
|
|
389
511
|
/**
|
|
390
512
|
* QueryStorkPublishersResponse is the response type for the
|
|
391
513
|
* Query/StorkPublishers RPC method.
|
|
514
|
+
* @name QueryStorkPublishersResponse
|
|
515
|
+
* @package injective.oracle.v1beta1
|
|
516
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPublishersResponse
|
|
392
517
|
*/
|
|
393
518
|
export interface QueryStorkPublishersResponse {
|
|
394
519
|
publishers: string[];
|
|
@@ -400,6 +525,9 @@ export interface QueryStorkPublishersResponseProtoMsg {
|
|
|
400
525
|
/**
|
|
401
526
|
* QueryStorkPublishersResponse is the response type for the
|
|
402
527
|
* Query/StorkPublishers RPC method.
|
|
528
|
+
* @name QueryStorkPublishersResponseAmino
|
|
529
|
+
* @package injective.oracle.v1beta1
|
|
530
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPublishersResponse
|
|
403
531
|
*/
|
|
404
532
|
export interface QueryStorkPublishersResponseAmino {
|
|
405
533
|
publishers: string[];
|
|
@@ -411,6 +539,9 @@ export interface QueryStorkPublishersResponseAminoMsg {
|
|
|
411
539
|
/**
|
|
412
540
|
* QueryProviderPriceStateRequest is the request type for the
|
|
413
541
|
* Query/ProviderPriceState RPC method.
|
|
542
|
+
* @name QueryProviderPriceStateRequest
|
|
543
|
+
* @package injective.oracle.v1beta1
|
|
544
|
+
* @see proto type: injective.oracle.v1beta1.QueryProviderPriceStateRequest
|
|
414
545
|
*/
|
|
415
546
|
export interface QueryProviderPriceStateRequest {
|
|
416
547
|
provider: string;
|
|
@@ -423,6 +554,9 @@ export interface QueryProviderPriceStateRequestProtoMsg {
|
|
|
423
554
|
/**
|
|
424
555
|
* QueryProviderPriceStateRequest is the request type for the
|
|
425
556
|
* Query/ProviderPriceState RPC method.
|
|
557
|
+
* @name QueryProviderPriceStateRequestAmino
|
|
558
|
+
* @package injective.oracle.v1beta1
|
|
559
|
+
* @see proto type: injective.oracle.v1beta1.QueryProviderPriceStateRequest
|
|
426
560
|
*/
|
|
427
561
|
export interface QueryProviderPriceStateRequestAmino {
|
|
428
562
|
provider: string;
|
|
@@ -435,6 +569,9 @@ export interface QueryProviderPriceStateRequestAminoMsg {
|
|
|
435
569
|
/**
|
|
436
570
|
* QueryProviderPriceStatesResponse is the response type for the
|
|
437
571
|
* Query/ProviderPriceStates RPC method.
|
|
572
|
+
* @name QueryProviderPriceStateResponse
|
|
573
|
+
* @package injective.oracle.v1beta1
|
|
574
|
+
* @see proto type: injective.oracle.v1beta1.QueryProviderPriceStateResponse
|
|
438
575
|
*/
|
|
439
576
|
export interface QueryProviderPriceStateResponse {
|
|
440
577
|
priceState?: PriceState;
|
|
@@ -446,6 +583,9 @@ export interface QueryProviderPriceStateResponseProtoMsg {
|
|
|
446
583
|
/**
|
|
447
584
|
* QueryProviderPriceStatesResponse is the response type for the
|
|
448
585
|
* Query/ProviderPriceStates RPC method.
|
|
586
|
+
* @name QueryProviderPriceStateResponseAmino
|
|
587
|
+
* @package injective.oracle.v1beta1
|
|
588
|
+
* @see proto type: injective.oracle.v1beta1.QueryProviderPriceStateResponse
|
|
449
589
|
*/
|
|
450
590
|
export interface QueryProviderPriceStateResponseAmino {
|
|
451
591
|
price_state?: PriceStateAmino;
|
|
@@ -457,6 +597,9 @@ export interface QueryProviderPriceStateResponseAminoMsg {
|
|
|
457
597
|
/**
|
|
458
598
|
* QueryModuleStateRequest is the request type for the Query/OracleModuleState
|
|
459
599
|
* RPC method.
|
|
600
|
+
* @name QueryModuleStateRequest
|
|
601
|
+
* @package injective.oracle.v1beta1
|
|
602
|
+
* @see proto type: injective.oracle.v1beta1.QueryModuleStateRequest
|
|
460
603
|
*/
|
|
461
604
|
export interface QueryModuleStateRequest {
|
|
462
605
|
}
|
|
@@ -467,6 +610,9 @@ export interface QueryModuleStateRequestProtoMsg {
|
|
|
467
610
|
/**
|
|
468
611
|
* QueryModuleStateRequest is the request type for the Query/OracleModuleState
|
|
469
612
|
* RPC method.
|
|
613
|
+
* @name QueryModuleStateRequestAmino
|
|
614
|
+
* @package injective.oracle.v1beta1
|
|
615
|
+
* @see proto type: injective.oracle.v1beta1.QueryModuleStateRequest
|
|
470
616
|
*/
|
|
471
617
|
export interface QueryModuleStateRequestAmino {
|
|
472
618
|
}
|
|
@@ -477,6 +623,9 @@ export interface QueryModuleStateRequestAminoMsg {
|
|
|
477
623
|
/**
|
|
478
624
|
* QueryModuleStateResponse is the response type for the Query/OracleModuleState
|
|
479
625
|
* RPC method.
|
|
626
|
+
* @name QueryModuleStateResponse
|
|
627
|
+
* @package injective.oracle.v1beta1
|
|
628
|
+
* @see proto type: injective.oracle.v1beta1.QueryModuleStateResponse
|
|
480
629
|
*/
|
|
481
630
|
export interface QueryModuleStateResponse {
|
|
482
631
|
state?: GenesisState;
|
|
@@ -488,6 +637,9 @@ export interface QueryModuleStateResponseProtoMsg {
|
|
|
488
637
|
/**
|
|
489
638
|
* QueryModuleStateResponse is the response type for the Query/OracleModuleState
|
|
490
639
|
* RPC method.
|
|
640
|
+
* @name QueryModuleStateResponseAmino
|
|
641
|
+
* @package injective.oracle.v1beta1
|
|
642
|
+
* @see proto type: injective.oracle.v1beta1.QueryModuleStateResponse
|
|
491
643
|
*/
|
|
492
644
|
export interface QueryModuleStateResponseAmino {
|
|
493
645
|
state?: GenesisStateAmino;
|
|
@@ -496,6 +648,11 @@ export interface QueryModuleStateResponseAminoMsg {
|
|
|
496
648
|
type: "/injective.oracle.v1beta1.QueryModuleStateResponse";
|
|
497
649
|
value: QueryModuleStateResponseAmino;
|
|
498
650
|
}
|
|
651
|
+
/**
|
|
652
|
+
* @name QueryHistoricalPriceRecordsRequest
|
|
653
|
+
* @package injective.oracle.v1beta1
|
|
654
|
+
* @see proto type: injective.oracle.v1beta1.QueryHistoricalPriceRecordsRequest
|
|
655
|
+
*/
|
|
499
656
|
export interface QueryHistoricalPriceRecordsRequest {
|
|
500
657
|
oracle: OracleType;
|
|
501
658
|
symbolId: string;
|
|
@@ -504,6 +661,11 @@ export interface QueryHistoricalPriceRecordsRequestProtoMsg {
|
|
|
504
661
|
typeUrl: "/injective.oracle.v1beta1.QueryHistoricalPriceRecordsRequest";
|
|
505
662
|
value: Uint8Array;
|
|
506
663
|
}
|
|
664
|
+
/**
|
|
665
|
+
* @name QueryHistoricalPriceRecordsRequestAmino
|
|
666
|
+
* @package injective.oracle.v1beta1
|
|
667
|
+
* @see proto type: injective.oracle.v1beta1.QueryHistoricalPriceRecordsRequest
|
|
668
|
+
*/
|
|
507
669
|
export interface QueryHistoricalPriceRecordsRequestAmino {
|
|
508
670
|
oracle: OracleType;
|
|
509
671
|
symbol_id: string;
|
|
@@ -512,6 +674,11 @@ export interface QueryHistoricalPriceRecordsRequestAminoMsg {
|
|
|
512
674
|
type: "/injective.oracle.v1beta1.QueryHistoricalPriceRecordsRequest";
|
|
513
675
|
value: QueryHistoricalPriceRecordsRequestAmino;
|
|
514
676
|
}
|
|
677
|
+
/**
|
|
678
|
+
* @name QueryHistoricalPriceRecordsResponse
|
|
679
|
+
* @package injective.oracle.v1beta1
|
|
680
|
+
* @see proto type: injective.oracle.v1beta1.QueryHistoricalPriceRecordsResponse
|
|
681
|
+
*/
|
|
515
682
|
export interface QueryHistoricalPriceRecordsResponse {
|
|
516
683
|
priceRecords: PriceRecords[];
|
|
517
684
|
}
|
|
@@ -519,6 +686,11 @@ export interface QueryHistoricalPriceRecordsResponseProtoMsg {
|
|
|
519
686
|
typeUrl: "/injective.oracle.v1beta1.QueryHistoricalPriceRecordsResponse";
|
|
520
687
|
value: Uint8Array;
|
|
521
688
|
}
|
|
689
|
+
/**
|
|
690
|
+
* @name QueryHistoricalPriceRecordsResponseAmino
|
|
691
|
+
* @package injective.oracle.v1beta1
|
|
692
|
+
* @see proto type: injective.oracle.v1beta1.QueryHistoricalPriceRecordsResponse
|
|
693
|
+
*/
|
|
522
694
|
export interface QueryHistoricalPriceRecordsResponseAmino {
|
|
523
695
|
price_records: PriceRecordsAmino[];
|
|
524
696
|
}
|
|
@@ -526,6 +698,11 @@ export interface QueryHistoricalPriceRecordsResponseAminoMsg {
|
|
|
526
698
|
type: "/injective.oracle.v1beta1.QueryHistoricalPriceRecordsResponse";
|
|
527
699
|
value: QueryHistoricalPriceRecordsResponseAmino;
|
|
528
700
|
}
|
|
701
|
+
/**
|
|
702
|
+
* @name OracleHistoryOptions
|
|
703
|
+
* @package injective.oracle.v1beta1
|
|
704
|
+
* @see proto type: injective.oracle.v1beta1.OracleHistoryOptions
|
|
705
|
+
*/
|
|
529
706
|
export interface OracleHistoryOptions {
|
|
530
707
|
/**
|
|
531
708
|
* MaxAge restricts the oracle price records oldest age in seconds from the
|
|
@@ -548,6 +725,11 @@ export interface OracleHistoryOptionsProtoMsg {
|
|
|
548
725
|
typeUrl: "/injective.oracle.v1beta1.OracleHistoryOptions";
|
|
549
726
|
value: Uint8Array;
|
|
550
727
|
}
|
|
728
|
+
/**
|
|
729
|
+
* @name OracleHistoryOptionsAmino
|
|
730
|
+
* @package injective.oracle.v1beta1
|
|
731
|
+
* @see proto type: injective.oracle.v1beta1.OracleHistoryOptions
|
|
732
|
+
*/
|
|
551
733
|
export interface OracleHistoryOptionsAmino {
|
|
552
734
|
/**
|
|
553
735
|
* MaxAge restricts the oracle price records oldest age in seconds from the
|
|
@@ -573,6 +755,9 @@ export interface OracleHistoryOptionsAminoMsg {
|
|
|
573
755
|
/**
|
|
574
756
|
* QueryOracleVolatilityRequest is the request type for Query/OracleVolatility
|
|
575
757
|
* RPC method.
|
|
758
|
+
* @name QueryOracleVolatilityRequest
|
|
759
|
+
* @package injective.oracle.v1beta1
|
|
760
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleVolatilityRequest
|
|
576
761
|
*/
|
|
577
762
|
export interface QueryOracleVolatilityRequest {
|
|
578
763
|
baseInfo?: OracleInfo;
|
|
@@ -586,6 +771,9 @@ export interface QueryOracleVolatilityRequestProtoMsg {
|
|
|
586
771
|
/**
|
|
587
772
|
* QueryOracleVolatilityRequest is the request type for Query/OracleVolatility
|
|
588
773
|
* RPC method.
|
|
774
|
+
* @name QueryOracleVolatilityRequestAmino
|
|
775
|
+
* @package injective.oracle.v1beta1
|
|
776
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleVolatilityRequest
|
|
589
777
|
*/
|
|
590
778
|
export interface QueryOracleVolatilityRequestAmino {
|
|
591
779
|
base_info?: OracleInfoAmino;
|
|
@@ -599,6 +787,9 @@ export interface QueryOracleVolatilityRequestAminoMsg {
|
|
|
599
787
|
/**
|
|
600
788
|
* QueryOracleVolatilityResponse is the response type for Query/OracleVolatility
|
|
601
789
|
* RPC method.
|
|
790
|
+
* @name QueryOracleVolatilityResponse
|
|
791
|
+
* @package injective.oracle.v1beta1
|
|
792
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleVolatilityResponse
|
|
602
793
|
*/
|
|
603
794
|
export interface QueryOracleVolatilityResponse {
|
|
604
795
|
volatility: string;
|
|
@@ -612,6 +803,9 @@ export interface QueryOracleVolatilityResponseProtoMsg {
|
|
|
612
803
|
/**
|
|
613
804
|
* QueryOracleVolatilityResponse is the response type for Query/OracleVolatility
|
|
614
805
|
* RPC method.
|
|
806
|
+
* @name QueryOracleVolatilityResponseAmino
|
|
807
|
+
* @package injective.oracle.v1beta1
|
|
808
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleVolatilityResponse
|
|
615
809
|
*/
|
|
616
810
|
export interface QueryOracleVolatilityResponseAmino {
|
|
617
811
|
volatility: string;
|
|
@@ -622,18 +816,33 @@ export interface QueryOracleVolatilityResponseAminoMsg {
|
|
|
622
816
|
type: "/injective.oracle.v1beta1.QueryOracleVolatilityResponse";
|
|
623
817
|
value: QueryOracleVolatilityResponseAmino;
|
|
624
818
|
}
|
|
819
|
+
/**
|
|
820
|
+
* @name QueryOracleProvidersInfoRequest
|
|
821
|
+
* @package injective.oracle.v1beta1
|
|
822
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProvidersInfoRequest
|
|
823
|
+
*/
|
|
625
824
|
export interface QueryOracleProvidersInfoRequest {
|
|
626
825
|
}
|
|
627
826
|
export interface QueryOracleProvidersInfoRequestProtoMsg {
|
|
628
827
|
typeUrl: "/injective.oracle.v1beta1.QueryOracleProvidersInfoRequest";
|
|
629
828
|
value: Uint8Array;
|
|
630
829
|
}
|
|
830
|
+
/**
|
|
831
|
+
* @name QueryOracleProvidersInfoRequestAmino
|
|
832
|
+
* @package injective.oracle.v1beta1
|
|
833
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProvidersInfoRequest
|
|
834
|
+
*/
|
|
631
835
|
export interface QueryOracleProvidersInfoRequestAmino {
|
|
632
836
|
}
|
|
633
837
|
export interface QueryOracleProvidersInfoRequestAminoMsg {
|
|
634
838
|
type: "/injective.oracle.v1beta1.QueryOracleProvidersInfoRequest";
|
|
635
839
|
value: QueryOracleProvidersInfoRequestAmino;
|
|
636
840
|
}
|
|
841
|
+
/**
|
|
842
|
+
* @name QueryOracleProvidersInfoResponse
|
|
843
|
+
* @package injective.oracle.v1beta1
|
|
844
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProvidersInfoResponse
|
|
845
|
+
*/
|
|
637
846
|
export interface QueryOracleProvidersInfoResponse {
|
|
638
847
|
providers: ProviderInfo[];
|
|
639
848
|
}
|
|
@@ -641,6 +850,11 @@ export interface QueryOracleProvidersInfoResponseProtoMsg {
|
|
|
641
850
|
typeUrl: "/injective.oracle.v1beta1.QueryOracleProvidersInfoResponse";
|
|
642
851
|
value: Uint8Array;
|
|
643
852
|
}
|
|
853
|
+
/**
|
|
854
|
+
* @name QueryOracleProvidersInfoResponseAmino
|
|
855
|
+
* @package injective.oracle.v1beta1
|
|
856
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProvidersInfoResponse
|
|
857
|
+
*/
|
|
644
858
|
export interface QueryOracleProvidersInfoResponseAmino {
|
|
645
859
|
providers: ProviderInfoAmino[];
|
|
646
860
|
}
|
|
@@ -648,6 +862,11 @@ export interface QueryOracleProvidersInfoResponseAminoMsg {
|
|
|
648
862
|
type: "/injective.oracle.v1beta1.QueryOracleProvidersInfoResponse";
|
|
649
863
|
value: QueryOracleProvidersInfoResponseAmino;
|
|
650
864
|
}
|
|
865
|
+
/**
|
|
866
|
+
* @name QueryOracleProviderPricesRequest
|
|
867
|
+
* @package injective.oracle.v1beta1
|
|
868
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProviderPricesRequest
|
|
869
|
+
*/
|
|
651
870
|
export interface QueryOracleProviderPricesRequest {
|
|
652
871
|
provider: string;
|
|
653
872
|
}
|
|
@@ -655,6 +874,11 @@ export interface QueryOracleProviderPricesRequestProtoMsg {
|
|
|
655
874
|
typeUrl: "/injective.oracle.v1beta1.QueryOracleProviderPricesRequest";
|
|
656
875
|
value: Uint8Array;
|
|
657
876
|
}
|
|
877
|
+
/**
|
|
878
|
+
* @name QueryOracleProviderPricesRequestAmino
|
|
879
|
+
* @package injective.oracle.v1beta1
|
|
880
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProviderPricesRequest
|
|
881
|
+
*/
|
|
658
882
|
export interface QueryOracleProviderPricesRequestAmino {
|
|
659
883
|
provider: string;
|
|
660
884
|
}
|
|
@@ -662,6 +886,11 @@ export interface QueryOracleProviderPricesRequestAminoMsg {
|
|
|
662
886
|
type: "/injective.oracle.v1beta1.QueryOracleProviderPricesRequest";
|
|
663
887
|
value: QueryOracleProviderPricesRequestAmino;
|
|
664
888
|
}
|
|
889
|
+
/**
|
|
890
|
+
* @name QueryOracleProviderPricesResponse
|
|
891
|
+
* @package injective.oracle.v1beta1
|
|
892
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProviderPricesResponse
|
|
893
|
+
*/
|
|
665
894
|
export interface QueryOracleProviderPricesResponse {
|
|
666
895
|
providerState: ProviderState[];
|
|
667
896
|
}
|
|
@@ -669,6 +898,11 @@ export interface QueryOracleProviderPricesResponseProtoMsg {
|
|
|
669
898
|
typeUrl: "/injective.oracle.v1beta1.QueryOracleProviderPricesResponse";
|
|
670
899
|
value: Uint8Array;
|
|
671
900
|
}
|
|
901
|
+
/**
|
|
902
|
+
* @name QueryOracleProviderPricesResponseAmino
|
|
903
|
+
* @package injective.oracle.v1beta1
|
|
904
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProviderPricesResponse
|
|
905
|
+
*/
|
|
672
906
|
export interface QueryOracleProviderPricesResponseAmino {
|
|
673
907
|
providerState: ProviderStateAmino[];
|
|
674
908
|
}
|
|
@@ -680,6 +914,9 @@ export interface QueryOracleProviderPricesResponseAminoMsg {
|
|
|
680
914
|
* ScalingOptions defines optional configuration to avoid precision loss. The
|
|
681
915
|
* oracle result will be returned as base_price * 10^base_decimals / quote_price
|
|
682
916
|
* * 10^quote_decimals
|
|
917
|
+
* @name ScalingOptions
|
|
918
|
+
* @package injective.oracle.v1beta1
|
|
919
|
+
* @see proto type: injective.oracle.v1beta1.ScalingOptions
|
|
683
920
|
*/
|
|
684
921
|
export interface ScalingOptions {
|
|
685
922
|
baseDecimals: number;
|
|
@@ -693,6 +930,9 @@ export interface ScalingOptionsProtoMsg {
|
|
|
693
930
|
* ScalingOptions defines optional configuration to avoid precision loss. The
|
|
694
931
|
* oracle result will be returned as base_price * 10^base_decimals / quote_price
|
|
695
932
|
* * 10^quote_decimals
|
|
933
|
+
* @name ScalingOptionsAmino
|
|
934
|
+
* @package injective.oracle.v1beta1
|
|
935
|
+
* @see proto type: injective.oracle.v1beta1.ScalingOptions
|
|
696
936
|
*/
|
|
697
937
|
export interface ScalingOptionsAmino {
|
|
698
938
|
base_decimals: number;
|
|
@@ -705,6 +945,9 @@ export interface ScalingOptionsAminoMsg {
|
|
|
705
945
|
/**
|
|
706
946
|
* QueryOraclePriceRequest is the request type for the Query/OraclePrice RPC
|
|
707
947
|
* method.
|
|
948
|
+
* @name QueryOraclePriceRequest
|
|
949
|
+
* @package injective.oracle.v1beta1
|
|
950
|
+
* @see proto type: injective.oracle.v1beta1.QueryOraclePriceRequest
|
|
708
951
|
*/
|
|
709
952
|
export interface QueryOraclePriceRequest {
|
|
710
953
|
oracleType: OracleType;
|
|
@@ -719,6 +962,9 @@ export interface QueryOraclePriceRequestProtoMsg {
|
|
|
719
962
|
/**
|
|
720
963
|
* QueryOraclePriceRequest is the request type for the Query/OraclePrice RPC
|
|
721
964
|
* method.
|
|
965
|
+
* @name QueryOraclePriceRequestAmino
|
|
966
|
+
* @package injective.oracle.v1beta1
|
|
967
|
+
* @see proto type: injective.oracle.v1beta1.QueryOraclePriceRequest
|
|
722
968
|
*/
|
|
723
969
|
export interface QueryOraclePriceRequestAmino {
|
|
724
970
|
oracle_type: OracleType;
|
|
@@ -730,6 +976,11 @@ export interface QueryOraclePriceRequestAminoMsg {
|
|
|
730
976
|
type: "/injective.oracle.v1beta1.QueryOraclePriceRequest";
|
|
731
977
|
value: QueryOraclePriceRequestAmino;
|
|
732
978
|
}
|
|
979
|
+
/**
|
|
980
|
+
* @name PricePairState
|
|
981
|
+
* @package injective.oracle.v1beta1
|
|
982
|
+
* @see proto type: injective.oracle.v1beta1.PricePairState
|
|
983
|
+
*/
|
|
733
984
|
export interface PricePairState {
|
|
734
985
|
pairPrice: string;
|
|
735
986
|
basePrice: string;
|
|
@@ -743,6 +994,11 @@ export interface PricePairStateProtoMsg {
|
|
|
743
994
|
typeUrl: "/injective.oracle.v1beta1.PricePairState";
|
|
744
995
|
value: Uint8Array;
|
|
745
996
|
}
|
|
997
|
+
/**
|
|
998
|
+
* @name PricePairStateAmino
|
|
999
|
+
* @package injective.oracle.v1beta1
|
|
1000
|
+
* @see proto type: injective.oracle.v1beta1.PricePairState
|
|
1001
|
+
*/
|
|
746
1002
|
export interface PricePairStateAmino {
|
|
747
1003
|
pair_price: string;
|
|
748
1004
|
base_price: string;
|
|
@@ -759,6 +1015,9 @@ export interface PricePairStateAminoMsg {
|
|
|
759
1015
|
/**
|
|
760
1016
|
* QueryOraclePriceResponse is the response type for the Query/OraclePrice RPC
|
|
761
1017
|
* method.
|
|
1018
|
+
* @name QueryOraclePriceResponse
|
|
1019
|
+
* @package injective.oracle.v1beta1
|
|
1020
|
+
* @see proto type: injective.oracle.v1beta1.QueryOraclePriceResponse
|
|
762
1021
|
*/
|
|
763
1022
|
export interface QueryOraclePriceResponse {
|
|
764
1023
|
pricePairState?: PricePairState;
|
|
@@ -770,6 +1029,9 @@ export interface QueryOraclePriceResponseProtoMsg {
|
|
|
770
1029
|
/**
|
|
771
1030
|
* QueryOraclePriceResponse is the response type for the Query/OraclePrice RPC
|
|
772
1031
|
* method.
|
|
1032
|
+
* @name QueryOraclePriceResponseAmino
|
|
1033
|
+
* @package injective.oracle.v1beta1
|
|
1034
|
+
* @see proto type: injective.oracle.v1beta1.QueryOraclePriceResponse
|
|
773
1035
|
*/
|
|
774
1036
|
export interface QueryOraclePriceResponseAmino {
|
|
775
1037
|
price_pair_state?: PricePairStateAmino;
|
|
@@ -778,6 +1040,11 @@ export interface QueryOraclePriceResponseAminoMsg {
|
|
|
778
1040
|
type: "/injective.oracle.v1beta1.QueryOraclePriceResponse";
|
|
779
1041
|
value: QueryOraclePriceResponseAmino;
|
|
780
1042
|
}
|
|
1043
|
+
/**
|
|
1044
|
+
* @name QueryPythPriceRequest
|
|
1045
|
+
* @package injective.oracle.v1beta1
|
|
1046
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceRequest
|
|
1047
|
+
*/
|
|
781
1048
|
export declare const QueryPythPriceRequest: {
|
|
782
1049
|
typeUrl: string;
|
|
783
1050
|
is(o: any): o is QueryPythPriceRequest;
|
|
@@ -793,6 +1060,11 @@ export declare const QueryPythPriceRequest: {
|
|
|
793
1060
|
toProtoMsg(message: QueryPythPriceRequest): QueryPythPriceRequestProtoMsg;
|
|
794
1061
|
registerTypeUrl(): void;
|
|
795
1062
|
};
|
|
1063
|
+
/**
|
|
1064
|
+
* @name QueryPythPriceResponse
|
|
1065
|
+
* @package injective.oracle.v1beta1
|
|
1066
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceResponse
|
|
1067
|
+
*/
|
|
796
1068
|
export declare const QueryPythPriceResponse: {
|
|
797
1069
|
typeUrl: string;
|
|
798
1070
|
is(o: any): o is QueryPythPriceResponse;
|
|
@@ -808,6 +1080,13 @@ export declare const QueryPythPriceResponse: {
|
|
|
808
1080
|
toProtoMsg(message: QueryPythPriceResponse): QueryPythPriceResponseProtoMsg;
|
|
809
1081
|
registerTypeUrl(): void;
|
|
810
1082
|
};
|
|
1083
|
+
/**
|
|
1084
|
+
* QueryOracleParamsRequest is the request type for the Query/OracleParams RPC
|
|
1085
|
+
* method.
|
|
1086
|
+
* @name QueryParamsRequest
|
|
1087
|
+
* @package injective.oracle.v1beta1
|
|
1088
|
+
* @see proto type: injective.oracle.v1beta1.QueryParamsRequest
|
|
1089
|
+
*/
|
|
811
1090
|
export declare const QueryParamsRequest: {
|
|
812
1091
|
typeUrl: string;
|
|
813
1092
|
is(o: any): o is QueryParamsRequest;
|
|
@@ -823,6 +1102,13 @@ export declare const QueryParamsRequest: {
|
|
|
823
1102
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
824
1103
|
registerTypeUrl(): void;
|
|
825
1104
|
};
|
|
1105
|
+
/**
|
|
1106
|
+
* QueryOracleParamsResponse is the response type for the Query/OracleParams RPC
|
|
1107
|
+
* method.
|
|
1108
|
+
* @name QueryParamsResponse
|
|
1109
|
+
* @package injective.oracle.v1beta1
|
|
1110
|
+
* @see proto type: injective.oracle.v1beta1.QueryParamsResponse
|
|
1111
|
+
*/
|
|
826
1112
|
export declare const QueryParamsResponse: {
|
|
827
1113
|
typeUrl: string;
|
|
828
1114
|
is(o: any): o is QueryParamsResponse;
|
|
@@ -838,6 +1124,13 @@ export declare const QueryParamsResponse: {
|
|
|
838
1124
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
839
1125
|
registerTypeUrl(): void;
|
|
840
1126
|
};
|
|
1127
|
+
/**
|
|
1128
|
+
* QueryBandRelayersRequest is the request type for the Query/BandRelayers RPC
|
|
1129
|
+
* method.
|
|
1130
|
+
* @name QueryBandRelayersRequest
|
|
1131
|
+
* @package injective.oracle.v1beta1
|
|
1132
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandRelayersRequest
|
|
1133
|
+
*/
|
|
841
1134
|
export declare const QueryBandRelayersRequest: {
|
|
842
1135
|
typeUrl: string;
|
|
843
1136
|
is(o: any): o is QueryBandRelayersRequest;
|
|
@@ -853,6 +1146,13 @@ export declare const QueryBandRelayersRequest: {
|
|
|
853
1146
|
toProtoMsg(message: QueryBandRelayersRequest): QueryBandRelayersRequestProtoMsg;
|
|
854
1147
|
registerTypeUrl(): void;
|
|
855
1148
|
};
|
|
1149
|
+
/**
|
|
1150
|
+
* QueryBandRelayersResponse is the response type for the Query/BandRelayers RPC
|
|
1151
|
+
* method.
|
|
1152
|
+
* @name QueryBandRelayersResponse
|
|
1153
|
+
* @package injective.oracle.v1beta1
|
|
1154
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandRelayersResponse
|
|
1155
|
+
*/
|
|
856
1156
|
export declare const QueryBandRelayersResponse: {
|
|
857
1157
|
typeUrl: string;
|
|
858
1158
|
is(o: any): o is QueryBandRelayersResponse;
|
|
@@ -868,6 +1168,13 @@ export declare const QueryBandRelayersResponse: {
|
|
|
868
1168
|
toProtoMsg(message: QueryBandRelayersResponse): QueryBandRelayersResponseProtoMsg;
|
|
869
1169
|
registerTypeUrl(): void;
|
|
870
1170
|
};
|
|
1171
|
+
/**
|
|
1172
|
+
* QueryBandPriceStatesRequest is the request type for the Query/BandPriceStates
|
|
1173
|
+
* RPC method.
|
|
1174
|
+
* @name QueryBandPriceStatesRequest
|
|
1175
|
+
* @package injective.oracle.v1beta1
|
|
1176
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandPriceStatesRequest
|
|
1177
|
+
*/
|
|
871
1178
|
export declare const QueryBandPriceStatesRequest: {
|
|
872
1179
|
typeUrl: string;
|
|
873
1180
|
is(o: any): o is QueryBandPriceStatesRequest;
|
|
@@ -883,6 +1190,13 @@ export declare const QueryBandPriceStatesRequest: {
|
|
|
883
1190
|
toProtoMsg(message: QueryBandPriceStatesRequest): QueryBandPriceStatesRequestProtoMsg;
|
|
884
1191
|
registerTypeUrl(): void;
|
|
885
1192
|
};
|
|
1193
|
+
/**
|
|
1194
|
+
* QueryBandPriceStatesResponse is the response type for the
|
|
1195
|
+
* Query/BandPriceStates RPC method.
|
|
1196
|
+
* @name QueryBandPriceStatesResponse
|
|
1197
|
+
* @package injective.oracle.v1beta1
|
|
1198
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandPriceStatesResponse
|
|
1199
|
+
*/
|
|
886
1200
|
export declare const QueryBandPriceStatesResponse: {
|
|
887
1201
|
typeUrl: string;
|
|
888
1202
|
is(o: any): o is QueryBandPriceStatesResponse;
|
|
@@ -898,6 +1212,13 @@ export declare const QueryBandPriceStatesResponse: {
|
|
|
898
1212
|
toProtoMsg(message: QueryBandPriceStatesResponse): QueryBandPriceStatesResponseProtoMsg;
|
|
899
1213
|
registerTypeUrl(): void;
|
|
900
1214
|
};
|
|
1215
|
+
/**
|
|
1216
|
+
* QueryBandIBCPriceStatesRequest is the request type for the
|
|
1217
|
+
* Query/BandIBCPriceStates RPC method.
|
|
1218
|
+
* @name QueryBandIBCPriceStatesRequest
|
|
1219
|
+
* @package injective.oracle.v1beta1
|
|
1220
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandIBCPriceStatesRequest
|
|
1221
|
+
*/
|
|
901
1222
|
export declare const QueryBandIBCPriceStatesRequest: {
|
|
902
1223
|
typeUrl: string;
|
|
903
1224
|
is(o: any): o is QueryBandIBCPriceStatesRequest;
|
|
@@ -913,6 +1234,13 @@ export declare const QueryBandIBCPriceStatesRequest: {
|
|
|
913
1234
|
toProtoMsg(message: QueryBandIBCPriceStatesRequest): QueryBandIBCPriceStatesRequestProtoMsg;
|
|
914
1235
|
registerTypeUrl(): void;
|
|
915
1236
|
};
|
|
1237
|
+
/**
|
|
1238
|
+
* QueryBandIBCPriceStatesResponse is the response type for the
|
|
1239
|
+
* Query/BandIBCPriceStates RPC method.
|
|
1240
|
+
* @name QueryBandIBCPriceStatesResponse
|
|
1241
|
+
* @package injective.oracle.v1beta1
|
|
1242
|
+
* @see proto type: injective.oracle.v1beta1.QueryBandIBCPriceStatesResponse
|
|
1243
|
+
*/
|
|
916
1244
|
export declare const QueryBandIBCPriceStatesResponse: {
|
|
917
1245
|
typeUrl: string;
|
|
918
1246
|
is(o: any): o is QueryBandIBCPriceStatesResponse;
|
|
@@ -928,6 +1256,13 @@ export declare const QueryBandIBCPriceStatesResponse: {
|
|
|
928
1256
|
toProtoMsg(message: QueryBandIBCPriceStatesResponse): QueryBandIBCPriceStatesResponseProtoMsg;
|
|
929
1257
|
registerTypeUrl(): void;
|
|
930
1258
|
};
|
|
1259
|
+
/**
|
|
1260
|
+
* QueryPriceFeedPriceStatesRequest is the request type for the
|
|
1261
|
+
* Query/PriceFeedPriceStates RPC method.
|
|
1262
|
+
* @name QueryPriceFeedPriceStatesRequest
|
|
1263
|
+
* @package injective.oracle.v1beta1
|
|
1264
|
+
* @see proto type: injective.oracle.v1beta1.QueryPriceFeedPriceStatesRequest
|
|
1265
|
+
*/
|
|
931
1266
|
export declare const QueryPriceFeedPriceStatesRequest: {
|
|
932
1267
|
typeUrl: string;
|
|
933
1268
|
is(o: any): o is QueryPriceFeedPriceStatesRequest;
|
|
@@ -943,6 +1278,13 @@ export declare const QueryPriceFeedPriceStatesRequest: {
|
|
|
943
1278
|
toProtoMsg(message: QueryPriceFeedPriceStatesRequest): QueryPriceFeedPriceStatesRequestProtoMsg;
|
|
944
1279
|
registerTypeUrl(): void;
|
|
945
1280
|
};
|
|
1281
|
+
/**
|
|
1282
|
+
* QueryPriceFeedPriceStatesResponse is the response type for the
|
|
1283
|
+
* Query/PriceFeedPriceStates RPC method.
|
|
1284
|
+
* @name QueryPriceFeedPriceStatesResponse
|
|
1285
|
+
* @package injective.oracle.v1beta1
|
|
1286
|
+
* @see proto type: injective.oracle.v1beta1.QueryPriceFeedPriceStatesResponse
|
|
1287
|
+
*/
|
|
946
1288
|
export declare const QueryPriceFeedPriceStatesResponse: {
|
|
947
1289
|
typeUrl: string;
|
|
948
1290
|
is(o: any): o is QueryPriceFeedPriceStatesResponse;
|
|
@@ -958,6 +1300,13 @@ export declare const QueryPriceFeedPriceStatesResponse: {
|
|
|
958
1300
|
toProtoMsg(message: QueryPriceFeedPriceStatesResponse): QueryPriceFeedPriceStatesResponseProtoMsg;
|
|
959
1301
|
registerTypeUrl(): void;
|
|
960
1302
|
};
|
|
1303
|
+
/**
|
|
1304
|
+
* QueryCoinbasePriceStatesRequest is the request type for the
|
|
1305
|
+
* Query/CoinbasePriceStates RPC method.
|
|
1306
|
+
* @name QueryCoinbasePriceStatesRequest
|
|
1307
|
+
* @package injective.oracle.v1beta1
|
|
1308
|
+
* @see proto type: injective.oracle.v1beta1.QueryCoinbasePriceStatesRequest
|
|
1309
|
+
*/
|
|
961
1310
|
export declare const QueryCoinbasePriceStatesRequest: {
|
|
962
1311
|
typeUrl: string;
|
|
963
1312
|
is(o: any): o is QueryCoinbasePriceStatesRequest;
|
|
@@ -973,6 +1322,13 @@ export declare const QueryCoinbasePriceStatesRequest: {
|
|
|
973
1322
|
toProtoMsg(message: QueryCoinbasePriceStatesRequest): QueryCoinbasePriceStatesRequestProtoMsg;
|
|
974
1323
|
registerTypeUrl(): void;
|
|
975
1324
|
};
|
|
1325
|
+
/**
|
|
1326
|
+
* QueryCoinbasePriceStatesResponse is the response type for the
|
|
1327
|
+
* Query/CoinbasePriceStates RPC method.
|
|
1328
|
+
* @name QueryCoinbasePriceStatesResponse
|
|
1329
|
+
* @package injective.oracle.v1beta1
|
|
1330
|
+
* @see proto type: injective.oracle.v1beta1.QueryCoinbasePriceStatesResponse
|
|
1331
|
+
*/
|
|
976
1332
|
export declare const QueryCoinbasePriceStatesResponse: {
|
|
977
1333
|
typeUrl: string;
|
|
978
1334
|
is(o: any): o is QueryCoinbasePriceStatesResponse;
|
|
@@ -988,6 +1344,13 @@ export declare const QueryCoinbasePriceStatesResponse: {
|
|
|
988
1344
|
toProtoMsg(message: QueryCoinbasePriceStatesResponse): QueryCoinbasePriceStatesResponseProtoMsg;
|
|
989
1345
|
registerTypeUrl(): void;
|
|
990
1346
|
};
|
|
1347
|
+
/**
|
|
1348
|
+
* QueryPythPriceStatesRequest is the request type for the
|
|
1349
|
+
* Query/CoinbasePriceStates RPC method.
|
|
1350
|
+
* @name QueryPythPriceStatesRequest
|
|
1351
|
+
* @package injective.oracle.v1beta1
|
|
1352
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceStatesRequest
|
|
1353
|
+
*/
|
|
991
1354
|
export declare const QueryPythPriceStatesRequest: {
|
|
992
1355
|
typeUrl: string;
|
|
993
1356
|
is(o: any): o is QueryPythPriceStatesRequest;
|
|
@@ -1003,6 +1366,13 @@ export declare const QueryPythPriceStatesRequest: {
|
|
|
1003
1366
|
toProtoMsg(message: QueryPythPriceStatesRequest): QueryPythPriceStatesRequestProtoMsg;
|
|
1004
1367
|
registerTypeUrl(): void;
|
|
1005
1368
|
};
|
|
1369
|
+
/**
|
|
1370
|
+
* QueryPythPriceStatesResponse is the response type for the
|
|
1371
|
+
* Query/CoinbasePriceStates RPC method.
|
|
1372
|
+
* @name QueryPythPriceStatesResponse
|
|
1373
|
+
* @package injective.oracle.v1beta1
|
|
1374
|
+
* @see proto type: injective.oracle.v1beta1.QueryPythPriceStatesResponse
|
|
1375
|
+
*/
|
|
1006
1376
|
export declare const QueryPythPriceStatesResponse: {
|
|
1007
1377
|
typeUrl: string;
|
|
1008
1378
|
is(o: any): o is QueryPythPriceStatesResponse;
|
|
@@ -1018,6 +1388,13 @@ export declare const QueryPythPriceStatesResponse: {
|
|
|
1018
1388
|
toProtoMsg(message: QueryPythPriceStatesResponse): QueryPythPriceStatesResponseProtoMsg;
|
|
1019
1389
|
registerTypeUrl(): void;
|
|
1020
1390
|
};
|
|
1391
|
+
/**
|
|
1392
|
+
* QueryStorkPriceStatesRequest is the request type for the
|
|
1393
|
+
* Query/StorkPriceStates RPC method.
|
|
1394
|
+
* @name QueryStorkPriceStatesRequest
|
|
1395
|
+
* @package injective.oracle.v1beta1
|
|
1396
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPriceStatesRequest
|
|
1397
|
+
*/
|
|
1021
1398
|
export declare const QueryStorkPriceStatesRequest: {
|
|
1022
1399
|
typeUrl: string;
|
|
1023
1400
|
is(o: any): o is QueryStorkPriceStatesRequest;
|
|
@@ -1033,6 +1410,13 @@ export declare const QueryStorkPriceStatesRequest: {
|
|
|
1033
1410
|
toProtoMsg(message: QueryStorkPriceStatesRequest): QueryStorkPriceStatesRequestProtoMsg;
|
|
1034
1411
|
registerTypeUrl(): void;
|
|
1035
1412
|
};
|
|
1413
|
+
/**
|
|
1414
|
+
* QueryStorkPriceStatesResponse is the response type for the
|
|
1415
|
+
* Query/StorkPriceStates RPC method.
|
|
1416
|
+
* @name QueryStorkPriceStatesResponse
|
|
1417
|
+
* @package injective.oracle.v1beta1
|
|
1418
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPriceStatesResponse
|
|
1419
|
+
*/
|
|
1036
1420
|
export declare const QueryStorkPriceStatesResponse: {
|
|
1037
1421
|
typeUrl: string;
|
|
1038
1422
|
is(o: any): o is QueryStorkPriceStatesResponse;
|
|
@@ -1048,6 +1432,13 @@ export declare const QueryStorkPriceStatesResponse: {
|
|
|
1048
1432
|
toProtoMsg(message: QueryStorkPriceStatesResponse): QueryStorkPriceStatesResponseProtoMsg;
|
|
1049
1433
|
registerTypeUrl(): void;
|
|
1050
1434
|
};
|
|
1435
|
+
/**
|
|
1436
|
+
* QueryStorkPublishersRequest is the request type for the
|
|
1437
|
+
* Query/StorkPublishers RPC method.
|
|
1438
|
+
* @name QueryStorkPublishersRequest
|
|
1439
|
+
* @package injective.oracle.v1beta1
|
|
1440
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPublishersRequest
|
|
1441
|
+
*/
|
|
1051
1442
|
export declare const QueryStorkPublishersRequest: {
|
|
1052
1443
|
typeUrl: string;
|
|
1053
1444
|
is(o: any): o is QueryStorkPublishersRequest;
|
|
@@ -1063,6 +1454,13 @@ export declare const QueryStorkPublishersRequest: {
|
|
|
1063
1454
|
toProtoMsg(message: QueryStorkPublishersRequest): QueryStorkPublishersRequestProtoMsg;
|
|
1064
1455
|
registerTypeUrl(): void;
|
|
1065
1456
|
};
|
|
1457
|
+
/**
|
|
1458
|
+
* QueryStorkPublishersResponse is the response type for the
|
|
1459
|
+
* Query/StorkPublishers RPC method.
|
|
1460
|
+
* @name QueryStorkPublishersResponse
|
|
1461
|
+
* @package injective.oracle.v1beta1
|
|
1462
|
+
* @see proto type: injective.oracle.v1beta1.QueryStorkPublishersResponse
|
|
1463
|
+
*/
|
|
1066
1464
|
export declare const QueryStorkPublishersResponse: {
|
|
1067
1465
|
typeUrl: string;
|
|
1068
1466
|
is(o: any): o is QueryStorkPublishersResponse;
|
|
@@ -1078,6 +1476,13 @@ export declare const QueryStorkPublishersResponse: {
|
|
|
1078
1476
|
toProtoMsg(message: QueryStorkPublishersResponse): QueryStorkPublishersResponseProtoMsg;
|
|
1079
1477
|
registerTypeUrl(): void;
|
|
1080
1478
|
};
|
|
1479
|
+
/**
|
|
1480
|
+
* QueryProviderPriceStateRequest is the request type for the
|
|
1481
|
+
* Query/ProviderPriceState RPC method.
|
|
1482
|
+
* @name QueryProviderPriceStateRequest
|
|
1483
|
+
* @package injective.oracle.v1beta1
|
|
1484
|
+
* @see proto type: injective.oracle.v1beta1.QueryProviderPriceStateRequest
|
|
1485
|
+
*/
|
|
1081
1486
|
export declare const QueryProviderPriceStateRequest: {
|
|
1082
1487
|
typeUrl: string;
|
|
1083
1488
|
is(o: any): o is QueryProviderPriceStateRequest;
|
|
@@ -1093,6 +1498,13 @@ export declare const QueryProviderPriceStateRequest: {
|
|
|
1093
1498
|
toProtoMsg(message: QueryProviderPriceStateRequest): QueryProviderPriceStateRequestProtoMsg;
|
|
1094
1499
|
registerTypeUrl(): void;
|
|
1095
1500
|
};
|
|
1501
|
+
/**
|
|
1502
|
+
* QueryProviderPriceStatesResponse is the response type for the
|
|
1503
|
+
* Query/ProviderPriceStates RPC method.
|
|
1504
|
+
* @name QueryProviderPriceStateResponse
|
|
1505
|
+
* @package injective.oracle.v1beta1
|
|
1506
|
+
* @see proto type: injective.oracle.v1beta1.QueryProviderPriceStateResponse
|
|
1507
|
+
*/
|
|
1096
1508
|
export declare const QueryProviderPriceStateResponse: {
|
|
1097
1509
|
typeUrl: string;
|
|
1098
1510
|
is(o: any): o is QueryProviderPriceStateResponse;
|
|
@@ -1108,6 +1520,13 @@ export declare const QueryProviderPriceStateResponse: {
|
|
|
1108
1520
|
toProtoMsg(message: QueryProviderPriceStateResponse): QueryProviderPriceStateResponseProtoMsg;
|
|
1109
1521
|
registerTypeUrl(): void;
|
|
1110
1522
|
};
|
|
1523
|
+
/**
|
|
1524
|
+
* QueryModuleStateRequest is the request type for the Query/OracleModuleState
|
|
1525
|
+
* RPC method.
|
|
1526
|
+
* @name QueryModuleStateRequest
|
|
1527
|
+
* @package injective.oracle.v1beta1
|
|
1528
|
+
* @see proto type: injective.oracle.v1beta1.QueryModuleStateRequest
|
|
1529
|
+
*/
|
|
1111
1530
|
export declare const QueryModuleStateRequest: {
|
|
1112
1531
|
typeUrl: string;
|
|
1113
1532
|
is(o: any): o is QueryModuleStateRequest;
|
|
@@ -1123,6 +1542,13 @@ export declare const QueryModuleStateRequest: {
|
|
|
1123
1542
|
toProtoMsg(message: QueryModuleStateRequest): QueryModuleStateRequestProtoMsg;
|
|
1124
1543
|
registerTypeUrl(): void;
|
|
1125
1544
|
};
|
|
1545
|
+
/**
|
|
1546
|
+
* QueryModuleStateResponse is the response type for the Query/OracleModuleState
|
|
1547
|
+
* RPC method.
|
|
1548
|
+
* @name QueryModuleStateResponse
|
|
1549
|
+
* @package injective.oracle.v1beta1
|
|
1550
|
+
* @see proto type: injective.oracle.v1beta1.QueryModuleStateResponse
|
|
1551
|
+
*/
|
|
1126
1552
|
export declare const QueryModuleStateResponse: {
|
|
1127
1553
|
typeUrl: string;
|
|
1128
1554
|
is(o: any): o is QueryModuleStateResponse;
|
|
@@ -1138,6 +1564,11 @@ export declare const QueryModuleStateResponse: {
|
|
|
1138
1564
|
toProtoMsg(message: QueryModuleStateResponse): QueryModuleStateResponseProtoMsg;
|
|
1139
1565
|
registerTypeUrl(): void;
|
|
1140
1566
|
};
|
|
1567
|
+
/**
|
|
1568
|
+
* @name QueryHistoricalPriceRecordsRequest
|
|
1569
|
+
* @package injective.oracle.v1beta1
|
|
1570
|
+
* @see proto type: injective.oracle.v1beta1.QueryHistoricalPriceRecordsRequest
|
|
1571
|
+
*/
|
|
1141
1572
|
export declare const QueryHistoricalPriceRecordsRequest: {
|
|
1142
1573
|
typeUrl: string;
|
|
1143
1574
|
is(o: any): o is QueryHistoricalPriceRecordsRequest;
|
|
@@ -1153,6 +1584,11 @@ export declare const QueryHistoricalPriceRecordsRequest: {
|
|
|
1153
1584
|
toProtoMsg(message: QueryHistoricalPriceRecordsRequest): QueryHistoricalPriceRecordsRequestProtoMsg;
|
|
1154
1585
|
registerTypeUrl(): void;
|
|
1155
1586
|
};
|
|
1587
|
+
/**
|
|
1588
|
+
* @name QueryHistoricalPriceRecordsResponse
|
|
1589
|
+
* @package injective.oracle.v1beta1
|
|
1590
|
+
* @see proto type: injective.oracle.v1beta1.QueryHistoricalPriceRecordsResponse
|
|
1591
|
+
*/
|
|
1156
1592
|
export declare const QueryHistoricalPriceRecordsResponse: {
|
|
1157
1593
|
typeUrl: string;
|
|
1158
1594
|
is(o: any): o is QueryHistoricalPriceRecordsResponse;
|
|
@@ -1168,6 +1604,11 @@ export declare const QueryHistoricalPriceRecordsResponse: {
|
|
|
1168
1604
|
toProtoMsg(message: QueryHistoricalPriceRecordsResponse): QueryHistoricalPriceRecordsResponseProtoMsg;
|
|
1169
1605
|
registerTypeUrl(): void;
|
|
1170
1606
|
};
|
|
1607
|
+
/**
|
|
1608
|
+
* @name OracleHistoryOptions
|
|
1609
|
+
* @package injective.oracle.v1beta1
|
|
1610
|
+
* @see proto type: injective.oracle.v1beta1.OracleHistoryOptions
|
|
1611
|
+
*/
|
|
1171
1612
|
export declare const OracleHistoryOptions: {
|
|
1172
1613
|
typeUrl: string;
|
|
1173
1614
|
is(o: any): o is OracleHistoryOptions;
|
|
@@ -1183,6 +1624,13 @@ export declare const OracleHistoryOptions: {
|
|
|
1183
1624
|
toProtoMsg(message: OracleHistoryOptions): OracleHistoryOptionsProtoMsg;
|
|
1184
1625
|
registerTypeUrl(): void;
|
|
1185
1626
|
};
|
|
1627
|
+
/**
|
|
1628
|
+
* QueryOracleVolatilityRequest is the request type for Query/OracleVolatility
|
|
1629
|
+
* RPC method.
|
|
1630
|
+
* @name QueryOracleVolatilityRequest
|
|
1631
|
+
* @package injective.oracle.v1beta1
|
|
1632
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleVolatilityRequest
|
|
1633
|
+
*/
|
|
1186
1634
|
export declare const QueryOracleVolatilityRequest: {
|
|
1187
1635
|
typeUrl: string;
|
|
1188
1636
|
is(o: any): o is QueryOracleVolatilityRequest;
|
|
@@ -1198,6 +1646,13 @@ export declare const QueryOracleVolatilityRequest: {
|
|
|
1198
1646
|
toProtoMsg(message: QueryOracleVolatilityRequest): QueryOracleVolatilityRequestProtoMsg;
|
|
1199
1647
|
registerTypeUrl(): void;
|
|
1200
1648
|
};
|
|
1649
|
+
/**
|
|
1650
|
+
* QueryOracleVolatilityResponse is the response type for Query/OracleVolatility
|
|
1651
|
+
* RPC method.
|
|
1652
|
+
* @name QueryOracleVolatilityResponse
|
|
1653
|
+
* @package injective.oracle.v1beta1
|
|
1654
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleVolatilityResponse
|
|
1655
|
+
*/
|
|
1201
1656
|
export declare const QueryOracleVolatilityResponse: {
|
|
1202
1657
|
typeUrl: string;
|
|
1203
1658
|
is(o: any): o is QueryOracleVolatilityResponse;
|
|
@@ -1213,6 +1668,11 @@ export declare const QueryOracleVolatilityResponse: {
|
|
|
1213
1668
|
toProtoMsg(message: QueryOracleVolatilityResponse): QueryOracleVolatilityResponseProtoMsg;
|
|
1214
1669
|
registerTypeUrl(): void;
|
|
1215
1670
|
};
|
|
1671
|
+
/**
|
|
1672
|
+
* @name QueryOracleProvidersInfoRequest
|
|
1673
|
+
* @package injective.oracle.v1beta1
|
|
1674
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProvidersInfoRequest
|
|
1675
|
+
*/
|
|
1216
1676
|
export declare const QueryOracleProvidersInfoRequest: {
|
|
1217
1677
|
typeUrl: string;
|
|
1218
1678
|
is(o: any): o is QueryOracleProvidersInfoRequest;
|
|
@@ -1228,6 +1688,11 @@ export declare const QueryOracleProvidersInfoRequest: {
|
|
|
1228
1688
|
toProtoMsg(message: QueryOracleProvidersInfoRequest): QueryOracleProvidersInfoRequestProtoMsg;
|
|
1229
1689
|
registerTypeUrl(): void;
|
|
1230
1690
|
};
|
|
1691
|
+
/**
|
|
1692
|
+
* @name QueryOracleProvidersInfoResponse
|
|
1693
|
+
* @package injective.oracle.v1beta1
|
|
1694
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProvidersInfoResponse
|
|
1695
|
+
*/
|
|
1231
1696
|
export declare const QueryOracleProvidersInfoResponse: {
|
|
1232
1697
|
typeUrl: string;
|
|
1233
1698
|
is(o: any): o is QueryOracleProvidersInfoResponse;
|
|
@@ -1243,6 +1708,11 @@ export declare const QueryOracleProvidersInfoResponse: {
|
|
|
1243
1708
|
toProtoMsg(message: QueryOracleProvidersInfoResponse): QueryOracleProvidersInfoResponseProtoMsg;
|
|
1244
1709
|
registerTypeUrl(): void;
|
|
1245
1710
|
};
|
|
1711
|
+
/**
|
|
1712
|
+
* @name QueryOracleProviderPricesRequest
|
|
1713
|
+
* @package injective.oracle.v1beta1
|
|
1714
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProviderPricesRequest
|
|
1715
|
+
*/
|
|
1246
1716
|
export declare const QueryOracleProviderPricesRequest: {
|
|
1247
1717
|
typeUrl: string;
|
|
1248
1718
|
is(o: any): o is QueryOracleProviderPricesRequest;
|
|
@@ -1258,6 +1728,11 @@ export declare const QueryOracleProviderPricesRequest: {
|
|
|
1258
1728
|
toProtoMsg(message: QueryOracleProviderPricesRequest): QueryOracleProviderPricesRequestProtoMsg;
|
|
1259
1729
|
registerTypeUrl(): void;
|
|
1260
1730
|
};
|
|
1731
|
+
/**
|
|
1732
|
+
* @name QueryOracleProviderPricesResponse
|
|
1733
|
+
* @package injective.oracle.v1beta1
|
|
1734
|
+
* @see proto type: injective.oracle.v1beta1.QueryOracleProviderPricesResponse
|
|
1735
|
+
*/
|
|
1261
1736
|
export declare const QueryOracleProviderPricesResponse: {
|
|
1262
1737
|
typeUrl: string;
|
|
1263
1738
|
is(o: any): o is QueryOracleProviderPricesResponse;
|
|
@@ -1273,6 +1748,14 @@ export declare const QueryOracleProviderPricesResponse: {
|
|
|
1273
1748
|
toProtoMsg(message: QueryOracleProviderPricesResponse): QueryOracleProviderPricesResponseProtoMsg;
|
|
1274
1749
|
registerTypeUrl(): void;
|
|
1275
1750
|
};
|
|
1751
|
+
/**
|
|
1752
|
+
* ScalingOptions defines optional configuration to avoid precision loss. The
|
|
1753
|
+
* oracle result will be returned as base_price * 10^base_decimals / quote_price
|
|
1754
|
+
* * 10^quote_decimals
|
|
1755
|
+
* @name ScalingOptions
|
|
1756
|
+
* @package injective.oracle.v1beta1
|
|
1757
|
+
* @see proto type: injective.oracle.v1beta1.ScalingOptions
|
|
1758
|
+
*/
|
|
1276
1759
|
export declare const ScalingOptions: {
|
|
1277
1760
|
typeUrl: string;
|
|
1278
1761
|
is(o: any): o is ScalingOptions;
|
|
@@ -1288,6 +1771,13 @@ export declare const ScalingOptions: {
|
|
|
1288
1771
|
toProtoMsg(message: ScalingOptions): ScalingOptionsProtoMsg;
|
|
1289
1772
|
registerTypeUrl(): void;
|
|
1290
1773
|
};
|
|
1774
|
+
/**
|
|
1775
|
+
* QueryOraclePriceRequest is the request type for the Query/OraclePrice RPC
|
|
1776
|
+
* method.
|
|
1777
|
+
* @name QueryOraclePriceRequest
|
|
1778
|
+
* @package injective.oracle.v1beta1
|
|
1779
|
+
* @see proto type: injective.oracle.v1beta1.QueryOraclePriceRequest
|
|
1780
|
+
*/
|
|
1291
1781
|
export declare const QueryOraclePriceRequest: {
|
|
1292
1782
|
typeUrl: string;
|
|
1293
1783
|
is(o: any): o is QueryOraclePriceRequest;
|
|
@@ -1303,6 +1793,11 @@ export declare const QueryOraclePriceRequest: {
|
|
|
1303
1793
|
toProtoMsg(message: QueryOraclePriceRequest): QueryOraclePriceRequestProtoMsg;
|
|
1304
1794
|
registerTypeUrl(): void;
|
|
1305
1795
|
};
|
|
1796
|
+
/**
|
|
1797
|
+
* @name PricePairState
|
|
1798
|
+
* @package injective.oracle.v1beta1
|
|
1799
|
+
* @see proto type: injective.oracle.v1beta1.PricePairState
|
|
1800
|
+
*/
|
|
1306
1801
|
export declare const PricePairState: {
|
|
1307
1802
|
typeUrl: string;
|
|
1308
1803
|
is(o: any): o is PricePairState;
|
|
@@ -1318,6 +1813,13 @@ export declare const PricePairState: {
|
|
|
1318
1813
|
toProtoMsg(message: PricePairState): PricePairStateProtoMsg;
|
|
1319
1814
|
registerTypeUrl(): void;
|
|
1320
1815
|
};
|
|
1816
|
+
/**
|
|
1817
|
+
* QueryOraclePriceResponse is the response type for the Query/OraclePrice RPC
|
|
1818
|
+
* method.
|
|
1819
|
+
* @name QueryOraclePriceResponse
|
|
1820
|
+
* @package injective.oracle.v1beta1
|
|
1821
|
+
* @see proto type: injective.oracle.v1beta1.QueryOraclePriceResponse
|
|
1822
|
+
*/
|
|
1321
1823
|
export declare const QueryOraclePriceResponse: {
|
|
1322
1824
|
typeUrl: string;
|
|
1323
1825
|
is(o: any): o is QueryOraclePriceResponse;
|