@skip-go/client 0.7.0 → 0.8.0

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.
@@ -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;
@@ -842,7 +858,7 @@ type ChainAffiliatesJSON = {
842
858
  type ChainAffiliates = {
843
859
  affiliates: Affiliate[];
844
860
  };
845
- type Reason = "UNKNOWN" | "BASE_TOKEN" | "MOST_LIQUID" | "DIRECT";
861
+ type Reason = 'UNKNOWN' | 'BASE_TOKEN' | 'MOST_LIQUID' | 'DIRECT';
846
862
  type CosmWasmContractMsgJSON = {
847
863
  contract_address: string;
848
864
  msg: string;
@@ -851,7 +867,7 @@ type CosmWasmContractMsg = {
851
867
  contractAddress: string;
852
868
  msg: string;
853
869
  };
854
- type AutopilotAction = "LIQUID_STAKE" | "CLAIM";
870
+ type AutopilotAction = 'LIQUID_STAKE' | 'CLAIM';
855
871
  type AutopilotMsg = {
856
872
  receiver: string;
857
873
  action: AutopilotAction;
@@ -944,4 +960,4 @@ type SmartSwapOptions = {
944
960
  evmSwaps?: boolean;
945
961
  };
946
962
 
947
- export type { SmartSwapExactCoinInJSON 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, SwapVenueJSON as L, MultiChainMsg as M, SwapVenueRequestJSON as N, OPInitTransferJSON as O, SwapVenueRequest as P, SwapOperationJSON as Q, RouteResponse as R, SvmTx as S, Tx as T, SwapOperation as U, SwapExactCoinOutJSON as V, SwapExactCoinOut as W, SwapExactCoinInJSON as X, SwapExactCoinIn as Y, SwapRouteJSON as Z, SwapRoute as _, ChainAffiliates as a, BridgeType as a$, SmartSwapExactCoinIn as a0, SwapJSON as a1, Swap as a2, EvmSwapJSON as a3, EvmSwap as a4, AffiliateJSON as a5, Affiliate as a6, ChainAffiliatesJSON as a7, Reason as a8, CosmWasmContractMsgJSON as a9, RecommendAssetsResponse as aA, RecommendationEntryJSON as aB, RouteRequestBaseJSON as aC, RouteRequestGivenInJSON as aD, RouteRequestGivenOutJSON as aE, RouteRequestJSON as aF, MsgsDirectResponseJSON as aG, RouteRequestBase as aH, RouteRequestGivenIn as aI, RouteRequestGivenOut as aJ, RouteWarningType as aK, MsgsWarningType as aL, ExperimentalFeature as aM, RouteWarning as aN, MsgsWarning as aO, FeeType as aP, EstimatedFee as aQ, EstimatedFeeJSON as aR, OperationJSON as aS, Operation as aT, RouteResponseJSON as aU, MsgsRequestJSON as aV, MsgsDirectRequestJSON as aW, MsgJSON as aX, Msg as aY, TxJSON as aZ, MsgsResponseJSON as a_, CosmWasmContractMsg as aa, AutopilotAction as ab, AutopilotMsg as ac, PostHandlerJSON as ad, PostHandler as ae, ERC20ApprovalJSON as af, ERC20Approval as ag, SvmTxJSON as ah, EvmTxJSON as ai, DenomWithChainIDJSON as aj, ApiError as ak, AssetOrErrorJSON as al, OriginAssetsRequestJSON as am, OriginAssetsRequest as an, OriginAssetsResponseJSON as ao, OriginAssetsResponse as ap, SmartSwapOptionsJSON as aq, SmartSwapOptions as ar, AssetsRequestJSON as as, AssetsFromSourceRequestJSON as at, AssetRecommendation as au, AssetRecommendationJSON as av, AssetRecommendationRequestJSON as aw, RecommendAssetsRequestJSON as ax, RecommendAssetsRequest as ay, RecommendAssetsResponseJSON as az, Asset as b, AssetBetweenChainsJSON as b0, AssetsBetweenChainsRequestJSON as b1, AssetsBetweenChainsResponseJSON as b2, AssetsBetweenChainsResponse as b3, BridgesResponseJSON as b4, BridgesResponse as b5, BridgeJSON as b6, 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 };
963
+ 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 };
@@ -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-CpfDn0H3.js';
3
+ import { C as CosmosMsg } from './shared-D1dMlI_1.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 { a5 as AffiliateJSON, a6 as Affiliate, p as AssetJSON, b as Asset, av as AssetRecommendationJSON, au as AssetRecommendation, at as AssetsFromSourceRequestJSON, c as AssetsFromSourceRequest, as as AssetsRequestJSON, A as AssetsRequest, ax as RecommendAssetsRequestJSON, ay as RecommendAssetsRequest, az as RecommendAssetsResponseJSON, aA as RecommendAssetsResponse, aB as RecommendationEntryJSON, l as RecommendationEntry, aR as EstimatedFeeJSON, aQ as EstimatedFee, L as SwapVenueJSON, n as SwapVenue, N as SwapVenueRequestJSON, P as SwapVenueRequest, aF as RouteRequestJSON, h as RouteRequest, q as TransferJSON, r as Transfer, Q as SwapOperationJSON, U as SwapOperation, Z as SwapRouteJSON, _ as SwapRoute, X as SwapExactCoinInJSON, Y as SwapExactCoinIn, $ as SmartSwapExactCoinInJSON, a0 as SmartSwapExactCoinIn, V as SwapExactCoinOutJSON, W as SwapExactCoinOut, a1 as SwapJSON, a2 as Swap, a3 as EvmSwapJSON, a4 as EvmSwap, aS as OperationJSON, aT as Operation, aU as RouteResponseJSON, R as RouteResponse, a9 as CosmWasmContractMsgJSON, aa as CosmWasmContractMsg, ad as PostHandlerJSON, ae as PostHandler, aV 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, F as CCTPTransferJSON, G as CCTPTransfer, H as HyperlaneTransferJSON, J as HyperlaneTransfer, O as OPInitTransferJSON, K as OPInitTransfer, af as ERC20ApprovalJSON, ag as ERC20Approval, ah as SvmTxJSON, S as SvmTx, ai as EvmTxJSON, E as EvmTx, y as CosmosTxJSON, z as CosmosTx, aZ as TxJSON, T as Tx, aX as MsgJSON, aY as Msg, a_ as MsgsResponseJSON, g as MsgsResponse, aj as DenomWithChainIDJSON, D as DenomWithChainID, al as AssetOrErrorJSON, m as AssetOrError, am as OriginAssetsRequestJSON, an as OriginAssetsRequest, ao as OriginAssetsResponseJSON, ap as OriginAssetsResponse, b0 as AssetBetweenChainsJSON, e as AssetBetweenChains, b1 as AssetsBetweenChainsRequestJSON, d as AssetsBetweenChainsRequest, b2 as AssetsBetweenChainsResponseJSON, b3 as AssetsBetweenChainsResponse, aw as AssetRecommendationRequestJSON, k as AssetRecommendationRequest, b4 as BridgesResponseJSON, b5 as BridgesResponse, b6 as BridgeJSON, B as Bridge, aW as MsgsDirectRequestJSON, i as MsgsDirectRequest, aq as SmartSwapOptionsJSON, ar as SmartSwapOptions, a7 as ChainAffiliatesJSON, a as ChainAffiliates } from './shared-CpfDn0H3.js';
2
- export { ak as ApiError, ab as AutopilotAction, ac as AutopilotMsg, a$ as BridgeType, aM as ExperimentalFeature, aP as FeeType, j as MsgsDirectResponse, aG as MsgsDirectResponseJSON, aO as MsgsWarning, aL as MsgsWarningType, a8 as Reason, aH as RouteRequestBase, aC as RouteRequestBaseJSON, aI as RouteRequestGivenIn, aD as RouteRequestGivenInJSON, aJ as RouteRequestGivenOut, aE as RouteRequestGivenOutJSON, aN as RouteWarning, aK as RouteWarningType } from './shared-CpfDn0H3.js';
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-D1dMlI_1.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-D1dMlI_1.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 };