injectivejs 1.11.13 → 1.11.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
|
@@ -2,6 +2,11 @@ import { FeedConfig, FeedConfigAmino, Report, ReportAmino, Params, ParamsAmino }
|
|
|
2
2
|
import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../helpers";
|
|
5
|
+
/**
|
|
6
|
+
* @name MsgCreateFeed
|
|
7
|
+
* @package injective.ocr.v1beta1
|
|
8
|
+
* @see proto type: injective.ocr.v1beta1.MsgCreateFeed
|
|
9
|
+
*/
|
|
5
10
|
export interface MsgCreateFeed {
|
|
6
11
|
sender: string;
|
|
7
12
|
config?: FeedConfig;
|
|
@@ -10,6 +15,11 @@ export interface MsgCreateFeedProtoMsg {
|
|
|
10
15
|
typeUrl: "/injective.ocr.v1beta1.MsgCreateFeed";
|
|
11
16
|
value: Uint8Array;
|
|
12
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @name MsgCreateFeedAmino
|
|
20
|
+
* @package injective.ocr.v1beta1
|
|
21
|
+
* @see proto type: injective.ocr.v1beta1.MsgCreateFeed
|
|
22
|
+
*/
|
|
13
23
|
export interface MsgCreateFeedAmino {
|
|
14
24
|
sender: string;
|
|
15
25
|
config?: FeedConfigAmino;
|
|
@@ -18,84 +28,149 @@ export interface MsgCreateFeedAminoMsg {
|
|
|
18
28
|
type: "ocr/MsgCreateFeed";
|
|
19
29
|
value: MsgCreateFeedAmino;
|
|
20
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* @name MsgCreateFeedResponse
|
|
33
|
+
* @package injective.ocr.v1beta1
|
|
34
|
+
* @see proto type: injective.ocr.v1beta1.MsgCreateFeedResponse
|
|
35
|
+
*/
|
|
21
36
|
export interface MsgCreateFeedResponse {
|
|
22
37
|
}
|
|
23
38
|
export interface MsgCreateFeedResponseProtoMsg {
|
|
24
39
|
typeUrl: "/injective.ocr.v1beta1.MsgCreateFeedResponse";
|
|
25
40
|
value: Uint8Array;
|
|
26
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* @name MsgCreateFeedResponseAmino
|
|
44
|
+
* @package injective.ocr.v1beta1
|
|
45
|
+
* @see proto type: injective.ocr.v1beta1.MsgCreateFeedResponse
|
|
46
|
+
*/
|
|
27
47
|
export interface MsgCreateFeedResponseAmino {
|
|
28
48
|
}
|
|
29
49
|
export interface MsgCreateFeedResponseAminoMsg {
|
|
30
50
|
type: "/injective.ocr.v1beta1.MsgCreateFeedResponse";
|
|
31
51
|
value: MsgCreateFeedResponseAmino;
|
|
32
52
|
}
|
|
53
|
+
/**
|
|
54
|
+
* @name MsgUpdateFeed
|
|
55
|
+
* @package injective.ocr.v1beta1
|
|
56
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateFeed
|
|
57
|
+
*/
|
|
33
58
|
export interface MsgUpdateFeed {
|
|
34
59
|
sender: string;
|
|
35
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* feed_id is an unique ID for the target of this config
|
|
62
|
+
*/
|
|
36
63
|
feedId: string;
|
|
37
|
-
/**
|
|
64
|
+
/**
|
|
65
|
+
* signers ith element is address ith oracle uses to sign a report
|
|
66
|
+
*/
|
|
38
67
|
signers: string[];
|
|
39
68
|
/**
|
|
40
69
|
* transmitters ith element is address ith oracle uses to transmit a report
|
|
41
70
|
* via the transmit method
|
|
42
71
|
*/
|
|
43
72
|
transmitters: string[];
|
|
44
|
-
/**
|
|
73
|
+
/**
|
|
74
|
+
* Fixed LINK reward for each observer
|
|
75
|
+
*/
|
|
45
76
|
linkPerObservation?: string;
|
|
46
|
-
/**
|
|
77
|
+
/**
|
|
78
|
+
* Fixed LINK reward for transmitter
|
|
79
|
+
*/
|
|
47
80
|
linkPerTransmission?: string;
|
|
48
|
-
/**
|
|
81
|
+
/**
|
|
82
|
+
* Native denom for LINK coin in the bank keeper
|
|
83
|
+
*/
|
|
49
84
|
linkDenom: string;
|
|
50
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* feed administrator
|
|
87
|
+
*/
|
|
51
88
|
feedAdmin: string;
|
|
52
|
-
/**
|
|
89
|
+
/**
|
|
90
|
+
* feed billing administrator
|
|
91
|
+
*/
|
|
53
92
|
billingAdmin: string;
|
|
54
93
|
}
|
|
55
94
|
export interface MsgUpdateFeedProtoMsg {
|
|
56
95
|
typeUrl: "/injective.ocr.v1beta1.MsgUpdateFeed";
|
|
57
96
|
value: Uint8Array;
|
|
58
97
|
}
|
|
98
|
+
/**
|
|
99
|
+
* @name MsgUpdateFeedAmino
|
|
100
|
+
* @package injective.ocr.v1beta1
|
|
101
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateFeed
|
|
102
|
+
*/
|
|
59
103
|
export interface MsgUpdateFeedAmino {
|
|
60
104
|
sender: string;
|
|
61
|
-
/**
|
|
105
|
+
/**
|
|
106
|
+
* feed_id is an unique ID for the target of this config
|
|
107
|
+
*/
|
|
62
108
|
feed_id: string;
|
|
63
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* signers ith element is address ith oracle uses to sign a report
|
|
111
|
+
*/
|
|
64
112
|
signers: string[];
|
|
65
113
|
/**
|
|
66
114
|
* transmitters ith element is address ith oracle uses to transmit a report
|
|
67
115
|
* via the transmit method
|
|
68
116
|
*/
|
|
69
117
|
transmitters: string[];
|
|
70
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* Fixed LINK reward for each observer
|
|
120
|
+
*/
|
|
71
121
|
link_per_observation?: string;
|
|
72
|
-
/**
|
|
122
|
+
/**
|
|
123
|
+
* Fixed LINK reward for transmitter
|
|
124
|
+
*/
|
|
73
125
|
link_per_transmission?: string;
|
|
74
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* Native denom for LINK coin in the bank keeper
|
|
128
|
+
*/
|
|
75
129
|
link_denom: string;
|
|
76
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* feed administrator
|
|
132
|
+
*/
|
|
77
133
|
feed_admin: string;
|
|
78
|
-
/**
|
|
134
|
+
/**
|
|
135
|
+
* feed billing administrator
|
|
136
|
+
*/
|
|
79
137
|
billing_admin: string;
|
|
80
138
|
}
|
|
81
139
|
export interface MsgUpdateFeedAminoMsg {
|
|
82
140
|
type: "ocr/MsgUpdateFeed";
|
|
83
141
|
value: MsgUpdateFeedAmino;
|
|
84
142
|
}
|
|
143
|
+
/**
|
|
144
|
+
* @name MsgUpdateFeedResponse
|
|
145
|
+
* @package injective.ocr.v1beta1
|
|
146
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateFeedResponse
|
|
147
|
+
*/
|
|
85
148
|
export interface MsgUpdateFeedResponse {
|
|
86
149
|
}
|
|
87
150
|
export interface MsgUpdateFeedResponseProtoMsg {
|
|
88
151
|
typeUrl: "/injective.ocr.v1beta1.MsgUpdateFeedResponse";
|
|
89
152
|
value: Uint8Array;
|
|
90
153
|
}
|
|
154
|
+
/**
|
|
155
|
+
* @name MsgUpdateFeedResponseAmino
|
|
156
|
+
* @package injective.ocr.v1beta1
|
|
157
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateFeedResponse
|
|
158
|
+
*/
|
|
91
159
|
export interface MsgUpdateFeedResponseAmino {
|
|
92
160
|
}
|
|
93
161
|
export interface MsgUpdateFeedResponseAminoMsg {
|
|
94
162
|
type: "/injective.ocr.v1beta1.MsgUpdateFeedResponse";
|
|
95
163
|
value: MsgUpdateFeedResponseAmino;
|
|
96
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* @name MsgTransmit
|
|
167
|
+
* @package injective.ocr.v1beta1
|
|
168
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransmit
|
|
169
|
+
*/
|
|
97
170
|
export interface MsgTransmit {
|
|
98
|
-
/**
|
|
171
|
+
/**
|
|
172
|
+
* Address of the transmitter
|
|
173
|
+
*/
|
|
99
174
|
transmitter: string;
|
|
100
175
|
configDigest: Uint8Array;
|
|
101
176
|
feedId: string;
|
|
@@ -109,8 +184,15 @@ export interface MsgTransmitProtoMsg {
|
|
|
109
184
|
typeUrl: "/injective.ocr.v1beta1.MsgTransmit";
|
|
110
185
|
value: Uint8Array;
|
|
111
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* @name MsgTransmitAmino
|
|
189
|
+
* @package injective.ocr.v1beta1
|
|
190
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransmit
|
|
191
|
+
*/
|
|
112
192
|
export interface MsgTransmitAmino {
|
|
113
|
-
/**
|
|
193
|
+
/**
|
|
194
|
+
* Address of the transmitter
|
|
195
|
+
*/
|
|
114
196
|
transmitter: string;
|
|
115
197
|
config_digest: string;
|
|
116
198
|
feed_id: string;
|
|
@@ -124,18 +206,33 @@ export interface MsgTransmitAminoMsg {
|
|
|
124
206
|
type: "ocr/MsgTransmit";
|
|
125
207
|
value: MsgTransmitAmino;
|
|
126
208
|
}
|
|
209
|
+
/**
|
|
210
|
+
* @name MsgTransmitResponse
|
|
211
|
+
* @package injective.ocr.v1beta1
|
|
212
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransmitResponse
|
|
213
|
+
*/
|
|
127
214
|
export interface MsgTransmitResponse {
|
|
128
215
|
}
|
|
129
216
|
export interface MsgTransmitResponseProtoMsg {
|
|
130
217
|
typeUrl: "/injective.ocr.v1beta1.MsgTransmitResponse";
|
|
131
218
|
value: Uint8Array;
|
|
132
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* @name MsgTransmitResponseAmino
|
|
222
|
+
* @package injective.ocr.v1beta1
|
|
223
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransmitResponse
|
|
224
|
+
*/
|
|
133
225
|
export interface MsgTransmitResponseAmino {
|
|
134
226
|
}
|
|
135
227
|
export interface MsgTransmitResponseAminoMsg {
|
|
136
228
|
type: "/injective.ocr.v1beta1.MsgTransmitResponse";
|
|
137
229
|
value: MsgTransmitResponseAmino;
|
|
138
230
|
}
|
|
231
|
+
/**
|
|
232
|
+
* @name MsgFundFeedRewardPool
|
|
233
|
+
* @package injective.ocr.v1beta1
|
|
234
|
+
* @see proto type: injective.ocr.v1beta1.MsgFundFeedRewardPool
|
|
235
|
+
*/
|
|
139
236
|
export interface MsgFundFeedRewardPool {
|
|
140
237
|
sender: string;
|
|
141
238
|
feedId: string;
|
|
@@ -145,6 +242,11 @@ export interface MsgFundFeedRewardPoolProtoMsg {
|
|
|
145
242
|
typeUrl: "/injective.ocr.v1beta1.MsgFundFeedRewardPool";
|
|
146
243
|
value: Uint8Array;
|
|
147
244
|
}
|
|
245
|
+
/**
|
|
246
|
+
* @name MsgFundFeedRewardPoolAmino
|
|
247
|
+
* @package injective.ocr.v1beta1
|
|
248
|
+
* @see proto type: injective.ocr.v1beta1.MsgFundFeedRewardPool
|
|
249
|
+
*/
|
|
148
250
|
export interface MsgFundFeedRewardPoolAmino {
|
|
149
251
|
sender: string;
|
|
150
252
|
feed_id: string;
|
|
@@ -154,18 +256,33 @@ export interface MsgFundFeedRewardPoolAminoMsg {
|
|
|
154
256
|
type: "ocr/MsgFundFeedRewardPool";
|
|
155
257
|
value: MsgFundFeedRewardPoolAmino;
|
|
156
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* @name MsgFundFeedRewardPoolResponse
|
|
261
|
+
* @package injective.ocr.v1beta1
|
|
262
|
+
* @see proto type: injective.ocr.v1beta1.MsgFundFeedRewardPoolResponse
|
|
263
|
+
*/
|
|
157
264
|
export interface MsgFundFeedRewardPoolResponse {
|
|
158
265
|
}
|
|
159
266
|
export interface MsgFundFeedRewardPoolResponseProtoMsg {
|
|
160
267
|
typeUrl: "/injective.ocr.v1beta1.MsgFundFeedRewardPoolResponse";
|
|
161
268
|
value: Uint8Array;
|
|
162
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* @name MsgFundFeedRewardPoolResponseAmino
|
|
272
|
+
* @package injective.ocr.v1beta1
|
|
273
|
+
* @see proto type: injective.ocr.v1beta1.MsgFundFeedRewardPoolResponse
|
|
274
|
+
*/
|
|
163
275
|
export interface MsgFundFeedRewardPoolResponseAmino {
|
|
164
276
|
}
|
|
165
277
|
export interface MsgFundFeedRewardPoolResponseAminoMsg {
|
|
166
278
|
type: "/injective.ocr.v1beta1.MsgFundFeedRewardPoolResponse";
|
|
167
279
|
value: MsgFundFeedRewardPoolResponseAmino;
|
|
168
280
|
}
|
|
281
|
+
/**
|
|
282
|
+
* @name MsgWithdrawFeedRewardPool
|
|
283
|
+
* @package injective.ocr.v1beta1
|
|
284
|
+
* @see proto type: injective.ocr.v1beta1.MsgWithdrawFeedRewardPool
|
|
285
|
+
*/
|
|
169
286
|
export interface MsgWithdrawFeedRewardPool {
|
|
170
287
|
sender: string;
|
|
171
288
|
feedId: string;
|
|
@@ -175,6 +292,11 @@ export interface MsgWithdrawFeedRewardPoolProtoMsg {
|
|
|
175
292
|
typeUrl: "/injective.ocr.v1beta1.MsgWithdrawFeedRewardPool";
|
|
176
293
|
value: Uint8Array;
|
|
177
294
|
}
|
|
295
|
+
/**
|
|
296
|
+
* @name MsgWithdrawFeedRewardPoolAmino
|
|
297
|
+
* @package injective.ocr.v1beta1
|
|
298
|
+
* @see proto type: injective.ocr.v1beta1.MsgWithdrawFeedRewardPool
|
|
299
|
+
*/
|
|
178
300
|
export interface MsgWithdrawFeedRewardPoolAmino {
|
|
179
301
|
sender: string;
|
|
180
302
|
feed_id: string;
|
|
@@ -184,94 +306,169 @@ export interface MsgWithdrawFeedRewardPoolAminoMsg {
|
|
|
184
306
|
type: "ocr/MsgWithdrawFeedRewardPool";
|
|
185
307
|
value: MsgWithdrawFeedRewardPoolAmino;
|
|
186
308
|
}
|
|
309
|
+
/**
|
|
310
|
+
* @name MsgWithdrawFeedRewardPoolResponse
|
|
311
|
+
* @package injective.ocr.v1beta1
|
|
312
|
+
* @see proto type: injective.ocr.v1beta1.MsgWithdrawFeedRewardPoolResponse
|
|
313
|
+
*/
|
|
187
314
|
export interface MsgWithdrawFeedRewardPoolResponse {
|
|
188
315
|
}
|
|
189
316
|
export interface MsgWithdrawFeedRewardPoolResponseProtoMsg {
|
|
190
317
|
typeUrl: "/injective.ocr.v1beta1.MsgWithdrawFeedRewardPoolResponse";
|
|
191
318
|
value: Uint8Array;
|
|
192
319
|
}
|
|
320
|
+
/**
|
|
321
|
+
* @name MsgWithdrawFeedRewardPoolResponseAmino
|
|
322
|
+
* @package injective.ocr.v1beta1
|
|
323
|
+
* @see proto type: injective.ocr.v1beta1.MsgWithdrawFeedRewardPoolResponse
|
|
324
|
+
*/
|
|
193
325
|
export interface MsgWithdrawFeedRewardPoolResponseAmino {
|
|
194
326
|
}
|
|
195
327
|
export interface MsgWithdrawFeedRewardPoolResponseAminoMsg {
|
|
196
328
|
type: "/injective.ocr.v1beta1.MsgWithdrawFeedRewardPoolResponse";
|
|
197
329
|
value: MsgWithdrawFeedRewardPoolResponseAmino;
|
|
198
330
|
}
|
|
331
|
+
/**
|
|
332
|
+
* @name MsgSetPayees
|
|
333
|
+
* @package injective.ocr.v1beta1
|
|
334
|
+
* @see proto type: injective.ocr.v1beta1.MsgSetPayees
|
|
335
|
+
*/
|
|
199
336
|
export interface MsgSetPayees {
|
|
200
337
|
sender: string;
|
|
201
338
|
feedId: string;
|
|
202
|
-
/**
|
|
339
|
+
/**
|
|
340
|
+
* addresses oracles use to transmit the reports
|
|
341
|
+
*/
|
|
203
342
|
transmitters: string[];
|
|
204
|
-
/**
|
|
343
|
+
/**
|
|
344
|
+
* addresses of payees corresponding to list of transmitters
|
|
345
|
+
*/
|
|
205
346
|
payees: string[];
|
|
206
347
|
}
|
|
207
348
|
export interface MsgSetPayeesProtoMsg {
|
|
208
349
|
typeUrl: "/injective.ocr.v1beta1.MsgSetPayees";
|
|
209
350
|
value: Uint8Array;
|
|
210
351
|
}
|
|
352
|
+
/**
|
|
353
|
+
* @name MsgSetPayeesAmino
|
|
354
|
+
* @package injective.ocr.v1beta1
|
|
355
|
+
* @see proto type: injective.ocr.v1beta1.MsgSetPayees
|
|
356
|
+
*/
|
|
211
357
|
export interface MsgSetPayeesAmino {
|
|
212
358
|
sender: string;
|
|
213
359
|
feed_id: string;
|
|
214
|
-
/**
|
|
360
|
+
/**
|
|
361
|
+
* addresses oracles use to transmit the reports
|
|
362
|
+
*/
|
|
215
363
|
transmitters: string[];
|
|
216
|
-
/**
|
|
364
|
+
/**
|
|
365
|
+
* addresses of payees corresponding to list of transmitters
|
|
366
|
+
*/
|
|
217
367
|
payees: string[];
|
|
218
368
|
}
|
|
219
369
|
export interface MsgSetPayeesAminoMsg {
|
|
220
370
|
type: "ocr/MsgSetPayees";
|
|
221
371
|
value: MsgSetPayeesAmino;
|
|
222
372
|
}
|
|
373
|
+
/**
|
|
374
|
+
* @name MsgSetPayeesResponse
|
|
375
|
+
* @package injective.ocr.v1beta1
|
|
376
|
+
* @see proto type: injective.ocr.v1beta1.MsgSetPayeesResponse
|
|
377
|
+
*/
|
|
223
378
|
export interface MsgSetPayeesResponse {
|
|
224
379
|
}
|
|
225
380
|
export interface MsgSetPayeesResponseProtoMsg {
|
|
226
381
|
typeUrl: "/injective.ocr.v1beta1.MsgSetPayeesResponse";
|
|
227
382
|
value: Uint8Array;
|
|
228
383
|
}
|
|
384
|
+
/**
|
|
385
|
+
* @name MsgSetPayeesResponseAmino
|
|
386
|
+
* @package injective.ocr.v1beta1
|
|
387
|
+
* @see proto type: injective.ocr.v1beta1.MsgSetPayeesResponse
|
|
388
|
+
*/
|
|
229
389
|
export interface MsgSetPayeesResponseAmino {
|
|
230
390
|
}
|
|
231
391
|
export interface MsgSetPayeesResponseAminoMsg {
|
|
232
392
|
type: "/injective.ocr.v1beta1.MsgSetPayeesResponse";
|
|
233
393
|
value: MsgSetPayeesResponseAmino;
|
|
234
394
|
}
|
|
395
|
+
/**
|
|
396
|
+
* @name MsgTransferPayeeship
|
|
397
|
+
* @package injective.ocr.v1beta1
|
|
398
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransferPayeeship
|
|
399
|
+
*/
|
|
235
400
|
export interface MsgTransferPayeeship {
|
|
236
|
-
/**
|
|
401
|
+
/**
|
|
402
|
+
* transmitter address of oracle whose payee is changing
|
|
403
|
+
*/
|
|
237
404
|
sender: string;
|
|
238
405
|
transmitter: string;
|
|
239
406
|
feedId: string;
|
|
240
|
-
/**
|
|
407
|
+
/**
|
|
408
|
+
* new payee address
|
|
409
|
+
*/
|
|
241
410
|
proposed: string;
|
|
242
411
|
}
|
|
243
412
|
export interface MsgTransferPayeeshipProtoMsg {
|
|
244
413
|
typeUrl: "/injective.ocr.v1beta1.MsgTransferPayeeship";
|
|
245
414
|
value: Uint8Array;
|
|
246
415
|
}
|
|
416
|
+
/**
|
|
417
|
+
* @name MsgTransferPayeeshipAmino
|
|
418
|
+
* @package injective.ocr.v1beta1
|
|
419
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransferPayeeship
|
|
420
|
+
*/
|
|
247
421
|
export interface MsgTransferPayeeshipAmino {
|
|
248
|
-
/**
|
|
422
|
+
/**
|
|
423
|
+
* transmitter address of oracle whose payee is changing
|
|
424
|
+
*/
|
|
249
425
|
sender: string;
|
|
250
426
|
transmitter: string;
|
|
251
427
|
feed_id: string;
|
|
252
|
-
/**
|
|
428
|
+
/**
|
|
429
|
+
* new payee address
|
|
430
|
+
*/
|
|
253
431
|
proposed: string;
|
|
254
432
|
}
|
|
255
433
|
export interface MsgTransferPayeeshipAminoMsg {
|
|
256
434
|
type: "ocr/MsgTransferPayeeship";
|
|
257
435
|
value: MsgTransferPayeeshipAmino;
|
|
258
436
|
}
|
|
437
|
+
/**
|
|
438
|
+
* @name MsgTransferPayeeshipResponse
|
|
439
|
+
* @package injective.ocr.v1beta1
|
|
440
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransferPayeeshipResponse
|
|
441
|
+
*/
|
|
259
442
|
export interface MsgTransferPayeeshipResponse {
|
|
260
443
|
}
|
|
261
444
|
export interface MsgTransferPayeeshipResponseProtoMsg {
|
|
262
445
|
typeUrl: "/injective.ocr.v1beta1.MsgTransferPayeeshipResponse";
|
|
263
446
|
value: Uint8Array;
|
|
264
447
|
}
|
|
448
|
+
/**
|
|
449
|
+
* @name MsgTransferPayeeshipResponseAmino
|
|
450
|
+
* @package injective.ocr.v1beta1
|
|
451
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransferPayeeshipResponse
|
|
452
|
+
*/
|
|
265
453
|
export interface MsgTransferPayeeshipResponseAmino {
|
|
266
454
|
}
|
|
267
455
|
export interface MsgTransferPayeeshipResponseAminoMsg {
|
|
268
456
|
type: "/injective.ocr.v1beta1.MsgTransferPayeeshipResponse";
|
|
269
457
|
value: MsgTransferPayeeshipResponseAmino;
|
|
270
458
|
}
|
|
459
|
+
/**
|
|
460
|
+
* @name MsgAcceptPayeeship
|
|
461
|
+
* @package injective.ocr.v1beta1
|
|
462
|
+
* @see proto type: injective.ocr.v1beta1.MsgAcceptPayeeship
|
|
463
|
+
*/
|
|
271
464
|
export interface MsgAcceptPayeeship {
|
|
272
|
-
/**
|
|
465
|
+
/**
|
|
466
|
+
* new payee address
|
|
467
|
+
*/
|
|
273
468
|
payee: string;
|
|
274
|
-
/**
|
|
469
|
+
/**
|
|
470
|
+
* transmitter address of oracle whose payee is changing
|
|
471
|
+
*/
|
|
275
472
|
transmitter: string;
|
|
276
473
|
feedId: string;
|
|
277
474
|
}
|
|
@@ -279,10 +476,19 @@ export interface MsgAcceptPayeeshipProtoMsg {
|
|
|
279
476
|
typeUrl: "/injective.ocr.v1beta1.MsgAcceptPayeeship";
|
|
280
477
|
value: Uint8Array;
|
|
281
478
|
}
|
|
479
|
+
/**
|
|
480
|
+
* @name MsgAcceptPayeeshipAmino
|
|
481
|
+
* @package injective.ocr.v1beta1
|
|
482
|
+
* @see proto type: injective.ocr.v1beta1.MsgAcceptPayeeship
|
|
483
|
+
*/
|
|
282
484
|
export interface MsgAcceptPayeeshipAmino {
|
|
283
|
-
/**
|
|
485
|
+
/**
|
|
486
|
+
* new payee address
|
|
487
|
+
*/
|
|
284
488
|
payee: string;
|
|
285
|
-
/**
|
|
489
|
+
/**
|
|
490
|
+
* transmitter address of oracle whose payee is changing
|
|
491
|
+
*/
|
|
286
492
|
transmitter: string;
|
|
287
493
|
feed_id: string;
|
|
288
494
|
}
|
|
@@ -290,20 +496,37 @@ export interface MsgAcceptPayeeshipAminoMsg {
|
|
|
290
496
|
type: "ocr/MsgAcceptPayeeship";
|
|
291
497
|
value: MsgAcceptPayeeshipAmino;
|
|
292
498
|
}
|
|
499
|
+
/**
|
|
500
|
+
* @name MsgAcceptPayeeshipResponse
|
|
501
|
+
* @package injective.ocr.v1beta1
|
|
502
|
+
* @see proto type: injective.ocr.v1beta1.MsgAcceptPayeeshipResponse
|
|
503
|
+
*/
|
|
293
504
|
export interface MsgAcceptPayeeshipResponse {
|
|
294
505
|
}
|
|
295
506
|
export interface MsgAcceptPayeeshipResponseProtoMsg {
|
|
296
507
|
typeUrl: "/injective.ocr.v1beta1.MsgAcceptPayeeshipResponse";
|
|
297
508
|
value: Uint8Array;
|
|
298
509
|
}
|
|
510
|
+
/**
|
|
511
|
+
* @name MsgAcceptPayeeshipResponseAmino
|
|
512
|
+
* @package injective.ocr.v1beta1
|
|
513
|
+
* @see proto type: injective.ocr.v1beta1.MsgAcceptPayeeshipResponse
|
|
514
|
+
*/
|
|
299
515
|
export interface MsgAcceptPayeeshipResponseAmino {
|
|
300
516
|
}
|
|
301
517
|
export interface MsgAcceptPayeeshipResponseAminoMsg {
|
|
302
518
|
type: "/injective.ocr.v1beta1.MsgAcceptPayeeshipResponse";
|
|
303
519
|
value: MsgAcceptPayeeshipResponseAmino;
|
|
304
520
|
}
|
|
521
|
+
/**
|
|
522
|
+
* @name MsgUpdateParams
|
|
523
|
+
* @package injective.ocr.v1beta1
|
|
524
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateParams
|
|
525
|
+
*/
|
|
305
526
|
export interface MsgUpdateParams {
|
|
306
|
-
/**
|
|
527
|
+
/**
|
|
528
|
+
* authority is the address of the governance account.
|
|
529
|
+
*/
|
|
307
530
|
authority: string;
|
|
308
531
|
/**
|
|
309
532
|
* params defines the ocr parameters to update.
|
|
@@ -316,8 +539,15 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
316
539
|
typeUrl: "/injective.ocr.v1beta1.MsgUpdateParams";
|
|
317
540
|
value: Uint8Array;
|
|
318
541
|
}
|
|
542
|
+
/**
|
|
543
|
+
* @name MsgUpdateParamsAmino
|
|
544
|
+
* @package injective.ocr.v1beta1
|
|
545
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateParams
|
|
546
|
+
*/
|
|
319
547
|
export interface MsgUpdateParamsAmino {
|
|
320
|
-
/**
|
|
548
|
+
/**
|
|
549
|
+
* authority is the address of the governance account.
|
|
550
|
+
*/
|
|
321
551
|
authority: string;
|
|
322
552
|
/**
|
|
323
553
|
* params defines the ocr parameters to update.
|
|
@@ -330,18 +560,33 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
330
560
|
type: "ocr/MsgUpdateParams";
|
|
331
561
|
value: MsgUpdateParamsAmino;
|
|
332
562
|
}
|
|
563
|
+
/**
|
|
564
|
+
* @name MsgUpdateParamsResponse
|
|
565
|
+
* @package injective.ocr.v1beta1
|
|
566
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateParamsResponse
|
|
567
|
+
*/
|
|
333
568
|
export interface MsgUpdateParamsResponse {
|
|
334
569
|
}
|
|
335
570
|
export interface MsgUpdateParamsResponseProtoMsg {
|
|
336
571
|
typeUrl: "/injective.ocr.v1beta1.MsgUpdateParamsResponse";
|
|
337
572
|
value: Uint8Array;
|
|
338
573
|
}
|
|
574
|
+
/**
|
|
575
|
+
* @name MsgUpdateParamsResponseAmino
|
|
576
|
+
* @package injective.ocr.v1beta1
|
|
577
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateParamsResponse
|
|
578
|
+
*/
|
|
339
579
|
export interface MsgUpdateParamsResponseAmino {
|
|
340
580
|
}
|
|
341
581
|
export interface MsgUpdateParamsResponseAminoMsg {
|
|
342
582
|
type: "/injective.ocr.v1beta1.MsgUpdateParamsResponse";
|
|
343
583
|
value: MsgUpdateParamsResponseAmino;
|
|
344
584
|
}
|
|
585
|
+
/**
|
|
586
|
+
* @name MsgCreateFeed
|
|
587
|
+
* @package injective.ocr.v1beta1
|
|
588
|
+
* @see proto type: injective.ocr.v1beta1.MsgCreateFeed
|
|
589
|
+
*/
|
|
345
590
|
export declare const MsgCreateFeed: {
|
|
346
591
|
typeUrl: string;
|
|
347
592
|
aminoType: string;
|
|
@@ -359,6 +604,11 @@ export declare const MsgCreateFeed: {
|
|
|
359
604
|
toProtoMsg(message: MsgCreateFeed): MsgCreateFeedProtoMsg;
|
|
360
605
|
registerTypeUrl(): void;
|
|
361
606
|
};
|
|
607
|
+
/**
|
|
608
|
+
* @name MsgCreateFeedResponse
|
|
609
|
+
* @package injective.ocr.v1beta1
|
|
610
|
+
* @see proto type: injective.ocr.v1beta1.MsgCreateFeedResponse
|
|
611
|
+
*/
|
|
362
612
|
export declare const MsgCreateFeedResponse: {
|
|
363
613
|
typeUrl: string;
|
|
364
614
|
is(o: any): o is MsgCreateFeedResponse;
|
|
@@ -374,6 +624,11 @@ export declare const MsgCreateFeedResponse: {
|
|
|
374
624
|
toProtoMsg(message: MsgCreateFeedResponse): MsgCreateFeedResponseProtoMsg;
|
|
375
625
|
registerTypeUrl(): void;
|
|
376
626
|
};
|
|
627
|
+
/**
|
|
628
|
+
* @name MsgUpdateFeed
|
|
629
|
+
* @package injective.ocr.v1beta1
|
|
630
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateFeed
|
|
631
|
+
*/
|
|
377
632
|
export declare const MsgUpdateFeed: {
|
|
378
633
|
typeUrl: string;
|
|
379
634
|
aminoType: string;
|
|
@@ -391,6 +646,11 @@ export declare const MsgUpdateFeed: {
|
|
|
391
646
|
toProtoMsg(message: MsgUpdateFeed): MsgUpdateFeedProtoMsg;
|
|
392
647
|
registerTypeUrl(): void;
|
|
393
648
|
};
|
|
649
|
+
/**
|
|
650
|
+
* @name MsgUpdateFeedResponse
|
|
651
|
+
* @package injective.ocr.v1beta1
|
|
652
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateFeedResponse
|
|
653
|
+
*/
|
|
394
654
|
export declare const MsgUpdateFeedResponse: {
|
|
395
655
|
typeUrl: string;
|
|
396
656
|
is(o: any): o is MsgUpdateFeedResponse;
|
|
@@ -406,6 +666,11 @@ export declare const MsgUpdateFeedResponse: {
|
|
|
406
666
|
toProtoMsg(message: MsgUpdateFeedResponse): MsgUpdateFeedResponseProtoMsg;
|
|
407
667
|
registerTypeUrl(): void;
|
|
408
668
|
};
|
|
669
|
+
/**
|
|
670
|
+
* @name MsgTransmit
|
|
671
|
+
* @package injective.ocr.v1beta1
|
|
672
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransmit
|
|
673
|
+
*/
|
|
409
674
|
export declare const MsgTransmit: {
|
|
410
675
|
typeUrl: string;
|
|
411
676
|
aminoType: string;
|
|
@@ -423,6 +688,11 @@ export declare const MsgTransmit: {
|
|
|
423
688
|
toProtoMsg(message: MsgTransmit): MsgTransmitProtoMsg;
|
|
424
689
|
registerTypeUrl(): void;
|
|
425
690
|
};
|
|
691
|
+
/**
|
|
692
|
+
* @name MsgTransmitResponse
|
|
693
|
+
* @package injective.ocr.v1beta1
|
|
694
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransmitResponse
|
|
695
|
+
*/
|
|
426
696
|
export declare const MsgTransmitResponse: {
|
|
427
697
|
typeUrl: string;
|
|
428
698
|
is(o: any): o is MsgTransmitResponse;
|
|
@@ -438,6 +708,11 @@ export declare const MsgTransmitResponse: {
|
|
|
438
708
|
toProtoMsg(message: MsgTransmitResponse): MsgTransmitResponseProtoMsg;
|
|
439
709
|
registerTypeUrl(): void;
|
|
440
710
|
};
|
|
711
|
+
/**
|
|
712
|
+
* @name MsgFundFeedRewardPool
|
|
713
|
+
* @package injective.ocr.v1beta1
|
|
714
|
+
* @see proto type: injective.ocr.v1beta1.MsgFundFeedRewardPool
|
|
715
|
+
*/
|
|
441
716
|
export declare const MsgFundFeedRewardPool: {
|
|
442
717
|
typeUrl: string;
|
|
443
718
|
aminoType: string;
|
|
@@ -455,6 +730,11 @@ export declare const MsgFundFeedRewardPool: {
|
|
|
455
730
|
toProtoMsg(message: MsgFundFeedRewardPool): MsgFundFeedRewardPoolProtoMsg;
|
|
456
731
|
registerTypeUrl(): void;
|
|
457
732
|
};
|
|
733
|
+
/**
|
|
734
|
+
* @name MsgFundFeedRewardPoolResponse
|
|
735
|
+
* @package injective.ocr.v1beta1
|
|
736
|
+
* @see proto type: injective.ocr.v1beta1.MsgFundFeedRewardPoolResponse
|
|
737
|
+
*/
|
|
458
738
|
export declare const MsgFundFeedRewardPoolResponse: {
|
|
459
739
|
typeUrl: string;
|
|
460
740
|
is(o: any): o is MsgFundFeedRewardPoolResponse;
|
|
@@ -470,6 +750,11 @@ export declare const MsgFundFeedRewardPoolResponse: {
|
|
|
470
750
|
toProtoMsg(message: MsgFundFeedRewardPoolResponse): MsgFundFeedRewardPoolResponseProtoMsg;
|
|
471
751
|
registerTypeUrl(): void;
|
|
472
752
|
};
|
|
753
|
+
/**
|
|
754
|
+
* @name MsgWithdrawFeedRewardPool
|
|
755
|
+
* @package injective.ocr.v1beta1
|
|
756
|
+
* @see proto type: injective.ocr.v1beta1.MsgWithdrawFeedRewardPool
|
|
757
|
+
*/
|
|
473
758
|
export declare const MsgWithdrawFeedRewardPool: {
|
|
474
759
|
typeUrl: string;
|
|
475
760
|
aminoType: string;
|
|
@@ -487,6 +772,11 @@ export declare const MsgWithdrawFeedRewardPool: {
|
|
|
487
772
|
toProtoMsg(message: MsgWithdrawFeedRewardPool): MsgWithdrawFeedRewardPoolProtoMsg;
|
|
488
773
|
registerTypeUrl(): void;
|
|
489
774
|
};
|
|
775
|
+
/**
|
|
776
|
+
* @name MsgWithdrawFeedRewardPoolResponse
|
|
777
|
+
* @package injective.ocr.v1beta1
|
|
778
|
+
* @see proto type: injective.ocr.v1beta1.MsgWithdrawFeedRewardPoolResponse
|
|
779
|
+
*/
|
|
490
780
|
export declare const MsgWithdrawFeedRewardPoolResponse: {
|
|
491
781
|
typeUrl: string;
|
|
492
782
|
is(o: any): o is MsgWithdrawFeedRewardPoolResponse;
|
|
@@ -502,6 +792,11 @@ export declare const MsgWithdrawFeedRewardPoolResponse: {
|
|
|
502
792
|
toProtoMsg(message: MsgWithdrawFeedRewardPoolResponse): MsgWithdrawFeedRewardPoolResponseProtoMsg;
|
|
503
793
|
registerTypeUrl(): void;
|
|
504
794
|
};
|
|
795
|
+
/**
|
|
796
|
+
* @name MsgSetPayees
|
|
797
|
+
* @package injective.ocr.v1beta1
|
|
798
|
+
* @see proto type: injective.ocr.v1beta1.MsgSetPayees
|
|
799
|
+
*/
|
|
505
800
|
export declare const MsgSetPayees: {
|
|
506
801
|
typeUrl: string;
|
|
507
802
|
aminoType: string;
|
|
@@ -519,6 +814,11 @@ export declare const MsgSetPayees: {
|
|
|
519
814
|
toProtoMsg(message: MsgSetPayees): MsgSetPayeesProtoMsg;
|
|
520
815
|
registerTypeUrl(): void;
|
|
521
816
|
};
|
|
817
|
+
/**
|
|
818
|
+
* @name MsgSetPayeesResponse
|
|
819
|
+
* @package injective.ocr.v1beta1
|
|
820
|
+
* @see proto type: injective.ocr.v1beta1.MsgSetPayeesResponse
|
|
821
|
+
*/
|
|
522
822
|
export declare const MsgSetPayeesResponse: {
|
|
523
823
|
typeUrl: string;
|
|
524
824
|
is(o: any): o is MsgSetPayeesResponse;
|
|
@@ -534,6 +834,11 @@ export declare const MsgSetPayeesResponse: {
|
|
|
534
834
|
toProtoMsg(message: MsgSetPayeesResponse): MsgSetPayeesResponseProtoMsg;
|
|
535
835
|
registerTypeUrl(): void;
|
|
536
836
|
};
|
|
837
|
+
/**
|
|
838
|
+
* @name MsgTransferPayeeship
|
|
839
|
+
* @package injective.ocr.v1beta1
|
|
840
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransferPayeeship
|
|
841
|
+
*/
|
|
537
842
|
export declare const MsgTransferPayeeship: {
|
|
538
843
|
typeUrl: string;
|
|
539
844
|
aminoType: string;
|
|
@@ -551,6 +856,11 @@ export declare const MsgTransferPayeeship: {
|
|
|
551
856
|
toProtoMsg(message: MsgTransferPayeeship): MsgTransferPayeeshipProtoMsg;
|
|
552
857
|
registerTypeUrl(): void;
|
|
553
858
|
};
|
|
859
|
+
/**
|
|
860
|
+
* @name MsgTransferPayeeshipResponse
|
|
861
|
+
* @package injective.ocr.v1beta1
|
|
862
|
+
* @see proto type: injective.ocr.v1beta1.MsgTransferPayeeshipResponse
|
|
863
|
+
*/
|
|
554
864
|
export declare const MsgTransferPayeeshipResponse: {
|
|
555
865
|
typeUrl: string;
|
|
556
866
|
is(o: any): o is MsgTransferPayeeshipResponse;
|
|
@@ -566,6 +876,11 @@ export declare const MsgTransferPayeeshipResponse: {
|
|
|
566
876
|
toProtoMsg(message: MsgTransferPayeeshipResponse): MsgTransferPayeeshipResponseProtoMsg;
|
|
567
877
|
registerTypeUrl(): void;
|
|
568
878
|
};
|
|
879
|
+
/**
|
|
880
|
+
* @name MsgAcceptPayeeship
|
|
881
|
+
* @package injective.ocr.v1beta1
|
|
882
|
+
* @see proto type: injective.ocr.v1beta1.MsgAcceptPayeeship
|
|
883
|
+
*/
|
|
569
884
|
export declare const MsgAcceptPayeeship: {
|
|
570
885
|
typeUrl: string;
|
|
571
886
|
aminoType: string;
|
|
@@ -583,6 +898,11 @@ export declare const MsgAcceptPayeeship: {
|
|
|
583
898
|
toProtoMsg(message: MsgAcceptPayeeship): MsgAcceptPayeeshipProtoMsg;
|
|
584
899
|
registerTypeUrl(): void;
|
|
585
900
|
};
|
|
901
|
+
/**
|
|
902
|
+
* @name MsgAcceptPayeeshipResponse
|
|
903
|
+
* @package injective.ocr.v1beta1
|
|
904
|
+
* @see proto type: injective.ocr.v1beta1.MsgAcceptPayeeshipResponse
|
|
905
|
+
*/
|
|
586
906
|
export declare const MsgAcceptPayeeshipResponse: {
|
|
587
907
|
typeUrl: string;
|
|
588
908
|
is(o: any): o is MsgAcceptPayeeshipResponse;
|
|
@@ -598,6 +918,11 @@ export declare const MsgAcceptPayeeshipResponse: {
|
|
|
598
918
|
toProtoMsg(message: MsgAcceptPayeeshipResponse): MsgAcceptPayeeshipResponseProtoMsg;
|
|
599
919
|
registerTypeUrl(): void;
|
|
600
920
|
};
|
|
921
|
+
/**
|
|
922
|
+
* @name MsgUpdateParams
|
|
923
|
+
* @package injective.ocr.v1beta1
|
|
924
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateParams
|
|
925
|
+
*/
|
|
601
926
|
export declare const MsgUpdateParams: {
|
|
602
927
|
typeUrl: string;
|
|
603
928
|
aminoType: string;
|
|
@@ -615,6 +940,11 @@ export declare const MsgUpdateParams: {
|
|
|
615
940
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
616
941
|
registerTypeUrl(): void;
|
|
617
942
|
};
|
|
943
|
+
/**
|
|
944
|
+
* @name MsgUpdateParamsResponse
|
|
945
|
+
* @package injective.ocr.v1beta1
|
|
946
|
+
* @see proto type: injective.ocr.v1beta1.MsgUpdateParamsResponse
|
|
947
|
+
*/
|
|
618
948
|
export declare const MsgUpdateParamsResponse: {
|
|
619
949
|
typeUrl: string;
|
|
620
950
|
is(o: any): o is MsgUpdateParamsResponse;
|