injectivejs 1.11.13 → 1.11.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { StorkPriceState, StorkPriceStateAmino, PythPriceState, PythPriceStateAmino } from "./oracle";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
+
/**
|
|
5
|
+
* @name SetChainlinkPriceEvent
|
|
6
|
+
* @package injective.oracle.v1beta1
|
|
7
|
+
* @see proto type: injective.oracle.v1beta1.SetChainlinkPriceEvent
|
|
8
|
+
*/
|
|
4
9
|
export interface SetChainlinkPriceEvent {
|
|
5
10
|
feedId: string;
|
|
6
11
|
answer: string;
|
|
@@ -10,6 +15,11 @@ export interface SetChainlinkPriceEventProtoMsg {
|
|
|
10
15
|
typeUrl: "/injective.oracle.v1beta1.SetChainlinkPriceEvent";
|
|
11
16
|
value: Uint8Array;
|
|
12
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @name SetChainlinkPriceEventAmino
|
|
20
|
+
* @package injective.oracle.v1beta1
|
|
21
|
+
* @see proto type: injective.oracle.v1beta1.SetChainlinkPriceEvent
|
|
22
|
+
*/
|
|
13
23
|
export interface SetChainlinkPriceEventAmino {
|
|
14
24
|
feed_id: string;
|
|
15
25
|
answer: string;
|
|
@@ -19,7 +29,12 @@ export interface SetChainlinkPriceEventAminoMsg {
|
|
|
19
29
|
type: "/injective.oracle.v1beta1.SetChainlinkPriceEvent";
|
|
20
30
|
value: SetChainlinkPriceEventAmino;
|
|
21
31
|
}
|
|
22
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* Event type upon set ref
|
|
34
|
+
* @name SetBandPriceEvent
|
|
35
|
+
* @package injective.oracle.v1beta1
|
|
36
|
+
* @see proto type: injective.oracle.v1beta1.SetBandPriceEvent
|
|
37
|
+
*/
|
|
23
38
|
export interface SetBandPriceEvent {
|
|
24
39
|
relayer: string;
|
|
25
40
|
symbol: string;
|
|
@@ -31,7 +46,12 @@ export interface SetBandPriceEventProtoMsg {
|
|
|
31
46
|
typeUrl: "/injective.oracle.v1beta1.SetBandPriceEvent";
|
|
32
47
|
value: Uint8Array;
|
|
33
48
|
}
|
|
34
|
-
/**
|
|
49
|
+
/**
|
|
50
|
+
* Event type upon set ref
|
|
51
|
+
* @name SetBandPriceEventAmino
|
|
52
|
+
* @package injective.oracle.v1beta1
|
|
53
|
+
* @see proto type: injective.oracle.v1beta1.SetBandPriceEvent
|
|
54
|
+
*/
|
|
35
55
|
export interface SetBandPriceEventAmino {
|
|
36
56
|
relayer: string;
|
|
37
57
|
symbol: string;
|
|
@@ -43,6 +63,11 @@ export interface SetBandPriceEventAminoMsg {
|
|
|
43
63
|
type: "/injective.oracle.v1beta1.SetBandPriceEvent";
|
|
44
64
|
value: SetBandPriceEventAmino;
|
|
45
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* @name SetBandIBCPriceEvent
|
|
68
|
+
* @package injective.oracle.v1beta1
|
|
69
|
+
* @see proto type: injective.oracle.v1beta1.SetBandIBCPriceEvent
|
|
70
|
+
*/
|
|
46
71
|
export interface SetBandIBCPriceEvent {
|
|
47
72
|
relayer: string;
|
|
48
73
|
symbols: string[];
|
|
@@ -55,6 +80,11 @@ export interface SetBandIBCPriceEventProtoMsg {
|
|
|
55
80
|
typeUrl: "/injective.oracle.v1beta1.SetBandIBCPriceEvent";
|
|
56
81
|
value: Uint8Array;
|
|
57
82
|
}
|
|
83
|
+
/**
|
|
84
|
+
* @name SetBandIBCPriceEventAmino
|
|
85
|
+
* @package injective.oracle.v1beta1
|
|
86
|
+
* @see proto type: injective.oracle.v1beta1.SetBandIBCPriceEvent
|
|
87
|
+
*/
|
|
58
88
|
export interface SetBandIBCPriceEventAmino {
|
|
59
89
|
relayer: string;
|
|
60
90
|
symbols: string[];
|
|
@@ -67,6 +97,11 @@ export interface SetBandIBCPriceEventAminoMsg {
|
|
|
67
97
|
type: "/injective.oracle.v1beta1.SetBandIBCPriceEvent";
|
|
68
98
|
value: SetBandIBCPriceEventAmino;
|
|
69
99
|
}
|
|
100
|
+
/**
|
|
101
|
+
* @name EventBandIBCAckSuccess
|
|
102
|
+
* @package injective.oracle.v1beta1
|
|
103
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckSuccess
|
|
104
|
+
*/
|
|
70
105
|
export interface EventBandIBCAckSuccess {
|
|
71
106
|
ackResult: string;
|
|
72
107
|
clientId: bigint;
|
|
@@ -75,6 +110,11 @@ export interface EventBandIBCAckSuccessProtoMsg {
|
|
|
75
110
|
typeUrl: "/injective.oracle.v1beta1.EventBandIBCAckSuccess";
|
|
76
111
|
value: Uint8Array;
|
|
77
112
|
}
|
|
113
|
+
/**
|
|
114
|
+
* @name EventBandIBCAckSuccessAmino
|
|
115
|
+
* @package injective.oracle.v1beta1
|
|
116
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckSuccess
|
|
117
|
+
*/
|
|
78
118
|
export interface EventBandIBCAckSuccessAmino {
|
|
79
119
|
ack_result: string;
|
|
80
120
|
client_id: string;
|
|
@@ -83,6 +123,11 @@ export interface EventBandIBCAckSuccessAminoMsg {
|
|
|
83
123
|
type: "/injective.oracle.v1beta1.EventBandIBCAckSuccess";
|
|
84
124
|
value: EventBandIBCAckSuccessAmino;
|
|
85
125
|
}
|
|
126
|
+
/**
|
|
127
|
+
* @name EventBandIBCAckError
|
|
128
|
+
* @package injective.oracle.v1beta1
|
|
129
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckError
|
|
130
|
+
*/
|
|
86
131
|
export interface EventBandIBCAckError {
|
|
87
132
|
ackError: string;
|
|
88
133
|
clientId: bigint;
|
|
@@ -91,6 +136,11 @@ export interface EventBandIBCAckErrorProtoMsg {
|
|
|
91
136
|
typeUrl: "/injective.oracle.v1beta1.EventBandIBCAckError";
|
|
92
137
|
value: Uint8Array;
|
|
93
138
|
}
|
|
139
|
+
/**
|
|
140
|
+
* @name EventBandIBCAckErrorAmino
|
|
141
|
+
* @package injective.oracle.v1beta1
|
|
142
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckError
|
|
143
|
+
*/
|
|
94
144
|
export interface EventBandIBCAckErrorAmino {
|
|
95
145
|
ack_error: string;
|
|
96
146
|
client_id: string;
|
|
@@ -99,6 +149,11 @@ export interface EventBandIBCAckErrorAminoMsg {
|
|
|
99
149
|
type: "/injective.oracle.v1beta1.EventBandIBCAckError";
|
|
100
150
|
value: EventBandIBCAckErrorAmino;
|
|
101
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* @name EventBandIBCResponseTimeout
|
|
154
|
+
* @package injective.oracle.v1beta1
|
|
155
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCResponseTimeout
|
|
156
|
+
*/
|
|
102
157
|
export interface EventBandIBCResponseTimeout {
|
|
103
158
|
clientId: bigint;
|
|
104
159
|
}
|
|
@@ -106,6 +161,11 @@ export interface EventBandIBCResponseTimeoutProtoMsg {
|
|
|
106
161
|
typeUrl: "/injective.oracle.v1beta1.EventBandIBCResponseTimeout";
|
|
107
162
|
value: Uint8Array;
|
|
108
163
|
}
|
|
164
|
+
/**
|
|
165
|
+
* @name EventBandIBCResponseTimeoutAmino
|
|
166
|
+
* @package injective.oracle.v1beta1
|
|
167
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCResponseTimeout
|
|
168
|
+
*/
|
|
109
169
|
export interface EventBandIBCResponseTimeoutAmino {
|
|
110
170
|
client_id: string;
|
|
111
171
|
}
|
|
@@ -113,28 +173,47 @@ export interface EventBandIBCResponseTimeoutAminoMsg {
|
|
|
113
173
|
type: "/injective.oracle.v1beta1.EventBandIBCResponseTimeout";
|
|
114
174
|
value: EventBandIBCResponseTimeoutAmino;
|
|
115
175
|
}
|
|
176
|
+
/**
|
|
177
|
+
* @name SetPriceFeedPriceEvent
|
|
178
|
+
* @package injective.oracle.v1beta1
|
|
179
|
+
* @see proto type: injective.oracle.v1beta1.SetPriceFeedPriceEvent
|
|
180
|
+
*/
|
|
116
181
|
export interface SetPriceFeedPriceEvent {
|
|
117
182
|
relayer: string;
|
|
118
183
|
base: string;
|
|
119
184
|
quote: string;
|
|
120
|
-
/**
|
|
185
|
+
/**
|
|
186
|
+
* price defines the price of the oracle base and quote
|
|
187
|
+
*/
|
|
121
188
|
price: string;
|
|
122
189
|
}
|
|
123
190
|
export interface SetPriceFeedPriceEventProtoMsg {
|
|
124
191
|
typeUrl: "/injective.oracle.v1beta1.SetPriceFeedPriceEvent";
|
|
125
192
|
value: Uint8Array;
|
|
126
193
|
}
|
|
194
|
+
/**
|
|
195
|
+
* @name SetPriceFeedPriceEventAmino
|
|
196
|
+
* @package injective.oracle.v1beta1
|
|
197
|
+
* @see proto type: injective.oracle.v1beta1.SetPriceFeedPriceEvent
|
|
198
|
+
*/
|
|
127
199
|
export interface SetPriceFeedPriceEventAmino {
|
|
128
200
|
relayer: string;
|
|
129
201
|
base: string;
|
|
130
202
|
quote: string;
|
|
131
|
-
/**
|
|
203
|
+
/**
|
|
204
|
+
* price defines the price of the oracle base and quote
|
|
205
|
+
*/
|
|
132
206
|
price: string;
|
|
133
207
|
}
|
|
134
208
|
export interface SetPriceFeedPriceEventAminoMsg {
|
|
135
209
|
type: "/injective.oracle.v1beta1.SetPriceFeedPriceEvent";
|
|
136
210
|
value: SetPriceFeedPriceEventAmino;
|
|
137
211
|
}
|
|
212
|
+
/**
|
|
213
|
+
* @name SetProviderPriceEvent
|
|
214
|
+
* @package injective.oracle.v1beta1
|
|
215
|
+
* @see proto type: injective.oracle.v1beta1.SetProviderPriceEvent
|
|
216
|
+
*/
|
|
138
217
|
export interface SetProviderPriceEvent {
|
|
139
218
|
provider: string;
|
|
140
219
|
relayer: string;
|
|
@@ -145,6 +224,11 @@ export interface SetProviderPriceEventProtoMsg {
|
|
|
145
224
|
typeUrl: "/injective.oracle.v1beta1.SetProviderPriceEvent";
|
|
146
225
|
value: Uint8Array;
|
|
147
226
|
}
|
|
227
|
+
/**
|
|
228
|
+
* @name SetProviderPriceEventAmino
|
|
229
|
+
* @package injective.oracle.v1beta1
|
|
230
|
+
* @see proto type: injective.oracle.v1beta1.SetProviderPriceEvent
|
|
231
|
+
*/
|
|
148
232
|
export interface SetProviderPriceEventAmino {
|
|
149
233
|
provider: string;
|
|
150
234
|
relayer: string;
|
|
@@ -155,6 +239,11 @@ export interface SetProviderPriceEventAminoMsg {
|
|
|
155
239
|
type: "/injective.oracle.v1beta1.SetProviderPriceEvent";
|
|
156
240
|
value: SetProviderPriceEventAmino;
|
|
157
241
|
}
|
|
242
|
+
/**
|
|
243
|
+
* @name SetCoinbasePriceEvent
|
|
244
|
+
* @package injective.oracle.v1beta1
|
|
245
|
+
* @see proto type: injective.oracle.v1beta1.SetCoinbasePriceEvent
|
|
246
|
+
*/
|
|
158
247
|
export interface SetCoinbasePriceEvent {
|
|
159
248
|
symbol: string;
|
|
160
249
|
price: string;
|
|
@@ -164,6 +253,11 @@ export interface SetCoinbasePriceEventProtoMsg {
|
|
|
164
253
|
typeUrl: "/injective.oracle.v1beta1.SetCoinbasePriceEvent";
|
|
165
254
|
value: Uint8Array;
|
|
166
255
|
}
|
|
256
|
+
/**
|
|
257
|
+
* @name SetCoinbasePriceEventAmino
|
|
258
|
+
* @package injective.oracle.v1beta1
|
|
259
|
+
* @see proto type: injective.oracle.v1beta1.SetCoinbasePriceEvent
|
|
260
|
+
*/
|
|
167
261
|
export interface SetCoinbasePriceEventAmino {
|
|
168
262
|
symbol: string;
|
|
169
263
|
price: string;
|
|
@@ -173,6 +267,11 @@ export interface SetCoinbasePriceEventAminoMsg {
|
|
|
173
267
|
type: "/injective.oracle.v1beta1.SetCoinbasePriceEvent";
|
|
174
268
|
value: SetCoinbasePriceEventAmino;
|
|
175
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* @name EventSetStorkPrices
|
|
272
|
+
* @package injective.oracle.v1beta1
|
|
273
|
+
* @see proto type: injective.oracle.v1beta1.EventSetStorkPrices
|
|
274
|
+
*/
|
|
176
275
|
export interface EventSetStorkPrices {
|
|
177
276
|
prices: StorkPriceState[];
|
|
178
277
|
}
|
|
@@ -180,6 +279,11 @@ export interface EventSetStorkPricesProtoMsg {
|
|
|
180
279
|
typeUrl: "/injective.oracle.v1beta1.EventSetStorkPrices";
|
|
181
280
|
value: Uint8Array;
|
|
182
281
|
}
|
|
282
|
+
/**
|
|
283
|
+
* @name EventSetStorkPricesAmino
|
|
284
|
+
* @package injective.oracle.v1beta1
|
|
285
|
+
* @see proto type: injective.oracle.v1beta1.EventSetStorkPrices
|
|
286
|
+
*/
|
|
183
287
|
export interface EventSetStorkPricesAmino {
|
|
184
288
|
prices: StorkPriceStateAmino[];
|
|
185
289
|
}
|
|
@@ -187,6 +291,11 @@ export interface EventSetStorkPricesAminoMsg {
|
|
|
187
291
|
type: "/injective.oracle.v1beta1.EventSetStorkPrices";
|
|
188
292
|
value: EventSetStorkPricesAmino;
|
|
189
293
|
}
|
|
294
|
+
/**
|
|
295
|
+
* @name EventSetPythPrices
|
|
296
|
+
* @package injective.oracle.v1beta1
|
|
297
|
+
* @see proto type: injective.oracle.v1beta1.EventSetPythPrices
|
|
298
|
+
*/
|
|
190
299
|
export interface EventSetPythPrices {
|
|
191
300
|
prices: PythPriceState[];
|
|
192
301
|
}
|
|
@@ -194,6 +303,11 @@ export interface EventSetPythPricesProtoMsg {
|
|
|
194
303
|
typeUrl: "/injective.oracle.v1beta1.EventSetPythPrices";
|
|
195
304
|
value: Uint8Array;
|
|
196
305
|
}
|
|
306
|
+
/**
|
|
307
|
+
* @name EventSetPythPricesAmino
|
|
308
|
+
* @package injective.oracle.v1beta1
|
|
309
|
+
* @see proto type: injective.oracle.v1beta1.EventSetPythPrices
|
|
310
|
+
*/
|
|
197
311
|
export interface EventSetPythPricesAmino {
|
|
198
312
|
prices: PythPriceStateAmino[];
|
|
199
313
|
}
|
|
@@ -201,6 +315,11 @@ export interface EventSetPythPricesAminoMsg {
|
|
|
201
315
|
type: "/injective.oracle.v1beta1.EventSetPythPrices";
|
|
202
316
|
value: EventSetPythPricesAmino;
|
|
203
317
|
}
|
|
318
|
+
/**
|
|
319
|
+
* @name SetChainlinkPriceEvent
|
|
320
|
+
* @package injective.oracle.v1beta1
|
|
321
|
+
* @see proto type: injective.oracle.v1beta1.SetChainlinkPriceEvent
|
|
322
|
+
*/
|
|
204
323
|
export declare const SetChainlinkPriceEvent: {
|
|
205
324
|
typeUrl: string;
|
|
206
325
|
is(o: any): o is SetChainlinkPriceEvent;
|
|
@@ -216,6 +335,12 @@ export declare const SetChainlinkPriceEvent: {
|
|
|
216
335
|
toProtoMsg(message: SetChainlinkPriceEvent): SetChainlinkPriceEventProtoMsg;
|
|
217
336
|
registerTypeUrl(): void;
|
|
218
337
|
};
|
|
338
|
+
/**
|
|
339
|
+
* Event type upon set ref
|
|
340
|
+
* @name SetBandPriceEvent
|
|
341
|
+
* @package injective.oracle.v1beta1
|
|
342
|
+
* @see proto type: injective.oracle.v1beta1.SetBandPriceEvent
|
|
343
|
+
*/
|
|
219
344
|
export declare const SetBandPriceEvent: {
|
|
220
345
|
typeUrl: string;
|
|
221
346
|
is(o: any): o is SetBandPriceEvent;
|
|
@@ -231,6 +356,11 @@ export declare const SetBandPriceEvent: {
|
|
|
231
356
|
toProtoMsg(message: SetBandPriceEvent): SetBandPriceEventProtoMsg;
|
|
232
357
|
registerTypeUrl(): void;
|
|
233
358
|
};
|
|
359
|
+
/**
|
|
360
|
+
* @name SetBandIBCPriceEvent
|
|
361
|
+
* @package injective.oracle.v1beta1
|
|
362
|
+
* @see proto type: injective.oracle.v1beta1.SetBandIBCPriceEvent
|
|
363
|
+
*/
|
|
234
364
|
export declare const SetBandIBCPriceEvent: {
|
|
235
365
|
typeUrl: string;
|
|
236
366
|
is(o: any): o is SetBandIBCPriceEvent;
|
|
@@ -246,6 +376,11 @@ export declare const SetBandIBCPriceEvent: {
|
|
|
246
376
|
toProtoMsg(message: SetBandIBCPriceEvent): SetBandIBCPriceEventProtoMsg;
|
|
247
377
|
registerTypeUrl(): void;
|
|
248
378
|
};
|
|
379
|
+
/**
|
|
380
|
+
* @name EventBandIBCAckSuccess
|
|
381
|
+
* @package injective.oracle.v1beta1
|
|
382
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckSuccess
|
|
383
|
+
*/
|
|
249
384
|
export declare const EventBandIBCAckSuccess: {
|
|
250
385
|
typeUrl: string;
|
|
251
386
|
is(o: any): o is EventBandIBCAckSuccess;
|
|
@@ -261,6 +396,11 @@ export declare const EventBandIBCAckSuccess: {
|
|
|
261
396
|
toProtoMsg(message: EventBandIBCAckSuccess): EventBandIBCAckSuccessProtoMsg;
|
|
262
397
|
registerTypeUrl(): void;
|
|
263
398
|
};
|
|
399
|
+
/**
|
|
400
|
+
* @name EventBandIBCAckError
|
|
401
|
+
* @package injective.oracle.v1beta1
|
|
402
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckError
|
|
403
|
+
*/
|
|
264
404
|
export declare const EventBandIBCAckError: {
|
|
265
405
|
typeUrl: string;
|
|
266
406
|
is(o: any): o is EventBandIBCAckError;
|
|
@@ -276,6 +416,11 @@ export declare const EventBandIBCAckError: {
|
|
|
276
416
|
toProtoMsg(message: EventBandIBCAckError): EventBandIBCAckErrorProtoMsg;
|
|
277
417
|
registerTypeUrl(): void;
|
|
278
418
|
};
|
|
419
|
+
/**
|
|
420
|
+
* @name EventBandIBCResponseTimeout
|
|
421
|
+
* @package injective.oracle.v1beta1
|
|
422
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCResponseTimeout
|
|
423
|
+
*/
|
|
279
424
|
export declare const EventBandIBCResponseTimeout: {
|
|
280
425
|
typeUrl: string;
|
|
281
426
|
is(o: any): o is EventBandIBCResponseTimeout;
|
|
@@ -291,6 +436,11 @@ export declare const EventBandIBCResponseTimeout: {
|
|
|
291
436
|
toProtoMsg(message: EventBandIBCResponseTimeout): EventBandIBCResponseTimeoutProtoMsg;
|
|
292
437
|
registerTypeUrl(): void;
|
|
293
438
|
};
|
|
439
|
+
/**
|
|
440
|
+
* @name SetPriceFeedPriceEvent
|
|
441
|
+
* @package injective.oracle.v1beta1
|
|
442
|
+
* @see proto type: injective.oracle.v1beta1.SetPriceFeedPriceEvent
|
|
443
|
+
*/
|
|
294
444
|
export declare const SetPriceFeedPriceEvent: {
|
|
295
445
|
typeUrl: string;
|
|
296
446
|
is(o: any): o is SetPriceFeedPriceEvent;
|
|
@@ -306,6 +456,11 @@ export declare const SetPriceFeedPriceEvent: {
|
|
|
306
456
|
toProtoMsg(message: SetPriceFeedPriceEvent): SetPriceFeedPriceEventProtoMsg;
|
|
307
457
|
registerTypeUrl(): void;
|
|
308
458
|
};
|
|
459
|
+
/**
|
|
460
|
+
* @name SetProviderPriceEvent
|
|
461
|
+
* @package injective.oracle.v1beta1
|
|
462
|
+
* @see proto type: injective.oracle.v1beta1.SetProviderPriceEvent
|
|
463
|
+
*/
|
|
309
464
|
export declare const SetProviderPriceEvent: {
|
|
310
465
|
typeUrl: string;
|
|
311
466
|
is(o: any): o is SetProviderPriceEvent;
|
|
@@ -321,6 +476,11 @@ export declare const SetProviderPriceEvent: {
|
|
|
321
476
|
toProtoMsg(message: SetProviderPriceEvent): SetProviderPriceEventProtoMsg;
|
|
322
477
|
registerTypeUrl(): void;
|
|
323
478
|
};
|
|
479
|
+
/**
|
|
480
|
+
* @name SetCoinbasePriceEvent
|
|
481
|
+
* @package injective.oracle.v1beta1
|
|
482
|
+
* @see proto type: injective.oracle.v1beta1.SetCoinbasePriceEvent
|
|
483
|
+
*/
|
|
324
484
|
export declare const SetCoinbasePriceEvent: {
|
|
325
485
|
typeUrl: string;
|
|
326
486
|
is(o: any): o is SetCoinbasePriceEvent;
|
|
@@ -336,6 +496,11 @@ export declare const SetCoinbasePriceEvent: {
|
|
|
336
496
|
toProtoMsg(message: SetCoinbasePriceEvent): SetCoinbasePriceEventProtoMsg;
|
|
337
497
|
registerTypeUrl(): void;
|
|
338
498
|
};
|
|
499
|
+
/**
|
|
500
|
+
* @name EventSetStorkPrices
|
|
501
|
+
* @package injective.oracle.v1beta1
|
|
502
|
+
* @see proto type: injective.oracle.v1beta1.EventSetStorkPrices
|
|
503
|
+
*/
|
|
339
504
|
export declare const EventSetStorkPrices: {
|
|
340
505
|
typeUrl: string;
|
|
341
506
|
is(o: any): o is EventSetStorkPrices;
|
|
@@ -351,6 +516,11 @@ export declare const EventSetStorkPrices: {
|
|
|
351
516
|
toProtoMsg(message: EventSetStorkPrices): EventSetStorkPricesProtoMsg;
|
|
352
517
|
registerTypeUrl(): void;
|
|
353
518
|
};
|
|
519
|
+
/**
|
|
520
|
+
* @name EventSetPythPrices
|
|
521
|
+
* @package injective.oracle.v1beta1
|
|
522
|
+
* @see proto type: injective.oracle.v1beta1.EventSetPythPrices
|
|
523
|
+
*/
|
|
354
524
|
export declare const EventSetPythPrices: {
|
|
355
525
|
typeUrl: string;
|
|
356
526
|
is(o: any): o is EventSetPythPrices;
|
|
@@ -12,6 +12,11 @@ function createBaseSetChainlinkPriceEvent() {
|
|
|
12
12
|
timestamp: BigInt(0)
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* @name SetChainlinkPriceEvent
|
|
17
|
+
* @package injective.oracle.v1beta1
|
|
18
|
+
* @see proto type: injective.oracle.v1beta1.SetChainlinkPriceEvent
|
|
19
|
+
*/
|
|
15
20
|
exports.SetChainlinkPriceEvent = {
|
|
16
21
|
typeUrl: "/injective.oracle.v1beta1.SetChainlinkPriceEvent",
|
|
17
22
|
is(o) {
|
|
@@ -108,6 +113,12 @@ function createBaseSetBandPriceEvent() {
|
|
|
108
113
|
requestId: BigInt(0)
|
|
109
114
|
};
|
|
110
115
|
}
|
|
116
|
+
/**
|
|
117
|
+
* Event type upon set ref
|
|
118
|
+
* @name SetBandPriceEvent
|
|
119
|
+
* @package injective.oracle.v1beta1
|
|
120
|
+
* @see proto type: injective.oracle.v1beta1.SetBandPriceEvent
|
|
121
|
+
*/
|
|
111
122
|
exports.SetBandPriceEvent = {
|
|
112
123
|
typeUrl: "/injective.oracle.v1beta1.SetBandPriceEvent",
|
|
113
124
|
is(o) {
|
|
@@ -227,6 +238,11 @@ function createBaseSetBandIBCPriceEvent() {
|
|
|
227
238
|
clientId: BigInt(0)
|
|
228
239
|
};
|
|
229
240
|
}
|
|
241
|
+
/**
|
|
242
|
+
* @name SetBandIBCPriceEvent
|
|
243
|
+
* @package injective.oracle.v1beta1
|
|
244
|
+
* @see proto type: injective.oracle.v1beta1.SetBandIBCPriceEvent
|
|
245
|
+
*/
|
|
230
246
|
exports.SetBandIBCPriceEvent = {
|
|
231
247
|
typeUrl: "/injective.oracle.v1beta1.SetBandIBCPriceEvent",
|
|
232
248
|
is(o) {
|
|
@@ -359,6 +375,11 @@ function createBaseEventBandIBCAckSuccess() {
|
|
|
359
375
|
clientId: BigInt(0)
|
|
360
376
|
};
|
|
361
377
|
}
|
|
378
|
+
/**
|
|
379
|
+
* @name EventBandIBCAckSuccess
|
|
380
|
+
* @package injective.oracle.v1beta1
|
|
381
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckSuccess
|
|
382
|
+
*/
|
|
362
383
|
exports.EventBandIBCAckSuccess = {
|
|
363
384
|
typeUrl: "/injective.oracle.v1beta1.EventBandIBCAckSuccess",
|
|
364
385
|
is(o) {
|
|
@@ -441,6 +462,11 @@ function createBaseEventBandIBCAckError() {
|
|
|
441
462
|
clientId: BigInt(0)
|
|
442
463
|
};
|
|
443
464
|
}
|
|
465
|
+
/**
|
|
466
|
+
* @name EventBandIBCAckError
|
|
467
|
+
* @package injective.oracle.v1beta1
|
|
468
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckError
|
|
469
|
+
*/
|
|
444
470
|
exports.EventBandIBCAckError = {
|
|
445
471
|
typeUrl: "/injective.oracle.v1beta1.EventBandIBCAckError",
|
|
446
472
|
is(o) {
|
|
@@ -522,6 +548,11 @@ function createBaseEventBandIBCResponseTimeout() {
|
|
|
522
548
|
clientId: BigInt(0)
|
|
523
549
|
};
|
|
524
550
|
}
|
|
551
|
+
/**
|
|
552
|
+
* @name EventBandIBCResponseTimeout
|
|
553
|
+
* @package injective.oracle.v1beta1
|
|
554
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCResponseTimeout
|
|
555
|
+
*/
|
|
525
556
|
exports.EventBandIBCResponseTimeout = {
|
|
526
557
|
typeUrl: "/injective.oracle.v1beta1.EventBandIBCResponseTimeout",
|
|
527
558
|
is(o) {
|
|
@@ -595,6 +626,11 @@ function createBaseSetPriceFeedPriceEvent() {
|
|
|
595
626
|
price: ""
|
|
596
627
|
};
|
|
597
628
|
}
|
|
629
|
+
/**
|
|
630
|
+
* @name SetPriceFeedPriceEvent
|
|
631
|
+
* @package injective.oracle.v1beta1
|
|
632
|
+
* @see proto type: injective.oracle.v1beta1.SetPriceFeedPriceEvent
|
|
633
|
+
*/
|
|
598
634
|
exports.SetPriceFeedPriceEvent = {
|
|
599
635
|
typeUrl: "/injective.oracle.v1beta1.SetPriceFeedPriceEvent",
|
|
600
636
|
is(o) {
|
|
@@ -701,6 +737,11 @@ function createBaseSetProviderPriceEvent() {
|
|
|
701
737
|
price: ""
|
|
702
738
|
};
|
|
703
739
|
}
|
|
740
|
+
/**
|
|
741
|
+
* @name SetProviderPriceEvent
|
|
742
|
+
* @package injective.oracle.v1beta1
|
|
743
|
+
* @see proto type: injective.oracle.v1beta1.SetProviderPriceEvent
|
|
744
|
+
*/
|
|
704
745
|
exports.SetProviderPriceEvent = {
|
|
705
746
|
typeUrl: "/injective.oracle.v1beta1.SetProviderPriceEvent",
|
|
706
747
|
is(o) {
|
|
@@ -806,6 +847,11 @@ function createBaseSetCoinbasePriceEvent() {
|
|
|
806
847
|
timestamp: BigInt(0)
|
|
807
848
|
};
|
|
808
849
|
}
|
|
850
|
+
/**
|
|
851
|
+
* @name SetCoinbasePriceEvent
|
|
852
|
+
* @package injective.oracle.v1beta1
|
|
853
|
+
* @see proto type: injective.oracle.v1beta1.SetCoinbasePriceEvent
|
|
854
|
+
*/
|
|
809
855
|
exports.SetCoinbasePriceEvent = {
|
|
810
856
|
typeUrl: "/injective.oracle.v1beta1.SetCoinbasePriceEvent",
|
|
811
857
|
is(o) {
|
|
@@ -898,6 +944,11 @@ function createBaseEventSetStorkPrices() {
|
|
|
898
944
|
prices: []
|
|
899
945
|
};
|
|
900
946
|
}
|
|
947
|
+
/**
|
|
948
|
+
* @name EventSetStorkPrices
|
|
949
|
+
* @package injective.oracle.v1beta1
|
|
950
|
+
* @see proto type: injective.oracle.v1beta1.EventSetStorkPrices
|
|
951
|
+
*/
|
|
901
952
|
exports.EventSetStorkPrices = {
|
|
902
953
|
typeUrl: "/injective.oracle.v1beta1.EventSetStorkPrices",
|
|
903
954
|
is(o) {
|
|
@@ -976,6 +1027,11 @@ function createBaseEventSetPythPrices() {
|
|
|
976
1027
|
prices: []
|
|
977
1028
|
};
|
|
978
1029
|
}
|
|
1030
|
+
/**
|
|
1031
|
+
* @name EventSetPythPrices
|
|
1032
|
+
* @package injective.oracle.v1beta1
|
|
1033
|
+
* @see proto type: injective.oracle.v1beta1.EventSetPythPrices
|
|
1034
|
+
*/
|
|
979
1035
|
exports.EventSetPythPrices = {
|
|
980
1036
|
typeUrl: "/injective.oracle.v1beta1.EventSetPythPrices",
|
|
981
1037
|
is(o) {
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { Params, ParamsAmino, BandPriceState, BandPriceStateAmino, PriceFeedState, PriceFeedStateAmino, CoinbasePriceState, CoinbasePriceStateAmino, BandOracleRequest, BandOracleRequestAmino, BandIBCParams, BandIBCParamsAmino, ChainlinkPriceState, ChainlinkPriceStateAmino, PriceRecords, PriceRecordsAmino, ProviderState, ProviderStateAmino, PythPriceState, PythPriceStateAmino, StorkPriceState, StorkPriceStateAmino } from "./oracle";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* GenesisState defines the oracle module's genesis state.
|
|
6
|
+
* @name GenesisState
|
|
7
|
+
* @package injective.oracle.v1beta1
|
|
8
|
+
* @see proto type: injective.oracle.v1beta1.GenesisState
|
|
9
|
+
*/
|
|
5
10
|
export interface GenesisState {
|
|
6
|
-
/**
|
|
11
|
+
/**
|
|
12
|
+
* params defines all the parameters of related to oracle.
|
|
13
|
+
*/
|
|
7
14
|
params: Params;
|
|
8
15
|
bandRelayers: string[];
|
|
9
16
|
bandPriceStates: BandPriceState[];
|
|
@@ -26,9 +33,16 @@ export interface GenesisStateProtoMsg {
|
|
|
26
33
|
typeUrl: "/injective.oracle.v1beta1.GenesisState";
|
|
27
34
|
value: Uint8Array;
|
|
28
35
|
}
|
|
29
|
-
/**
|
|
36
|
+
/**
|
|
37
|
+
* GenesisState defines the oracle module's genesis state.
|
|
38
|
+
* @name GenesisStateAmino
|
|
39
|
+
* @package injective.oracle.v1beta1
|
|
40
|
+
* @see proto type: injective.oracle.v1beta1.GenesisState
|
|
41
|
+
*/
|
|
30
42
|
export interface GenesisStateAmino {
|
|
31
|
-
/**
|
|
43
|
+
/**
|
|
44
|
+
* params defines all the parameters of related to oracle.
|
|
45
|
+
*/
|
|
32
46
|
params: ParamsAmino;
|
|
33
47
|
band_relayers: string[];
|
|
34
48
|
band_price_states: BandPriceStateAmino[];
|
|
@@ -51,6 +65,11 @@ export interface GenesisStateAminoMsg {
|
|
|
51
65
|
type: "/injective.oracle.v1beta1.GenesisState";
|
|
52
66
|
value: GenesisStateAmino;
|
|
53
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* @name CalldataRecord
|
|
70
|
+
* @package injective.oracle.v1beta1
|
|
71
|
+
* @see proto type: injective.oracle.v1beta1.CalldataRecord
|
|
72
|
+
*/
|
|
54
73
|
export interface CalldataRecord {
|
|
55
74
|
clientId: bigint;
|
|
56
75
|
calldata: Uint8Array;
|
|
@@ -59,6 +78,11 @@ export interface CalldataRecordProtoMsg {
|
|
|
59
78
|
typeUrl: "/injective.oracle.v1beta1.CalldataRecord";
|
|
60
79
|
value: Uint8Array;
|
|
61
80
|
}
|
|
81
|
+
/**
|
|
82
|
+
* @name CalldataRecordAmino
|
|
83
|
+
* @package injective.oracle.v1beta1
|
|
84
|
+
* @see proto type: injective.oracle.v1beta1.CalldataRecord
|
|
85
|
+
*/
|
|
62
86
|
export interface CalldataRecordAmino {
|
|
63
87
|
client_id: string;
|
|
64
88
|
calldata: string;
|
|
@@ -67,6 +91,12 @@ export interface CalldataRecordAminoMsg {
|
|
|
67
91
|
type: "/injective.oracle.v1beta1.CalldataRecord";
|
|
68
92
|
value: CalldataRecordAmino;
|
|
69
93
|
}
|
|
94
|
+
/**
|
|
95
|
+
* GenesisState defines the oracle module's genesis state.
|
|
96
|
+
* @name GenesisState
|
|
97
|
+
* @package injective.oracle.v1beta1
|
|
98
|
+
* @see proto type: injective.oracle.v1beta1.GenesisState
|
|
99
|
+
*/
|
|
70
100
|
export declare const GenesisState: {
|
|
71
101
|
typeUrl: string;
|
|
72
102
|
is(o: any): o is GenesisState;
|
|
@@ -82,6 +112,11 @@ export declare const GenesisState: {
|
|
|
82
112
|
toProtoMsg(message: GenesisState): GenesisStateProtoMsg;
|
|
83
113
|
registerTypeUrl(): void;
|
|
84
114
|
};
|
|
115
|
+
/**
|
|
116
|
+
* @name CalldataRecord
|
|
117
|
+
* @package injective.oracle.v1beta1
|
|
118
|
+
* @see proto type: injective.oracle.v1beta1.CalldataRecord
|
|
119
|
+
*/
|
|
85
120
|
export declare const CalldataRecord: {
|
|
86
121
|
typeUrl: string;
|
|
87
122
|
is(o: any): o is CalldataRecord;
|
|
@@ -26,6 +26,12 @@ function createBaseGenesisState() {
|
|
|
26
26
|
storkPublishers: []
|
|
27
27
|
};
|
|
28
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* GenesisState defines the oracle module's genesis state.
|
|
31
|
+
* @name GenesisState
|
|
32
|
+
* @package injective.oracle.v1beta1
|
|
33
|
+
* @see proto type: injective.oracle.v1beta1.GenesisState
|
|
34
|
+
*/
|
|
29
35
|
exports.GenesisState = {
|
|
30
36
|
typeUrl: "/injective.oracle.v1beta1.GenesisState",
|
|
31
37
|
is(o) {
|
|
@@ -328,6 +334,11 @@ function createBaseCalldataRecord() {
|
|
|
328
334
|
calldata: new Uint8Array()
|
|
329
335
|
};
|
|
330
336
|
}
|
|
337
|
+
/**
|
|
338
|
+
* @name CalldataRecord
|
|
339
|
+
* @package injective.oracle.v1beta1
|
|
340
|
+
* @see proto type: injective.oracle.v1beta1.CalldataRecord
|
|
341
|
+
*/
|
|
331
342
|
exports.CalldataRecord = {
|
|
332
343
|
typeUrl: "/injective.oracle.v1beta1.CalldataRecord",
|
|
333
344
|
is(o) {
|