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
|
@@ -14,6 +14,13 @@ function createBaseMsgRelayProviderPrices() {
|
|
|
14
14
|
prices: []
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* MsgRelayProviderPrice defines a SDK message for setting a price through the
|
|
19
|
+
* provider oracle.
|
|
20
|
+
* @name MsgRelayProviderPrices
|
|
21
|
+
* @package injective.oracle.v1beta1
|
|
22
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayProviderPrices
|
|
23
|
+
*/
|
|
17
24
|
exports.MsgRelayProviderPrices = {
|
|
18
25
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayProviderPrices",
|
|
19
26
|
aminoType: "oracle/MsgRelayProviderPrices",
|
|
@@ -128,6 +135,11 @@ exports.MsgRelayProviderPrices = {
|
|
|
128
135
|
function createBaseMsgRelayProviderPricesResponse() {
|
|
129
136
|
return {};
|
|
130
137
|
}
|
|
138
|
+
/**
|
|
139
|
+
* @name MsgRelayProviderPricesResponse
|
|
140
|
+
* @package injective.oracle.v1beta1
|
|
141
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayProviderPricesResponse
|
|
142
|
+
*/
|
|
131
143
|
exports.MsgRelayProviderPricesResponse = {
|
|
132
144
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayProviderPricesResponse",
|
|
133
145
|
is(o) {
|
|
@@ -190,6 +202,13 @@ function createBaseMsgRelayPriceFeedPrice() {
|
|
|
190
202
|
price: []
|
|
191
203
|
};
|
|
192
204
|
}
|
|
205
|
+
/**
|
|
206
|
+
* MsgRelayPriceFeedPrice defines a SDK message for setting a price through the
|
|
207
|
+
* pricefeed oracle.
|
|
208
|
+
* @name MsgRelayPriceFeedPrice
|
|
209
|
+
* @package injective.oracle.v1beta1
|
|
210
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayPriceFeedPrice
|
|
211
|
+
*/
|
|
193
212
|
exports.MsgRelayPriceFeedPrice = {
|
|
194
213
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayPriceFeedPrice",
|
|
195
214
|
aminoType: "oracle/MsgRelayPriceFeedPrice",
|
|
@@ -307,6 +326,11 @@ exports.MsgRelayPriceFeedPrice = {
|
|
|
307
326
|
function createBaseMsgRelayPriceFeedPriceResponse() {
|
|
308
327
|
return {};
|
|
309
328
|
}
|
|
329
|
+
/**
|
|
330
|
+
* @name MsgRelayPriceFeedPriceResponse
|
|
331
|
+
* @package injective.oracle.v1beta1
|
|
332
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayPriceFeedPriceResponse
|
|
333
|
+
*/
|
|
310
334
|
exports.MsgRelayPriceFeedPriceResponse = {
|
|
311
335
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayPriceFeedPriceResponse",
|
|
312
336
|
is(o) {
|
|
@@ -370,6 +394,11 @@ function createBaseMsgRelayBandRates() {
|
|
|
370
394
|
requestIDs: []
|
|
371
395
|
};
|
|
372
396
|
}
|
|
397
|
+
/**
|
|
398
|
+
* @name MsgRelayBandRates
|
|
399
|
+
* @package injective.oracle.v1beta1
|
|
400
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayBandRates
|
|
401
|
+
*/
|
|
373
402
|
exports.MsgRelayBandRates = {
|
|
374
403
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayBandRates",
|
|
375
404
|
aminoType: "oracle/MsgRelayBandRates",
|
|
@@ -531,6 +560,11 @@ exports.MsgRelayBandRates = {
|
|
|
531
560
|
function createBaseMsgRelayBandRatesResponse() {
|
|
532
561
|
return {};
|
|
533
562
|
}
|
|
563
|
+
/**
|
|
564
|
+
* @name MsgRelayBandRatesResponse
|
|
565
|
+
* @package injective.oracle.v1beta1
|
|
566
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayBandRatesResponse
|
|
567
|
+
*/
|
|
534
568
|
exports.MsgRelayBandRatesResponse = {
|
|
535
569
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayBandRatesResponse",
|
|
536
570
|
is(o) {
|
|
@@ -592,6 +626,13 @@ function createBaseMsgRelayCoinbaseMessages() {
|
|
|
592
626
|
signatures: []
|
|
593
627
|
};
|
|
594
628
|
}
|
|
629
|
+
/**
|
|
630
|
+
* MsgRelayCoinbaseMessages defines a SDK message for relaying price messages
|
|
631
|
+
* from Coinbase API.
|
|
632
|
+
* @name MsgRelayCoinbaseMessages
|
|
633
|
+
* @package injective.oracle.v1beta1
|
|
634
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayCoinbaseMessages
|
|
635
|
+
*/
|
|
595
636
|
exports.MsgRelayCoinbaseMessages = {
|
|
596
637
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayCoinbaseMessages",
|
|
597
638
|
aminoType: "oracle/MsgRelayCoinbaseMessages",
|
|
@@ -695,6 +736,11 @@ exports.MsgRelayCoinbaseMessages = {
|
|
|
695
736
|
function createBaseMsgRelayCoinbaseMessagesResponse() {
|
|
696
737
|
return {};
|
|
697
738
|
}
|
|
739
|
+
/**
|
|
740
|
+
* @name MsgRelayCoinbaseMessagesResponse
|
|
741
|
+
* @package injective.oracle.v1beta1
|
|
742
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayCoinbaseMessagesResponse
|
|
743
|
+
*/
|
|
698
744
|
exports.MsgRelayCoinbaseMessagesResponse = {
|
|
699
745
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayCoinbaseMessagesResponse",
|
|
700
746
|
is(o) {
|
|
@@ -755,6 +801,13 @@ function createBaseMsgRelayStorkPrices() {
|
|
|
755
801
|
assetPairs: []
|
|
756
802
|
};
|
|
757
803
|
}
|
|
804
|
+
/**
|
|
805
|
+
* MsgRelayStorkPrices defines a SDK message for relaying price message
|
|
806
|
+
* from Stork API.
|
|
807
|
+
* @name MsgRelayStorkPrices
|
|
808
|
+
* @package injective.oracle.v1beta1
|
|
809
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayStorkPrices
|
|
810
|
+
*/
|
|
758
811
|
exports.MsgRelayStorkPrices = {
|
|
759
812
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayStorkPrices",
|
|
760
813
|
is(o) {
|
|
@@ -842,6 +895,11 @@ exports.MsgRelayStorkPrices = {
|
|
|
842
895
|
function createBaseMsgRelayStorkPricesResponse() {
|
|
843
896
|
return {};
|
|
844
897
|
}
|
|
898
|
+
/**
|
|
899
|
+
* @name MsgRelayStorkPricesResponse
|
|
900
|
+
* @package injective.oracle.v1beta1
|
|
901
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayStorkPricesResponse
|
|
902
|
+
*/
|
|
845
903
|
exports.MsgRelayStorkPricesResponse = {
|
|
846
904
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayStorkPricesResponse",
|
|
847
905
|
is(o) {
|
|
@@ -902,6 +960,13 @@ function createBaseMsgRequestBandIBCRates() {
|
|
|
902
960
|
requestId: BigInt(0)
|
|
903
961
|
};
|
|
904
962
|
}
|
|
963
|
+
/**
|
|
964
|
+
* MsgRequestBandIBCRates defines a SDK message for requesting data from
|
|
965
|
+
* BandChain using IBC.
|
|
966
|
+
* @name MsgRequestBandIBCRates
|
|
967
|
+
* @package injective.oracle.v1beta1
|
|
968
|
+
* @see proto type: injective.oracle.v1beta1.MsgRequestBandIBCRates
|
|
969
|
+
*/
|
|
905
970
|
exports.MsgRequestBandIBCRates = {
|
|
906
971
|
typeUrl: "/injective.oracle.v1beta1.MsgRequestBandIBCRates",
|
|
907
972
|
aminoType: "oracle/MsgRequestBandIBCRates",
|
|
@@ -988,6 +1053,12 @@ exports.MsgRequestBandIBCRates = {
|
|
|
988
1053
|
function createBaseMsgRequestBandIBCRatesResponse() {
|
|
989
1054
|
return {};
|
|
990
1055
|
}
|
|
1056
|
+
/**
|
|
1057
|
+
* MsgRequestDataResponse defines the Msg/RequestBandIBCRates response type.
|
|
1058
|
+
* @name MsgRequestBandIBCRatesResponse
|
|
1059
|
+
* @package injective.oracle.v1beta1
|
|
1060
|
+
* @see proto type: injective.oracle.v1beta1.MsgRequestBandIBCRatesResponse
|
|
1061
|
+
*/
|
|
991
1062
|
exports.MsgRequestBandIBCRatesResponse = {
|
|
992
1063
|
typeUrl: "/injective.oracle.v1beta1.MsgRequestBandIBCRatesResponse",
|
|
993
1064
|
is(o) {
|
|
@@ -1048,6 +1119,12 @@ function createBaseMsgRelayPythPrices() {
|
|
|
1048
1119
|
priceAttestations: []
|
|
1049
1120
|
};
|
|
1050
1121
|
}
|
|
1122
|
+
/**
|
|
1123
|
+
* MsgRelayPythPrices defines a SDK message for updating Pyth prices
|
|
1124
|
+
* @name MsgRelayPythPrices
|
|
1125
|
+
* @package injective.oracle.v1beta1
|
|
1126
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayPythPrices
|
|
1127
|
+
*/
|
|
1051
1128
|
exports.MsgRelayPythPrices = {
|
|
1052
1129
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayPythPrices",
|
|
1053
1130
|
aminoType: "oracle/MsgRelayPythPrices",
|
|
@@ -1142,6 +1219,12 @@ exports.MsgRelayPythPrices = {
|
|
|
1142
1219
|
function createBaseMsgRelayPythPricesResponse() {
|
|
1143
1220
|
return {};
|
|
1144
1221
|
}
|
|
1222
|
+
/**
|
|
1223
|
+
* MsgRelayPythPricesResponse defines the Msg/RelayPythPrices response type.
|
|
1224
|
+
* @name MsgRelayPythPricesResponse
|
|
1225
|
+
* @package injective.oracle.v1beta1
|
|
1226
|
+
* @see proto type: injective.oracle.v1beta1.MsgRelayPythPricesResponse
|
|
1227
|
+
*/
|
|
1145
1228
|
exports.MsgRelayPythPricesResponse = {
|
|
1146
1229
|
typeUrl: "/injective.oracle.v1beta1.MsgRelayPythPricesResponse",
|
|
1147
1230
|
is(o) {
|
|
@@ -1202,6 +1285,11 @@ function createBaseMsgUpdateParams() {
|
|
|
1202
1285
|
params: oracle_1.Params.fromPartial({})
|
|
1203
1286
|
};
|
|
1204
1287
|
}
|
|
1288
|
+
/**
|
|
1289
|
+
* @name MsgUpdateParams
|
|
1290
|
+
* @package injective.oracle.v1beta1
|
|
1291
|
+
* @see proto type: injective.oracle.v1beta1.MsgUpdateParams
|
|
1292
|
+
*/
|
|
1205
1293
|
exports.MsgUpdateParams = {
|
|
1206
1294
|
typeUrl: "/injective.oracle.v1beta1.MsgUpdateParams",
|
|
1207
1295
|
aminoType: "oracle/MsgUpdateParams",
|
|
@@ -1293,6 +1381,11 @@ exports.MsgUpdateParams = {
|
|
|
1293
1381
|
function createBaseMsgUpdateParamsResponse() {
|
|
1294
1382
|
return {};
|
|
1295
1383
|
}
|
|
1384
|
+
/**
|
|
1385
|
+
* @name MsgUpdateParamsResponse
|
|
1386
|
+
* @package injective.oracle.v1beta1
|
|
1387
|
+
* @see proto type: injective.oracle.v1beta1.MsgUpdateParamsResponse
|
|
1388
|
+
*/
|
|
1296
1389
|
exports.MsgUpdateParamsResponse = {
|
|
1297
1390
|
typeUrl: "/injective.oracle.v1beta1.MsgUpdateParamsResponse",
|
|
1298
1391
|
is(o) {
|
|
@@ -1,9 +1,61 @@
|
|
|
1
1
|
import { MsgRelayProviderPrices, MsgRelayPriceFeedPrice, MsgRelayBandRates, MsgRequestBandIBCRates, MsgRelayCoinbaseMessages, MsgRelayStorkPrices, MsgRelayPythPrices, MsgUpdateParams } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* RelayProviderPrice defines a method for relaying a price for a
|
|
4
|
+
* provider-based oracle
|
|
5
|
+
* @name relayProviderPrices
|
|
6
|
+
* @package injective.oracle.v1beta1
|
|
7
|
+
* @see proto service: injective.oracle.v1beta1.RelayProviderPrices
|
|
8
|
+
*/
|
|
2
9
|
export declare const relayProviderPrices: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRelayProviderPrices | MsgRelayProviderPrices[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
10
|
+
/**
|
|
11
|
+
* RelayPriceFeedPrice defines a method for relaying a price for a price
|
|
12
|
+
* feeder-based oracle
|
|
13
|
+
* @name relayPriceFeedPrice
|
|
14
|
+
* @package injective.oracle.v1beta1
|
|
15
|
+
* @see proto service: injective.oracle.v1beta1.RelayPriceFeedPrice
|
|
16
|
+
*/
|
|
3
17
|
export declare const relayPriceFeedPrice: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRelayPriceFeedPrice | MsgRelayPriceFeedPrice[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* RelayBandRates defines a method for relaying rates from Band
|
|
20
|
+
* @name relayBandRates
|
|
21
|
+
* @package injective.oracle.v1beta1
|
|
22
|
+
* @see proto service: injective.oracle.v1beta1.RelayBandRates
|
|
23
|
+
*/
|
|
4
24
|
export declare const relayBandRates: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRelayBandRates | MsgRelayBandRates[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* RequestBandIBCRates defines a method for fetching rates from Band ibc
|
|
27
|
+
* @name requestBandIBCRates
|
|
28
|
+
* @package injective.oracle.v1beta1
|
|
29
|
+
* @see proto service: injective.oracle.v1beta1.RequestBandIBCRates
|
|
30
|
+
*/
|
|
5
31
|
export declare const requestBandIBCRates: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRequestBandIBCRates | MsgRequestBandIBCRates[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* RelayCoinbaseMessages defines a method for relaying price messages from
|
|
34
|
+
* Coinbase API
|
|
35
|
+
* @name relayCoinbaseMessages
|
|
36
|
+
* @package injective.oracle.v1beta1
|
|
37
|
+
* @see proto service: injective.oracle.v1beta1.RelayCoinbaseMessages
|
|
38
|
+
*/
|
|
6
39
|
export declare const relayCoinbaseMessages: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRelayCoinbaseMessages | MsgRelayCoinbaseMessages[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
40
|
+
/**
|
|
41
|
+
* RelayStorkMessage defines a method for relaying price message from
|
|
42
|
+
* Stork API
|
|
43
|
+
* @name relayStorkMessage
|
|
44
|
+
* @package injective.oracle.v1beta1
|
|
45
|
+
* @see proto service: injective.oracle.v1beta1.RelayStorkMessage
|
|
46
|
+
*/
|
|
7
47
|
export declare const relayStorkMessage: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRelayStorkPrices | MsgRelayStorkPrices[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
48
|
+
/**
|
|
49
|
+
* RelayPythPrices defines a method for relaying rates from the Pyth contract
|
|
50
|
+
* @name relayPythPrices
|
|
51
|
+
* @package injective.oracle.v1beta1
|
|
52
|
+
* @see proto service: injective.oracle.v1beta1.RelayPythPrices
|
|
53
|
+
*/
|
|
8
54
|
export declare const relayPythPrices: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRelayPythPrices | MsgRelayPythPrices[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* UpdateParams enables updating oracle module's params via governance
|
|
57
|
+
* @name updateParams
|
|
58
|
+
* @package injective.oracle.v1beta1
|
|
59
|
+
* @see proto service: injective.oracle.v1beta1.UpdateParams
|
|
60
|
+
*/
|
|
9
61
|
export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
@@ -3,39 +3,79 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.updateParams = exports.relayPythPrices = exports.relayStorkMessage = exports.relayCoinbaseMessages = exports.requestBandIBCRates = exports.relayBandRates = exports.relayPriceFeedPrice = exports.relayProviderPrices = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const tx_1 = require("./tx");
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
/**
|
|
7
|
+
* RelayProviderPrice defines a method for relaying a price for a
|
|
8
|
+
* provider-based oracle
|
|
9
|
+
* @name relayProviderPrices
|
|
10
|
+
* @package injective.oracle.v1beta1
|
|
11
|
+
* @see proto service: injective.oracle.v1beta1.RelayProviderPrices
|
|
12
|
+
*/
|
|
8
13
|
exports.relayProviderPrices = (0, helper_func_types_1.buildTx)({
|
|
9
14
|
msg: tx_1.MsgRelayProviderPrices
|
|
10
15
|
});
|
|
11
|
-
|
|
12
|
-
|
|
16
|
+
/**
|
|
17
|
+
* RelayPriceFeedPrice defines a method for relaying a price for a price
|
|
18
|
+
* feeder-based oracle
|
|
19
|
+
* @name relayPriceFeedPrice
|
|
20
|
+
* @package injective.oracle.v1beta1
|
|
21
|
+
* @see proto service: injective.oracle.v1beta1.RelayPriceFeedPrice
|
|
22
|
+
*/
|
|
13
23
|
exports.relayPriceFeedPrice = (0, helper_func_types_1.buildTx)({
|
|
14
24
|
msg: tx_1.MsgRelayPriceFeedPrice
|
|
15
25
|
});
|
|
16
|
-
|
|
26
|
+
/**
|
|
27
|
+
* RelayBandRates defines a method for relaying rates from Band
|
|
28
|
+
* @name relayBandRates
|
|
29
|
+
* @package injective.oracle.v1beta1
|
|
30
|
+
* @see proto service: injective.oracle.v1beta1.RelayBandRates
|
|
31
|
+
*/
|
|
17
32
|
exports.relayBandRates = (0, helper_func_types_1.buildTx)({
|
|
18
33
|
msg: tx_1.MsgRelayBandRates
|
|
19
34
|
});
|
|
20
|
-
|
|
35
|
+
/**
|
|
36
|
+
* RequestBandIBCRates defines a method for fetching rates from Band ibc
|
|
37
|
+
* @name requestBandIBCRates
|
|
38
|
+
* @package injective.oracle.v1beta1
|
|
39
|
+
* @see proto service: injective.oracle.v1beta1.RequestBandIBCRates
|
|
40
|
+
*/
|
|
21
41
|
exports.requestBandIBCRates = (0, helper_func_types_1.buildTx)({
|
|
22
42
|
msg: tx_1.MsgRequestBandIBCRates
|
|
23
43
|
});
|
|
24
|
-
|
|
25
|
-
|
|
44
|
+
/**
|
|
45
|
+
* RelayCoinbaseMessages defines a method for relaying price messages from
|
|
46
|
+
* Coinbase API
|
|
47
|
+
* @name relayCoinbaseMessages
|
|
48
|
+
* @package injective.oracle.v1beta1
|
|
49
|
+
* @see proto service: injective.oracle.v1beta1.RelayCoinbaseMessages
|
|
50
|
+
*/
|
|
26
51
|
exports.relayCoinbaseMessages = (0, helper_func_types_1.buildTx)({
|
|
27
52
|
msg: tx_1.MsgRelayCoinbaseMessages
|
|
28
53
|
});
|
|
29
|
-
|
|
30
|
-
|
|
54
|
+
/**
|
|
55
|
+
* RelayStorkMessage defines a method for relaying price message from
|
|
56
|
+
* Stork API
|
|
57
|
+
* @name relayStorkMessage
|
|
58
|
+
* @package injective.oracle.v1beta1
|
|
59
|
+
* @see proto service: injective.oracle.v1beta1.RelayStorkMessage
|
|
60
|
+
*/
|
|
31
61
|
exports.relayStorkMessage = (0, helper_func_types_1.buildTx)({
|
|
32
62
|
msg: tx_1.MsgRelayStorkPrices
|
|
33
63
|
});
|
|
34
|
-
|
|
64
|
+
/**
|
|
65
|
+
* RelayPythPrices defines a method for relaying rates from the Pyth contract
|
|
66
|
+
* @name relayPythPrices
|
|
67
|
+
* @package injective.oracle.v1beta1
|
|
68
|
+
* @see proto service: injective.oracle.v1beta1.RelayPythPrices
|
|
69
|
+
*/
|
|
35
70
|
exports.relayPythPrices = (0, helper_func_types_1.buildTx)({
|
|
36
71
|
msg: tx_1.MsgRelayPythPrices
|
|
37
72
|
});
|
|
38
|
-
|
|
73
|
+
/**
|
|
74
|
+
* UpdateParams enables updating oracle module's params via governance
|
|
75
|
+
* @name updateParams
|
|
76
|
+
* @package injective.oracle.v1beta1
|
|
77
|
+
* @see proto service: injective.oracle.v1beta1.UpdateParams
|
|
78
|
+
*/
|
|
39
79
|
exports.updateParams = (0, helper_func_types_1.buildTx)({
|
|
40
80
|
msg: tx_1.MsgUpdateParams
|
|
41
81
|
});
|
|
@@ -32,6 +32,9 @@ export declare function claimTypeToJSON(object: ClaimType): string;
|
|
|
32
32
|
* it is processed the key in which the attestation is stored is keyed on the
|
|
33
33
|
* exact details of the claim but there is no reason to store those exact
|
|
34
34
|
* details becuause the next message sender will kindly provide you with them.
|
|
35
|
+
* @name Attestation
|
|
36
|
+
* @package injective.peggy.v1
|
|
37
|
+
* @see proto type: injective.peggy.v1.Attestation
|
|
35
38
|
*/
|
|
36
39
|
export interface Attestation {
|
|
37
40
|
observed: boolean;
|
|
@@ -59,6 +62,9 @@ export interface AttestationProtoMsg {
|
|
|
59
62
|
* it is processed the key in which the attestation is stored is keyed on the
|
|
60
63
|
* exact details of the claim but there is no reason to store those exact
|
|
61
64
|
* details becuause the next message sender will kindly provide you with them.
|
|
65
|
+
* @name AttestationAmino
|
|
66
|
+
* @package injective.peggy.v1
|
|
67
|
+
* @see proto type: injective.peggy.v1.Attestation
|
|
62
68
|
*/
|
|
63
69
|
export interface AttestationAmino {
|
|
64
70
|
observed: boolean;
|
|
@@ -77,6 +83,9 @@ export interface AttestationAminoMsg {
|
|
|
77
83
|
* originated token, if so it will be the ERC20 address of the representation
|
|
78
84
|
* (note: developers should look up the token symbol using the address on ETH to
|
|
79
85
|
* display for UI)
|
|
86
|
+
* @name ERC20Token
|
|
87
|
+
* @package injective.peggy.v1
|
|
88
|
+
* @see proto type: injective.peggy.v1.ERC20Token
|
|
80
89
|
*/
|
|
81
90
|
export interface ERC20Token {
|
|
82
91
|
contract: string;
|
|
@@ -93,6 +102,9 @@ export interface ERC20TokenProtoMsg {
|
|
|
93
102
|
* originated token, if so it will be the ERC20 address of the representation
|
|
94
103
|
* (note: developers should look up the token symbol using the address on ETH to
|
|
95
104
|
* display for UI)
|
|
105
|
+
* @name ERC20TokenAmino
|
|
106
|
+
* @package injective.peggy.v1
|
|
107
|
+
* @see proto type: injective.peggy.v1.ERC20Token
|
|
96
108
|
*/
|
|
97
109
|
export interface ERC20TokenAmino {
|
|
98
110
|
contract: string;
|
|
@@ -102,6 +114,26 @@ export interface ERC20TokenAminoMsg {
|
|
|
102
114
|
type: "/injective.peggy.v1.ERC20Token";
|
|
103
115
|
value: ERC20TokenAmino;
|
|
104
116
|
}
|
|
117
|
+
/**
|
|
118
|
+
* Attestation is an aggregate of `claims` that eventually becomes `observed` by
|
|
119
|
+
* all orchestrators
|
|
120
|
+
* EVENT_NONCE:
|
|
121
|
+
* EventNonce a nonce provided by the peggy contract that is unique per event
|
|
122
|
+
* fired These event nonces must be relayed in order. This is a correctness
|
|
123
|
+
* issue, if relaying out of order transaction replay attacks become possible
|
|
124
|
+
* OBSERVED:
|
|
125
|
+
* Observed indicates that >67% of validators have attested to the event,
|
|
126
|
+
* and that the event should be executed by the peggy state machine
|
|
127
|
+
*
|
|
128
|
+
* The actual content of the claims is passed in with the transaction making the
|
|
129
|
+
* claim and then passed through the call stack alongside the attestation while
|
|
130
|
+
* it is processed the key in which the attestation is stored is keyed on the
|
|
131
|
+
* exact details of the claim but there is no reason to store those exact
|
|
132
|
+
* details becuause the next message sender will kindly provide you with them.
|
|
133
|
+
* @name Attestation
|
|
134
|
+
* @package injective.peggy.v1
|
|
135
|
+
* @see proto type: injective.peggy.v1.Attestation
|
|
136
|
+
*/
|
|
105
137
|
export declare const Attestation: {
|
|
106
138
|
typeUrl: string;
|
|
107
139
|
is(o: any): o is Attestation;
|
|
@@ -117,6 +149,17 @@ export declare const Attestation: {
|
|
|
117
149
|
toProtoMsg(message: Attestation): AttestationProtoMsg;
|
|
118
150
|
registerTypeUrl(): void;
|
|
119
151
|
};
|
|
152
|
+
/**
|
|
153
|
+
* ERC20Token unique identifier for an Ethereum ERC20 token.
|
|
154
|
+
* CONTRACT:
|
|
155
|
+
* The contract address on ETH of the token, this could be a Cosmos
|
|
156
|
+
* originated token, if so it will be the ERC20 address of the representation
|
|
157
|
+
* (note: developers should look up the token symbol using the address on ETH to
|
|
158
|
+
* display for UI)
|
|
159
|
+
* @name ERC20Token
|
|
160
|
+
* @package injective.peggy.v1
|
|
161
|
+
* @see proto type: injective.peggy.v1.ERC20Token
|
|
162
|
+
*/
|
|
120
163
|
export declare const ERC20Token: {
|
|
121
164
|
typeUrl: string;
|
|
122
165
|
is(o: any): o is ERC20Token;
|
|
@@ -67,6 +67,26 @@ function createBaseAttestation() {
|
|
|
67
67
|
claim: undefined
|
|
68
68
|
};
|
|
69
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* Attestation is an aggregate of `claims` that eventually becomes `observed` by
|
|
72
|
+
* all orchestrators
|
|
73
|
+
* EVENT_NONCE:
|
|
74
|
+
* EventNonce a nonce provided by the peggy contract that is unique per event
|
|
75
|
+
* fired These event nonces must be relayed in order. This is a correctness
|
|
76
|
+
* issue, if relaying out of order transaction replay attacks become possible
|
|
77
|
+
* OBSERVED:
|
|
78
|
+
* Observed indicates that >67% of validators have attested to the event,
|
|
79
|
+
* and that the event should be executed by the peggy state machine
|
|
80
|
+
*
|
|
81
|
+
* The actual content of the claims is passed in with the transaction making the
|
|
82
|
+
* claim and then passed through the call stack alongside the attestation while
|
|
83
|
+
* it is processed the key in which the attestation is stored is keyed on the
|
|
84
|
+
* exact details of the claim but there is no reason to store those exact
|
|
85
|
+
* details becuause the next message sender will kindly provide you with them.
|
|
86
|
+
* @name Attestation
|
|
87
|
+
* @package injective.peggy.v1
|
|
88
|
+
* @see proto type: injective.peggy.v1.Attestation
|
|
89
|
+
*/
|
|
70
90
|
exports.Attestation = {
|
|
71
91
|
typeUrl: "/injective.peggy.v1.Attestation",
|
|
72
92
|
is(o) {
|
|
@@ -174,6 +194,17 @@ function createBaseERC20Token() {
|
|
|
174
194
|
amount: ""
|
|
175
195
|
};
|
|
176
196
|
}
|
|
197
|
+
/**
|
|
198
|
+
* ERC20Token unique identifier for an Ethereum ERC20 token.
|
|
199
|
+
* CONTRACT:
|
|
200
|
+
* The contract address on ETH of the token, this could be a Cosmos
|
|
201
|
+
* originated token, if so it will be the ERC20 address of the representation
|
|
202
|
+
* (note: developers should look up the token symbol using the address on ETH to
|
|
203
|
+
* display for UI)
|
|
204
|
+
* @name ERC20Token
|
|
205
|
+
* @package injective.peggy.v1
|
|
206
|
+
* @see proto type: injective.peggy.v1.ERC20Token
|
|
207
|
+
*/
|
|
177
208
|
exports.ERC20Token = {
|
|
178
209
|
typeUrl: "/injective.peggy.v1.ERC20Token",
|
|
179
210
|
is(o) {
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { ERC20Token, ERC20TokenAmino } from "./attestation";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* OutgoingTxBatch represents a batch of transactions going from Peggy to ETH
|
|
6
|
+
* @name OutgoingTxBatch
|
|
7
|
+
* @package injective.peggy.v1
|
|
8
|
+
* @see proto type: injective.peggy.v1.OutgoingTxBatch
|
|
9
|
+
*/
|
|
5
10
|
export interface OutgoingTxBatch {
|
|
6
11
|
batchNonce: bigint;
|
|
7
12
|
batchTimeout: bigint;
|
|
@@ -13,7 +18,12 @@ export interface OutgoingTxBatchProtoMsg {
|
|
|
13
18
|
typeUrl: "/injective.peggy.v1.OutgoingTxBatch";
|
|
14
19
|
value: Uint8Array;
|
|
15
20
|
}
|
|
16
|
-
/**
|
|
21
|
+
/**
|
|
22
|
+
* OutgoingTxBatch represents a batch of transactions going from Peggy to ETH
|
|
23
|
+
* @name OutgoingTxBatchAmino
|
|
24
|
+
* @package injective.peggy.v1
|
|
25
|
+
* @see proto type: injective.peggy.v1.OutgoingTxBatch
|
|
26
|
+
*/
|
|
17
27
|
export interface OutgoingTxBatchAmino {
|
|
18
28
|
batch_nonce: string;
|
|
19
29
|
batch_timeout: string;
|
|
@@ -25,7 +35,12 @@ export interface OutgoingTxBatchAminoMsg {
|
|
|
25
35
|
type: "/injective.peggy.v1.OutgoingTxBatch";
|
|
26
36
|
value: OutgoingTxBatchAmino;
|
|
27
37
|
}
|
|
28
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* OutgoingTransferTx represents an individual send from Peggy to ETH
|
|
40
|
+
* @name OutgoingTransferTx
|
|
41
|
+
* @package injective.peggy.v1
|
|
42
|
+
* @see proto type: injective.peggy.v1.OutgoingTransferTx
|
|
43
|
+
*/
|
|
29
44
|
export interface OutgoingTransferTx {
|
|
30
45
|
id: bigint;
|
|
31
46
|
sender: string;
|
|
@@ -37,7 +52,12 @@ export interface OutgoingTransferTxProtoMsg {
|
|
|
37
52
|
typeUrl: "/injective.peggy.v1.OutgoingTransferTx";
|
|
38
53
|
value: Uint8Array;
|
|
39
54
|
}
|
|
40
|
-
/**
|
|
55
|
+
/**
|
|
56
|
+
* OutgoingTransferTx represents an individual send from Peggy to ETH
|
|
57
|
+
* @name OutgoingTransferTxAmino
|
|
58
|
+
* @package injective.peggy.v1
|
|
59
|
+
* @see proto type: injective.peggy.v1.OutgoingTransferTx
|
|
60
|
+
*/
|
|
41
61
|
export interface OutgoingTransferTxAmino {
|
|
42
62
|
id: string;
|
|
43
63
|
sender: string;
|
|
@@ -49,6 +69,12 @@ export interface OutgoingTransferTxAminoMsg {
|
|
|
49
69
|
type: "/injective.peggy.v1.OutgoingTransferTx";
|
|
50
70
|
value: OutgoingTransferTxAmino;
|
|
51
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* OutgoingTxBatch represents a batch of transactions going from Peggy to ETH
|
|
74
|
+
* @name OutgoingTxBatch
|
|
75
|
+
* @package injective.peggy.v1
|
|
76
|
+
* @see proto type: injective.peggy.v1.OutgoingTxBatch
|
|
77
|
+
*/
|
|
52
78
|
export declare const OutgoingTxBatch: {
|
|
53
79
|
typeUrl: string;
|
|
54
80
|
is(o: any): o is OutgoingTxBatch;
|
|
@@ -64,6 +90,12 @@ export declare const OutgoingTxBatch: {
|
|
|
64
90
|
toProtoMsg(message: OutgoingTxBatch): OutgoingTxBatchProtoMsg;
|
|
65
91
|
registerTypeUrl(): void;
|
|
66
92
|
};
|
|
93
|
+
/**
|
|
94
|
+
* OutgoingTransferTx represents an individual send from Peggy to ETH
|
|
95
|
+
* @name OutgoingTransferTx
|
|
96
|
+
* @package injective.peggy.v1
|
|
97
|
+
* @see proto type: injective.peggy.v1.OutgoingTransferTx
|
|
98
|
+
*/
|
|
67
99
|
export declare const OutgoingTransferTx: {
|
|
68
100
|
typeUrl: string;
|
|
69
101
|
is(o: any): o is OutgoingTransferTx;
|
|
@@ -13,6 +13,12 @@ function createBaseOutgoingTxBatch() {
|
|
|
13
13
|
block: BigInt(0)
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* OutgoingTxBatch represents a batch of transactions going from Peggy to ETH
|
|
18
|
+
* @name OutgoingTxBatch
|
|
19
|
+
* @package injective.peggy.v1
|
|
20
|
+
* @see proto type: injective.peggy.v1.OutgoingTxBatch
|
|
21
|
+
*/
|
|
16
22
|
exports.OutgoingTxBatch = {
|
|
17
23
|
typeUrl: "/injective.peggy.v1.OutgoingTxBatch",
|
|
18
24
|
is(o) {
|
|
@@ -139,6 +145,12 @@ function createBaseOutgoingTransferTx() {
|
|
|
139
145
|
erc20Fee: undefined
|
|
140
146
|
};
|
|
141
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* OutgoingTransferTx represents an individual send from Peggy to ETH
|
|
150
|
+
* @name OutgoingTransferTx
|
|
151
|
+
* @package injective.peggy.v1
|
|
152
|
+
* @see proto type: injective.peggy.v1.OutgoingTransferTx
|
|
153
|
+
*/
|
|
142
154
|
exports.OutgoingTransferTx = {
|
|
143
155
|
typeUrl: "/injective.peggy.v1.OutgoingTransferTx",
|
|
144
156
|
is(o) {
|