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
|
@@ -20,6 +20,11 @@ export declare enum OracleType {
|
|
|
20
20
|
export declare const OracleTypeAmino: typeof OracleType;
|
|
21
21
|
export declare function oracleTypeFromJSON(object: any): OracleType;
|
|
22
22
|
export declare function oracleTypeToJSON(object: OracleType): string;
|
|
23
|
+
/**
|
|
24
|
+
* @name Params
|
|
25
|
+
* @package injective.oracle.v1beta1
|
|
26
|
+
* @see proto type: injective.oracle.v1beta1.Params
|
|
27
|
+
*/
|
|
23
28
|
export interface Params {
|
|
24
29
|
pythContract: string;
|
|
25
30
|
}
|
|
@@ -27,6 +32,11 @@ export interface ParamsProtoMsg {
|
|
|
27
32
|
typeUrl: "/injective.oracle.v1beta1.Params";
|
|
28
33
|
value: Uint8Array;
|
|
29
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* @name ParamsAmino
|
|
37
|
+
* @package injective.oracle.v1beta1
|
|
38
|
+
* @see proto type: injective.oracle.v1beta1.Params
|
|
39
|
+
*/
|
|
30
40
|
export interface ParamsAmino {
|
|
31
41
|
pyth_contract: string;
|
|
32
42
|
}
|
|
@@ -34,6 +44,11 @@ export interface ParamsAminoMsg {
|
|
|
34
44
|
type: "oracle/Params";
|
|
35
45
|
value: ParamsAmino;
|
|
36
46
|
}
|
|
47
|
+
/**
|
|
48
|
+
* @name OracleInfo
|
|
49
|
+
* @package injective.oracle.v1beta1
|
|
50
|
+
* @see proto type: injective.oracle.v1beta1.OracleInfo
|
|
51
|
+
*/
|
|
37
52
|
export interface OracleInfo {
|
|
38
53
|
symbol: string;
|
|
39
54
|
oracleType: OracleType;
|
|
@@ -42,6 +57,11 @@ export interface OracleInfoProtoMsg {
|
|
|
42
57
|
typeUrl: "/injective.oracle.v1beta1.OracleInfo";
|
|
43
58
|
value: Uint8Array;
|
|
44
59
|
}
|
|
60
|
+
/**
|
|
61
|
+
* @name OracleInfoAmino
|
|
62
|
+
* @package injective.oracle.v1beta1
|
|
63
|
+
* @see proto type: injective.oracle.v1beta1.OracleInfo
|
|
64
|
+
*/
|
|
45
65
|
export interface OracleInfoAmino {
|
|
46
66
|
symbol: string;
|
|
47
67
|
oracle_type: OracleType;
|
|
@@ -50,6 +70,11 @@ export interface OracleInfoAminoMsg {
|
|
|
50
70
|
type: "/injective.oracle.v1beta1.OracleInfo";
|
|
51
71
|
value: OracleInfoAmino;
|
|
52
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
* @name ChainlinkPriceState
|
|
75
|
+
* @package injective.oracle.v1beta1
|
|
76
|
+
* @see proto type: injective.oracle.v1beta1.ChainlinkPriceState
|
|
77
|
+
*/
|
|
53
78
|
export interface ChainlinkPriceState {
|
|
54
79
|
feedId: string;
|
|
55
80
|
answer: string;
|
|
@@ -60,6 +85,11 @@ export interface ChainlinkPriceStateProtoMsg {
|
|
|
60
85
|
typeUrl: "/injective.oracle.v1beta1.ChainlinkPriceState";
|
|
61
86
|
value: Uint8Array;
|
|
62
87
|
}
|
|
88
|
+
/**
|
|
89
|
+
* @name ChainlinkPriceStateAmino
|
|
90
|
+
* @package injective.oracle.v1beta1
|
|
91
|
+
* @see proto type: injective.oracle.v1beta1.ChainlinkPriceState
|
|
92
|
+
*/
|
|
63
93
|
export interface ChainlinkPriceStateAmino {
|
|
64
94
|
feed_id: string;
|
|
65
95
|
answer: string;
|
|
@@ -70,6 +100,11 @@ export interface ChainlinkPriceStateAminoMsg {
|
|
|
70
100
|
type: "/injective.oracle.v1beta1.ChainlinkPriceState";
|
|
71
101
|
value: ChainlinkPriceStateAmino;
|
|
72
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* @name BandPriceState
|
|
105
|
+
* @package injective.oracle.v1beta1
|
|
106
|
+
* @see proto type: injective.oracle.v1beta1.BandPriceState
|
|
107
|
+
*/
|
|
73
108
|
export interface BandPriceState {
|
|
74
109
|
symbol: string;
|
|
75
110
|
rate: string;
|
|
@@ -81,6 +116,11 @@ export interface BandPriceStateProtoMsg {
|
|
|
81
116
|
typeUrl: "/injective.oracle.v1beta1.BandPriceState";
|
|
82
117
|
value: Uint8Array;
|
|
83
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* @name BandPriceStateAmino
|
|
121
|
+
* @package injective.oracle.v1beta1
|
|
122
|
+
* @see proto type: injective.oracle.v1beta1.BandPriceState
|
|
123
|
+
*/
|
|
84
124
|
export interface BandPriceStateAmino {
|
|
85
125
|
symbol: string;
|
|
86
126
|
rate: string;
|
|
@@ -92,6 +132,11 @@ export interface BandPriceStateAminoMsg {
|
|
|
92
132
|
type: "/injective.oracle.v1beta1.BandPriceState";
|
|
93
133
|
value: BandPriceStateAmino;
|
|
94
134
|
}
|
|
135
|
+
/**
|
|
136
|
+
* @name PriceFeedState
|
|
137
|
+
* @package injective.oracle.v1beta1
|
|
138
|
+
* @see proto type: injective.oracle.v1beta1.PriceFeedState
|
|
139
|
+
*/
|
|
95
140
|
export interface PriceFeedState {
|
|
96
141
|
base: string;
|
|
97
142
|
quote: string;
|
|
@@ -102,6 +147,11 @@ export interface PriceFeedStateProtoMsg {
|
|
|
102
147
|
typeUrl: "/injective.oracle.v1beta1.PriceFeedState";
|
|
103
148
|
value: Uint8Array;
|
|
104
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @name PriceFeedStateAmino
|
|
152
|
+
* @package injective.oracle.v1beta1
|
|
153
|
+
* @see proto type: injective.oracle.v1beta1.PriceFeedState
|
|
154
|
+
*/
|
|
105
155
|
export interface PriceFeedStateAmino {
|
|
106
156
|
base: string;
|
|
107
157
|
quote: string;
|
|
@@ -112,6 +162,11 @@ export interface PriceFeedStateAminoMsg {
|
|
|
112
162
|
type: "/injective.oracle.v1beta1.PriceFeedState";
|
|
113
163
|
value: PriceFeedStateAmino;
|
|
114
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* @name ProviderInfo
|
|
167
|
+
* @package injective.oracle.v1beta1
|
|
168
|
+
* @see proto type: injective.oracle.v1beta1.ProviderInfo
|
|
169
|
+
*/
|
|
115
170
|
export interface ProviderInfo {
|
|
116
171
|
provider: string;
|
|
117
172
|
relayers: string[];
|
|
@@ -120,6 +175,11 @@ export interface ProviderInfoProtoMsg {
|
|
|
120
175
|
typeUrl: "/injective.oracle.v1beta1.ProviderInfo";
|
|
121
176
|
value: Uint8Array;
|
|
122
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* @name ProviderInfoAmino
|
|
180
|
+
* @package injective.oracle.v1beta1
|
|
181
|
+
* @see proto type: injective.oracle.v1beta1.ProviderInfo
|
|
182
|
+
*/
|
|
123
183
|
export interface ProviderInfoAmino {
|
|
124
184
|
provider: string;
|
|
125
185
|
relayers: string[];
|
|
@@ -128,6 +188,11 @@ export interface ProviderInfoAminoMsg {
|
|
|
128
188
|
type: "/injective.oracle.v1beta1.ProviderInfo";
|
|
129
189
|
value: ProviderInfoAmino;
|
|
130
190
|
}
|
|
191
|
+
/**
|
|
192
|
+
* @name ProviderState
|
|
193
|
+
* @package injective.oracle.v1beta1
|
|
194
|
+
* @see proto type: injective.oracle.v1beta1.ProviderState
|
|
195
|
+
*/
|
|
131
196
|
export interface ProviderState {
|
|
132
197
|
providerInfo?: ProviderInfo;
|
|
133
198
|
providerPriceStates: ProviderPriceState[];
|
|
@@ -136,6 +201,11 @@ export interface ProviderStateProtoMsg {
|
|
|
136
201
|
typeUrl: "/injective.oracle.v1beta1.ProviderState";
|
|
137
202
|
value: Uint8Array;
|
|
138
203
|
}
|
|
204
|
+
/**
|
|
205
|
+
* @name ProviderStateAmino
|
|
206
|
+
* @package injective.oracle.v1beta1
|
|
207
|
+
* @see proto type: injective.oracle.v1beta1.ProviderState
|
|
208
|
+
*/
|
|
139
209
|
export interface ProviderStateAmino {
|
|
140
210
|
provider_info?: ProviderInfoAmino;
|
|
141
211
|
provider_price_states: ProviderPriceStateAmino[];
|
|
@@ -144,6 +214,11 @@ export interface ProviderStateAminoMsg {
|
|
|
144
214
|
type: "/injective.oracle.v1beta1.ProviderState";
|
|
145
215
|
value: ProviderStateAmino;
|
|
146
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* @name ProviderPriceState
|
|
219
|
+
* @package injective.oracle.v1beta1
|
|
220
|
+
* @see proto type: injective.oracle.v1beta1.ProviderPriceState
|
|
221
|
+
*/
|
|
147
222
|
export interface ProviderPriceState {
|
|
148
223
|
symbol: string;
|
|
149
224
|
state?: PriceState;
|
|
@@ -152,6 +227,11 @@ export interface ProviderPriceStateProtoMsg {
|
|
|
152
227
|
typeUrl: "/injective.oracle.v1beta1.ProviderPriceState";
|
|
153
228
|
value: Uint8Array;
|
|
154
229
|
}
|
|
230
|
+
/**
|
|
231
|
+
* @name ProviderPriceStateAmino
|
|
232
|
+
* @package injective.oracle.v1beta1
|
|
233
|
+
* @see proto type: injective.oracle.v1beta1.ProviderPriceState
|
|
234
|
+
*/
|
|
155
235
|
export interface ProviderPriceStateAmino {
|
|
156
236
|
symbol: string;
|
|
157
237
|
state?: PriceStateAmino;
|
|
@@ -160,6 +240,11 @@ export interface ProviderPriceStateAminoMsg {
|
|
|
160
240
|
type: "/injective.oracle.v1beta1.ProviderPriceState";
|
|
161
241
|
value: ProviderPriceStateAmino;
|
|
162
242
|
}
|
|
243
|
+
/**
|
|
244
|
+
* @name PriceFeedInfo
|
|
245
|
+
* @package injective.oracle.v1beta1
|
|
246
|
+
* @see proto type: injective.oracle.v1beta1.PriceFeedInfo
|
|
247
|
+
*/
|
|
163
248
|
export interface PriceFeedInfo {
|
|
164
249
|
base: string;
|
|
165
250
|
quote: string;
|
|
@@ -168,6 +253,11 @@ export interface PriceFeedInfoProtoMsg {
|
|
|
168
253
|
typeUrl: "/injective.oracle.v1beta1.PriceFeedInfo";
|
|
169
254
|
value: Uint8Array;
|
|
170
255
|
}
|
|
256
|
+
/**
|
|
257
|
+
* @name PriceFeedInfoAmino
|
|
258
|
+
* @package injective.oracle.v1beta1
|
|
259
|
+
* @see proto type: injective.oracle.v1beta1.PriceFeedInfo
|
|
260
|
+
*/
|
|
171
261
|
export interface PriceFeedInfoAmino {
|
|
172
262
|
base: string;
|
|
173
263
|
quote: string;
|
|
@@ -176,6 +266,11 @@ export interface PriceFeedInfoAminoMsg {
|
|
|
176
266
|
type: "/injective.oracle.v1beta1.PriceFeedInfo";
|
|
177
267
|
value: PriceFeedInfoAmino;
|
|
178
268
|
}
|
|
269
|
+
/**
|
|
270
|
+
* @name PriceFeedPrice
|
|
271
|
+
* @package injective.oracle.v1beta1
|
|
272
|
+
* @see proto type: injective.oracle.v1beta1.PriceFeedPrice
|
|
273
|
+
*/
|
|
179
274
|
export interface PriceFeedPrice {
|
|
180
275
|
price: string;
|
|
181
276
|
}
|
|
@@ -183,6 +278,11 @@ export interface PriceFeedPriceProtoMsg {
|
|
|
183
278
|
typeUrl: "/injective.oracle.v1beta1.PriceFeedPrice";
|
|
184
279
|
value: Uint8Array;
|
|
185
280
|
}
|
|
281
|
+
/**
|
|
282
|
+
* @name PriceFeedPriceAmino
|
|
283
|
+
* @package injective.oracle.v1beta1
|
|
284
|
+
* @see proto type: injective.oracle.v1beta1.PriceFeedPrice
|
|
285
|
+
*/
|
|
186
286
|
export interface PriceFeedPriceAmino {
|
|
187
287
|
price: string;
|
|
188
288
|
}
|
|
@@ -190,66 +290,127 @@ export interface PriceFeedPriceAminoMsg {
|
|
|
190
290
|
type: "/injective.oracle.v1beta1.PriceFeedPrice";
|
|
191
291
|
value: PriceFeedPriceAmino;
|
|
192
292
|
}
|
|
293
|
+
/**
|
|
294
|
+
* @name CoinbasePriceState
|
|
295
|
+
* @package injective.oracle.v1beta1
|
|
296
|
+
* @see proto type: injective.oracle.v1beta1.CoinbasePriceState
|
|
297
|
+
*/
|
|
193
298
|
export interface CoinbasePriceState {
|
|
194
|
-
/**
|
|
299
|
+
/**
|
|
300
|
+
* kind should always be "prices"
|
|
301
|
+
*/
|
|
195
302
|
kind: string;
|
|
196
|
-
/**
|
|
303
|
+
/**
|
|
304
|
+
* timestamp of the when the price was signed by coinbase
|
|
305
|
+
*/
|
|
197
306
|
timestamp: bigint;
|
|
198
|
-
/**
|
|
307
|
+
/**
|
|
308
|
+
* the symbol of the price, e.g. BTC
|
|
309
|
+
*/
|
|
199
310
|
key: string;
|
|
200
|
-
/**
|
|
311
|
+
/**
|
|
312
|
+
* the value of the price scaled by 1e6
|
|
313
|
+
*/
|
|
201
314
|
value: bigint;
|
|
202
|
-
/**
|
|
315
|
+
/**
|
|
316
|
+
* the price state
|
|
317
|
+
*/
|
|
203
318
|
priceState: PriceState;
|
|
204
319
|
}
|
|
205
320
|
export interface CoinbasePriceStateProtoMsg {
|
|
206
321
|
typeUrl: "/injective.oracle.v1beta1.CoinbasePriceState";
|
|
207
322
|
value: Uint8Array;
|
|
208
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* @name CoinbasePriceStateAmino
|
|
326
|
+
* @package injective.oracle.v1beta1
|
|
327
|
+
* @see proto type: injective.oracle.v1beta1.CoinbasePriceState
|
|
328
|
+
*/
|
|
209
329
|
export interface CoinbasePriceStateAmino {
|
|
210
|
-
/**
|
|
330
|
+
/**
|
|
331
|
+
* kind should always be "prices"
|
|
332
|
+
*/
|
|
211
333
|
kind: string;
|
|
212
|
-
/**
|
|
334
|
+
/**
|
|
335
|
+
* timestamp of the when the price was signed by coinbase
|
|
336
|
+
*/
|
|
213
337
|
timestamp: string;
|
|
214
|
-
/**
|
|
338
|
+
/**
|
|
339
|
+
* the symbol of the price, e.g. BTC
|
|
340
|
+
*/
|
|
215
341
|
key: string;
|
|
216
|
-
/**
|
|
342
|
+
/**
|
|
343
|
+
* the value of the price scaled by 1e6
|
|
344
|
+
*/
|
|
217
345
|
value: string;
|
|
218
|
-
/**
|
|
346
|
+
/**
|
|
347
|
+
* the price state
|
|
348
|
+
*/
|
|
219
349
|
price_state: PriceStateAmino;
|
|
220
350
|
}
|
|
221
351
|
export interface CoinbasePriceStateAminoMsg {
|
|
222
352
|
type: "/injective.oracle.v1beta1.CoinbasePriceState";
|
|
223
353
|
value: CoinbasePriceStateAmino;
|
|
224
354
|
}
|
|
355
|
+
/**
|
|
356
|
+
* @name StorkPriceState
|
|
357
|
+
* @package injective.oracle.v1beta1
|
|
358
|
+
* @see proto type: injective.oracle.v1beta1.StorkPriceState
|
|
359
|
+
*/
|
|
225
360
|
export interface StorkPriceState {
|
|
226
|
-
/**
|
|
361
|
+
/**
|
|
362
|
+
* timestamp of the when the price was signed by stork
|
|
363
|
+
*/
|
|
227
364
|
timestamp: bigint;
|
|
228
|
-
/**
|
|
365
|
+
/**
|
|
366
|
+
* the symbol of the price, e.g. BTC
|
|
367
|
+
*/
|
|
229
368
|
symbol: string;
|
|
230
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* the value of the price scaled by 1e18
|
|
371
|
+
*/
|
|
231
372
|
value: string;
|
|
232
|
-
/**
|
|
373
|
+
/**
|
|
374
|
+
* the price state
|
|
375
|
+
*/
|
|
233
376
|
priceState: PriceState;
|
|
234
377
|
}
|
|
235
378
|
export interface StorkPriceStateProtoMsg {
|
|
236
379
|
typeUrl: "/injective.oracle.v1beta1.StorkPriceState";
|
|
237
380
|
value: Uint8Array;
|
|
238
381
|
}
|
|
382
|
+
/**
|
|
383
|
+
* @name StorkPriceStateAmino
|
|
384
|
+
* @package injective.oracle.v1beta1
|
|
385
|
+
* @see proto type: injective.oracle.v1beta1.StorkPriceState
|
|
386
|
+
*/
|
|
239
387
|
export interface StorkPriceStateAmino {
|
|
240
|
-
/**
|
|
388
|
+
/**
|
|
389
|
+
* timestamp of the when the price was signed by stork
|
|
390
|
+
*/
|
|
241
391
|
timestamp: string;
|
|
242
|
-
/**
|
|
392
|
+
/**
|
|
393
|
+
* the symbol of the price, e.g. BTC
|
|
394
|
+
*/
|
|
243
395
|
symbol: string;
|
|
244
|
-
/**
|
|
396
|
+
/**
|
|
397
|
+
* the value of the price scaled by 1e18
|
|
398
|
+
*/
|
|
245
399
|
value: string;
|
|
246
|
-
/**
|
|
400
|
+
/**
|
|
401
|
+
* the price state
|
|
402
|
+
*/
|
|
247
403
|
price_state: PriceStateAmino;
|
|
248
404
|
}
|
|
249
405
|
export interface StorkPriceStateAminoMsg {
|
|
250
406
|
type: "/injective.oracle.v1beta1.StorkPriceState";
|
|
251
407
|
value: StorkPriceStateAmino;
|
|
252
408
|
}
|
|
409
|
+
/**
|
|
410
|
+
* @name PriceState
|
|
411
|
+
* @package injective.oracle.v1beta1
|
|
412
|
+
* @see proto type: injective.oracle.v1beta1.PriceState
|
|
413
|
+
*/
|
|
253
414
|
export interface PriceState {
|
|
254
415
|
price: string;
|
|
255
416
|
cumulativePrice: string;
|
|
@@ -259,6 +420,11 @@ export interface PriceStateProtoMsg {
|
|
|
259
420
|
typeUrl: "/injective.oracle.v1beta1.PriceState";
|
|
260
421
|
value: Uint8Array;
|
|
261
422
|
}
|
|
423
|
+
/**
|
|
424
|
+
* @name PriceStateAmino
|
|
425
|
+
* @package injective.oracle.v1beta1
|
|
426
|
+
* @see proto type: injective.oracle.v1beta1.PriceState
|
|
427
|
+
*/
|
|
262
428
|
export interface PriceStateAmino {
|
|
263
429
|
price: string;
|
|
264
430
|
cumulative_price: string;
|
|
@@ -268,6 +434,11 @@ export interface PriceStateAminoMsg {
|
|
|
268
434
|
type: "/injective.oracle.v1beta1.PriceState";
|
|
269
435
|
value: PriceStateAmino;
|
|
270
436
|
}
|
|
437
|
+
/**
|
|
438
|
+
* @name PythPriceState
|
|
439
|
+
* @package injective.oracle.v1beta1
|
|
440
|
+
* @see proto type: injective.oracle.v1beta1.PythPriceState
|
|
441
|
+
*/
|
|
271
442
|
export interface PythPriceState {
|
|
272
443
|
priceId: string;
|
|
273
444
|
emaPrice: string;
|
|
@@ -280,6 +451,11 @@ export interface PythPriceStateProtoMsg {
|
|
|
280
451
|
typeUrl: "/injective.oracle.v1beta1.PythPriceState";
|
|
281
452
|
value: Uint8Array;
|
|
282
453
|
}
|
|
454
|
+
/**
|
|
455
|
+
* @name PythPriceStateAmino
|
|
456
|
+
* @package injective.oracle.v1beta1
|
|
457
|
+
* @see proto type: injective.oracle.v1beta1.PythPriceState
|
|
458
|
+
*/
|
|
283
459
|
export interface PythPriceStateAmino {
|
|
284
460
|
price_id: string;
|
|
285
461
|
ema_price: string;
|
|
@@ -292,15 +468,24 @@ export interface PythPriceStateAminoMsg {
|
|
|
292
468
|
type: "/injective.oracle.v1beta1.PythPriceState";
|
|
293
469
|
value: PythPriceStateAmino;
|
|
294
470
|
}
|
|
471
|
+
/**
|
|
472
|
+
* @name BandOracleRequest
|
|
473
|
+
* @package injective.oracle.v1beta1
|
|
474
|
+
* @see proto type: injective.oracle.v1beta1.BandOracleRequest
|
|
475
|
+
*/
|
|
295
476
|
export interface BandOracleRequest {
|
|
296
|
-
/**
|
|
477
|
+
/**
|
|
478
|
+
* Unique Identifier for band ibc oracle request
|
|
479
|
+
*/
|
|
297
480
|
requestId: bigint;
|
|
298
481
|
/**
|
|
299
482
|
* OracleScriptID is the unique identifier of the oracle script to be
|
|
300
483
|
* executed.
|
|
301
484
|
*/
|
|
302
485
|
oracleScriptId: bigint;
|
|
303
|
-
/**
|
|
486
|
+
/**
|
|
487
|
+
* Symbols is the list of symbols to prepare in the calldata
|
|
488
|
+
*/
|
|
304
489
|
symbols: string[];
|
|
305
490
|
/**
|
|
306
491
|
* AskCount is the number of validators that are requested to respond to this
|
|
@@ -318,9 +503,13 @@ export interface BandOracleRequest {
|
|
|
318
503
|
* providers.
|
|
319
504
|
*/
|
|
320
505
|
feeLimit: Coin[];
|
|
321
|
-
/**
|
|
506
|
+
/**
|
|
507
|
+
* PrepareGas is amount of gas to pay to prepare raw requests
|
|
508
|
+
*/
|
|
322
509
|
prepareGas: bigint;
|
|
323
|
-
/**
|
|
510
|
+
/**
|
|
511
|
+
* ExecuteGas is amount of gas to reserve for executing
|
|
512
|
+
*/
|
|
324
513
|
executeGas: bigint;
|
|
325
514
|
/**
|
|
326
515
|
* MinSourceCount is the minimum number of data sources that must be used by
|
|
@@ -332,15 +521,24 @@ export interface BandOracleRequestProtoMsg {
|
|
|
332
521
|
typeUrl: "/injective.oracle.v1beta1.BandOracleRequest";
|
|
333
522
|
value: Uint8Array;
|
|
334
523
|
}
|
|
524
|
+
/**
|
|
525
|
+
* @name BandOracleRequestAmino
|
|
526
|
+
* @package injective.oracle.v1beta1
|
|
527
|
+
* @see proto type: injective.oracle.v1beta1.BandOracleRequest
|
|
528
|
+
*/
|
|
335
529
|
export interface BandOracleRequestAmino {
|
|
336
|
-
/**
|
|
530
|
+
/**
|
|
531
|
+
* Unique Identifier for band ibc oracle request
|
|
532
|
+
*/
|
|
337
533
|
request_id: string;
|
|
338
534
|
/**
|
|
339
535
|
* OracleScriptID is the unique identifier of the oracle script to be
|
|
340
536
|
* executed.
|
|
341
537
|
*/
|
|
342
538
|
oracle_script_id: string;
|
|
343
|
-
/**
|
|
539
|
+
/**
|
|
540
|
+
* Symbols is the list of symbols to prepare in the calldata
|
|
541
|
+
*/
|
|
344
542
|
symbols: string[];
|
|
345
543
|
/**
|
|
346
544
|
* AskCount is the number of validators that are requested to respond to this
|
|
@@ -358,9 +556,13 @@ export interface BandOracleRequestAmino {
|
|
|
358
556
|
* providers.
|
|
359
557
|
*/
|
|
360
558
|
fee_limit: CoinAmino[];
|
|
361
|
-
/**
|
|
559
|
+
/**
|
|
560
|
+
* PrepareGas is amount of gas to pay to prepare raw requests
|
|
561
|
+
*/
|
|
362
562
|
prepare_gas: string;
|
|
363
|
-
/**
|
|
563
|
+
/**
|
|
564
|
+
* ExecuteGas is amount of gas to reserve for executing
|
|
565
|
+
*/
|
|
364
566
|
execute_gas: string;
|
|
365
567
|
/**
|
|
366
568
|
* MinSourceCount is the minimum number of data sources that must be used by
|
|
@@ -372,42 +574,81 @@ export interface BandOracleRequestAminoMsg {
|
|
|
372
574
|
type: "/injective.oracle.v1beta1.BandOracleRequest";
|
|
373
575
|
value: BandOracleRequestAmino;
|
|
374
576
|
}
|
|
577
|
+
/**
|
|
578
|
+
* @name BandIBCParams
|
|
579
|
+
* @package injective.oracle.v1beta1
|
|
580
|
+
* @see proto type: injective.oracle.v1beta1.BandIBCParams
|
|
581
|
+
*/
|
|
375
582
|
export interface BandIBCParams {
|
|
376
|
-
/**
|
|
583
|
+
/**
|
|
584
|
+
* true if Band IBC should be enabled
|
|
585
|
+
*/
|
|
377
586
|
bandIbcEnabled: boolean;
|
|
378
|
-
/**
|
|
587
|
+
/**
|
|
588
|
+
* block request interval to send Band IBC prices
|
|
589
|
+
*/
|
|
379
590
|
ibcRequestInterval: bigint;
|
|
380
|
-
/**
|
|
591
|
+
/**
|
|
592
|
+
* band IBC source channel
|
|
593
|
+
*/
|
|
381
594
|
ibcSourceChannel: string;
|
|
382
|
-
/**
|
|
595
|
+
/**
|
|
596
|
+
* band IBC version
|
|
597
|
+
*/
|
|
383
598
|
ibcVersion: string;
|
|
384
|
-
/**
|
|
599
|
+
/**
|
|
600
|
+
* band IBC portID
|
|
601
|
+
*/
|
|
385
602
|
ibcPortId: string;
|
|
386
|
-
/**
|
|
603
|
+
/**
|
|
604
|
+
* legacy oracle scheme ids
|
|
605
|
+
*/
|
|
387
606
|
legacyOracleIds: bigint[];
|
|
388
607
|
}
|
|
389
608
|
export interface BandIBCParamsProtoMsg {
|
|
390
609
|
typeUrl: "/injective.oracle.v1beta1.BandIBCParams";
|
|
391
610
|
value: Uint8Array;
|
|
392
611
|
}
|
|
612
|
+
/**
|
|
613
|
+
* @name BandIBCParamsAmino
|
|
614
|
+
* @package injective.oracle.v1beta1
|
|
615
|
+
* @see proto type: injective.oracle.v1beta1.BandIBCParams
|
|
616
|
+
*/
|
|
393
617
|
export interface BandIBCParamsAmino {
|
|
394
|
-
/**
|
|
618
|
+
/**
|
|
619
|
+
* true if Band IBC should be enabled
|
|
620
|
+
*/
|
|
395
621
|
band_ibc_enabled: boolean;
|
|
396
|
-
/**
|
|
622
|
+
/**
|
|
623
|
+
* block request interval to send Band IBC prices
|
|
624
|
+
*/
|
|
397
625
|
ibc_request_interval: string;
|
|
398
|
-
/**
|
|
626
|
+
/**
|
|
627
|
+
* band IBC source channel
|
|
628
|
+
*/
|
|
399
629
|
ibc_source_channel: string;
|
|
400
|
-
/**
|
|
630
|
+
/**
|
|
631
|
+
* band IBC version
|
|
632
|
+
*/
|
|
401
633
|
ibc_version: string;
|
|
402
|
-
/**
|
|
634
|
+
/**
|
|
635
|
+
* band IBC portID
|
|
636
|
+
*/
|
|
403
637
|
ibc_port_id: string;
|
|
404
|
-
/**
|
|
638
|
+
/**
|
|
639
|
+
* legacy oracle scheme ids
|
|
640
|
+
*/
|
|
405
641
|
legacy_oracle_ids: string[];
|
|
406
642
|
}
|
|
407
643
|
export interface BandIBCParamsAminoMsg {
|
|
408
644
|
type: "/injective.oracle.v1beta1.BandIBCParams";
|
|
409
645
|
value: BandIBCParamsAmino;
|
|
410
646
|
}
|
|
647
|
+
/**
|
|
648
|
+
* @name SymbolPriceTimestamp
|
|
649
|
+
* @package injective.oracle.v1beta1
|
|
650
|
+
* @see proto type: injective.oracle.v1beta1.SymbolPriceTimestamp
|
|
651
|
+
*/
|
|
411
652
|
export interface SymbolPriceTimestamp {
|
|
412
653
|
oracle: OracleType;
|
|
413
654
|
symbolId: string;
|
|
@@ -417,6 +658,11 @@ export interface SymbolPriceTimestampProtoMsg {
|
|
|
417
658
|
typeUrl: "/injective.oracle.v1beta1.SymbolPriceTimestamp";
|
|
418
659
|
value: Uint8Array;
|
|
419
660
|
}
|
|
661
|
+
/**
|
|
662
|
+
* @name SymbolPriceTimestampAmino
|
|
663
|
+
* @package injective.oracle.v1beta1
|
|
664
|
+
* @see proto type: injective.oracle.v1beta1.SymbolPriceTimestamp
|
|
665
|
+
*/
|
|
420
666
|
export interface SymbolPriceTimestampAmino {
|
|
421
667
|
oracle: OracleType;
|
|
422
668
|
symbol_id: string;
|
|
@@ -426,6 +672,11 @@ export interface SymbolPriceTimestampAminoMsg {
|
|
|
426
672
|
type: "/injective.oracle.v1beta1.SymbolPriceTimestamp";
|
|
427
673
|
value: SymbolPriceTimestampAmino;
|
|
428
674
|
}
|
|
675
|
+
/**
|
|
676
|
+
* @name LastPriceTimestamps
|
|
677
|
+
* @package injective.oracle.v1beta1
|
|
678
|
+
* @see proto type: injective.oracle.v1beta1.LastPriceTimestamps
|
|
679
|
+
*/
|
|
429
680
|
export interface LastPriceTimestamps {
|
|
430
681
|
lastPriceTimestamps: SymbolPriceTimestamp[];
|
|
431
682
|
}
|
|
@@ -433,6 +684,11 @@ export interface LastPriceTimestampsProtoMsg {
|
|
|
433
684
|
typeUrl: "/injective.oracle.v1beta1.LastPriceTimestamps";
|
|
434
685
|
value: Uint8Array;
|
|
435
686
|
}
|
|
687
|
+
/**
|
|
688
|
+
* @name LastPriceTimestampsAmino
|
|
689
|
+
* @package injective.oracle.v1beta1
|
|
690
|
+
* @see proto type: injective.oracle.v1beta1.LastPriceTimestamps
|
|
691
|
+
*/
|
|
436
692
|
export interface LastPriceTimestampsAmino {
|
|
437
693
|
last_price_timestamps: SymbolPriceTimestampAmino[];
|
|
438
694
|
}
|
|
@@ -440,6 +696,11 @@ export interface LastPriceTimestampsAminoMsg {
|
|
|
440
696
|
type: "/injective.oracle.v1beta1.LastPriceTimestamps";
|
|
441
697
|
value: LastPriceTimestampsAmino;
|
|
442
698
|
}
|
|
699
|
+
/**
|
|
700
|
+
* @name PriceRecords
|
|
701
|
+
* @package injective.oracle.v1beta1
|
|
702
|
+
* @see proto type: injective.oracle.v1beta1.PriceRecords
|
|
703
|
+
*/
|
|
443
704
|
export interface PriceRecords {
|
|
444
705
|
oracle: OracleType;
|
|
445
706
|
symbolId: string;
|
|
@@ -449,6 +710,11 @@ export interface PriceRecordsProtoMsg {
|
|
|
449
710
|
typeUrl: "/injective.oracle.v1beta1.PriceRecords";
|
|
450
711
|
value: Uint8Array;
|
|
451
712
|
}
|
|
713
|
+
/**
|
|
714
|
+
* @name PriceRecordsAmino
|
|
715
|
+
* @package injective.oracle.v1beta1
|
|
716
|
+
* @see proto type: injective.oracle.v1beta1.PriceRecords
|
|
717
|
+
*/
|
|
452
718
|
export interface PriceRecordsAmino {
|
|
453
719
|
oracle: OracleType;
|
|
454
720
|
symbol_id: string;
|
|
@@ -458,6 +724,11 @@ export interface PriceRecordsAminoMsg {
|
|
|
458
724
|
type: "/injective.oracle.v1beta1.PriceRecords";
|
|
459
725
|
value: PriceRecordsAmino;
|
|
460
726
|
}
|
|
727
|
+
/**
|
|
728
|
+
* @name PriceRecord
|
|
729
|
+
* @package injective.oracle.v1beta1
|
|
730
|
+
* @see proto type: injective.oracle.v1beta1.PriceRecord
|
|
731
|
+
*/
|
|
461
732
|
export interface PriceRecord {
|
|
462
733
|
timestamp: bigint;
|
|
463
734
|
price: string;
|
|
@@ -466,6 +737,11 @@ export interface PriceRecordProtoMsg {
|
|
|
466
737
|
typeUrl: "/injective.oracle.v1beta1.PriceRecord";
|
|
467
738
|
value: Uint8Array;
|
|
468
739
|
}
|
|
740
|
+
/**
|
|
741
|
+
* @name PriceRecordAmino
|
|
742
|
+
* @package injective.oracle.v1beta1
|
|
743
|
+
* @see proto type: injective.oracle.v1beta1.PriceRecord
|
|
744
|
+
*/
|
|
469
745
|
export interface PriceRecordAmino {
|
|
470
746
|
timestamp: string;
|
|
471
747
|
price: string;
|
|
@@ -477,6 +753,9 @@ export interface PriceRecordAminoMsg {
|
|
|
477
753
|
/**
|
|
478
754
|
* MetadataStatistics refers to the metadata summary statistics of the
|
|
479
755
|
* historical sample considered
|
|
756
|
+
* @name MetadataStatistics
|
|
757
|
+
* @package injective.oracle.v1beta1
|
|
758
|
+
* @see proto type: injective.oracle.v1beta1.MetadataStatistics
|
|
480
759
|
*/
|
|
481
760
|
export interface MetadataStatistics {
|
|
482
761
|
/**
|
|
@@ -484,7 +763,9 @@ export interface MetadataStatistics {
|
|
|
484
763
|
* no grouping is used
|
|
485
764
|
*/
|
|
486
765
|
groupCount: number;
|
|
487
|
-
/**
|
|
766
|
+
/**
|
|
767
|
+
* RecordsSampleSize refers to the total number of records used.
|
|
768
|
+
*/
|
|
488
769
|
recordsSampleSize: number;
|
|
489
770
|
/**
|
|
490
771
|
* Mean refers to the arithmetic mean
|
|
@@ -498,15 +779,25 @@ export interface MetadataStatistics {
|
|
|
498
779
|
* ∆t_i) / ∑ ∆t_i where ∆t_i = t_i - t_{i-1}
|
|
499
780
|
*/
|
|
500
781
|
twap: string;
|
|
501
|
-
/**
|
|
782
|
+
/**
|
|
783
|
+
* FirstTimestamp is the timestamp of the oldest record considered
|
|
784
|
+
*/
|
|
502
785
|
firstTimestamp: bigint;
|
|
503
|
-
/**
|
|
786
|
+
/**
|
|
787
|
+
* LastTimestamp is the timestamp of the youngest record considered
|
|
788
|
+
*/
|
|
504
789
|
lastTimestamp: bigint;
|
|
505
|
-
/**
|
|
790
|
+
/**
|
|
791
|
+
* MinPrice refers to the smallest individual raw price considered
|
|
792
|
+
*/
|
|
506
793
|
minPrice: string;
|
|
507
|
-
/**
|
|
794
|
+
/**
|
|
795
|
+
* MaxPrice refers to the largest individual raw price considered
|
|
796
|
+
*/
|
|
508
797
|
maxPrice: string;
|
|
509
|
-
/**
|
|
798
|
+
/**
|
|
799
|
+
* MedianPrice refers to the median individual raw price considered
|
|
800
|
+
*/
|
|
510
801
|
medianPrice: string;
|
|
511
802
|
}
|
|
512
803
|
export interface MetadataStatisticsProtoMsg {
|
|
@@ -516,6 +807,9 @@ export interface MetadataStatisticsProtoMsg {
|
|
|
516
807
|
/**
|
|
517
808
|
* MetadataStatistics refers to the metadata summary statistics of the
|
|
518
809
|
* historical sample considered
|
|
810
|
+
* @name MetadataStatisticsAmino
|
|
811
|
+
* @package injective.oracle.v1beta1
|
|
812
|
+
* @see proto type: injective.oracle.v1beta1.MetadataStatistics
|
|
519
813
|
*/
|
|
520
814
|
export interface MetadataStatisticsAmino {
|
|
521
815
|
/**
|
|
@@ -523,7 +817,9 @@ export interface MetadataStatisticsAmino {
|
|
|
523
817
|
* no grouping is used
|
|
524
818
|
*/
|
|
525
819
|
group_count: number;
|
|
526
|
-
/**
|
|
820
|
+
/**
|
|
821
|
+
* RecordsSampleSize refers to the total number of records used.
|
|
822
|
+
*/
|
|
527
823
|
records_sample_size: number;
|
|
528
824
|
/**
|
|
529
825
|
* Mean refers to the arithmetic mean
|
|
@@ -537,24 +833,41 @@ export interface MetadataStatisticsAmino {
|
|
|
537
833
|
* ∆t_i) / ∑ ∆t_i where ∆t_i = t_i - t_{i-1}
|
|
538
834
|
*/
|
|
539
835
|
twap: string;
|
|
540
|
-
/**
|
|
836
|
+
/**
|
|
837
|
+
* FirstTimestamp is the timestamp of the oldest record considered
|
|
838
|
+
*/
|
|
541
839
|
first_timestamp: string;
|
|
542
|
-
/**
|
|
840
|
+
/**
|
|
841
|
+
* LastTimestamp is the timestamp of the youngest record considered
|
|
842
|
+
*/
|
|
543
843
|
last_timestamp: string;
|
|
544
|
-
/**
|
|
844
|
+
/**
|
|
845
|
+
* MinPrice refers to the smallest individual raw price considered
|
|
846
|
+
*/
|
|
545
847
|
min_price: string;
|
|
546
|
-
/**
|
|
848
|
+
/**
|
|
849
|
+
* MaxPrice refers to the largest individual raw price considered
|
|
850
|
+
*/
|
|
547
851
|
max_price: string;
|
|
548
|
-
/**
|
|
852
|
+
/**
|
|
853
|
+
* MedianPrice refers to the median individual raw price considered
|
|
854
|
+
*/
|
|
549
855
|
median_price: string;
|
|
550
856
|
}
|
|
551
857
|
export interface MetadataStatisticsAminoMsg {
|
|
552
858
|
type: "/injective.oracle.v1beta1.MetadataStatistics";
|
|
553
859
|
value: MetadataStatisticsAmino;
|
|
554
860
|
}
|
|
861
|
+
/**
|
|
862
|
+
* @name PriceAttestation
|
|
863
|
+
* @package injective.oracle.v1beta1
|
|
864
|
+
* @see proto type: injective.oracle.v1beta1.PriceAttestation
|
|
865
|
+
*/
|
|
555
866
|
export interface PriceAttestation {
|
|
556
867
|
priceId: string;
|
|
557
|
-
/**
|
|
868
|
+
/**
|
|
869
|
+
* MaxPrice refers to the largest individual raw price considered
|
|
870
|
+
*/
|
|
558
871
|
price: bigint;
|
|
559
872
|
conf: bigint;
|
|
560
873
|
expo: number;
|
|
@@ -567,9 +880,16 @@ export interface PriceAttestationProtoMsg {
|
|
|
567
880
|
typeUrl: "/injective.oracle.v1beta1.PriceAttestation";
|
|
568
881
|
value: Uint8Array;
|
|
569
882
|
}
|
|
883
|
+
/**
|
|
884
|
+
* @name PriceAttestationAmino
|
|
885
|
+
* @package injective.oracle.v1beta1
|
|
886
|
+
* @see proto type: injective.oracle.v1beta1.PriceAttestation
|
|
887
|
+
*/
|
|
570
888
|
export interface PriceAttestationAmino {
|
|
571
889
|
price_id: string;
|
|
572
|
-
/**
|
|
890
|
+
/**
|
|
891
|
+
* MaxPrice refers to the largest individual raw price considered
|
|
892
|
+
*/
|
|
573
893
|
price: string;
|
|
574
894
|
conf: string;
|
|
575
895
|
expo: number;
|
|
@@ -582,6 +902,11 @@ export interface PriceAttestationAminoMsg {
|
|
|
582
902
|
type: "/injective.oracle.v1beta1.PriceAttestation";
|
|
583
903
|
value: PriceAttestationAmino;
|
|
584
904
|
}
|
|
905
|
+
/**
|
|
906
|
+
* @name AssetPair
|
|
907
|
+
* @package injective.oracle.v1beta1
|
|
908
|
+
* @see proto type: injective.oracle.v1beta1.AssetPair
|
|
909
|
+
*/
|
|
585
910
|
export interface AssetPair {
|
|
586
911
|
assetId: string;
|
|
587
912
|
signedPrices: SignedPriceOfAssetPair[];
|
|
@@ -590,6 +915,11 @@ export interface AssetPairProtoMsg {
|
|
|
590
915
|
typeUrl: "/injective.oracle.v1beta1.AssetPair";
|
|
591
916
|
value: Uint8Array;
|
|
592
917
|
}
|
|
918
|
+
/**
|
|
919
|
+
* @name AssetPairAmino
|
|
920
|
+
* @package injective.oracle.v1beta1
|
|
921
|
+
* @see proto type: injective.oracle.v1beta1.AssetPair
|
|
922
|
+
*/
|
|
593
923
|
export interface AssetPairAmino {
|
|
594
924
|
asset_id: string;
|
|
595
925
|
signed_prices: SignedPriceOfAssetPairAmino[];
|
|
@@ -598,6 +928,11 @@ export interface AssetPairAminoMsg {
|
|
|
598
928
|
type: "/injective.oracle.v1beta1.AssetPair";
|
|
599
929
|
value: AssetPairAmino;
|
|
600
930
|
}
|
|
931
|
+
/**
|
|
932
|
+
* @name SignedPriceOfAssetPair
|
|
933
|
+
* @package injective.oracle.v1beta1
|
|
934
|
+
* @see proto type: injective.oracle.v1beta1.SignedPriceOfAssetPair
|
|
935
|
+
*/
|
|
601
936
|
export interface SignedPriceOfAssetPair {
|
|
602
937
|
publisherKey: string;
|
|
603
938
|
timestamp: bigint;
|
|
@@ -608,6 +943,11 @@ export interface SignedPriceOfAssetPairProtoMsg {
|
|
|
608
943
|
typeUrl: "/injective.oracle.v1beta1.SignedPriceOfAssetPair";
|
|
609
944
|
value: Uint8Array;
|
|
610
945
|
}
|
|
946
|
+
/**
|
|
947
|
+
* @name SignedPriceOfAssetPairAmino
|
|
948
|
+
* @package injective.oracle.v1beta1
|
|
949
|
+
* @see proto type: injective.oracle.v1beta1.SignedPriceOfAssetPair
|
|
950
|
+
*/
|
|
611
951
|
export interface SignedPriceOfAssetPairAmino {
|
|
612
952
|
publisher_key: string;
|
|
613
953
|
timestamp: string;
|
|
@@ -618,6 +958,11 @@ export interface SignedPriceOfAssetPairAminoMsg {
|
|
|
618
958
|
type: "/injective.oracle.v1beta1.SignedPriceOfAssetPair";
|
|
619
959
|
value: SignedPriceOfAssetPairAmino;
|
|
620
960
|
}
|
|
961
|
+
/**
|
|
962
|
+
* @name Params
|
|
963
|
+
* @package injective.oracle.v1beta1
|
|
964
|
+
* @see proto type: injective.oracle.v1beta1.Params
|
|
965
|
+
*/
|
|
621
966
|
export declare const Params: {
|
|
622
967
|
typeUrl: string;
|
|
623
968
|
aminoType: string;
|
|
@@ -635,6 +980,11 @@ export declare const Params: {
|
|
|
635
980
|
toProtoMsg(message: Params): ParamsProtoMsg;
|
|
636
981
|
registerTypeUrl(): void;
|
|
637
982
|
};
|
|
983
|
+
/**
|
|
984
|
+
* @name OracleInfo
|
|
985
|
+
* @package injective.oracle.v1beta1
|
|
986
|
+
* @see proto type: injective.oracle.v1beta1.OracleInfo
|
|
987
|
+
*/
|
|
638
988
|
export declare const OracleInfo: {
|
|
639
989
|
typeUrl: string;
|
|
640
990
|
is(o: any): o is OracleInfo;
|
|
@@ -650,6 +1000,11 @@ export declare const OracleInfo: {
|
|
|
650
1000
|
toProtoMsg(message: OracleInfo): OracleInfoProtoMsg;
|
|
651
1001
|
registerTypeUrl(): void;
|
|
652
1002
|
};
|
|
1003
|
+
/**
|
|
1004
|
+
* @name ChainlinkPriceState
|
|
1005
|
+
* @package injective.oracle.v1beta1
|
|
1006
|
+
* @see proto type: injective.oracle.v1beta1.ChainlinkPriceState
|
|
1007
|
+
*/
|
|
653
1008
|
export declare const ChainlinkPriceState: {
|
|
654
1009
|
typeUrl: string;
|
|
655
1010
|
is(o: any): o is ChainlinkPriceState;
|
|
@@ -665,6 +1020,11 @@ export declare const ChainlinkPriceState: {
|
|
|
665
1020
|
toProtoMsg(message: ChainlinkPriceState): ChainlinkPriceStateProtoMsg;
|
|
666
1021
|
registerTypeUrl(): void;
|
|
667
1022
|
};
|
|
1023
|
+
/**
|
|
1024
|
+
* @name BandPriceState
|
|
1025
|
+
* @package injective.oracle.v1beta1
|
|
1026
|
+
* @see proto type: injective.oracle.v1beta1.BandPriceState
|
|
1027
|
+
*/
|
|
668
1028
|
export declare const BandPriceState: {
|
|
669
1029
|
typeUrl: string;
|
|
670
1030
|
is(o: any): o is BandPriceState;
|
|
@@ -680,6 +1040,11 @@ export declare const BandPriceState: {
|
|
|
680
1040
|
toProtoMsg(message: BandPriceState): BandPriceStateProtoMsg;
|
|
681
1041
|
registerTypeUrl(): void;
|
|
682
1042
|
};
|
|
1043
|
+
/**
|
|
1044
|
+
* @name PriceFeedState
|
|
1045
|
+
* @package injective.oracle.v1beta1
|
|
1046
|
+
* @see proto type: injective.oracle.v1beta1.PriceFeedState
|
|
1047
|
+
*/
|
|
683
1048
|
export declare const PriceFeedState: {
|
|
684
1049
|
typeUrl: string;
|
|
685
1050
|
is(o: any): o is PriceFeedState;
|
|
@@ -695,6 +1060,11 @@ export declare const PriceFeedState: {
|
|
|
695
1060
|
toProtoMsg(message: PriceFeedState): PriceFeedStateProtoMsg;
|
|
696
1061
|
registerTypeUrl(): void;
|
|
697
1062
|
};
|
|
1063
|
+
/**
|
|
1064
|
+
* @name ProviderInfo
|
|
1065
|
+
* @package injective.oracle.v1beta1
|
|
1066
|
+
* @see proto type: injective.oracle.v1beta1.ProviderInfo
|
|
1067
|
+
*/
|
|
698
1068
|
export declare const ProviderInfo: {
|
|
699
1069
|
typeUrl: string;
|
|
700
1070
|
is(o: any): o is ProviderInfo;
|
|
@@ -710,6 +1080,11 @@ export declare const ProviderInfo: {
|
|
|
710
1080
|
toProtoMsg(message: ProviderInfo): ProviderInfoProtoMsg;
|
|
711
1081
|
registerTypeUrl(): void;
|
|
712
1082
|
};
|
|
1083
|
+
/**
|
|
1084
|
+
* @name ProviderState
|
|
1085
|
+
* @package injective.oracle.v1beta1
|
|
1086
|
+
* @see proto type: injective.oracle.v1beta1.ProviderState
|
|
1087
|
+
*/
|
|
713
1088
|
export declare const ProviderState: {
|
|
714
1089
|
typeUrl: string;
|
|
715
1090
|
is(o: any): o is ProviderState;
|
|
@@ -725,6 +1100,11 @@ export declare const ProviderState: {
|
|
|
725
1100
|
toProtoMsg(message: ProviderState): ProviderStateProtoMsg;
|
|
726
1101
|
registerTypeUrl(): void;
|
|
727
1102
|
};
|
|
1103
|
+
/**
|
|
1104
|
+
* @name ProviderPriceState
|
|
1105
|
+
* @package injective.oracle.v1beta1
|
|
1106
|
+
* @see proto type: injective.oracle.v1beta1.ProviderPriceState
|
|
1107
|
+
*/
|
|
728
1108
|
export declare const ProviderPriceState: {
|
|
729
1109
|
typeUrl: string;
|
|
730
1110
|
is(o: any): o is ProviderPriceState;
|
|
@@ -740,6 +1120,11 @@ export declare const ProviderPriceState: {
|
|
|
740
1120
|
toProtoMsg(message: ProviderPriceState): ProviderPriceStateProtoMsg;
|
|
741
1121
|
registerTypeUrl(): void;
|
|
742
1122
|
};
|
|
1123
|
+
/**
|
|
1124
|
+
* @name PriceFeedInfo
|
|
1125
|
+
* @package injective.oracle.v1beta1
|
|
1126
|
+
* @see proto type: injective.oracle.v1beta1.PriceFeedInfo
|
|
1127
|
+
*/
|
|
743
1128
|
export declare const PriceFeedInfo: {
|
|
744
1129
|
typeUrl: string;
|
|
745
1130
|
is(o: any): o is PriceFeedInfo;
|
|
@@ -755,6 +1140,11 @@ export declare const PriceFeedInfo: {
|
|
|
755
1140
|
toProtoMsg(message: PriceFeedInfo): PriceFeedInfoProtoMsg;
|
|
756
1141
|
registerTypeUrl(): void;
|
|
757
1142
|
};
|
|
1143
|
+
/**
|
|
1144
|
+
* @name PriceFeedPrice
|
|
1145
|
+
* @package injective.oracle.v1beta1
|
|
1146
|
+
* @see proto type: injective.oracle.v1beta1.PriceFeedPrice
|
|
1147
|
+
*/
|
|
758
1148
|
export declare const PriceFeedPrice: {
|
|
759
1149
|
typeUrl: string;
|
|
760
1150
|
is(o: any): o is PriceFeedPrice;
|
|
@@ -770,6 +1160,11 @@ export declare const PriceFeedPrice: {
|
|
|
770
1160
|
toProtoMsg(message: PriceFeedPrice): PriceFeedPriceProtoMsg;
|
|
771
1161
|
registerTypeUrl(): void;
|
|
772
1162
|
};
|
|
1163
|
+
/**
|
|
1164
|
+
* @name CoinbasePriceState
|
|
1165
|
+
* @package injective.oracle.v1beta1
|
|
1166
|
+
* @see proto type: injective.oracle.v1beta1.CoinbasePriceState
|
|
1167
|
+
*/
|
|
773
1168
|
export declare const CoinbasePriceState: {
|
|
774
1169
|
typeUrl: string;
|
|
775
1170
|
is(o: any): o is CoinbasePriceState;
|
|
@@ -785,6 +1180,11 @@ export declare const CoinbasePriceState: {
|
|
|
785
1180
|
toProtoMsg(message: CoinbasePriceState): CoinbasePriceStateProtoMsg;
|
|
786
1181
|
registerTypeUrl(): void;
|
|
787
1182
|
};
|
|
1183
|
+
/**
|
|
1184
|
+
* @name StorkPriceState
|
|
1185
|
+
* @package injective.oracle.v1beta1
|
|
1186
|
+
* @see proto type: injective.oracle.v1beta1.StorkPriceState
|
|
1187
|
+
*/
|
|
788
1188
|
export declare const StorkPriceState: {
|
|
789
1189
|
typeUrl: string;
|
|
790
1190
|
is(o: any): o is StorkPriceState;
|
|
@@ -800,6 +1200,11 @@ export declare const StorkPriceState: {
|
|
|
800
1200
|
toProtoMsg(message: StorkPriceState): StorkPriceStateProtoMsg;
|
|
801
1201
|
registerTypeUrl(): void;
|
|
802
1202
|
};
|
|
1203
|
+
/**
|
|
1204
|
+
* @name PriceState
|
|
1205
|
+
* @package injective.oracle.v1beta1
|
|
1206
|
+
* @see proto type: injective.oracle.v1beta1.PriceState
|
|
1207
|
+
*/
|
|
803
1208
|
export declare const PriceState: {
|
|
804
1209
|
typeUrl: string;
|
|
805
1210
|
is(o: any): o is PriceState;
|
|
@@ -815,6 +1220,11 @@ export declare const PriceState: {
|
|
|
815
1220
|
toProtoMsg(message: PriceState): PriceStateProtoMsg;
|
|
816
1221
|
registerTypeUrl(): void;
|
|
817
1222
|
};
|
|
1223
|
+
/**
|
|
1224
|
+
* @name PythPriceState
|
|
1225
|
+
* @package injective.oracle.v1beta1
|
|
1226
|
+
* @see proto type: injective.oracle.v1beta1.PythPriceState
|
|
1227
|
+
*/
|
|
818
1228
|
export declare const PythPriceState: {
|
|
819
1229
|
typeUrl: string;
|
|
820
1230
|
is(o: any): o is PythPriceState;
|
|
@@ -830,6 +1240,11 @@ export declare const PythPriceState: {
|
|
|
830
1240
|
toProtoMsg(message: PythPriceState): PythPriceStateProtoMsg;
|
|
831
1241
|
registerTypeUrl(): void;
|
|
832
1242
|
};
|
|
1243
|
+
/**
|
|
1244
|
+
* @name BandOracleRequest
|
|
1245
|
+
* @package injective.oracle.v1beta1
|
|
1246
|
+
* @see proto type: injective.oracle.v1beta1.BandOracleRequest
|
|
1247
|
+
*/
|
|
833
1248
|
export declare const BandOracleRequest: {
|
|
834
1249
|
typeUrl: string;
|
|
835
1250
|
is(o: any): o is BandOracleRequest;
|
|
@@ -845,6 +1260,11 @@ export declare const BandOracleRequest: {
|
|
|
845
1260
|
toProtoMsg(message: BandOracleRequest): BandOracleRequestProtoMsg;
|
|
846
1261
|
registerTypeUrl(): void;
|
|
847
1262
|
};
|
|
1263
|
+
/**
|
|
1264
|
+
* @name BandIBCParams
|
|
1265
|
+
* @package injective.oracle.v1beta1
|
|
1266
|
+
* @see proto type: injective.oracle.v1beta1.BandIBCParams
|
|
1267
|
+
*/
|
|
848
1268
|
export declare const BandIBCParams: {
|
|
849
1269
|
typeUrl: string;
|
|
850
1270
|
is(o: any): o is BandIBCParams;
|
|
@@ -860,6 +1280,11 @@ export declare const BandIBCParams: {
|
|
|
860
1280
|
toProtoMsg(message: BandIBCParams): BandIBCParamsProtoMsg;
|
|
861
1281
|
registerTypeUrl(): void;
|
|
862
1282
|
};
|
|
1283
|
+
/**
|
|
1284
|
+
* @name SymbolPriceTimestamp
|
|
1285
|
+
* @package injective.oracle.v1beta1
|
|
1286
|
+
* @see proto type: injective.oracle.v1beta1.SymbolPriceTimestamp
|
|
1287
|
+
*/
|
|
863
1288
|
export declare const SymbolPriceTimestamp: {
|
|
864
1289
|
typeUrl: string;
|
|
865
1290
|
is(o: any): o is SymbolPriceTimestamp;
|
|
@@ -875,6 +1300,11 @@ export declare const SymbolPriceTimestamp: {
|
|
|
875
1300
|
toProtoMsg(message: SymbolPriceTimestamp): SymbolPriceTimestampProtoMsg;
|
|
876
1301
|
registerTypeUrl(): void;
|
|
877
1302
|
};
|
|
1303
|
+
/**
|
|
1304
|
+
* @name LastPriceTimestamps
|
|
1305
|
+
* @package injective.oracle.v1beta1
|
|
1306
|
+
* @see proto type: injective.oracle.v1beta1.LastPriceTimestamps
|
|
1307
|
+
*/
|
|
878
1308
|
export declare const LastPriceTimestamps: {
|
|
879
1309
|
typeUrl: string;
|
|
880
1310
|
is(o: any): o is LastPriceTimestamps;
|
|
@@ -890,6 +1320,11 @@ export declare const LastPriceTimestamps: {
|
|
|
890
1320
|
toProtoMsg(message: LastPriceTimestamps): LastPriceTimestampsProtoMsg;
|
|
891
1321
|
registerTypeUrl(): void;
|
|
892
1322
|
};
|
|
1323
|
+
/**
|
|
1324
|
+
* @name PriceRecords
|
|
1325
|
+
* @package injective.oracle.v1beta1
|
|
1326
|
+
* @see proto type: injective.oracle.v1beta1.PriceRecords
|
|
1327
|
+
*/
|
|
893
1328
|
export declare const PriceRecords: {
|
|
894
1329
|
typeUrl: string;
|
|
895
1330
|
is(o: any): o is PriceRecords;
|
|
@@ -905,6 +1340,11 @@ export declare const PriceRecords: {
|
|
|
905
1340
|
toProtoMsg(message: PriceRecords): PriceRecordsProtoMsg;
|
|
906
1341
|
registerTypeUrl(): void;
|
|
907
1342
|
};
|
|
1343
|
+
/**
|
|
1344
|
+
* @name PriceRecord
|
|
1345
|
+
* @package injective.oracle.v1beta1
|
|
1346
|
+
* @see proto type: injective.oracle.v1beta1.PriceRecord
|
|
1347
|
+
*/
|
|
908
1348
|
export declare const PriceRecord: {
|
|
909
1349
|
typeUrl: string;
|
|
910
1350
|
is(o: any): o is PriceRecord;
|
|
@@ -920,6 +1360,13 @@ export declare const PriceRecord: {
|
|
|
920
1360
|
toProtoMsg(message: PriceRecord): PriceRecordProtoMsg;
|
|
921
1361
|
registerTypeUrl(): void;
|
|
922
1362
|
};
|
|
1363
|
+
/**
|
|
1364
|
+
* MetadataStatistics refers to the metadata summary statistics of the
|
|
1365
|
+
* historical sample considered
|
|
1366
|
+
* @name MetadataStatistics
|
|
1367
|
+
* @package injective.oracle.v1beta1
|
|
1368
|
+
* @see proto type: injective.oracle.v1beta1.MetadataStatistics
|
|
1369
|
+
*/
|
|
923
1370
|
export declare const MetadataStatistics: {
|
|
924
1371
|
typeUrl: string;
|
|
925
1372
|
is(o: any): o is MetadataStatistics;
|
|
@@ -935,6 +1382,11 @@ export declare const MetadataStatistics: {
|
|
|
935
1382
|
toProtoMsg(message: MetadataStatistics): MetadataStatisticsProtoMsg;
|
|
936
1383
|
registerTypeUrl(): void;
|
|
937
1384
|
};
|
|
1385
|
+
/**
|
|
1386
|
+
* @name PriceAttestation
|
|
1387
|
+
* @package injective.oracle.v1beta1
|
|
1388
|
+
* @see proto type: injective.oracle.v1beta1.PriceAttestation
|
|
1389
|
+
*/
|
|
938
1390
|
export declare const PriceAttestation: {
|
|
939
1391
|
typeUrl: string;
|
|
940
1392
|
is(o: any): o is PriceAttestation;
|
|
@@ -950,6 +1402,11 @@ export declare const PriceAttestation: {
|
|
|
950
1402
|
toProtoMsg(message: PriceAttestation): PriceAttestationProtoMsg;
|
|
951
1403
|
registerTypeUrl(): void;
|
|
952
1404
|
};
|
|
1405
|
+
/**
|
|
1406
|
+
* @name AssetPair
|
|
1407
|
+
* @package injective.oracle.v1beta1
|
|
1408
|
+
* @see proto type: injective.oracle.v1beta1.AssetPair
|
|
1409
|
+
*/
|
|
953
1410
|
export declare const AssetPair: {
|
|
954
1411
|
typeUrl: string;
|
|
955
1412
|
is(o: any): o is AssetPair;
|
|
@@ -965,6 +1422,11 @@ export declare const AssetPair: {
|
|
|
965
1422
|
toProtoMsg(message: AssetPair): AssetPairProtoMsg;
|
|
966
1423
|
registerTypeUrl(): void;
|
|
967
1424
|
};
|
|
1425
|
+
/**
|
|
1426
|
+
* @name SignedPriceOfAssetPair
|
|
1427
|
+
* @package injective.oracle.v1beta1
|
|
1428
|
+
* @see proto type: injective.oracle.v1beta1.SignedPriceOfAssetPair
|
|
1429
|
+
*/
|
|
968
1430
|
export declare const SignedPriceOfAssetPair: {
|
|
969
1431
|
typeUrl: string;
|
|
970
1432
|
is(o: any): o is SignedPriceOfAssetPair;
|