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,32 +1,61 @@
|
|
|
1
1
|
import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
+
/**
|
|
5
|
+
* @name Params
|
|
6
|
+
* @package injective.ocr.v1beta1
|
|
7
|
+
* @see proto type: injective.ocr.v1beta1.Params
|
|
8
|
+
*/
|
|
4
9
|
export interface Params {
|
|
5
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* Native denom for LINK coin in the bank keeper
|
|
12
|
+
*/
|
|
6
13
|
linkDenom: string;
|
|
7
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* The block number interval at which payouts are made
|
|
16
|
+
*/
|
|
8
17
|
payoutBlockInterval: bigint;
|
|
9
|
-
/**
|
|
18
|
+
/**
|
|
19
|
+
* The admin for the OCR module
|
|
20
|
+
*/
|
|
10
21
|
moduleAdmin: string;
|
|
11
22
|
}
|
|
12
23
|
export interface ParamsProtoMsg {
|
|
13
24
|
typeUrl: "/injective.ocr.v1beta1.Params";
|
|
14
25
|
value: Uint8Array;
|
|
15
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* @name ParamsAmino
|
|
29
|
+
* @package injective.ocr.v1beta1
|
|
30
|
+
* @see proto type: injective.ocr.v1beta1.Params
|
|
31
|
+
*/
|
|
16
32
|
export interface ParamsAmino {
|
|
17
|
-
/**
|
|
33
|
+
/**
|
|
34
|
+
* Native denom for LINK coin in the bank keeper
|
|
35
|
+
*/
|
|
18
36
|
link_denom: string;
|
|
19
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* The block number interval at which payouts are made
|
|
39
|
+
*/
|
|
20
40
|
payout_block_interval: string;
|
|
21
|
-
/**
|
|
41
|
+
/**
|
|
42
|
+
* The admin for the OCR module
|
|
43
|
+
*/
|
|
22
44
|
module_admin: string;
|
|
23
45
|
}
|
|
24
46
|
export interface ParamsAminoMsg {
|
|
25
47
|
type: "ocr/Params";
|
|
26
48
|
value: ParamsAmino;
|
|
27
49
|
}
|
|
50
|
+
/**
|
|
51
|
+
* @name FeedConfig
|
|
52
|
+
* @package injective.ocr.v1beta1
|
|
53
|
+
* @see proto type: injective.ocr.v1beta1.FeedConfig
|
|
54
|
+
*/
|
|
28
55
|
export interface FeedConfig {
|
|
29
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* signers ith element is address ith oracle uses to sign a report
|
|
58
|
+
*/
|
|
30
59
|
signers: string[];
|
|
31
60
|
/**
|
|
32
61
|
* transmitters ith element is address ith oracle uses to transmit a report
|
|
@@ -38,7 +67,9 @@ export interface FeedConfig {
|
|
|
38
67
|
* while still working correctly
|
|
39
68
|
*/
|
|
40
69
|
f: number;
|
|
41
|
-
/**
|
|
70
|
+
/**
|
|
71
|
+
* onchain_config serialized data with reporting plugin params on chain.
|
|
72
|
+
*/
|
|
42
73
|
onchainConfig: Uint8Array;
|
|
43
74
|
/**
|
|
44
75
|
* offchain_config_version version of the serialization format used for
|
|
@@ -50,15 +81,24 @@ export interface FeedConfig {
|
|
|
50
81
|
* operation
|
|
51
82
|
*/
|
|
52
83
|
offchainConfig: Uint8Array;
|
|
53
|
-
/**
|
|
84
|
+
/**
|
|
85
|
+
* feed-specific params for the Cosmos module.
|
|
86
|
+
*/
|
|
54
87
|
moduleParams?: ModuleParams;
|
|
55
88
|
}
|
|
56
89
|
export interface FeedConfigProtoMsg {
|
|
57
90
|
typeUrl: "/injective.ocr.v1beta1.FeedConfig";
|
|
58
91
|
value: Uint8Array;
|
|
59
92
|
}
|
|
93
|
+
/**
|
|
94
|
+
* @name FeedConfigAmino
|
|
95
|
+
* @package injective.ocr.v1beta1
|
|
96
|
+
* @see proto type: injective.ocr.v1beta1.FeedConfig
|
|
97
|
+
*/
|
|
60
98
|
export interface FeedConfigAmino {
|
|
61
|
-
/**
|
|
99
|
+
/**
|
|
100
|
+
* signers ith element is address ith oracle uses to sign a report
|
|
101
|
+
*/
|
|
62
102
|
signers: string[];
|
|
63
103
|
/**
|
|
64
104
|
* transmitters ith element is address ith oracle uses to transmit a report
|
|
@@ -70,7 +110,9 @@ export interface FeedConfigAmino {
|
|
|
70
110
|
* while still working correctly
|
|
71
111
|
*/
|
|
72
112
|
f: number;
|
|
73
|
-
/**
|
|
113
|
+
/**
|
|
114
|
+
* onchain_config serialized data with reporting plugin params on chain.
|
|
115
|
+
*/
|
|
74
116
|
onchain_config: string;
|
|
75
117
|
/**
|
|
76
118
|
* offchain_config_version version of the serialization format used for
|
|
@@ -82,13 +124,20 @@ export interface FeedConfigAmino {
|
|
|
82
124
|
* operation
|
|
83
125
|
*/
|
|
84
126
|
offchain_config: string;
|
|
85
|
-
/**
|
|
127
|
+
/**
|
|
128
|
+
* feed-specific params for the Cosmos module.
|
|
129
|
+
*/
|
|
86
130
|
module_params?: ModuleParamsAmino;
|
|
87
131
|
}
|
|
88
132
|
export interface FeedConfigAminoMsg {
|
|
89
133
|
type: "/injective.ocr.v1beta1.FeedConfig";
|
|
90
134
|
value: FeedConfigAmino;
|
|
91
135
|
}
|
|
136
|
+
/**
|
|
137
|
+
* @name FeedConfigInfo
|
|
138
|
+
* @package injective.ocr.v1beta1
|
|
139
|
+
* @see proto type: injective.ocr.v1beta1.FeedConfigInfo
|
|
140
|
+
*/
|
|
92
141
|
export interface FeedConfigInfo {
|
|
93
142
|
latestConfigDigest: Uint8Array;
|
|
94
143
|
f: number;
|
|
@@ -104,6 +153,11 @@ export interface FeedConfigInfoProtoMsg {
|
|
|
104
153
|
typeUrl: "/injective.ocr.v1beta1.FeedConfigInfo";
|
|
105
154
|
value: Uint8Array;
|
|
106
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* @name FeedConfigInfoAmino
|
|
158
|
+
* @package injective.ocr.v1beta1
|
|
159
|
+
* @see proto type: injective.ocr.v1beta1.FeedConfigInfo
|
|
160
|
+
*/
|
|
107
161
|
export interface FeedConfigInfoAmino {
|
|
108
162
|
latest_config_digest: string;
|
|
109
163
|
f: number;
|
|
@@ -119,71 +173,124 @@ export interface FeedConfigInfoAminoMsg {
|
|
|
119
173
|
type: "/injective.ocr.v1beta1.FeedConfigInfo";
|
|
120
174
|
value: FeedConfigInfoAmino;
|
|
121
175
|
}
|
|
176
|
+
/**
|
|
177
|
+
* @name ModuleParams
|
|
178
|
+
* @package injective.ocr.v1beta1
|
|
179
|
+
* @see proto type: injective.ocr.v1beta1.ModuleParams
|
|
180
|
+
*/
|
|
122
181
|
export interface ModuleParams {
|
|
123
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* feed_id is an unique ID for the target of this config
|
|
184
|
+
*/
|
|
124
185
|
feedId: string;
|
|
125
|
-
/**
|
|
186
|
+
/**
|
|
187
|
+
* lowest answer the median of a report is allowed to be
|
|
188
|
+
*/
|
|
126
189
|
minAnswer: string;
|
|
127
|
-
/**
|
|
190
|
+
/**
|
|
191
|
+
* highest answer the median of a report is allowed to be
|
|
192
|
+
*/
|
|
128
193
|
maxAnswer: string;
|
|
129
|
-
/**
|
|
194
|
+
/**
|
|
195
|
+
* Fixed LINK reward for each observer
|
|
196
|
+
*/
|
|
130
197
|
linkPerObservation: string;
|
|
131
|
-
/**
|
|
198
|
+
/**
|
|
199
|
+
* Fixed LINK reward for transmitter
|
|
200
|
+
*/
|
|
132
201
|
linkPerTransmission: string;
|
|
133
|
-
/**
|
|
202
|
+
/**
|
|
203
|
+
* Native denom for LINK coin in the bank keeper
|
|
204
|
+
*/
|
|
134
205
|
linkDenom: string;
|
|
135
|
-
/**
|
|
206
|
+
/**
|
|
207
|
+
* Enables unique reports
|
|
208
|
+
*/
|
|
136
209
|
uniqueReports: boolean;
|
|
137
210
|
/**
|
|
138
211
|
* short human-readable description of observable this feed's answers pertain
|
|
139
212
|
* to
|
|
140
213
|
*/
|
|
141
214
|
description: string;
|
|
142
|
-
/**
|
|
215
|
+
/**
|
|
216
|
+
* feed administrator
|
|
217
|
+
*/
|
|
143
218
|
feedAdmin: string;
|
|
144
|
-
/**
|
|
219
|
+
/**
|
|
220
|
+
* feed billing administrator
|
|
221
|
+
*/
|
|
145
222
|
billingAdmin: string;
|
|
146
223
|
}
|
|
147
224
|
export interface ModuleParamsProtoMsg {
|
|
148
225
|
typeUrl: "/injective.ocr.v1beta1.ModuleParams";
|
|
149
226
|
value: Uint8Array;
|
|
150
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* @name ModuleParamsAmino
|
|
230
|
+
* @package injective.ocr.v1beta1
|
|
231
|
+
* @see proto type: injective.ocr.v1beta1.ModuleParams
|
|
232
|
+
*/
|
|
151
233
|
export interface ModuleParamsAmino {
|
|
152
|
-
/**
|
|
234
|
+
/**
|
|
235
|
+
* feed_id is an unique ID for the target of this config
|
|
236
|
+
*/
|
|
153
237
|
feed_id: string;
|
|
154
|
-
/**
|
|
238
|
+
/**
|
|
239
|
+
* lowest answer the median of a report is allowed to be
|
|
240
|
+
*/
|
|
155
241
|
min_answer: string;
|
|
156
|
-
/**
|
|
242
|
+
/**
|
|
243
|
+
* highest answer the median of a report is allowed to be
|
|
244
|
+
*/
|
|
157
245
|
max_answer: string;
|
|
158
|
-
/**
|
|
246
|
+
/**
|
|
247
|
+
* Fixed LINK reward for each observer
|
|
248
|
+
*/
|
|
159
249
|
link_per_observation: string;
|
|
160
|
-
/**
|
|
250
|
+
/**
|
|
251
|
+
* Fixed LINK reward for transmitter
|
|
252
|
+
*/
|
|
161
253
|
link_per_transmission: string;
|
|
162
|
-
/**
|
|
254
|
+
/**
|
|
255
|
+
* Native denom for LINK coin in the bank keeper
|
|
256
|
+
*/
|
|
163
257
|
link_denom: string;
|
|
164
|
-
/**
|
|
258
|
+
/**
|
|
259
|
+
* Enables unique reports
|
|
260
|
+
*/
|
|
165
261
|
unique_reports: boolean;
|
|
166
262
|
/**
|
|
167
263
|
* short human-readable description of observable this feed's answers pertain
|
|
168
264
|
* to
|
|
169
265
|
*/
|
|
170
266
|
description: string;
|
|
171
|
-
/**
|
|
267
|
+
/**
|
|
268
|
+
* feed administrator
|
|
269
|
+
*/
|
|
172
270
|
feed_admin: string;
|
|
173
|
-
/**
|
|
271
|
+
/**
|
|
272
|
+
* feed billing administrator
|
|
273
|
+
*/
|
|
174
274
|
billing_admin: string;
|
|
175
275
|
}
|
|
176
276
|
export interface ModuleParamsAminoMsg {
|
|
177
277
|
type: "/injective.ocr.v1beta1.ModuleParams";
|
|
178
278
|
value: ModuleParamsAmino;
|
|
179
279
|
}
|
|
280
|
+
/**
|
|
281
|
+
* @name ContractConfig
|
|
282
|
+
* @package injective.ocr.v1beta1
|
|
283
|
+
* @see proto type: injective.ocr.v1beta1.ContractConfig
|
|
284
|
+
*/
|
|
180
285
|
export interface ContractConfig {
|
|
181
286
|
/**
|
|
182
287
|
* config_count ordinal number of this config setting among all config
|
|
183
288
|
* settings
|
|
184
289
|
*/
|
|
185
290
|
configCount: bigint;
|
|
186
|
-
/**
|
|
291
|
+
/**
|
|
292
|
+
* signers ith element is address ith oracle uses to sign a report
|
|
293
|
+
*/
|
|
187
294
|
signers: string[];
|
|
188
295
|
/**
|
|
189
296
|
* transmitters ith element is address ith oracle uses to transmit a report
|
|
@@ -195,7 +302,9 @@ export interface ContractConfig {
|
|
|
195
302
|
* while still working correctly
|
|
196
303
|
*/
|
|
197
304
|
f: number;
|
|
198
|
-
/**
|
|
305
|
+
/**
|
|
306
|
+
* onchain_config serialized data with reporting plugin params on chain.
|
|
307
|
+
*/
|
|
199
308
|
onchainConfig: Uint8Array;
|
|
200
309
|
/**
|
|
201
310
|
* offchain_config_version version of the serialization format used for
|
|
@@ -212,13 +321,20 @@ export interface ContractConfigProtoMsg {
|
|
|
212
321
|
typeUrl: "/injective.ocr.v1beta1.ContractConfig";
|
|
213
322
|
value: Uint8Array;
|
|
214
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* @name ContractConfigAmino
|
|
326
|
+
* @package injective.ocr.v1beta1
|
|
327
|
+
* @see proto type: injective.ocr.v1beta1.ContractConfig
|
|
328
|
+
*/
|
|
215
329
|
export interface ContractConfigAmino {
|
|
216
330
|
/**
|
|
217
331
|
* config_count ordinal number of this config setting among all config
|
|
218
332
|
* settings
|
|
219
333
|
*/
|
|
220
334
|
config_count: string;
|
|
221
|
-
/**
|
|
335
|
+
/**
|
|
336
|
+
* signers ith element is address ith oracle uses to sign a report
|
|
337
|
+
*/
|
|
222
338
|
signers: string[];
|
|
223
339
|
/**
|
|
224
340
|
* transmitters ith element is address ith oracle uses to transmit a report
|
|
@@ -230,7 +346,9 @@ export interface ContractConfigAmino {
|
|
|
230
346
|
* while still working correctly
|
|
231
347
|
*/
|
|
232
348
|
f: number;
|
|
233
|
-
/**
|
|
349
|
+
/**
|
|
350
|
+
* onchain_config serialized data with reporting plugin params on chain.
|
|
351
|
+
*/
|
|
234
352
|
onchain_config: string;
|
|
235
353
|
/**
|
|
236
354
|
* offchain_config_version version of the serialization format used for
|
|
@@ -247,6 +365,11 @@ export interface ContractConfigAminoMsg {
|
|
|
247
365
|
type: "/injective.ocr.v1beta1.ContractConfig";
|
|
248
366
|
value: ContractConfigAmino;
|
|
249
367
|
}
|
|
368
|
+
/**
|
|
369
|
+
* @name SetConfigProposal
|
|
370
|
+
* @package injective.ocr.v1beta1
|
|
371
|
+
* @see proto type: injective.ocr.v1beta1.SetConfigProposal
|
|
372
|
+
*/
|
|
250
373
|
export interface SetConfigProposal {
|
|
251
374
|
title: string;
|
|
252
375
|
description: string;
|
|
@@ -256,6 +379,11 @@ export interface SetConfigProposalProtoMsg {
|
|
|
256
379
|
typeUrl: "/injective.ocr.v1beta1.SetConfigProposal";
|
|
257
380
|
value: Uint8Array;
|
|
258
381
|
}
|
|
382
|
+
/**
|
|
383
|
+
* @name SetConfigProposalAmino
|
|
384
|
+
* @package injective.ocr.v1beta1
|
|
385
|
+
* @see proto type: injective.ocr.v1beta1.SetConfigProposal
|
|
386
|
+
*/
|
|
259
387
|
export interface SetConfigProposalAmino {
|
|
260
388
|
title: string;
|
|
261
389
|
description: string;
|
|
@@ -265,15 +393,24 @@ export interface SetConfigProposalAminoMsg {
|
|
|
265
393
|
type: "ocr/SetConfigProposal";
|
|
266
394
|
value: SetConfigProposalAmino;
|
|
267
395
|
}
|
|
396
|
+
/**
|
|
397
|
+
* @name FeedProperties
|
|
398
|
+
* @package injective.ocr.v1beta1
|
|
399
|
+
* @see proto type: injective.ocr.v1beta1.FeedProperties
|
|
400
|
+
*/
|
|
268
401
|
export interface FeedProperties {
|
|
269
|
-
/**
|
|
402
|
+
/**
|
|
403
|
+
* feed_id is an unique ID for the target of this config
|
|
404
|
+
*/
|
|
270
405
|
feedId: string;
|
|
271
406
|
/**
|
|
272
407
|
* f maximum number of faulty/dishonest oracles the protocol can tolerate
|
|
273
408
|
* while still working correctly
|
|
274
409
|
*/
|
|
275
410
|
f: number;
|
|
276
|
-
/**
|
|
411
|
+
/**
|
|
412
|
+
* onchain_config serialized data with reporting plugin params on chain.
|
|
413
|
+
*/
|
|
277
414
|
onchainConfig: Uint8Array;
|
|
278
415
|
/**
|
|
279
416
|
* offchain_config_version version of the serialization format used for
|
|
@@ -285,15 +422,25 @@ export interface FeedProperties {
|
|
|
285
422
|
* operation
|
|
286
423
|
*/
|
|
287
424
|
offchainConfig: Uint8Array;
|
|
288
|
-
/**
|
|
425
|
+
/**
|
|
426
|
+
* lowest answer the median of a report is allowed to be
|
|
427
|
+
*/
|
|
289
428
|
minAnswer: string;
|
|
290
|
-
/**
|
|
429
|
+
/**
|
|
430
|
+
* highest answer the median of a report is allowed to be
|
|
431
|
+
*/
|
|
291
432
|
maxAnswer: string;
|
|
292
|
-
/**
|
|
433
|
+
/**
|
|
434
|
+
* Fixed LINK reward for each observer
|
|
435
|
+
*/
|
|
293
436
|
linkPerObservation: string;
|
|
294
|
-
/**
|
|
437
|
+
/**
|
|
438
|
+
* Fixed LINK reward for transmitter
|
|
439
|
+
*/
|
|
295
440
|
linkPerTransmission: string;
|
|
296
|
-
/**
|
|
441
|
+
/**
|
|
442
|
+
* Enables unique reports
|
|
443
|
+
*/
|
|
297
444
|
uniqueReports: boolean;
|
|
298
445
|
/**
|
|
299
446
|
* short human-readable description of observable this feed's answers pertain
|
|
@@ -305,15 +452,24 @@ export interface FeedPropertiesProtoMsg {
|
|
|
305
452
|
typeUrl: "/injective.ocr.v1beta1.FeedProperties";
|
|
306
453
|
value: Uint8Array;
|
|
307
454
|
}
|
|
455
|
+
/**
|
|
456
|
+
* @name FeedPropertiesAmino
|
|
457
|
+
* @package injective.ocr.v1beta1
|
|
458
|
+
* @see proto type: injective.ocr.v1beta1.FeedProperties
|
|
459
|
+
*/
|
|
308
460
|
export interface FeedPropertiesAmino {
|
|
309
|
-
/**
|
|
461
|
+
/**
|
|
462
|
+
* feed_id is an unique ID for the target of this config
|
|
463
|
+
*/
|
|
310
464
|
feed_id: string;
|
|
311
465
|
/**
|
|
312
466
|
* f maximum number of faulty/dishonest oracles the protocol can tolerate
|
|
313
467
|
* while still working correctly
|
|
314
468
|
*/
|
|
315
469
|
f: number;
|
|
316
|
-
/**
|
|
470
|
+
/**
|
|
471
|
+
* onchain_config serialized data with reporting plugin params on chain.
|
|
472
|
+
*/
|
|
317
473
|
onchain_config: string;
|
|
318
474
|
/**
|
|
319
475
|
* offchain_config_version version of the serialization format used for
|
|
@@ -325,15 +481,25 @@ export interface FeedPropertiesAmino {
|
|
|
325
481
|
* operation
|
|
326
482
|
*/
|
|
327
483
|
offchain_config: string;
|
|
328
|
-
/**
|
|
484
|
+
/**
|
|
485
|
+
* lowest answer the median of a report is allowed to be
|
|
486
|
+
*/
|
|
329
487
|
min_answer: string;
|
|
330
|
-
/**
|
|
488
|
+
/**
|
|
489
|
+
* highest answer the median of a report is allowed to be
|
|
490
|
+
*/
|
|
331
491
|
max_answer: string;
|
|
332
|
-
/**
|
|
492
|
+
/**
|
|
493
|
+
* Fixed LINK reward for each observer
|
|
494
|
+
*/
|
|
333
495
|
link_per_observation: string;
|
|
334
|
-
/**
|
|
496
|
+
/**
|
|
497
|
+
* Fixed LINK reward for transmitter
|
|
498
|
+
*/
|
|
335
499
|
link_per_transmission: string;
|
|
336
|
-
/**
|
|
500
|
+
/**
|
|
501
|
+
* Enables unique reports
|
|
502
|
+
*/
|
|
337
503
|
unique_reports: boolean;
|
|
338
504
|
/**
|
|
339
505
|
* short human-readable description of observable this feed's answers pertain
|
|
@@ -345,44 +511,71 @@ export interface FeedPropertiesAminoMsg {
|
|
|
345
511
|
type: "/injective.ocr.v1beta1.FeedProperties";
|
|
346
512
|
value: FeedPropertiesAmino;
|
|
347
513
|
}
|
|
514
|
+
/**
|
|
515
|
+
* @name SetBatchConfigProposal
|
|
516
|
+
* @package injective.ocr.v1beta1
|
|
517
|
+
* @see proto type: injective.ocr.v1beta1.SetBatchConfigProposal
|
|
518
|
+
*/
|
|
348
519
|
export interface SetBatchConfigProposal {
|
|
349
520
|
title: string;
|
|
350
521
|
description: string;
|
|
351
|
-
/**
|
|
522
|
+
/**
|
|
523
|
+
* signers ith element is address ith oracle uses to sign a report
|
|
524
|
+
*/
|
|
352
525
|
signers: string[];
|
|
353
526
|
/**
|
|
354
527
|
* transmitters ith element is address ith oracle uses to transmit a report
|
|
355
528
|
* via the transmit method
|
|
356
529
|
*/
|
|
357
530
|
transmitters: string[];
|
|
358
|
-
/**
|
|
531
|
+
/**
|
|
532
|
+
* Native denom for LINK coin in the bank keeper
|
|
533
|
+
*/
|
|
359
534
|
linkDenom: string;
|
|
360
|
-
/**
|
|
535
|
+
/**
|
|
536
|
+
* feed properties
|
|
537
|
+
*/
|
|
361
538
|
feedProperties: FeedProperties[];
|
|
362
539
|
}
|
|
363
540
|
export interface SetBatchConfigProposalProtoMsg {
|
|
364
541
|
typeUrl: "/injective.ocr.v1beta1.SetBatchConfigProposal";
|
|
365
542
|
value: Uint8Array;
|
|
366
543
|
}
|
|
544
|
+
/**
|
|
545
|
+
* @name SetBatchConfigProposalAmino
|
|
546
|
+
* @package injective.ocr.v1beta1
|
|
547
|
+
* @see proto type: injective.ocr.v1beta1.SetBatchConfigProposal
|
|
548
|
+
*/
|
|
367
549
|
export interface SetBatchConfigProposalAmino {
|
|
368
550
|
title: string;
|
|
369
551
|
description: string;
|
|
370
|
-
/**
|
|
552
|
+
/**
|
|
553
|
+
* signers ith element is address ith oracle uses to sign a report
|
|
554
|
+
*/
|
|
371
555
|
signers: string[];
|
|
372
556
|
/**
|
|
373
557
|
* transmitters ith element is address ith oracle uses to transmit a report
|
|
374
558
|
* via the transmit method
|
|
375
559
|
*/
|
|
376
560
|
transmitters: string[];
|
|
377
|
-
/**
|
|
561
|
+
/**
|
|
562
|
+
* Native denom for LINK coin in the bank keeper
|
|
563
|
+
*/
|
|
378
564
|
link_denom: string;
|
|
379
|
-
/**
|
|
565
|
+
/**
|
|
566
|
+
* feed properties
|
|
567
|
+
*/
|
|
380
568
|
feed_properties: FeedPropertiesAmino[];
|
|
381
569
|
}
|
|
382
570
|
export interface SetBatchConfigProposalAminoMsg {
|
|
383
571
|
type: "ocr/SetBatchConfigProposal";
|
|
384
572
|
value: SetBatchConfigProposalAmino;
|
|
385
573
|
}
|
|
574
|
+
/**
|
|
575
|
+
* @name OracleObservationsCounts
|
|
576
|
+
* @package injective.ocr.v1beta1
|
|
577
|
+
* @see proto type: injective.ocr.v1beta1.OracleObservationsCounts
|
|
578
|
+
*/
|
|
386
579
|
export interface OracleObservationsCounts {
|
|
387
580
|
counts: number[];
|
|
388
581
|
}
|
|
@@ -390,6 +583,11 @@ export interface OracleObservationsCountsProtoMsg {
|
|
|
390
583
|
typeUrl: "/injective.ocr.v1beta1.OracleObservationsCounts";
|
|
391
584
|
value: Uint8Array;
|
|
392
585
|
}
|
|
586
|
+
/**
|
|
587
|
+
* @name OracleObservationsCountsAmino
|
|
588
|
+
* @package injective.ocr.v1beta1
|
|
589
|
+
* @see proto type: injective.ocr.v1beta1.OracleObservationsCounts
|
|
590
|
+
*/
|
|
393
591
|
export interface OracleObservationsCountsAmino {
|
|
394
592
|
counts: number[];
|
|
395
593
|
}
|
|
@@ -397,7 +595,12 @@ export interface OracleObservationsCountsAminoMsg {
|
|
|
397
595
|
type: "/injective.ocr.v1beta1.OracleObservationsCounts";
|
|
398
596
|
value: OracleObservationsCountsAmino;
|
|
399
597
|
}
|
|
400
|
-
/**
|
|
598
|
+
/**
|
|
599
|
+
* LINK-INJ-denominated reimbursements for gas used by transmitters.
|
|
600
|
+
* @name GasReimbursements
|
|
601
|
+
* @package injective.ocr.v1beta1
|
|
602
|
+
* @see proto type: injective.ocr.v1beta1.GasReimbursements
|
|
603
|
+
*/
|
|
401
604
|
export interface GasReimbursements {
|
|
402
605
|
reimbursements: Coin[];
|
|
403
606
|
}
|
|
@@ -405,7 +608,12 @@ export interface GasReimbursementsProtoMsg {
|
|
|
405
608
|
typeUrl: "/injective.ocr.v1beta1.GasReimbursements";
|
|
406
609
|
value: Uint8Array;
|
|
407
610
|
}
|
|
408
|
-
/**
|
|
611
|
+
/**
|
|
612
|
+
* LINK-INJ-denominated reimbursements for gas used by transmitters.
|
|
613
|
+
* @name GasReimbursementsAmino
|
|
614
|
+
* @package injective.ocr.v1beta1
|
|
615
|
+
* @see proto type: injective.ocr.v1beta1.GasReimbursements
|
|
616
|
+
*/
|
|
409
617
|
export interface GasReimbursementsAmino {
|
|
410
618
|
reimbursements: CoinAmino[];
|
|
411
619
|
}
|
|
@@ -413,6 +621,11 @@ export interface GasReimbursementsAminoMsg {
|
|
|
413
621
|
type: "/injective.ocr.v1beta1.GasReimbursements";
|
|
414
622
|
value: GasReimbursementsAmino;
|
|
415
623
|
}
|
|
624
|
+
/**
|
|
625
|
+
* @name Payee
|
|
626
|
+
* @package injective.ocr.v1beta1
|
|
627
|
+
* @see proto type: injective.ocr.v1beta1.Payee
|
|
628
|
+
*/
|
|
416
629
|
export interface Payee {
|
|
417
630
|
transmitterAddr: string;
|
|
418
631
|
paymentAddr: string;
|
|
@@ -421,6 +634,11 @@ export interface PayeeProtoMsg {
|
|
|
421
634
|
typeUrl: "/injective.ocr.v1beta1.Payee";
|
|
422
635
|
value: Uint8Array;
|
|
423
636
|
}
|
|
637
|
+
/**
|
|
638
|
+
* @name PayeeAmino
|
|
639
|
+
* @package injective.ocr.v1beta1
|
|
640
|
+
* @see proto type: injective.ocr.v1beta1.Payee
|
|
641
|
+
*/
|
|
424
642
|
export interface PayeeAmino {
|
|
425
643
|
transmitter_addr: string;
|
|
426
644
|
payment_addr: string;
|
|
@@ -432,12 +650,19 @@ export interface PayeeAminoMsg {
|
|
|
432
650
|
/**
|
|
433
651
|
* Transmission records the median answer from the transmit transaction at
|
|
434
652
|
* time timestamp
|
|
653
|
+
* @name Transmission
|
|
654
|
+
* @package injective.ocr.v1beta1
|
|
655
|
+
* @see proto type: injective.ocr.v1beta1.Transmission
|
|
435
656
|
*/
|
|
436
657
|
export interface Transmission {
|
|
437
658
|
answer: string;
|
|
438
|
-
/**
|
|
659
|
+
/**
|
|
660
|
+
* when were observations made offchain
|
|
661
|
+
*/
|
|
439
662
|
observationsTimestamp: bigint;
|
|
440
|
-
/**
|
|
663
|
+
/**
|
|
664
|
+
* when was report received onchain
|
|
665
|
+
*/
|
|
441
666
|
transmissionTimestamp: bigint;
|
|
442
667
|
}
|
|
443
668
|
export interface TransmissionProtoMsg {
|
|
@@ -447,18 +672,30 @@ export interface TransmissionProtoMsg {
|
|
|
447
672
|
/**
|
|
448
673
|
* Transmission records the median answer from the transmit transaction at
|
|
449
674
|
* time timestamp
|
|
675
|
+
* @name TransmissionAmino
|
|
676
|
+
* @package injective.ocr.v1beta1
|
|
677
|
+
* @see proto type: injective.ocr.v1beta1.Transmission
|
|
450
678
|
*/
|
|
451
679
|
export interface TransmissionAmino {
|
|
452
680
|
answer: string;
|
|
453
|
-
/**
|
|
681
|
+
/**
|
|
682
|
+
* when were observations made offchain
|
|
683
|
+
*/
|
|
454
684
|
observations_timestamp: string;
|
|
455
|
-
/**
|
|
685
|
+
/**
|
|
686
|
+
* when was report received onchain
|
|
687
|
+
*/
|
|
456
688
|
transmission_timestamp: string;
|
|
457
689
|
}
|
|
458
690
|
export interface TransmissionAminoMsg {
|
|
459
691
|
type: "/injective.ocr.v1beta1.Transmission";
|
|
460
692
|
value: TransmissionAmino;
|
|
461
693
|
}
|
|
694
|
+
/**
|
|
695
|
+
* @name EpochAndRound
|
|
696
|
+
* @package injective.ocr.v1beta1
|
|
697
|
+
* @see proto type: injective.ocr.v1beta1.EpochAndRound
|
|
698
|
+
*/
|
|
462
699
|
export interface EpochAndRound {
|
|
463
700
|
epoch: bigint;
|
|
464
701
|
round: bigint;
|
|
@@ -467,6 +704,11 @@ export interface EpochAndRoundProtoMsg {
|
|
|
467
704
|
typeUrl: "/injective.ocr.v1beta1.EpochAndRound";
|
|
468
705
|
value: Uint8Array;
|
|
469
706
|
}
|
|
707
|
+
/**
|
|
708
|
+
* @name EpochAndRoundAmino
|
|
709
|
+
* @package injective.ocr.v1beta1
|
|
710
|
+
* @see proto type: injective.ocr.v1beta1.EpochAndRound
|
|
711
|
+
*/
|
|
470
712
|
export interface EpochAndRoundAmino {
|
|
471
713
|
epoch: string;
|
|
472
714
|
round: string;
|
|
@@ -475,9 +717,16 @@ export interface EpochAndRoundAminoMsg {
|
|
|
475
717
|
type: "/injective.ocr.v1beta1.EpochAndRound";
|
|
476
718
|
value: EpochAndRoundAmino;
|
|
477
719
|
}
|
|
720
|
+
/**
|
|
721
|
+
* @name Report
|
|
722
|
+
* @package injective.ocr.v1beta1
|
|
723
|
+
* @see proto type: injective.ocr.v1beta1.Report
|
|
724
|
+
*/
|
|
478
725
|
export interface Report {
|
|
479
726
|
observationsTimestamp: bigint;
|
|
480
|
-
/**
|
|
727
|
+
/**
|
|
728
|
+
* ith element is the index of the ith observer
|
|
729
|
+
*/
|
|
481
730
|
observers: Uint8Array;
|
|
482
731
|
observations: string[];
|
|
483
732
|
}
|
|
@@ -485,9 +734,16 @@ export interface ReportProtoMsg {
|
|
|
485
734
|
typeUrl: "/injective.ocr.v1beta1.Report";
|
|
486
735
|
value: Uint8Array;
|
|
487
736
|
}
|
|
737
|
+
/**
|
|
738
|
+
* @name ReportAmino
|
|
739
|
+
* @package injective.ocr.v1beta1
|
|
740
|
+
* @see proto type: injective.ocr.v1beta1.Report
|
|
741
|
+
*/
|
|
488
742
|
export interface ReportAmino {
|
|
489
743
|
observations_timestamp: string;
|
|
490
|
-
/**
|
|
744
|
+
/**
|
|
745
|
+
* ith element is the index of the ith observer
|
|
746
|
+
*/
|
|
491
747
|
observers: string;
|
|
492
748
|
observations: string[];
|
|
493
749
|
}
|
|
@@ -495,30 +751,49 @@ export interface ReportAminoMsg {
|
|
|
495
751
|
type: "/injective.ocr.v1beta1.Report";
|
|
496
752
|
value: ReportAmino;
|
|
497
753
|
}
|
|
754
|
+
/**
|
|
755
|
+
* @name ReportToSign
|
|
756
|
+
* @package injective.ocr.v1beta1
|
|
757
|
+
* @see proto type: injective.ocr.v1beta1.ReportToSign
|
|
758
|
+
*/
|
|
498
759
|
export interface ReportToSign {
|
|
499
760
|
configDigest: Uint8Array;
|
|
500
761
|
epoch: bigint;
|
|
501
762
|
round: bigint;
|
|
502
763
|
extraHash: Uint8Array;
|
|
503
|
-
/**
|
|
764
|
+
/**
|
|
765
|
+
* Opaque report
|
|
766
|
+
*/
|
|
504
767
|
report: Uint8Array;
|
|
505
768
|
}
|
|
506
769
|
export interface ReportToSignProtoMsg {
|
|
507
770
|
typeUrl: "/injective.ocr.v1beta1.ReportToSign";
|
|
508
771
|
value: Uint8Array;
|
|
509
772
|
}
|
|
773
|
+
/**
|
|
774
|
+
* @name ReportToSignAmino
|
|
775
|
+
* @package injective.ocr.v1beta1
|
|
776
|
+
* @see proto type: injective.ocr.v1beta1.ReportToSign
|
|
777
|
+
*/
|
|
510
778
|
export interface ReportToSignAmino {
|
|
511
779
|
config_digest: string;
|
|
512
780
|
epoch: string;
|
|
513
781
|
round: string;
|
|
514
782
|
extra_hash: string;
|
|
515
|
-
/**
|
|
783
|
+
/**
|
|
784
|
+
* Opaque report
|
|
785
|
+
*/
|
|
516
786
|
report: string;
|
|
517
787
|
}
|
|
518
788
|
export interface ReportToSignAminoMsg {
|
|
519
789
|
type: "/injective.ocr.v1beta1.ReportToSign";
|
|
520
790
|
value: ReportToSignAmino;
|
|
521
791
|
}
|
|
792
|
+
/**
|
|
793
|
+
* @name EventOraclePaid
|
|
794
|
+
* @package injective.ocr.v1beta1
|
|
795
|
+
* @see proto type: injective.ocr.v1beta1.EventOraclePaid
|
|
796
|
+
*/
|
|
522
797
|
export interface EventOraclePaid {
|
|
523
798
|
transmitterAddr: string;
|
|
524
799
|
payeeAddr: string;
|
|
@@ -528,6 +803,11 @@ export interface EventOraclePaidProtoMsg {
|
|
|
528
803
|
typeUrl: "/injective.ocr.v1beta1.EventOraclePaid";
|
|
529
804
|
value: Uint8Array;
|
|
530
805
|
}
|
|
806
|
+
/**
|
|
807
|
+
* @name EventOraclePaidAmino
|
|
808
|
+
* @package injective.ocr.v1beta1
|
|
809
|
+
* @see proto type: injective.ocr.v1beta1.EventOraclePaid
|
|
810
|
+
*/
|
|
531
811
|
export interface EventOraclePaidAmino {
|
|
532
812
|
transmitter_addr: string;
|
|
533
813
|
payee_addr: string;
|
|
@@ -537,6 +817,11 @@ export interface EventOraclePaidAminoMsg {
|
|
|
537
817
|
type: "/injective.ocr.v1beta1.EventOraclePaid";
|
|
538
818
|
value: EventOraclePaidAmino;
|
|
539
819
|
}
|
|
820
|
+
/**
|
|
821
|
+
* @name EventAnswerUpdated
|
|
822
|
+
* @package injective.ocr.v1beta1
|
|
823
|
+
* @see proto type: injective.ocr.v1beta1.EventAnswerUpdated
|
|
824
|
+
*/
|
|
540
825
|
export interface EventAnswerUpdated {
|
|
541
826
|
current: string;
|
|
542
827
|
roundId: string;
|
|
@@ -546,6 +831,11 @@ export interface EventAnswerUpdatedProtoMsg {
|
|
|
546
831
|
typeUrl: "/injective.ocr.v1beta1.EventAnswerUpdated";
|
|
547
832
|
value: Uint8Array;
|
|
548
833
|
}
|
|
834
|
+
/**
|
|
835
|
+
* @name EventAnswerUpdatedAmino
|
|
836
|
+
* @package injective.ocr.v1beta1
|
|
837
|
+
* @see proto type: injective.ocr.v1beta1.EventAnswerUpdated
|
|
838
|
+
*/
|
|
549
839
|
export interface EventAnswerUpdatedAmino {
|
|
550
840
|
current: string;
|
|
551
841
|
round_id: string;
|
|
@@ -555,9 +845,16 @@ export interface EventAnswerUpdatedAminoMsg {
|
|
|
555
845
|
type: "/injective.ocr.v1beta1.EventAnswerUpdated";
|
|
556
846
|
value: EventAnswerUpdatedAmino;
|
|
557
847
|
}
|
|
848
|
+
/**
|
|
849
|
+
* @name EventNewRound
|
|
850
|
+
* @package injective.ocr.v1beta1
|
|
851
|
+
* @see proto type: injective.ocr.v1beta1.EventNewRound
|
|
852
|
+
*/
|
|
558
853
|
export interface EventNewRound {
|
|
559
854
|
roundId: string;
|
|
560
|
-
/**
|
|
855
|
+
/**
|
|
856
|
+
* address of starter
|
|
857
|
+
*/
|
|
561
858
|
startedBy: string;
|
|
562
859
|
startedAt: Date;
|
|
563
860
|
}
|
|
@@ -565,9 +862,16 @@ export interface EventNewRoundProtoMsg {
|
|
|
565
862
|
typeUrl: "/injective.ocr.v1beta1.EventNewRound";
|
|
566
863
|
value: Uint8Array;
|
|
567
864
|
}
|
|
865
|
+
/**
|
|
866
|
+
* @name EventNewRoundAmino
|
|
867
|
+
* @package injective.ocr.v1beta1
|
|
868
|
+
* @see proto type: injective.ocr.v1beta1.EventNewRound
|
|
869
|
+
*/
|
|
568
870
|
export interface EventNewRoundAmino {
|
|
569
871
|
round_id: string;
|
|
570
|
-
/**
|
|
872
|
+
/**
|
|
873
|
+
* address of starter
|
|
874
|
+
*/
|
|
571
875
|
started_by: string;
|
|
572
876
|
started_at: string;
|
|
573
877
|
}
|
|
@@ -575,6 +879,11 @@ export interface EventNewRoundAminoMsg {
|
|
|
575
879
|
type: "/injective.ocr.v1beta1.EventNewRound";
|
|
576
880
|
value: EventNewRoundAmino;
|
|
577
881
|
}
|
|
882
|
+
/**
|
|
883
|
+
* @name EventTransmitted
|
|
884
|
+
* @package injective.ocr.v1beta1
|
|
885
|
+
* @see proto type: injective.ocr.v1beta1.EventTransmitted
|
|
886
|
+
*/
|
|
578
887
|
export interface EventTransmitted {
|
|
579
888
|
configDigest: Uint8Array;
|
|
580
889
|
epoch: bigint;
|
|
@@ -583,6 +892,11 @@ export interface EventTransmittedProtoMsg {
|
|
|
583
892
|
typeUrl: "/injective.ocr.v1beta1.EventTransmitted";
|
|
584
893
|
value: Uint8Array;
|
|
585
894
|
}
|
|
895
|
+
/**
|
|
896
|
+
* @name EventTransmittedAmino
|
|
897
|
+
* @package injective.ocr.v1beta1
|
|
898
|
+
* @see proto type: injective.ocr.v1beta1.EventTransmitted
|
|
899
|
+
*/
|
|
586
900
|
export interface EventTransmittedAmino {
|
|
587
901
|
config_digest: string;
|
|
588
902
|
epoch: string;
|
|
@@ -591,6 +905,11 @@ export interface EventTransmittedAminoMsg {
|
|
|
591
905
|
type: "/injective.ocr.v1beta1.EventTransmitted";
|
|
592
906
|
value: EventTransmittedAmino;
|
|
593
907
|
}
|
|
908
|
+
/**
|
|
909
|
+
* @name EventNewTransmission
|
|
910
|
+
* @package injective.ocr.v1beta1
|
|
911
|
+
* @see proto type: injective.ocr.v1beta1.EventNewTransmission
|
|
912
|
+
*/
|
|
594
913
|
export interface EventNewTransmission {
|
|
595
914
|
feedId: string;
|
|
596
915
|
aggregatorRoundId: number;
|
|
@@ -606,6 +925,11 @@ export interface EventNewTransmissionProtoMsg {
|
|
|
606
925
|
typeUrl: "/injective.ocr.v1beta1.EventNewTransmission";
|
|
607
926
|
value: Uint8Array;
|
|
608
927
|
}
|
|
928
|
+
/**
|
|
929
|
+
* @name EventNewTransmissionAmino
|
|
930
|
+
* @package injective.ocr.v1beta1
|
|
931
|
+
* @see proto type: injective.ocr.v1beta1.EventNewTransmission
|
|
932
|
+
*/
|
|
609
933
|
export interface EventNewTransmissionAmino {
|
|
610
934
|
feed_id: string;
|
|
611
935
|
aggregator_round_id: number;
|
|
@@ -621,8 +945,15 @@ export interface EventNewTransmissionAminoMsg {
|
|
|
621
945
|
type: "/injective.ocr.v1beta1.EventNewTransmission";
|
|
622
946
|
value: EventNewTransmissionAmino;
|
|
623
947
|
}
|
|
948
|
+
/**
|
|
949
|
+
* @name EventConfigSet
|
|
950
|
+
* @package injective.ocr.v1beta1
|
|
951
|
+
* @see proto type: injective.ocr.v1beta1.EventConfigSet
|
|
952
|
+
*/
|
|
624
953
|
export interface EventConfigSet {
|
|
625
|
-
/**
|
|
954
|
+
/**
|
|
955
|
+
* hash of the config
|
|
956
|
+
*/
|
|
626
957
|
configDigest: Uint8Array;
|
|
627
958
|
/**
|
|
628
959
|
* previous_config_block_number block in which the previous config was set, to
|
|
@@ -636,8 +967,15 @@ export interface EventConfigSetProtoMsg {
|
|
|
636
967
|
typeUrl: "/injective.ocr.v1beta1.EventConfigSet";
|
|
637
968
|
value: Uint8Array;
|
|
638
969
|
}
|
|
970
|
+
/**
|
|
971
|
+
* @name EventConfigSetAmino
|
|
972
|
+
* @package injective.ocr.v1beta1
|
|
973
|
+
* @see proto type: injective.ocr.v1beta1.EventConfigSet
|
|
974
|
+
*/
|
|
639
975
|
export interface EventConfigSetAmino {
|
|
640
|
-
/**
|
|
976
|
+
/**
|
|
977
|
+
* hash of the config
|
|
978
|
+
*/
|
|
641
979
|
config_digest: string;
|
|
642
980
|
/**
|
|
643
981
|
* previous_config_block_number block in which the previous config was set, to
|
|
@@ -651,6 +989,11 @@ export interface EventConfigSetAminoMsg {
|
|
|
651
989
|
type: "/injective.ocr.v1beta1.EventConfigSet";
|
|
652
990
|
value: EventConfigSetAmino;
|
|
653
991
|
}
|
|
992
|
+
/**
|
|
993
|
+
* @name Params
|
|
994
|
+
* @package injective.ocr.v1beta1
|
|
995
|
+
* @see proto type: injective.ocr.v1beta1.Params
|
|
996
|
+
*/
|
|
654
997
|
export declare const Params: {
|
|
655
998
|
typeUrl: string;
|
|
656
999
|
aminoType: string;
|
|
@@ -668,6 +1011,11 @@ export declare const Params: {
|
|
|
668
1011
|
toProtoMsg(message: Params): ParamsProtoMsg;
|
|
669
1012
|
registerTypeUrl(): void;
|
|
670
1013
|
};
|
|
1014
|
+
/**
|
|
1015
|
+
* @name FeedConfig
|
|
1016
|
+
* @package injective.ocr.v1beta1
|
|
1017
|
+
* @see proto type: injective.ocr.v1beta1.FeedConfig
|
|
1018
|
+
*/
|
|
671
1019
|
export declare const FeedConfig: {
|
|
672
1020
|
typeUrl: string;
|
|
673
1021
|
is(o: any): o is FeedConfig;
|
|
@@ -683,6 +1031,11 @@ export declare const FeedConfig: {
|
|
|
683
1031
|
toProtoMsg(message: FeedConfig): FeedConfigProtoMsg;
|
|
684
1032
|
registerTypeUrl(): void;
|
|
685
1033
|
};
|
|
1034
|
+
/**
|
|
1035
|
+
* @name FeedConfigInfo
|
|
1036
|
+
* @package injective.ocr.v1beta1
|
|
1037
|
+
* @see proto type: injective.ocr.v1beta1.FeedConfigInfo
|
|
1038
|
+
*/
|
|
686
1039
|
export declare const FeedConfigInfo: {
|
|
687
1040
|
typeUrl: string;
|
|
688
1041
|
is(o: any): o is FeedConfigInfo;
|
|
@@ -698,6 +1051,11 @@ export declare const FeedConfigInfo: {
|
|
|
698
1051
|
toProtoMsg(message: FeedConfigInfo): FeedConfigInfoProtoMsg;
|
|
699
1052
|
registerTypeUrl(): void;
|
|
700
1053
|
};
|
|
1054
|
+
/**
|
|
1055
|
+
* @name ModuleParams
|
|
1056
|
+
* @package injective.ocr.v1beta1
|
|
1057
|
+
* @see proto type: injective.ocr.v1beta1.ModuleParams
|
|
1058
|
+
*/
|
|
701
1059
|
export declare const ModuleParams: {
|
|
702
1060
|
typeUrl: string;
|
|
703
1061
|
is(o: any): o is ModuleParams;
|
|
@@ -713,6 +1071,11 @@ export declare const ModuleParams: {
|
|
|
713
1071
|
toProtoMsg(message: ModuleParams): ModuleParamsProtoMsg;
|
|
714
1072
|
registerTypeUrl(): void;
|
|
715
1073
|
};
|
|
1074
|
+
/**
|
|
1075
|
+
* @name ContractConfig
|
|
1076
|
+
* @package injective.ocr.v1beta1
|
|
1077
|
+
* @see proto type: injective.ocr.v1beta1.ContractConfig
|
|
1078
|
+
*/
|
|
716
1079
|
export declare const ContractConfig: {
|
|
717
1080
|
typeUrl: string;
|
|
718
1081
|
is(o: any): o is ContractConfig;
|
|
@@ -728,6 +1091,11 @@ export declare const ContractConfig: {
|
|
|
728
1091
|
toProtoMsg(message: ContractConfig): ContractConfigProtoMsg;
|
|
729
1092
|
registerTypeUrl(): void;
|
|
730
1093
|
};
|
|
1094
|
+
/**
|
|
1095
|
+
* @name SetConfigProposal
|
|
1096
|
+
* @package injective.ocr.v1beta1
|
|
1097
|
+
* @see proto type: injective.ocr.v1beta1.SetConfigProposal
|
|
1098
|
+
*/
|
|
731
1099
|
export declare const SetConfigProposal: {
|
|
732
1100
|
typeUrl: string;
|
|
733
1101
|
aminoType: string;
|
|
@@ -745,6 +1113,11 @@ export declare const SetConfigProposal: {
|
|
|
745
1113
|
toProtoMsg(message: SetConfigProposal): SetConfigProposalProtoMsg;
|
|
746
1114
|
registerTypeUrl(): void;
|
|
747
1115
|
};
|
|
1116
|
+
/**
|
|
1117
|
+
* @name FeedProperties
|
|
1118
|
+
* @package injective.ocr.v1beta1
|
|
1119
|
+
* @see proto type: injective.ocr.v1beta1.FeedProperties
|
|
1120
|
+
*/
|
|
748
1121
|
export declare const FeedProperties: {
|
|
749
1122
|
typeUrl: string;
|
|
750
1123
|
is(o: any): o is FeedProperties;
|
|
@@ -760,6 +1133,11 @@ export declare const FeedProperties: {
|
|
|
760
1133
|
toProtoMsg(message: FeedProperties): FeedPropertiesProtoMsg;
|
|
761
1134
|
registerTypeUrl(): void;
|
|
762
1135
|
};
|
|
1136
|
+
/**
|
|
1137
|
+
* @name SetBatchConfigProposal
|
|
1138
|
+
* @package injective.ocr.v1beta1
|
|
1139
|
+
* @see proto type: injective.ocr.v1beta1.SetBatchConfigProposal
|
|
1140
|
+
*/
|
|
763
1141
|
export declare const SetBatchConfigProposal: {
|
|
764
1142
|
typeUrl: string;
|
|
765
1143
|
aminoType: string;
|
|
@@ -777,6 +1155,11 @@ export declare const SetBatchConfigProposal: {
|
|
|
777
1155
|
toProtoMsg(message: SetBatchConfigProposal): SetBatchConfigProposalProtoMsg;
|
|
778
1156
|
registerTypeUrl(): void;
|
|
779
1157
|
};
|
|
1158
|
+
/**
|
|
1159
|
+
* @name OracleObservationsCounts
|
|
1160
|
+
* @package injective.ocr.v1beta1
|
|
1161
|
+
* @see proto type: injective.ocr.v1beta1.OracleObservationsCounts
|
|
1162
|
+
*/
|
|
780
1163
|
export declare const OracleObservationsCounts: {
|
|
781
1164
|
typeUrl: string;
|
|
782
1165
|
is(o: any): o is OracleObservationsCounts;
|
|
@@ -792,6 +1175,12 @@ export declare const OracleObservationsCounts: {
|
|
|
792
1175
|
toProtoMsg(message: OracleObservationsCounts): OracleObservationsCountsProtoMsg;
|
|
793
1176
|
registerTypeUrl(): void;
|
|
794
1177
|
};
|
|
1178
|
+
/**
|
|
1179
|
+
* LINK-INJ-denominated reimbursements for gas used by transmitters.
|
|
1180
|
+
* @name GasReimbursements
|
|
1181
|
+
* @package injective.ocr.v1beta1
|
|
1182
|
+
* @see proto type: injective.ocr.v1beta1.GasReimbursements
|
|
1183
|
+
*/
|
|
795
1184
|
export declare const GasReimbursements: {
|
|
796
1185
|
typeUrl: string;
|
|
797
1186
|
is(o: any): o is GasReimbursements;
|
|
@@ -807,6 +1196,11 @@ export declare const GasReimbursements: {
|
|
|
807
1196
|
toProtoMsg(message: GasReimbursements): GasReimbursementsProtoMsg;
|
|
808
1197
|
registerTypeUrl(): void;
|
|
809
1198
|
};
|
|
1199
|
+
/**
|
|
1200
|
+
* @name Payee
|
|
1201
|
+
* @package injective.ocr.v1beta1
|
|
1202
|
+
* @see proto type: injective.ocr.v1beta1.Payee
|
|
1203
|
+
*/
|
|
810
1204
|
export declare const Payee: {
|
|
811
1205
|
typeUrl: string;
|
|
812
1206
|
is(o: any): o is Payee;
|
|
@@ -822,6 +1216,13 @@ export declare const Payee: {
|
|
|
822
1216
|
toProtoMsg(message: Payee): PayeeProtoMsg;
|
|
823
1217
|
registerTypeUrl(): void;
|
|
824
1218
|
};
|
|
1219
|
+
/**
|
|
1220
|
+
* Transmission records the median answer from the transmit transaction at
|
|
1221
|
+
* time timestamp
|
|
1222
|
+
* @name Transmission
|
|
1223
|
+
* @package injective.ocr.v1beta1
|
|
1224
|
+
* @see proto type: injective.ocr.v1beta1.Transmission
|
|
1225
|
+
*/
|
|
825
1226
|
export declare const Transmission: {
|
|
826
1227
|
typeUrl: string;
|
|
827
1228
|
is(o: any): o is Transmission;
|
|
@@ -837,6 +1238,11 @@ export declare const Transmission: {
|
|
|
837
1238
|
toProtoMsg(message: Transmission): TransmissionProtoMsg;
|
|
838
1239
|
registerTypeUrl(): void;
|
|
839
1240
|
};
|
|
1241
|
+
/**
|
|
1242
|
+
* @name EpochAndRound
|
|
1243
|
+
* @package injective.ocr.v1beta1
|
|
1244
|
+
* @see proto type: injective.ocr.v1beta1.EpochAndRound
|
|
1245
|
+
*/
|
|
840
1246
|
export declare const EpochAndRound: {
|
|
841
1247
|
typeUrl: string;
|
|
842
1248
|
is(o: any): o is EpochAndRound;
|
|
@@ -852,6 +1258,11 @@ export declare const EpochAndRound: {
|
|
|
852
1258
|
toProtoMsg(message: EpochAndRound): EpochAndRoundProtoMsg;
|
|
853
1259
|
registerTypeUrl(): void;
|
|
854
1260
|
};
|
|
1261
|
+
/**
|
|
1262
|
+
* @name Report
|
|
1263
|
+
* @package injective.ocr.v1beta1
|
|
1264
|
+
* @see proto type: injective.ocr.v1beta1.Report
|
|
1265
|
+
*/
|
|
855
1266
|
export declare const Report: {
|
|
856
1267
|
typeUrl: string;
|
|
857
1268
|
is(o: any): o is Report;
|
|
@@ -867,6 +1278,11 @@ export declare const Report: {
|
|
|
867
1278
|
toProtoMsg(message: Report): ReportProtoMsg;
|
|
868
1279
|
registerTypeUrl(): void;
|
|
869
1280
|
};
|
|
1281
|
+
/**
|
|
1282
|
+
* @name ReportToSign
|
|
1283
|
+
* @package injective.ocr.v1beta1
|
|
1284
|
+
* @see proto type: injective.ocr.v1beta1.ReportToSign
|
|
1285
|
+
*/
|
|
870
1286
|
export declare const ReportToSign: {
|
|
871
1287
|
typeUrl: string;
|
|
872
1288
|
is(o: any): o is ReportToSign;
|
|
@@ -882,6 +1298,11 @@ export declare const ReportToSign: {
|
|
|
882
1298
|
toProtoMsg(message: ReportToSign): ReportToSignProtoMsg;
|
|
883
1299
|
registerTypeUrl(): void;
|
|
884
1300
|
};
|
|
1301
|
+
/**
|
|
1302
|
+
* @name EventOraclePaid
|
|
1303
|
+
* @package injective.ocr.v1beta1
|
|
1304
|
+
* @see proto type: injective.ocr.v1beta1.EventOraclePaid
|
|
1305
|
+
*/
|
|
885
1306
|
export declare const EventOraclePaid: {
|
|
886
1307
|
typeUrl: string;
|
|
887
1308
|
is(o: any): o is EventOraclePaid;
|
|
@@ -897,6 +1318,11 @@ export declare const EventOraclePaid: {
|
|
|
897
1318
|
toProtoMsg(message: EventOraclePaid): EventOraclePaidProtoMsg;
|
|
898
1319
|
registerTypeUrl(): void;
|
|
899
1320
|
};
|
|
1321
|
+
/**
|
|
1322
|
+
* @name EventAnswerUpdated
|
|
1323
|
+
* @package injective.ocr.v1beta1
|
|
1324
|
+
* @see proto type: injective.ocr.v1beta1.EventAnswerUpdated
|
|
1325
|
+
*/
|
|
900
1326
|
export declare const EventAnswerUpdated: {
|
|
901
1327
|
typeUrl: string;
|
|
902
1328
|
is(o: any): o is EventAnswerUpdated;
|
|
@@ -912,6 +1338,11 @@ export declare const EventAnswerUpdated: {
|
|
|
912
1338
|
toProtoMsg(message: EventAnswerUpdated): EventAnswerUpdatedProtoMsg;
|
|
913
1339
|
registerTypeUrl(): void;
|
|
914
1340
|
};
|
|
1341
|
+
/**
|
|
1342
|
+
* @name EventNewRound
|
|
1343
|
+
* @package injective.ocr.v1beta1
|
|
1344
|
+
* @see proto type: injective.ocr.v1beta1.EventNewRound
|
|
1345
|
+
*/
|
|
915
1346
|
export declare const EventNewRound: {
|
|
916
1347
|
typeUrl: string;
|
|
917
1348
|
is(o: any): o is EventNewRound;
|
|
@@ -927,6 +1358,11 @@ export declare const EventNewRound: {
|
|
|
927
1358
|
toProtoMsg(message: EventNewRound): EventNewRoundProtoMsg;
|
|
928
1359
|
registerTypeUrl(): void;
|
|
929
1360
|
};
|
|
1361
|
+
/**
|
|
1362
|
+
* @name EventTransmitted
|
|
1363
|
+
* @package injective.ocr.v1beta1
|
|
1364
|
+
* @see proto type: injective.ocr.v1beta1.EventTransmitted
|
|
1365
|
+
*/
|
|
930
1366
|
export declare const EventTransmitted: {
|
|
931
1367
|
typeUrl: string;
|
|
932
1368
|
is(o: any): o is EventTransmitted;
|
|
@@ -942,6 +1378,11 @@ export declare const EventTransmitted: {
|
|
|
942
1378
|
toProtoMsg(message: EventTransmitted): EventTransmittedProtoMsg;
|
|
943
1379
|
registerTypeUrl(): void;
|
|
944
1380
|
};
|
|
1381
|
+
/**
|
|
1382
|
+
* @name EventNewTransmission
|
|
1383
|
+
* @package injective.ocr.v1beta1
|
|
1384
|
+
* @see proto type: injective.ocr.v1beta1.EventNewTransmission
|
|
1385
|
+
*/
|
|
945
1386
|
export declare const EventNewTransmission: {
|
|
946
1387
|
typeUrl: string;
|
|
947
1388
|
is(o: any): o is EventNewTransmission;
|
|
@@ -957,6 +1398,11 @@ export declare const EventNewTransmission: {
|
|
|
957
1398
|
toProtoMsg(message: EventNewTransmission): EventNewTransmissionProtoMsg;
|
|
958
1399
|
registerTypeUrl(): void;
|
|
959
1400
|
};
|
|
1401
|
+
/**
|
|
1402
|
+
* @name EventConfigSet
|
|
1403
|
+
* @package injective.ocr.v1beta1
|
|
1404
|
+
* @see proto type: injective.ocr.v1beta1.EventConfigSet
|
|
1405
|
+
*/
|
|
960
1406
|
export declare const EventConfigSet: {
|
|
961
1407
|
typeUrl: string;
|
|
962
1408
|
is(o: any): o is EventConfigSet;
|