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
|
@@ -7,6 +7,11 @@ import { GlobalDecoderRegistry } from "../../../registry";
|
|
|
7
7
|
function createBaseQueryParamsRequest() {
|
|
8
8
|
return {};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* @name QueryParamsRequest
|
|
12
|
+
* @package injective.ocr.v1beta1
|
|
13
|
+
* @see proto type: injective.ocr.v1beta1.QueryParamsRequest
|
|
14
|
+
*/
|
|
10
15
|
export const QueryParamsRequest = {
|
|
11
16
|
typeUrl: "/injective.ocr.v1beta1.QueryParamsRequest",
|
|
12
17
|
is(o) {
|
|
@@ -66,6 +71,11 @@ function createBaseQueryParamsResponse() {
|
|
|
66
71
|
params: Params.fromPartial({})
|
|
67
72
|
};
|
|
68
73
|
}
|
|
74
|
+
/**
|
|
75
|
+
* @name QueryParamsResponse
|
|
76
|
+
* @package injective.ocr.v1beta1
|
|
77
|
+
* @see proto type: injective.ocr.v1beta1.QueryParamsResponse
|
|
78
|
+
*/
|
|
69
79
|
export const QueryParamsResponse = {
|
|
70
80
|
typeUrl: "/injective.ocr.v1beta1.QueryParamsResponse",
|
|
71
81
|
is(o) {
|
|
@@ -141,6 +151,11 @@ function createBaseQueryFeedConfigRequest() {
|
|
|
141
151
|
feedId: ""
|
|
142
152
|
};
|
|
143
153
|
}
|
|
154
|
+
/**
|
|
155
|
+
* @name QueryFeedConfigRequest
|
|
156
|
+
* @package injective.ocr.v1beta1
|
|
157
|
+
* @see proto type: injective.ocr.v1beta1.QueryFeedConfigRequest
|
|
158
|
+
*/
|
|
144
159
|
export const QueryFeedConfigRequest = {
|
|
145
160
|
typeUrl: "/injective.ocr.v1beta1.QueryFeedConfigRequest",
|
|
146
161
|
is(o) {
|
|
@@ -212,6 +227,11 @@ function createBaseQueryFeedConfigResponse() {
|
|
|
212
227
|
feedConfig: undefined
|
|
213
228
|
};
|
|
214
229
|
}
|
|
230
|
+
/**
|
|
231
|
+
* @name QueryFeedConfigResponse
|
|
232
|
+
* @package injective.ocr.v1beta1
|
|
233
|
+
* @see proto type: injective.ocr.v1beta1.QueryFeedConfigResponse
|
|
234
|
+
*/
|
|
215
235
|
export const QueryFeedConfigResponse = {
|
|
216
236
|
typeUrl: "/injective.ocr.v1beta1.QueryFeedConfigResponse",
|
|
217
237
|
is(o) {
|
|
@@ -299,6 +319,11 @@ function createBaseQueryFeedConfigInfoRequest() {
|
|
|
299
319
|
feedId: ""
|
|
300
320
|
};
|
|
301
321
|
}
|
|
322
|
+
/**
|
|
323
|
+
* @name QueryFeedConfigInfoRequest
|
|
324
|
+
* @package injective.ocr.v1beta1
|
|
325
|
+
* @see proto type: injective.ocr.v1beta1.QueryFeedConfigInfoRequest
|
|
326
|
+
*/
|
|
302
327
|
export const QueryFeedConfigInfoRequest = {
|
|
303
328
|
typeUrl: "/injective.ocr.v1beta1.QueryFeedConfigInfoRequest",
|
|
304
329
|
is(o) {
|
|
@@ -370,6 +395,11 @@ function createBaseQueryFeedConfigInfoResponse() {
|
|
|
370
395
|
epochAndRound: undefined
|
|
371
396
|
};
|
|
372
397
|
}
|
|
398
|
+
/**
|
|
399
|
+
* @name QueryFeedConfigInfoResponse
|
|
400
|
+
* @package injective.ocr.v1beta1
|
|
401
|
+
* @see proto type: injective.ocr.v1beta1.QueryFeedConfigInfoResponse
|
|
402
|
+
*/
|
|
373
403
|
export const QueryFeedConfigInfoResponse = {
|
|
374
404
|
typeUrl: "/injective.ocr.v1beta1.QueryFeedConfigInfoResponse",
|
|
375
405
|
is(o) {
|
|
@@ -457,6 +487,11 @@ function createBaseQueryLatestRoundRequest() {
|
|
|
457
487
|
feedId: ""
|
|
458
488
|
};
|
|
459
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* @name QueryLatestRoundRequest
|
|
492
|
+
* @package injective.ocr.v1beta1
|
|
493
|
+
* @see proto type: injective.ocr.v1beta1.QueryLatestRoundRequest
|
|
494
|
+
*/
|
|
460
495
|
export const QueryLatestRoundRequest = {
|
|
461
496
|
typeUrl: "/injective.ocr.v1beta1.QueryLatestRoundRequest",
|
|
462
497
|
is(o) {
|
|
@@ -528,6 +563,11 @@ function createBaseQueryLatestRoundResponse() {
|
|
|
528
563
|
data: undefined
|
|
529
564
|
};
|
|
530
565
|
}
|
|
566
|
+
/**
|
|
567
|
+
* @name QueryLatestRoundResponse
|
|
568
|
+
* @package injective.ocr.v1beta1
|
|
569
|
+
* @see proto type: injective.ocr.v1beta1.QueryLatestRoundResponse
|
|
570
|
+
*/
|
|
531
571
|
export const QueryLatestRoundResponse = {
|
|
532
572
|
typeUrl: "/injective.ocr.v1beta1.QueryLatestRoundResponse",
|
|
533
573
|
is(o) {
|
|
@@ -614,6 +654,11 @@ function createBaseQueryLatestTransmissionDetailsRequest() {
|
|
|
614
654
|
feedId: ""
|
|
615
655
|
};
|
|
616
656
|
}
|
|
657
|
+
/**
|
|
658
|
+
* @name QueryLatestTransmissionDetailsRequest
|
|
659
|
+
* @package injective.ocr.v1beta1
|
|
660
|
+
* @see proto type: injective.ocr.v1beta1.QueryLatestTransmissionDetailsRequest
|
|
661
|
+
*/
|
|
617
662
|
export const QueryLatestTransmissionDetailsRequest = {
|
|
618
663
|
typeUrl: "/injective.ocr.v1beta1.QueryLatestTransmissionDetailsRequest",
|
|
619
664
|
is(o) {
|
|
@@ -686,6 +731,11 @@ function createBaseQueryLatestTransmissionDetailsResponse() {
|
|
|
686
731
|
data: undefined
|
|
687
732
|
};
|
|
688
733
|
}
|
|
734
|
+
/**
|
|
735
|
+
* @name QueryLatestTransmissionDetailsResponse
|
|
736
|
+
* @package injective.ocr.v1beta1
|
|
737
|
+
* @see proto type: injective.ocr.v1beta1.QueryLatestTransmissionDetailsResponse
|
|
738
|
+
*/
|
|
689
739
|
export const QueryLatestTransmissionDetailsResponse = {
|
|
690
740
|
typeUrl: "/injective.ocr.v1beta1.QueryLatestTransmissionDetailsResponse",
|
|
691
741
|
is(o) {
|
|
@@ -784,6 +834,11 @@ function createBaseQueryOwedAmountRequest() {
|
|
|
784
834
|
transmitter: ""
|
|
785
835
|
};
|
|
786
836
|
}
|
|
837
|
+
/**
|
|
838
|
+
* @name QueryOwedAmountRequest
|
|
839
|
+
* @package injective.ocr.v1beta1
|
|
840
|
+
* @see proto type: injective.ocr.v1beta1.QueryOwedAmountRequest
|
|
841
|
+
*/
|
|
787
842
|
export const QueryOwedAmountRequest = {
|
|
788
843
|
typeUrl: "/injective.ocr.v1beta1.QueryOwedAmountRequest",
|
|
789
844
|
is(o) {
|
|
@@ -854,6 +909,11 @@ function createBaseQueryOwedAmountResponse() {
|
|
|
854
909
|
amount: Coin.fromPartial({})
|
|
855
910
|
};
|
|
856
911
|
}
|
|
912
|
+
/**
|
|
913
|
+
* @name QueryOwedAmountResponse
|
|
914
|
+
* @package injective.ocr.v1beta1
|
|
915
|
+
* @see proto type: injective.ocr.v1beta1.QueryOwedAmountResponse
|
|
916
|
+
*/
|
|
857
917
|
export const QueryOwedAmountResponse = {
|
|
858
918
|
typeUrl: "/injective.ocr.v1beta1.QueryOwedAmountResponse",
|
|
859
919
|
is(o) {
|
|
@@ -927,6 +987,11 @@ export const QueryOwedAmountResponse = {
|
|
|
927
987
|
function createBaseQueryModuleStateRequest() {
|
|
928
988
|
return {};
|
|
929
989
|
}
|
|
990
|
+
/**
|
|
991
|
+
* @name QueryModuleStateRequest
|
|
992
|
+
* @package injective.ocr.v1beta1
|
|
993
|
+
* @see proto type: injective.ocr.v1beta1.QueryModuleStateRequest
|
|
994
|
+
*/
|
|
930
995
|
export const QueryModuleStateRequest = {
|
|
931
996
|
typeUrl: "/injective.ocr.v1beta1.QueryModuleStateRequest",
|
|
932
997
|
is(o) {
|
|
@@ -986,6 +1051,11 @@ function createBaseQueryModuleStateResponse() {
|
|
|
986
1051
|
state: undefined
|
|
987
1052
|
};
|
|
988
1053
|
}
|
|
1054
|
+
/**
|
|
1055
|
+
* @name QueryModuleStateResponse
|
|
1056
|
+
* @package injective.ocr.v1beta1
|
|
1057
|
+
* @see proto type: injective.ocr.v1beta1.QueryModuleStateResponse
|
|
1058
|
+
*/
|
|
989
1059
|
export const QueryModuleStateResponse = {
|
|
990
1060
|
typeUrl: "/injective.ocr.v1beta1.QueryModuleStateResponse",
|
|
991
1061
|
is(o) {
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { buildQuery } from "../../../helper-func-types";
|
|
2
2
|
import { QueryParamsRequest, QueryParamsResponse, QueryFeedConfigRequest, QueryFeedConfigResponse, QueryFeedConfigInfoRequest, QueryFeedConfigInfoResponse, QueryLatestRoundRequest, QueryLatestRoundResponse, QueryLatestTransmissionDetailsRequest, QueryLatestTransmissionDetailsResponse, QueryOwedAmountRequest, QueryOwedAmountResponse, QueryModuleStateRequest, QueryModuleStateResponse } from "./query";
|
|
3
|
+
/**
|
|
4
|
+
* @name getParams
|
|
5
|
+
* @package injective.ocr.v1beta1
|
|
6
|
+
* @see proto service: injective.ocr.v1beta1.Params
|
|
7
|
+
*/
|
|
3
8
|
export const getParams = buildQuery({
|
|
4
9
|
encode: QueryParamsRequest.encode,
|
|
5
10
|
decode: QueryParamsResponse.decode,
|
|
@@ -7,7 +12,12 @@ export const getParams = buildQuery({
|
|
|
7
12
|
method: "Params",
|
|
8
13
|
deps: [QueryParamsRequest, QueryParamsResponse]
|
|
9
14
|
});
|
|
10
|
-
|
|
15
|
+
/**
|
|
16
|
+
* Retrieves the OCR FeedConfig for a given FeedId
|
|
17
|
+
* @name getFeedConfig
|
|
18
|
+
* @package injective.ocr.v1beta1
|
|
19
|
+
* @see proto service: injective.ocr.v1beta1.FeedConfig
|
|
20
|
+
*/
|
|
11
21
|
export const getFeedConfig = buildQuery({
|
|
12
22
|
encode: QueryFeedConfigRequest.encode,
|
|
13
23
|
decode: QueryFeedConfigResponse.decode,
|
|
@@ -15,7 +25,12 @@ export const getFeedConfig = buildQuery({
|
|
|
15
25
|
method: "FeedConfig",
|
|
16
26
|
deps: [QueryFeedConfigRequest, QueryFeedConfigResponse]
|
|
17
27
|
});
|
|
18
|
-
|
|
28
|
+
/**
|
|
29
|
+
* Retrieves the OCR FeedConfigInfo for a given FeedId
|
|
30
|
+
* @name getFeedConfigInfo
|
|
31
|
+
* @package injective.ocr.v1beta1
|
|
32
|
+
* @see proto service: injective.ocr.v1beta1.FeedConfigInfo
|
|
33
|
+
*/
|
|
19
34
|
export const getFeedConfigInfo = buildQuery({
|
|
20
35
|
encode: QueryFeedConfigInfoRequest.encode,
|
|
21
36
|
decode: QueryFeedConfigInfoResponse.decode,
|
|
@@ -23,7 +38,12 @@ export const getFeedConfigInfo = buildQuery({
|
|
|
23
38
|
method: "FeedConfigInfo",
|
|
24
39
|
deps: [QueryFeedConfigInfoRequest, QueryFeedConfigInfoResponse]
|
|
25
40
|
});
|
|
26
|
-
|
|
41
|
+
/**
|
|
42
|
+
* Retrieves latest round ID and data, including median answer for that round
|
|
43
|
+
* @name getLatestRound
|
|
44
|
+
* @package injective.ocr.v1beta1
|
|
45
|
+
* @see proto service: injective.ocr.v1beta1.LatestRound
|
|
46
|
+
*/
|
|
27
47
|
export const getLatestRound = buildQuery({
|
|
28
48
|
encode: QueryLatestRoundRequest.encode,
|
|
29
49
|
decode: QueryLatestRoundResponse.decode,
|
|
@@ -31,8 +51,13 @@ export const getLatestRound = buildQuery({
|
|
|
31
51
|
method: "LatestRound",
|
|
32
52
|
deps: [QueryLatestRoundRequest, QueryLatestRoundResponse]
|
|
33
53
|
});
|
|
34
|
-
|
|
35
|
-
|
|
54
|
+
/**
|
|
55
|
+
* LatestTransmissionDetails returns details about the latest trasmission
|
|
56
|
+
* recorded on chain for the given feed ID.
|
|
57
|
+
* @name getLatestTransmissionDetails
|
|
58
|
+
* @package injective.ocr.v1beta1
|
|
59
|
+
* @see proto service: injective.ocr.v1beta1.LatestTransmissionDetails
|
|
60
|
+
*/
|
|
36
61
|
export const getLatestTransmissionDetails = buildQuery({
|
|
37
62
|
encode: QueryLatestTransmissionDetailsRequest.encode,
|
|
38
63
|
decode: QueryLatestTransmissionDetailsResponse.decode,
|
|
@@ -40,7 +65,12 @@ export const getLatestTransmissionDetails = buildQuery({
|
|
|
40
65
|
method: "LatestTransmissionDetails",
|
|
41
66
|
deps: [QueryLatestTransmissionDetailsRequest, QueryLatestTransmissionDetailsResponse]
|
|
42
67
|
});
|
|
43
|
-
|
|
68
|
+
/**
|
|
69
|
+
* Retrieves transmitter's owed amount
|
|
70
|
+
* @name getOwedAmount
|
|
71
|
+
* @package injective.ocr.v1beta1
|
|
72
|
+
* @see proto service: injective.ocr.v1beta1.OwedAmount
|
|
73
|
+
*/
|
|
44
74
|
export const getOwedAmount = buildQuery({
|
|
45
75
|
encode: QueryOwedAmountRequest.encode,
|
|
46
76
|
decode: QueryOwedAmountResponse.decode,
|
|
@@ -48,7 +78,12 @@ export const getOwedAmount = buildQuery({
|
|
|
48
78
|
method: "OwedAmount",
|
|
49
79
|
deps: [QueryOwedAmountRequest, QueryOwedAmountResponse]
|
|
50
80
|
});
|
|
51
|
-
|
|
81
|
+
/**
|
|
82
|
+
* Retrieves the entire OCR module's state
|
|
83
|
+
* @name getOcrModuleState
|
|
84
|
+
* @package injective.ocr.v1beta1
|
|
85
|
+
* @see proto service: injective.ocr.v1beta1.OcrModuleState
|
|
86
|
+
*/
|
|
52
87
|
export const getOcrModuleState = buildQuery({
|
|
53
88
|
encode: QueryModuleStateRequest.encode,
|
|
54
89
|
decode: QueryModuleStateResponse.decode,
|
|
@@ -9,6 +9,11 @@ function createBaseMsgCreateFeed() {
|
|
|
9
9
|
config: undefined
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* @name MsgCreateFeed
|
|
14
|
+
* @package injective.ocr.v1beta1
|
|
15
|
+
* @see proto type: injective.ocr.v1beta1.MsgCreateFeed
|
|
16
|
+
*/
|
|
12
17
|
export const MsgCreateFeed = {
|
|
13
18
|
typeUrl: "/injective.ocr.v1beta1.MsgCreateFeed",
|
|
14
19
|
aminoType: "ocr/MsgCreateFeed",
|
|
@@ -100,6 +105,11 @@ export const MsgCreateFeed = {
|
|
|
100
105
|
function createBaseMsgCreateFeedResponse() {
|
|
101
106
|
return {};
|
|
102
107
|
}
|
|
108
|
+
/**
|
|
109
|
+
* @name MsgCreateFeedResponse
|
|
110
|
+
* @package injective.ocr.v1beta1
|
|
111
|
+
* @see proto type: injective.ocr.v1beta1.MsgCreateFeedResponse
|
|
112
|
+
*/
|
|
103
113
|
export const MsgCreateFeedResponse = {
|
|
104
114
|
typeUrl: "/injective.ocr.v1beta1.MsgCreateFeedResponse",
|
|
105
115
|
is(o) {
|
|
@@ -167,6 +177,11 @@ function createBaseMsgUpdateFeed() {
|
|
|
167
177
|
billingAdmin: ""
|
|
168
178
|
};
|
|
169
179
|
}
|
|
180
|
+
/**
|
|
181
|
+
* @name MsgUpdateFeed
|
|
182
|
+
* @package injective.ocr.v1beta1
|
|
183
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateFeed
|
|
184
|
+
*/
|
|
170
185
|
export const MsgUpdateFeed = {
|
|
171
186
|
typeUrl: "/injective.ocr.v1beta1.MsgUpdateFeed",
|
|
172
187
|
aminoType: "ocr/MsgUpdateFeed",
|
|
@@ -336,6 +351,11 @@ export const MsgUpdateFeed = {
|
|
|
336
351
|
function createBaseMsgUpdateFeedResponse() {
|
|
337
352
|
return {};
|
|
338
353
|
}
|
|
354
|
+
/**
|
|
355
|
+
* @name MsgUpdateFeedResponse
|
|
356
|
+
* @package injective.ocr.v1beta1
|
|
357
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateFeedResponse
|
|
358
|
+
*/
|
|
339
359
|
export const MsgUpdateFeedResponse = {
|
|
340
360
|
typeUrl: "/injective.ocr.v1beta1.MsgUpdateFeedResponse",
|
|
341
361
|
is(o) {
|
|
@@ -402,6 +422,11 @@ function createBaseMsgTransmit() {
|
|
|
402
422
|
signatures: []
|
|
403
423
|
};
|
|
404
424
|
}
|
|
425
|
+
/**
|
|
426
|
+
* @name MsgTransmit
|
|
427
|
+
* @package injective.ocr.v1beta1
|
|
428
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransmit
|
|
429
|
+
*/
|
|
405
430
|
export const MsgTransmit = {
|
|
406
431
|
typeUrl: "/injective.ocr.v1beta1.MsgTransmit",
|
|
407
432
|
aminoType: "ocr/MsgTransmit",
|
|
@@ -562,6 +587,11 @@ export const MsgTransmit = {
|
|
|
562
587
|
function createBaseMsgTransmitResponse() {
|
|
563
588
|
return {};
|
|
564
589
|
}
|
|
590
|
+
/**
|
|
591
|
+
* @name MsgTransmitResponse
|
|
592
|
+
* @package injective.ocr.v1beta1
|
|
593
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransmitResponse
|
|
594
|
+
*/
|
|
565
595
|
export const MsgTransmitResponse = {
|
|
566
596
|
typeUrl: "/injective.ocr.v1beta1.MsgTransmitResponse",
|
|
567
597
|
is(o) {
|
|
@@ -623,6 +653,11 @@ function createBaseMsgFundFeedRewardPool() {
|
|
|
623
653
|
amount: Coin.fromPartial({})
|
|
624
654
|
};
|
|
625
655
|
}
|
|
656
|
+
/**
|
|
657
|
+
* @name MsgFundFeedRewardPool
|
|
658
|
+
* @package injective.ocr.v1beta1
|
|
659
|
+
* @see proto type: injective.ocr.v1beta1.MsgFundFeedRewardPool
|
|
660
|
+
*/
|
|
626
661
|
export const MsgFundFeedRewardPool = {
|
|
627
662
|
typeUrl: "/injective.ocr.v1beta1.MsgFundFeedRewardPool",
|
|
628
663
|
aminoType: "ocr/MsgFundFeedRewardPool",
|
|
@@ -725,6 +760,11 @@ export const MsgFundFeedRewardPool = {
|
|
|
725
760
|
function createBaseMsgFundFeedRewardPoolResponse() {
|
|
726
761
|
return {};
|
|
727
762
|
}
|
|
763
|
+
/**
|
|
764
|
+
* @name MsgFundFeedRewardPoolResponse
|
|
765
|
+
* @package injective.ocr.v1beta1
|
|
766
|
+
* @see proto type: injective.ocr.v1beta1.MsgFundFeedRewardPoolResponse
|
|
767
|
+
*/
|
|
728
768
|
export const MsgFundFeedRewardPoolResponse = {
|
|
729
769
|
typeUrl: "/injective.ocr.v1beta1.MsgFundFeedRewardPoolResponse",
|
|
730
770
|
is(o) {
|
|
@@ -786,6 +826,11 @@ function createBaseMsgWithdrawFeedRewardPool() {
|
|
|
786
826
|
amount: Coin.fromPartial({})
|
|
787
827
|
};
|
|
788
828
|
}
|
|
829
|
+
/**
|
|
830
|
+
* @name MsgWithdrawFeedRewardPool
|
|
831
|
+
* @package injective.ocr.v1beta1
|
|
832
|
+
* @see proto type: injective.ocr.v1beta1.MsgWithdrawFeedRewardPool
|
|
833
|
+
*/
|
|
789
834
|
export const MsgWithdrawFeedRewardPool = {
|
|
790
835
|
typeUrl: "/injective.ocr.v1beta1.MsgWithdrawFeedRewardPool",
|
|
791
836
|
aminoType: "ocr/MsgWithdrawFeedRewardPool",
|
|
@@ -888,6 +933,11 @@ export const MsgWithdrawFeedRewardPool = {
|
|
|
888
933
|
function createBaseMsgWithdrawFeedRewardPoolResponse() {
|
|
889
934
|
return {};
|
|
890
935
|
}
|
|
936
|
+
/**
|
|
937
|
+
* @name MsgWithdrawFeedRewardPoolResponse
|
|
938
|
+
* @package injective.ocr.v1beta1
|
|
939
|
+
* @see proto type: injective.ocr.v1beta1.MsgWithdrawFeedRewardPoolResponse
|
|
940
|
+
*/
|
|
891
941
|
export const MsgWithdrawFeedRewardPoolResponse = {
|
|
892
942
|
typeUrl: "/injective.ocr.v1beta1.MsgWithdrawFeedRewardPoolResponse",
|
|
893
943
|
is(o) {
|
|
@@ -950,6 +1000,11 @@ function createBaseMsgSetPayees() {
|
|
|
950
1000
|
payees: []
|
|
951
1001
|
};
|
|
952
1002
|
}
|
|
1003
|
+
/**
|
|
1004
|
+
* @name MsgSetPayees
|
|
1005
|
+
* @package injective.ocr.v1beta1
|
|
1006
|
+
* @see proto type: injective.ocr.v1beta1.MsgSetPayees
|
|
1007
|
+
*/
|
|
953
1008
|
export const MsgSetPayees = {
|
|
954
1009
|
typeUrl: "/injective.ocr.v1beta1.MsgSetPayees",
|
|
955
1010
|
aminoType: "ocr/MsgSetPayees",
|
|
@@ -1064,6 +1119,11 @@ export const MsgSetPayees = {
|
|
|
1064
1119
|
function createBaseMsgSetPayeesResponse() {
|
|
1065
1120
|
return {};
|
|
1066
1121
|
}
|
|
1122
|
+
/**
|
|
1123
|
+
* @name MsgSetPayeesResponse
|
|
1124
|
+
* @package injective.ocr.v1beta1
|
|
1125
|
+
* @see proto type: injective.ocr.v1beta1.MsgSetPayeesResponse
|
|
1126
|
+
*/
|
|
1067
1127
|
export const MsgSetPayeesResponse = {
|
|
1068
1128
|
typeUrl: "/injective.ocr.v1beta1.MsgSetPayeesResponse",
|
|
1069
1129
|
is(o) {
|
|
@@ -1126,6 +1186,11 @@ function createBaseMsgTransferPayeeship() {
|
|
|
1126
1186
|
proposed: ""
|
|
1127
1187
|
};
|
|
1128
1188
|
}
|
|
1189
|
+
/**
|
|
1190
|
+
* @name MsgTransferPayeeship
|
|
1191
|
+
* @package injective.ocr.v1beta1
|
|
1192
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransferPayeeship
|
|
1193
|
+
*/
|
|
1129
1194
|
export const MsgTransferPayeeship = {
|
|
1130
1195
|
typeUrl: "/injective.ocr.v1beta1.MsgTransferPayeeship",
|
|
1131
1196
|
aminoType: "ocr/MsgTransferPayeeship",
|
|
@@ -1234,6 +1299,11 @@ export const MsgTransferPayeeship = {
|
|
|
1234
1299
|
function createBaseMsgTransferPayeeshipResponse() {
|
|
1235
1300
|
return {};
|
|
1236
1301
|
}
|
|
1302
|
+
/**
|
|
1303
|
+
* @name MsgTransferPayeeshipResponse
|
|
1304
|
+
* @package injective.ocr.v1beta1
|
|
1305
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransferPayeeshipResponse
|
|
1306
|
+
*/
|
|
1237
1307
|
export const MsgTransferPayeeshipResponse = {
|
|
1238
1308
|
typeUrl: "/injective.ocr.v1beta1.MsgTransferPayeeshipResponse",
|
|
1239
1309
|
is(o) {
|
|
@@ -1295,6 +1365,11 @@ function createBaseMsgAcceptPayeeship() {
|
|
|
1295
1365
|
feedId: ""
|
|
1296
1366
|
};
|
|
1297
1367
|
}
|
|
1368
|
+
/**
|
|
1369
|
+
* @name MsgAcceptPayeeship
|
|
1370
|
+
* @package injective.ocr.v1beta1
|
|
1371
|
+
* @see proto type: injective.ocr.v1beta1.MsgAcceptPayeeship
|
|
1372
|
+
*/
|
|
1298
1373
|
export const MsgAcceptPayeeship = {
|
|
1299
1374
|
typeUrl: "/injective.ocr.v1beta1.MsgAcceptPayeeship",
|
|
1300
1375
|
aminoType: "ocr/MsgAcceptPayeeship",
|
|
@@ -1392,6 +1467,11 @@ export const MsgAcceptPayeeship = {
|
|
|
1392
1467
|
function createBaseMsgAcceptPayeeshipResponse() {
|
|
1393
1468
|
return {};
|
|
1394
1469
|
}
|
|
1470
|
+
/**
|
|
1471
|
+
* @name MsgAcceptPayeeshipResponse
|
|
1472
|
+
* @package injective.ocr.v1beta1
|
|
1473
|
+
* @see proto type: injective.ocr.v1beta1.MsgAcceptPayeeshipResponse
|
|
1474
|
+
*/
|
|
1395
1475
|
export const MsgAcceptPayeeshipResponse = {
|
|
1396
1476
|
typeUrl: "/injective.ocr.v1beta1.MsgAcceptPayeeshipResponse",
|
|
1397
1477
|
is(o) {
|
|
@@ -1452,6 +1532,11 @@ function createBaseMsgUpdateParams() {
|
|
|
1452
1532
|
params: Params.fromPartial({})
|
|
1453
1533
|
};
|
|
1454
1534
|
}
|
|
1535
|
+
/**
|
|
1536
|
+
* @name MsgUpdateParams
|
|
1537
|
+
* @package injective.ocr.v1beta1
|
|
1538
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateParams
|
|
1539
|
+
*/
|
|
1455
1540
|
export const MsgUpdateParams = {
|
|
1456
1541
|
typeUrl: "/injective.ocr.v1beta1.MsgUpdateParams",
|
|
1457
1542
|
aminoType: "ocr/MsgUpdateParams",
|
|
@@ -1543,6 +1628,11 @@ export const MsgUpdateParams = {
|
|
|
1543
1628
|
function createBaseMsgUpdateParamsResponse() {
|
|
1544
1629
|
return {};
|
|
1545
1630
|
}
|
|
1631
|
+
/**
|
|
1632
|
+
* @name MsgUpdateParamsResponse
|
|
1633
|
+
* @package injective.ocr.v1beta1
|
|
1634
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateParamsResponse
|
|
1635
|
+
*/
|
|
1546
1636
|
export const MsgUpdateParamsResponse = {
|
|
1547
1637
|
typeUrl: "/injective.ocr.v1beta1.MsgUpdateParamsResponse",
|
|
1548
1638
|
is(o) {
|
|
@@ -1,41 +1,86 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgCreateFeed, MsgUpdateFeed, MsgTransmit, MsgFundFeedRewardPool, MsgWithdrawFeedRewardPool, MsgSetPayees, MsgTransferPayeeship, MsgAcceptPayeeship, MsgUpdateParams } from "./tx";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* CreateFeed defines a method for creating feed by module admin
|
|
5
|
+
* @name createFeed
|
|
6
|
+
* @package injective.ocr.v1beta1
|
|
7
|
+
* @see proto service: injective.ocr.v1beta1.CreateFeed
|
|
8
|
+
*/
|
|
4
9
|
export const createFeed = buildTx({
|
|
5
10
|
msg: MsgCreateFeed
|
|
6
11
|
});
|
|
7
|
-
|
|
8
|
-
admin
|
|
12
|
+
/**
|
|
13
|
+
* CreateFeed defines a method for creating feed by feed admin or feed billing
|
|
14
|
+
* admin
|
|
15
|
+
* @name updateFeed
|
|
16
|
+
* @package injective.ocr.v1beta1
|
|
17
|
+
* @see proto service: injective.ocr.v1beta1.UpdateFeed
|
|
18
|
+
*/
|
|
9
19
|
export const updateFeed = buildTx({
|
|
10
20
|
msg: MsgUpdateFeed
|
|
11
21
|
});
|
|
12
|
-
|
|
22
|
+
/**
|
|
23
|
+
* Transmit defines a method for transmitting the feed info by transmitter
|
|
24
|
+
* @name transmit
|
|
25
|
+
* @package injective.ocr.v1beta1
|
|
26
|
+
* @see proto service: injective.ocr.v1beta1.Transmit
|
|
27
|
+
*/
|
|
13
28
|
export const transmit = buildTx({
|
|
14
29
|
msg: MsgTransmit
|
|
15
30
|
});
|
|
16
|
-
|
|
31
|
+
/**
|
|
32
|
+
* FundFeedRewardPool defines a method to put funds into feed reward pool
|
|
33
|
+
* @name fundFeedRewardPool
|
|
34
|
+
* @package injective.ocr.v1beta1
|
|
35
|
+
* @see proto service: injective.ocr.v1beta1.FundFeedRewardPool
|
|
36
|
+
*/
|
|
17
37
|
export const fundFeedRewardPool = buildTx({
|
|
18
38
|
msg: MsgFundFeedRewardPool
|
|
19
39
|
});
|
|
20
|
-
|
|
21
|
-
|
|
40
|
+
/**
|
|
41
|
+
* WithdrawFeedRewardPool defines a method to witdhraw feed reward by feed
|
|
42
|
+
* admin or billing admin
|
|
43
|
+
* @name withdrawFeedRewardPool
|
|
44
|
+
* @package injective.ocr.v1beta1
|
|
45
|
+
* @see proto service: injective.ocr.v1beta1.WithdrawFeedRewardPool
|
|
46
|
+
*/
|
|
22
47
|
export const withdrawFeedRewardPool = buildTx({
|
|
23
48
|
msg: MsgWithdrawFeedRewardPool
|
|
24
49
|
});
|
|
25
|
-
|
|
50
|
+
/**
|
|
51
|
+
* SetPayees defines a method to set payees for transmitters (batch action)
|
|
52
|
+
* @name setPayees
|
|
53
|
+
* @package injective.ocr.v1beta1
|
|
54
|
+
* @see proto service: injective.ocr.v1beta1.SetPayees
|
|
55
|
+
*/
|
|
26
56
|
export const setPayees = buildTx({
|
|
27
57
|
msg: MsgSetPayees
|
|
28
58
|
});
|
|
29
|
-
|
|
30
|
-
|
|
59
|
+
/**
|
|
60
|
+
* TransferPayeeship defines a method for a payee to transfer reward receive
|
|
61
|
+
* ownership
|
|
62
|
+
* @name transferPayeeship
|
|
63
|
+
* @package injective.ocr.v1beta1
|
|
64
|
+
* @see proto service: injective.ocr.v1beta1.TransferPayeeship
|
|
65
|
+
*/
|
|
31
66
|
export const transferPayeeship = buildTx({
|
|
32
67
|
msg: MsgTransferPayeeship
|
|
33
68
|
});
|
|
34
|
-
|
|
35
|
-
|
|
69
|
+
/**
|
|
70
|
+
* AcceptPayeeship defines a method for a new payee to accept reward receive
|
|
71
|
+
* ownership
|
|
72
|
+
* @name acceptPayeeship
|
|
73
|
+
* @package injective.ocr.v1beta1
|
|
74
|
+
* @see proto service: injective.ocr.v1beta1.AcceptPayeeship
|
|
75
|
+
*/
|
|
36
76
|
export const acceptPayeeship = buildTx({
|
|
37
77
|
msg: MsgAcceptPayeeship
|
|
38
78
|
});
|
|
79
|
+
/**
|
|
80
|
+
* @name updateParams
|
|
81
|
+
* @package injective.ocr.v1beta1
|
|
82
|
+
* @see proto service: injective.ocr.v1beta1.UpdateParams
|
|
83
|
+
*/
|
|
39
84
|
export const updateParams = buildTx({
|
|
40
85
|
msg: MsgUpdateParams
|
|
41
86
|
});
|
|
@@ -9,6 +9,11 @@ function createBaseSetChainlinkPriceEvent() {
|
|
|
9
9
|
timestamp: BigInt(0)
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* @name SetChainlinkPriceEvent
|
|
14
|
+
* @package injective.oracle.v1beta1
|
|
15
|
+
* @see proto type: injective.oracle.v1beta1.SetChainlinkPriceEvent
|
|
16
|
+
*/
|
|
12
17
|
export const SetChainlinkPriceEvent = {
|
|
13
18
|
typeUrl: "/injective.oracle.v1beta1.SetChainlinkPriceEvent",
|
|
14
19
|
is(o) {
|
|
@@ -105,6 +110,12 @@ function createBaseSetBandPriceEvent() {
|
|
|
105
110
|
requestId: BigInt(0)
|
|
106
111
|
};
|
|
107
112
|
}
|
|
113
|
+
/**
|
|
114
|
+
* Event type upon set ref
|
|
115
|
+
* @name SetBandPriceEvent
|
|
116
|
+
* @package injective.oracle.v1beta1
|
|
117
|
+
* @see proto type: injective.oracle.v1beta1.SetBandPriceEvent
|
|
118
|
+
*/
|
|
108
119
|
export const SetBandPriceEvent = {
|
|
109
120
|
typeUrl: "/injective.oracle.v1beta1.SetBandPriceEvent",
|
|
110
121
|
is(o) {
|
|
@@ -224,6 +235,11 @@ function createBaseSetBandIBCPriceEvent() {
|
|
|
224
235
|
clientId: BigInt(0)
|
|
225
236
|
};
|
|
226
237
|
}
|
|
238
|
+
/**
|
|
239
|
+
* @name SetBandIBCPriceEvent
|
|
240
|
+
* @package injective.oracle.v1beta1
|
|
241
|
+
* @see proto type: injective.oracle.v1beta1.SetBandIBCPriceEvent
|
|
242
|
+
*/
|
|
227
243
|
export const SetBandIBCPriceEvent = {
|
|
228
244
|
typeUrl: "/injective.oracle.v1beta1.SetBandIBCPriceEvent",
|
|
229
245
|
is(o) {
|
|
@@ -356,6 +372,11 @@ function createBaseEventBandIBCAckSuccess() {
|
|
|
356
372
|
clientId: BigInt(0)
|
|
357
373
|
};
|
|
358
374
|
}
|
|
375
|
+
/**
|
|
376
|
+
* @name EventBandIBCAckSuccess
|
|
377
|
+
* @package injective.oracle.v1beta1
|
|
378
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckSuccess
|
|
379
|
+
*/
|
|
359
380
|
export const EventBandIBCAckSuccess = {
|
|
360
381
|
typeUrl: "/injective.oracle.v1beta1.EventBandIBCAckSuccess",
|
|
361
382
|
is(o) {
|
|
@@ -438,6 +459,11 @@ function createBaseEventBandIBCAckError() {
|
|
|
438
459
|
clientId: BigInt(0)
|
|
439
460
|
};
|
|
440
461
|
}
|
|
462
|
+
/**
|
|
463
|
+
* @name EventBandIBCAckError
|
|
464
|
+
* @package injective.oracle.v1beta1
|
|
465
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCAckError
|
|
466
|
+
*/
|
|
441
467
|
export const EventBandIBCAckError = {
|
|
442
468
|
typeUrl: "/injective.oracle.v1beta1.EventBandIBCAckError",
|
|
443
469
|
is(o) {
|
|
@@ -519,6 +545,11 @@ function createBaseEventBandIBCResponseTimeout() {
|
|
|
519
545
|
clientId: BigInt(0)
|
|
520
546
|
};
|
|
521
547
|
}
|
|
548
|
+
/**
|
|
549
|
+
* @name EventBandIBCResponseTimeout
|
|
550
|
+
* @package injective.oracle.v1beta1
|
|
551
|
+
* @see proto type: injective.oracle.v1beta1.EventBandIBCResponseTimeout
|
|
552
|
+
*/
|
|
522
553
|
export const EventBandIBCResponseTimeout = {
|
|
523
554
|
typeUrl: "/injective.oracle.v1beta1.EventBandIBCResponseTimeout",
|
|
524
555
|
is(o) {
|
|
@@ -592,6 +623,11 @@ function createBaseSetPriceFeedPriceEvent() {
|
|
|
592
623
|
price: ""
|
|
593
624
|
};
|
|
594
625
|
}
|
|
626
|
+
/**
|
|
627
|
+
* @name SetPriceFeedPriceEvent
|
|
628
|
+
* @package injective.oracle.v1beta1
|
|
629
|
+
* @see proto type: injective.oracle.v1beta1.SetPriceFeedPriceEvent
|
|
630
|
+
*/
|
|
595
631
|
export const SetPriceFeedPriceEvent = {
|
|
596
632
|
typeUrl: "/injective.oracle.v1beta1.SetPriceFeedPriceEvent",
|
|
597
633
|
is(o) {
|
|
@@ -698,6 +734,11 @@ function createBaseSetProviderPriceEvent() {
|
|
|
698
734
|
price: ""
|
|
699
735
|
};
|
|
700
736
|
}
|
|
737
|
+
/**
|
|
738
|
+
* @name SetProviderPriceEvent
|
|
739
|
+
* @package injective.oracle.v1beta1
|
|
740
|
+
* @see proto type: injective.oracle.v1beta1.SetProviderPriceEvent
|
|
741
|
+
*/
|
|
701
742
|
export const SetProviderPriceEvent = {
|
|
702
743
|
typeUrl: "/injective.oracle.v1beta1.SetProviderPriceEvent",
|
|
703
744
|
is(o) {
|
|
@@ -803,6 +844,11 @@ function createBaseSetCoinbasePriceEvent() {
|
|
|
803
844
|
timestamp: BigInt(0)
|
|
804
845
|
};
|
|
805
846
|
}
|
|
847
|
+
/**
|
|
848
|
+
* @name SetCoinbasePriceEvent
|
|
849
|
+
* @package injective.oracle.v1beta1
|
|
850
|
+
* @see proto type: injective.oracle.v1beta1.SetCoinbasePriceEvent
|
|
851
|
+
*/
|
|
806
852
|
export const SetCoinbasePriceEvent = {
|
|
807
853
|
typeUrl: "/injective.oracle.v1beta1.SetCoinbasePriceEvent",
|
|
808
854
|
is(o) {
|
|
@@ -895,6 +941,11 @@ function createBaseEventSetStorkPrices() {
|
|
|
895
941
|
prices: []
|
|
896
942
|
};
|
|
897
943
|
}
|
|
944
|
+
/**
|
|
945
|
+
* @name EventSetStorkPrices
|
|
946
|
+
* @package injective.oracle.v1beta1
|
|
947
|
+
* @see proto type: injective.oracle.v1beta1.EventSetStorkPrices
|
|
948
|
+
*/
|
|
898
949
|
export const EventSetStorkPrices = {
|
|
899
950
|
typeUrl: "/injective.oracle.v1beta1.EventSetStorkPrices",
|
|
900
951
|
is(o) {
|
|
@@ -973,6 +1024,11 @@ function createBaseEventSetPythPrices() {
|
|
|
973
1024
|
prices: []
|
|
974
1025
|
};
|
|
975
1026
|
}
|
|
1027
|
+
/**
|
|
1028
|
+
* @name EventSetPythPrices
|
|
1029
|
+
* @package injective.oracle.v1beta1
|
|
1030
|
+
* @see proto type: injective.oracle.v1beta1.EventSetPythPrices
|
|
1031
|
+
*/
|
|
976
1032
|
export const EventSetPythPrices = {
|
|
977
1033
|
typeUrl: "/injective.oracle.v1beta1.EventSetPythPrices",
|
|
978
1034
|
is(o) {
|