@skip-go/client 0.7.0 → 0.8.1
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/dist/{chunk-IEAKY5XG.js → chunk-MVYCWIUE.js} +32 -6
- package/dist/index.d.ts +3 -3
- package/dist/index.js +191 -183
- package/dist/{shared-CpfDn0H3.d.ts → shared-CXij4l4y.d.ts} +23 -3
- package/dist/transactions.d.ts +1 -1
- package/dist/types.d.ts +5 -3
- package/dist/types.js +167 -159
- package/package.json +1 -1
|
@@ -656,6 +656,7 @@ type CCTPTransferJSON = {
|
|
|
656
656
|
denom_in: string;
|
|
657
657
|
denom_out: string;
|
|
658
658
|
smart_relay: boolean;
|
|
659
|
+
smart_relay_fee_quote: SmartRelayFeeQuoteJSON;
|
|
659
660
|
};
|
|
660
661
|
type CCTPTransfer = {
|
|
661
662
|
fromChainID: string;
|
|
@@ -665,6 +666,7 @@ type CCTPTransfer = {
|
|
|
665
666
|
denomIn: string;
|
|
666
667
|
denomOut: string;
|
|
667
668
|
smartRelay: boolean;
|
|
669
|
+
smartRelayFeeQuote: SmartRelayFeeQuote;
|
|
668
670
|
};
|
|
669
671
|
type HyperlaneTransferJSON = {
|
|
670
672
|
from_chain_id: string;
|
|
@@ -708,6 +710,20 @@ type OPInitTransfer = {
|
|
|
708
710
|
bridgeID: BridgeType;
|
|
709
711
|
smartRelay: boolean;
|
|
710
712
|
};
|
|
713
|
+
type SmartRelayFeeQuoteJSON = {
|
|
714
|
+
fee_amount: string;
|
|
715
|
+
relayer_address: string;
|
|
716
|
+
expiration: Date;
|
|
717
|
+
fee_payment_address: string;
|
|
718
|
+
fee_denom: string;
|
|
719
|
+
};
|
|
720
|
+
type SmartRelayFeeQuote = {
|
|
721
|
+
feeAmount: string;
|
|
722
|
+
relayerAddress: string;
|
|
723
|
+
expiration: Date;
|
|
724
|
+
feePaymentAddress: string;
|
|
725
|
+
feeDenom: string;
|
|
726
|
+
};
|
|
711
727
|
type SwapVenueJSON = {
|
|
712
728
|
name: string;
|
|
713
729
|
chain_id: string;
|
|
@@ -755,12 +771,14 @@ type SwapExactCoinInJSON = {
|
|
|
755
771
|
swap_operations: SwapOperationJSON[];
|
|
756
772
|
swap_amount_in?: string;
|
|
757
773
|
price_impact_percent?: string;
|
|
774
|
+
estimated_amount_out: string;
|
|
758
775
|
};
|
|
759
776
|
type SwapExactCoinIn = {
|
|
760
777
|
swapVenue: SwapVenue;
|
|
761
778
|
swapOperations: SwapOperation[];
|
|
762
779
|
swapAmountIn?: string;
|
|
763
780
|
priceImpactPercent?: string;
|
|
781
|
+
estimatedAmountOut: string;
|
|
764
782
|
};
|
|
765
783
|
type SwapRouteJSON = {
|
|
766
784
|
swap_amount_in: string;
|
|
@@ -775,10 +793,12 @@ type SwapRoute = {
|
|
|
775
793
|
type SmartSwapExactCoinInJSON = {
|
|
776
794
|
swap_venue: SwapVenueJSON;
|
|
777
795
|
swap_routes: SwapRouteJSON[];
|
|
796
|
+
estimated_amount_out: string;
|
|
778
797
|
};
|
|
779
798
|
type SmartSwapExactCoinIn = {
|
|
780
799
|
swapVenue: SwapVenue;
|
|
781
800
|
swapRoutes: SwapRoute[];
|
|
801
|
+
estimatedAmountOut: string;
|
|
782
802
|
};
|
|
783
803
|
type SwapJSON = ({
|
|
784
804
|
swap_in: SwapExactCoinInJSON;
|
|
@@ -842,7 +862,7 @@ type ChainAffiliatesJSON = {
|
|
|
842
862
|
type ChainAffiliates = {
|
|
843
863
|
affiliates: Affiliate[];
|
|
844
864
|
};
|
|
845
|
-
type Reason =
|
|
865
|
+
type Reason = 'UNKNOWN' | 'BASE_TOKEN' | 'MOST_LIQUID' | 'DIRECT';
|
|
846
866
|
type CosmWasmContractMsgJSON = {
|
|
847
867
|
contract_address: string;
|
|
848
868
|
msg: string;
|
|
@@ -851,7 +871,7 @@ type CosmWasmContractMsg = {
|
|
|
851
871
|
contractAddress: string;
|
|
852
872
|
msg: string;
|
|
853
873
|
};
|
|
854
|
-
type AutopilotAction =
|
|
874
|
+
type AutopilotAction = 'LIQUID_STAKE' | 'CLAIM';
|
|
855
875
|
type AutopilotMsg = {
|
|
856
876
|
receiver: string;
|
|
857
877
|
action: AutopilotAction;
|
|
@@ -944,4 +964,4 @@ type SmartSwapOptions = {
|
|
|
944
964
|
evmSwaps?: boolean;
|
|
945
965
|
};
|
|
946
966
|
|
|
947
|
-
export type {
|
|
967
|
+
export type { SwapRouteJSON as $, AssetsRequest as A, Bridge as B, CosmosMsg as C, DenomWithChainID as D, EvmTx as E, CCTPTransferJSON as F, CCTPTransfer as G, HyperlaneTransferJSON as H, IBCAddressJSON as I, HyperlaneTransfer as J, OPInitTransfer as K, SmartRelayFeeQuoteJSON as L, MultiChainMsg as M, SmartRelayFeeQuote as N, OPInitTransferJSON as O, SwapVenueJSON as P, SwapVenueRequestJSON as Q, RouteResponse as R, SvmTx as S, Tx as T, SwapVenueRequest as U, SwapOperationJSON as V, SwapOperation as W, SwapExactCoinOutJSON as X, SwapExactCoinOut as Y, SwapExactCoinInJSON as Z, SwapExactCoinIn as _, ChainAffiliates as a, TxJSON as a$, SwapRoute as a0, SmartSwapExactCoinInJSON as a1, SmartSwapExactCoinIn as a2, SwapJSON as a3, Swap as a4, EvmSwapJSON as a5, EvmSwap as a6, AffiliateJSON as a7, Affiliate as a8, ChainAffiliatesJSON as a9, RecommendAssetsRequest as aA, RecommendAssetsResponseJSON as aB, RecommendAssetsResponse as aC, RecommendationEntryJSON as aD, RouteRequestBaseJSON as aE, RouteRequestGivenInJSON as aF, RouteRequestGivenOutJSON as aG, RouteRequestJSON as aH, MsgsDirectResponseJSON as aI, RouteRequestBase as aJ, RouteRequestGivenIn as aK, RouteRequestGivenOut as aL, RouteWarningType as aM, MsgsWarningType as aN, ExperimentalFeature as aO, RouteWarning as aP, MsgsWarning as aQ, FeeType as aR, EstimatedFee as aS, EstimatedFeeJSON as aT, OperationJSON as aU, Operation as aV, RouteResponseJSON as aW, MsgsRequestJSON as aX, MsgsDirectRequestJSON as aY, MsgJSON as aZ, Msg as a_, Reason as aa, CosmWasmContractMsgJSON as ab, CosmWasmContractMsg as ac, AutopilotAction as ad, AutopilotMsg as ae, PostHandlerJSON as af, PostHandler as ag, ERC20ApprovalJSON as ah, ERC20Approval as ai, SvmTxJSON as aj, EvmTxJSON as ak, DenomWithChainIDJSON as al, ApiError as am, AssetOrErrorJSON as an, OriginAssetsRequestJSON as ao, OriginAssetsRequest as ap, OriginAssetsResponseJSON as aq, OriginAssetsResponse as ar, SmartSwapOptionsJSON as as, SmartSwapOptions as at, AssetsRequestJSON as au, AssetsFromSourceRequestJSON as av, AssetRecommendation as aw, AssetRecommendationJSON as ax, AssetRecommendationRequestJSON as ay, RecommendAssetsRequestJSON as az, Asset as b, MsgsResponseJSON as b0, BridgeType as b1, AssetBetweenChainsJSON as b2, AssetsBetweenChainsRequestJSON as b3, AssetsBetweenChainsResponseJSON as b4, AssetsBetweenChainsResponse as b5, BridgesResponseJSON as b6, BridgesResponse as b7, BridgeJSON as b8, AssetsFromSourceRequest as c, AssetsBetweenChainsRequest as d, AssetBetweenChains as e, MsgsRequest as f, MsgsResponse as g, RouteRequest as h, MsgsDirectRequest as i, MsgsDirectResponse as j, AssetRecommendationRequest as k, RecommendationEntry as l, AssetOrError as m, SwapVenue as n, IBCAddress as o, AssetJSON as p, TransferJSON as q, Transfer as r, AxelarTransferJSON as s, AxelarTransfer as t, BankSendJSON as u, BankSend as v, MultiChainMsgJSON as w, CosmosMsgJSON as x, CosmosTxJSON as y, CosmosTx as z };
|
package/dist/transactions.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EncodeObject } from '@cosmjs/proto-signing';
|
|
2
2
|
import { Msgs } from '@injectivelabs/sdk-ts/dist/cjs/core/modules/msgs';
|
|
3
|
-
import { C as CosmosMsg } from './shared-
|
|
3
|
+
import { C as CosmosMsg } from './shared-CXij4l4y.js';
|
|
4
4
|
import { SigningStargateClient } from '@cosmjs/stargate';
|
|
5
5
|
|
|
6
6
|
declare const DEFAULT_GAS_MULTIPLIER = 1.5;
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
1
|
+
import { a7 as AffiliateJSON, a8 as Affiliate, p as AssetJSON, b as Asset, ax as AssetRecommendationJSON, aw as AssetRecommendation, av as AssetsFromSourceRequestJSON, c as AssetsFromSourceRequest, au as AssetsRequestJSON, A as AssetsRequest, az as RecommendAssetsRequestJSON, aA as RecommendAssetsRequest, aB as RecommendAssetsResponseJSON, aC as RecommendAssetsResponse, aD as RecommendationEntryJSON, l as RecommendationEntry, aT as EstimatedFeeJSON, aS as EstimatedFee, P as SwapVenueJSON, n as SwapVenue, Q as SwapVenueRequestJSON, U as SwapVenueRequest, aH as RouteRequestJSON, h as RouteRequest, q as TransferJSON, r as Transfer, V as SwapOperationJSON, W as SwapOperation, $ as SwapRouteJSON, a0 as SwapRoute, Z as SwapExactCoinInJSON, _ as SwapExactCoinIn, a1 as SmartSwapExactCoinInJSON, a2 as SmartSwapExactCoinIn, X as SwapExactCoinOutJSON, Y as SwapExactCoinOut, a3 as SwapJSON, a4 as Swap, a5 as EvmSwapJSON, a6 as EvmSwap, aU as OperationJSON, aV as Operation, aW as RouteResponseJSON, R as RouteResponse, ab as CosmWasmContractMsgJSON, ac as CosmWasmContractMsg, af as PostHandlerJSON, ag as PostHandler, aX as MsgsRequestJSON, f as MsgsRequest, w as MultiChainMsgJSON, M as MultiChainMsg, x as CosmosMsgJSON, C as CosmosMsg, I as IBCAddressJSON, o as IBCAddress, s as AxelarTransferJSON, t as AxelarTransfer, u as BankSendJSON, v as BankSend, L as SmartRelayFeeQuoteJSON, N as SmartRelayFeeQuote, F as CCTPTransferJSON, G as CCTPTransfer, H as HyperlaneTransferJSON, J as HyperlaneTransfer, O as OPInitTransferJSON, K as OPInitTransfer, ah as ERC20ApprovalJSON, ai as ERC20Approval, aj as SvmTxJSON, S as SvmTx, ak as EvmTxJSON, E as EvmTx, y as CosmosTxJSON, z as CosmosTx, a$ as TxJSON, T as Tx, aZ as MsgJSON, a_ as Msg, b0 as MsgsResponseJSON, g as MsgsResponse, al as DenomWithChainIDJSON, D as DenomWithChainID, an as AssetOrErrorJSON, m as AssetOrError, ao as OriginAssetsRequestJSON, ap as OriginAssetsRequest, aq as OriginAssetsResponseJSON, ar as OriginAssetsResponse, b2 as AssetBetweenChainsJSON, e as AssetBetweenChains, b3 as AssetsBetweenChainsRequestJSON, d as AssetsBetweenChainsRequest, b4 as AssetsBetweenChainsResponseJSON, b5 as AssetsBetweenChainsResponse, ay as AssetRecommendationRequestJSON, k as AssetRecommendationRequest, b6 as BridgesResponseJSON, b7 as BridgesResponse, b8 as BridgeJSON, B as Bridge, aY as MsgsDirectRequestJSON, i as MsgsDirectRequest, as as SmartSwapOptionsJSON, at as SmartSwapOptions, a9 as ChainAffiliatesJSON, a as ChainAffiliates } from './shared-CXij4l4y.js';
|
|
2
|
+
export { am as ApiError, ad as AutopilotAction, ae as AutopilotMsg, b1 as BridgeType, aO as ExperimentalFeature, aR as FeeType, j as MsgsDirectResponse, aI as MsgsDirectResponseJSON, aQ as MsgsWarning, aN as MsgsWarningType, aa as Reason, aJ as RouteRequestBase, aE as RouteRequestBaseJSON, aK as RouteRequestGivenIn, aF as RouteRequestGivenInJSON, aL as RouteRequestGivenOut, aG as RouteRequestGivenOutJSON, aP as RouteWarning, aM as RouteWarningType } from './shared-CXij4l4y.js';
|
|
3
3
|
|
|
4
4
|
type SubmitTxRequestJSON = {
|
|
5
5
|
tx: string;
|
|
@@ -491,6 +491,8 @@ declare function axelarTransferFromJSON(axelarTransferJSON: AxelarTransferJSON):
|
|
|
491
491
|
declare function axelarTransferToJSON(axelarTransfer: AxelarTransfer): AxelarTransferJSON;
|
|
492
492
|
declare function bankSendFromJSON(value: BankSendJSON): BankSend;
|
|
493
493
|
declare function bankSendToJSON(value: BankSend): BankSendJSON;
|
|
494
|
+
declare function smartRelayFeeQuoteFromJSON(value: SmartRelayFeeQuoteJSON): SmartRelayFeeQuote;
|
|
495
|
+
declare function smartRelayFeeQuoteToJSON(value: SmartRelayFeeQuote): SmartRelayFeeQuoteJSON;
|
|
494
496
|
declare function cctpTransferFromJSON(value: CCTPTransferJSON): CCTPTransfer;
|
|
495
497
|
declare function cctpTransferToJSON(value: CCTPTransfer): CCTPTransferJSON;
|
|
496
498
|
declare function hyperlaneTransferFromJSON(value: HyperlaneTransferJSON): HyperlaneTransfer;
|
|
@@ -562,4 +564,4 @@ declare function chainIDsToAffiliatesMapToJSON(value: Record<string, ChainAffili
|
|
|
562
564
|
declare function chainAffiliatesFromJSON(value: ChainAffiliatesJSON): ChainAffiliates;
|
|
563
565
|
declare function chainAffiliatesToJSON(value: ChainAffiliates): ChainAffiliatesJSON;
|
|
564
566
|
|
|
565
|
-
export { type AcknowledgementError, Affiliate, AffiliateJSON, Asset, AssetBetweenChains, AssetBetweenChainsJSON, AssetJSON, AssetOrError, AssetOrErrorJSON, AssetRecommendation, AssetRecommendationJSON, AssetRecommendationRequest, AssetRecommendationRequestJSON, AssetsBetweenChainsRequest, AssetsBetweenChainsRequestJSON, AssetsBetweenChainsResponse, AssetsBetweenChainsResponseJSON, AssetsFromSourceRequest, AssetsFromSourceRequestJSON, AssetsRequest, AssetsRequestJSON, AxelarTransfer, type AxelarTransferInfo, type AxelarTransferInfoJSON, AxelarTransferJSON, type AxelarTransferState, type AxelarTransferTransactions, type AxelarTransferTransactionsJSON, type AxelarTransferType, BankSend, BankSendJSON, Bridge, BridgeJSON, BridgesResponse, BridgesResponseJSON, CCTPTransfer, type CCTPTransferInfo, type CCTPTransferInfoJSON, CCTPTransferJSON, type CCTPTransferState, type CCTPTransferTransactions, type CCTPTransferTransactionsJSON, type Chain, ChainAffiliates, ChainAffiliatesJSON, type ChainJSON, type ChainTransaction, type ChainTransactionJSON, type ContractCallWithTokenError, type ContractCallWithTokenErrorType, type ContractCallWithTokenTransactions, type ContractCallWithTokenTransactionsJSON, CosmWasmContractMsg, CosmWasmContractMsgJSON, CosmosMsg, CosmosMsgJSON, CosmosTx, CosmosTxJSON, DenomWithChainID, DenomWithChainIDJSON, ERC20Approval, ERC20ApprovalJSON, EstimatedFee, EstimatedFeeJSON, EvmSwap, EvmSwapJSON, EvmTx, EvmTxJSON, type FeeAsset, type FeeAssetJSON, type GasPriceInfo, HyperlaneTransfer, type HyperlaneTransferInfo, type HyperlaneTransferInfoJSON, HyperlaneTransferJSON, type HyperlaneTransferState, type HyperlaneTransferTransactions, type HyperlaneTransferTransactionsJSON, IBCAddress, IBCAddressJSON, type IbcCapabilities, type IbcCapabilitiesJSON, type ModuleSupport, type ModuleVersionInfo, Msg, MsgJSON, MsgsDirectRequest, MsgsDirectRequestJSON, MsgsRequest, MsgsRequestJSON, MsgsResponse, MsgsResponseJSON, MultiChainMsg, MultiChainMsgJSON, type NextBlockingTransfer, type NextBlockingTransferJSON, OPInitTransfer, type OPInitTransferInfo, type OPInitTransferInfoJSON, OPInitTransferJSON, type OPInitTransferState, type OPInitTransferTransactions, type OPInitTransferTransactionsJSON, Operation, OperationJSON, OriginAssetsRequest, OriginAssetsRequestJSON, OriginAssetsResponse, OriginAssetsResponseJSON, type Packet, type PacketError, type PacketErrorJSON, type PacketErrorType, type PacketJSON, PostHandler, PostHandlerJSON, RecommendAssetsRequest, RecommendAssetsRequestJSON, RecommendAssetsResponse, RecommendAssetsResponseJSON, RecommendationEntry, RecommendationEntryJSON, RouteRequest, RouteRequestJSON, RouteResponse, RouteResponseJSON, type SendTokenError, type SendTokenErrorType, type SendTokenTransactions, type SendTokenTransactionsJSON, SmartSwapExactCoinIn, SmartSwapExactCoinInJSON, SmartSwapOptions, SmartSwapOptionsJSON, type StatusError, type StatusErrorJSON, type StatusErrorType, type StatusRequest, type StatusRequestJSON, type StatusState, type SubmitTxRequest, type SubmitTxRequestJSON, type SubmitTxResponse, type SubmitTxResponseJSON, SvmTx, SvmTxJSON, Swap, SwapExactCoinIn, SwapExactCoinInJSON, SwapExactCoinOut, SwapExactCoinOutJSON, SwapJSON, SwapOperation, SwapOperationJSON, SwapRoute, SwapRouteJSON, SwapVenue, SwapVenueJSON, SwapVenueRequest, SwapVenueRequestJSON, type TrackTxRequest, type TrackTxRequestJSON, type TrackTxResponse, type TrackTxResponseJSON, type TransactionExecutionError, Transfer, type TransferAssetRelease, type TransferAssetReleaseJSON, type TransferEvent, type TransferEventJSON, type TransferInfo, type TransferInfoJSON, TransferJSON, type TransferState, type TransferStatus, type TransferStatusJSON, Tx, TxJSON, type TxStatusResponse, type TxStatusResponseJSON, type Venue, affiliateFromJSON, affiliateToJSON, assetBetweenChainsFromJSON, assetBetweenChainsToJSON, assetFromJSON, assetOrErrorFromJSON, assetOrErrorToJSON, assetRecommendationFromJSON, assetRecommendationRequestFromJSON, assetRecommendationRequestToJSON, assetRecommendationToJSON, assetToJSON, assetsBetweenChainsRequestFromJSON, assetsBetweenChainsRequestToJSON, assetsBetweenChainsResponseFromJSON, assetsFromSourceRequestFromJSON, assetsFromSourceRequestToJSON, assetsRequestFromJSON, assetsRequestToJSON, axelarTransferFromJSON, axelarTransferInfoFromJSON, axelarTransferInfoToJSON, axelarTransferToJSON, axelarTransferTransactionsFromJSON, axelarTransferTransactionsToJSON, bankSendFromJSON, bankSendToJSON, bridgeFromJSON, bridgeToJSON, bridgesResponseFromJSON, bridgesResponseToJSON, cctpTransferFromJSON, cctpTransferInfoFromJSON, cctpTransferInfoToJSON, cctpTransferToJSON, cctpTransferTransactionsFromJSON, cctpTransferTransactionsToJSON, chainAffiliatesFromJSON, chainAffiliatesToJSON, chainFromJSON, chainIDsToAffiliatesMapFromJSON, chainIDsToAffiliatesMapToJSON, chainToJSON, chainTransactionFromJSON, chainTransactionToJSON, contractCallWithTokenTransactionsFromJSON, contractCallWithTokenTransactionsToJSON, cosmWasmContractMsgFromJSON, cosmWasmContractMsgToJSON, cosmosMsgFromJSON, cosmosMsgToJSON, cosmosTxFromJSON, cosmosTxToJSON, denomWithChainIDFromJSON, denomWithChainIDToJSON, erc20ApprovalFromJSON, erc20ApprovalToJSON, estimatedFeeFromJSON, estimatedFeeToJSON, evmSwapFromJSON, evmSwapToJSON, evmTxFromJSON, evmTxToJSON, feeAssetFromJSON, feeAssetToJSON, hyperlaneTransferFromJSON, hyperlaneTransferInfoFromJSON, hyperlaneTransferInfoToJSON, hyperlaneTransferToJSON, hyperlaneTransferTransactionsFromJSON, hyperlaneTransferTransactionsToJSON, ibcAddressFromJSON, ibcAddressToJSON, ibcCapabilitiesFromJSON, ibcCapabilitiesToJSON, messageResponseFromJSON, msgFromJSON, msgToJSON, msgsDirectRequestFromJSON, msgsDirectRequestToJSON, msgsRequestFromJSON, msgsRequestToJSON, multiChainMsgFromJSON, multiChainMsgToJSON, nextBlockingTransferFromJSON, nextBlockingTransferToJSON, opInitTransferFromJSON, opInitTransferInfoFromJSON, opInitTransferInfoToJSON, opInitTransferToJSON, opInitTransferTransactionsFromJSON, opInitTransferTransactionsToJSON, operationFromJSON, operationToJSON, originAssetsRequestFromJSON, originAssetsRequestToJSON, originAssetsResponseFromJSON, originAssetsResponseToJSON, packetFromJSON, packetToJSON, postHandlerFromJSON, postHandlerToJSON, recommendAssetsRequestFromJSON, recommendAssetsRequestToJSON, recommendAssetsResponseFromJSON, recommendAssetsResponseToJSON, recommendationEntryFromJSON, recommendationEntryToJSON, routeRequestFromJSON, routeRequestToJSON, routeResponseFromJSON, routeResponseToJSON, sendTokenTransactionsFromJSON, sendTokenTransactionsToJSON, smartSwapExactCoinInFromJSON, smartSwapExactCoinInToJSON, smartSwapOptionsFromJSON, smartSwapOptionsToJSON, submitTxRequestFromJSON, submitTxRequestToJSON, submitTxResponseFromJSON, submitTxResponseToJSON, svmTxFromJSON, svmTxToJSON, swapExactCoinInFromJSON, swapExactCoinInToJSON, swapExactCoinOutFromJSON, swapExactCoinOutToJSON, swapFromJSON, swapOperationFromJSON, swapOperationToJSON, swapRouteFromJSON, swapRouteToJSON, swapToJSON, swapVenueFromJSON, swapVenueRequestFromJSON, swapVenueRequestToJSON, swapVenueToJSON, trackTxRequestFromJSON, trackTxRequestToJSON, trackTxResponseFromJSON, trackTxResponseToJSON, transferAssetReleaseFromJSON, transferAssetReleaseToJSON, transferEventFromJSON, transferEventToJSON, transferFromJSON, transferInfoFromJSON, transferInfoToJSON, transferStatusFromJSON, transferStatusToJSON, transferToJSON, txFromJSON, txStatusRequestFromJSON, txStatusRequestToJSON, txStatusResponseFromJSON, txStatusResponseToJSON, txToJSON };
|
|
567
|
+
export { type AcknowledgementError, Affiliate, AffiliateJSON, Asset, AssetBetweenChains, AssetBetweenChainsJSON, AssetJSON, AssetOrError, AssetOrErrorJSON, AssetRecommendation, AssetRecommendationJSON, AssetRecommendationRequest, AssetRecommendationRequestJSON, AssetsBetweenChainsRequest, AssetsBetweenChainsRequestJSON, AssetsBetweenChainsResponse, AssetsBetweenChainsResponseJSON, AssetsFromSourceRequest, AssetsFromSourceRequestJSON, AssetsRequest, AssetsRequestJSON, AxelarTransfer, type AxelarTransferInfo, type AxelarTransferInfoJSON, AxelarTransferJSON, type AxelarTransferState, type AxelarTransferTransactions, type AxelarTransferTransactionsJSON, type AxelarTransferType, BankSend, BankSendJSON, Bridge, BridgeJSON, BridgesResponse, BridgesResponseJSON, CCTPTransfer, type CCTPTransferInfo, type CCTPTransferInfoJSON, CCTPTransferJSON, type CCTPTransferState, type CCTPTransferTransactions, type CCTPTransferTransactionsJSON, type Chain, ChainAffiliates, ChainAffiliatesJSON, type ChainJSON, type ChainTransaction, type ChainTransactionJSON, type ContractCallWithTokenError, type ContractCallWithTokenErrorType, type ContractCallWithTokenTransactions, type ContractCallWithTokenTransactionsJSON, CosmWasmContractMsg, CosmWasmContractMsgJSON, CosmosMsg, CosmosMsgJSON, CosmosTx, CosmosTxJSON, DenomWithChainID, DenomWithChainIDJSON, ERC20Approval, ERC20ApprovalJSON, EstimatedFee, EstimatedFeeJSON, EvmSwap, EvmSwapJSON, EvmTx, EvmTxJSON, type FeeAsset, type FeeAssetJSON, type GasPriceInfo, HyperlaneTransfer, type HyperlaneTransferInfo, type HyperlaneTransferInfoJSON, HyperlaneTransferJSON, type HyperlaneTransferState, type HyperlaneTransferTransactions, type HyperlaneTransferTransactionsJSON, IBCAddress, IBCAddressJSON, type IbcCapabilities, type IbcCapabilitiesJSON, type ModuleSupport, type ModuleVersionInfo, Msg, MsgJSON, MsgsDirectRequest, MsgsDirectRequestJSON, MsgsRequest, MsgsRequestJSON, MsgsResponse, MsgsResponseJSON, MultiChainMsg, MultiChainMsgJSON, type NextBlockingTransfer, type NextBlockingTransferJSON, OPInitTransfer, type OPInitTransferInfo, type OPInitTransferInfoJSON, OPInitTransferJSON, type OPInitTransferState, type OPInitTransferTransactions, type OPInitTransferTransactionsJSON, Operation, OperationJSON, OriginAssetsRequest, OriginAssetsRequestJSON, OriginAssetsResponse, OriginAssetsResponseJSON, type Packet, type PacketError, type PacketErrorJSON, type PacketErrorType, type PacketJSON, PostHandler, PostHandlerJSON, RecommendAssetsRequest, RecommendAssetsRequestJSON, RecommendAssetsResponse, RecommendAssetsResponseJSON, RecommendationEntry, RecommendationEntryJSON, RouteRequest, RouteRequestJSON, RouteResponse, RouteResponseJSON, type SendTokenError, type SendTokenErrorType, type SendTokenTransactions, type SendTokenTransactionsJSON, SmartRelayFeeQuote, SmartRelayFeeQuoteJSON, SmartSwapExactCoinIn, SmartSwapExactCoinInJSON, SmartSwapOptions, SmartSwapOptionsJSON, type StatusError, type StatusErrorJSON, type StatusErrorType, type StatusRequest, type StatusRequestJSON, type StatusState, type SubmitTxRequest, type SubmitTxRequestJSON, type SubmitTxResponse, type SubmitTxResponseJSON, SvmTx, SvmTxJSON, Swap, SwapExactCoinIn, SwapExactCoinInJSON, SwapExactCoinOut, SwapExactCoinOutJSON, SwapJSON, SwapOperation, SwapOperationJSON, SwapRoute, SwapRouteJSON, SwapVenue, SwapVenueJSON, SwapVenueRequest, SwapVenueRequestJSON, type TrackTxRequest, type TrackTxRequestJSON, type TrackTxResponse, type TrackTxResponseJSON, type TransactionExecutionError, Transfer, type TransferAssetRelease, type TransferAssetReleaseJSON, type TransferEvent, type TransferEventJSON, type TransferInfo, type TransferInfoJSON, TransferJSON, type TransferState, type TransferStatus, type TransferStatusJSON, Tx, TxJSON, type TxStatusResponse, type TxStatusResponseJSON, type Venue, affiliateFromJSON, affiliateToJSON, assetBetweenChainsFromJSON, assetBetweenChainsToJSON, assetFromJSON, assetOrErrorFromJSON, assetOrErrorToJSON, assetRecommendationFromJSON, assetRecommendationRequestFromJSON, assetRecommendationRequestToJSON, assetRecommendationToJSON, assetToJSON, assetsBetweenChainsRequestFromJSON, assetsBetweenChainsRequestToJSON, assetsBetweenChainsResponseFromJSON, assetsFromSourceRequestFromJSON, assetsFromSourceRequestToJSON, assetsRequestFromJSON, assetsRequestToJSON, axelarTransferFromJSON, axelarTransferInfoFromJSON, axelarTransferInfoToJSON, axelarTransferToJSON, axelarTransferTransactionsFromJSON, axelarTransferTransactionsToJSON, bankSendFromJSON, bankSendToJSON, bridgeFromJSON, bridgeToJSON, bridgesResponseFromJSON, bridgesResponseToJSON, cctpTransferFromJSON, cctpTransferInfoFromJSON, cctpTransferInfoToJSON, cctpTransferToJSON, cctpTransferTransactionsFromJSON, cctpTransferTransactionsToJSON, chainAffiliatesFromJSON, chainAffiliatesToJSON, chainFromJSON, chainIDsToAffiliatesMapFromJSON, chainIDsToAffiliatesMapToJSON, chainToJSON, chainTransactionFromJSON, chainTransactionToJSON, contractCallWithTokenTransactionsFromJSON, contractCallWithTokenTransactionsToJSON, cosmWasmContractMsgFromJSON, cosmWasmContractMsgToJSON, cosmosMsgFromJSON, cosmosMsgToJSON, cosmosTxFromJSON, cosmosTxToJSON, denomWithChainIDFromJSON, denomWithChainIDToJSON, erc20ApprovalFromJSON, erc20ApprovalToJSON, estimatedFeeFromJSON, estimatedFeeToJSON, evmSwapFromJSON, evmSwapToJSON, evmTxFromJSON, evmTxToJSON, feeAssetFromJSON, feeAssetToJSON, hyperlaneTransferFromJSON, hyperlaneTransferInfoFromJSON, hyperlaneTransferInfoToJSON, hyperlaneTransferToJSON, hyperlaneTransferTransactionsFromJSON, hyperlaneTransferTransactionsToJSON, ibcAddressFromJSON, ibcAddressToJSON, ibcCapabilitiesFromJSON, ibcCapabilitiesToJSON, messageResponseFromJSON, msgFromJSON, msgToJSON, msgsDirectRequestFromJSON, msgsDirectRequestToJSON, msgsRequestFromJSON, msgsRequestToJSON, multiChainMsgFromJSON, multiChainMsgToJSON, nextBlockingTransferFromJSON, nextBlockingTransferToJSON, opInitTransferFromJSON, opInitTransferInfoFromJSON, opInitTransferInfoToJSON, opInitTransferToJSON, opInitTransferTransactionsFromJSON, opInitTransferTransactionsToJSON, operationFromJSON, operationToJSON, originAssetsRequestFromJSON, originAssetsRequestToJSON, originAssetsResponseFromJSON, originAssetsResponseToJSON, packetFromJSON, packetToJSON, postHandlerFromJSON, postHandlerToJSON, recommendAssetsRequestFromJSON, recommendAssetsRequestToJSON, recommendAssetsResponseFromJSON, recommendAssetsResponseToJSON, recommendationEntryFromJSON, recommendationEntryToJSON, routeRequestFromJSON, routeRequestToJSON, routeResponseFromJSON, routeResponseToJSON, sendTokenTransactionsFromJSON, sendTokenTransactionsToJSON, smartRelayFeeQuoteFromJSON, smartRelayFeeQuoteToJSON, smartSwapExactCoinInFromJSON, smartSwapExactCoinInToJSON, smartSwapOptionsFromJSON, smartSwapOptionsToJSON, submitTxRequestFromJSON, submitTxRequestToJSON, submitTxResponseFromJSON, submitTxResponseToJSON, svmTxFromJSON, svmTxToJSON, swapExactCoinInFromJSON, swapExactCoinInToJSON, swapExactCoinOutFromJSON, swapExactCoinOutToJSON, swapFromJSON, swapOperationFromJSON, swapOperationToJSON, swapRouteFromJSON, swapRouteToJSON, swapToJSON, swapVenueFromJSON, swapVenueRequestFromJSON, swapVenueRequestToJSON, swapVenueToJSON, trackTxRequestFromJSON, trackTxRequestToJSON, trackTxResponseFromJSON, trackTxResponseToJSON, transferAssetReleaseFromJSON, transferAssetReleaseToJSON, transferEventFromJSON, transferEventToJSON, transferFromJSON, transferInfoFromJSON, transferInfoToJSON, transferStatusFromJSON, transferStatusToJSON, transferToJSON, txFromJSON, txStatusRequestFromJSON, txStatusRequestToJSON, txStatusResponseFromJSON, txStatusResponseToJSON, txToJSON };
|