@skip-go/client 0.8.2 → 0.9.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.
@@ -467,6 +467,60 @@ type AssetsBetweenChainsResponseJSON = {
467
467
  type AssetsBetweenChainsResponse = {
468
468
  assetsBetweenChains: AssetBetweenChains[];
469
469
  };
470
+ type BalanceRequestChainEntryJSON = {
471
+ address: string;
472
+ denoms: string[];
473
+ };
474
+ type BalanceRequestChainEntry = {
475
+ address: string;
476
+ denoms: string[];
477
+ };
478
+ type BalanceRequestJSON = {
479
+ chains: {
480
+ [chain: string]: BalanceRequestChainEntryJSON;
481
+ };
482
+ };
483
+ type BalanceRequest = {
484
+ chains: {
485
+ [chain: string]: BalanceRequestChainEntry;
486
+ };
487
+ };
488
+ type BalanceResponseDenomEntryJSON = {
489
+ amount: string;
490
+ decimals?: number;
491
+ formatted_amount: string;
492
+ price?: string;
493
+ value_usd?: string;
494
+ error?: ApiError;
495
+ };
496
+ type BalanceResponseDenomEntry = {
497
+ amount: string;
498
+ decimals?: number;
499
+ formattedAmount: string;
500
+ price?: string;
501
+ valueUSD?: string;
502
+ error?: ApiError;
503
+ };
504
+ type BalanceResponseChainEntryJSON = {
505
+ denoms: {
506
+ [denom: string]: BalanceResponseDenomEntryJSON;
507
+ };
508
+ };
509
+ type BalanceResponseChainEntry = {
510
+ denoms: {
511
+ [denom: string]: BalanceResponseDenomEntry;
512
+ };
513
+ };
514
+ type BalanceResponseJSON = {
515
+ chains: {
516
+ [chain: string]: BalanceResponseChainEntryJSON;
517
+ };
518
+ };
519
+ type BalanceResponse = {
520
+ chains: {
521
+ [chain: string]: BalanceResponseChainEntry;
522
+ };
523
+ };
470
524
  type BridgesResponseJSON = {
471
525
  bridges: BridgeJSON[];
472
526
  };
@@ -964,4 +1018,4 @@ type SmartSwapOptions = {
964
1018
  evmSwaps?: boolean;
965
1019
  };
966
1020
 
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 };
1021
+ export type { SwapExactCoinInJSON as $, AssetsRequest as A, Bridge as B, CosmosMsg as C, DenomWithChainID as D, EvmTx as E, CosmosTxJSON as F, CosmosTx as G, CCTPTransferJSON as H, IBCAddressJSON as I, CCTPTransfer as J, HyperlaneTransferJSON as K, HyperlaneTransfer as L, MultiChainMsg as M, OPInitTransfer as N, OPInitTransferJSON as O, SmartRelayFeeQuoteJSON as P, SmartRelayFeeQuote as Q, RouteResponse as R, SvmTx as S, Tx as T, SwapVenueJSON as U, SwapVenueRequestJSON as V, SwapVenueRequest as W, SwapOperationJSON as X, SwapOperation as Y, SwapExactCoinOutJSON as Z, SwapExactCoinOut as _, ChainAffiliates as a, MsgJSON as a$, SwapExactCoinIn as a0, SwapRouteJSON as a1, SwapRoute as a2, SmartSwapExactCoinInJSON as a3, SmartSwapExactCoinIn as a4, SwapJSON as a5, Swap as a6, EvmSwapJSON as a7, EvmSwap as a8, AffiliateJSON as a9, AssetRecommendationRequestJSON as aA, RecommendAssetsRequestJSON as aB, RecommendAssetsRequest as aC, RecommendAssetsResponseJSON as aD, RecommendAssetsResponse as aE, RecommendationEntryJSON as aF, RouteRequestBaseJSON as aG, RouteRequestGivenInJSON as aH, RouteRequestGivenOutJSON as aI, RouteRequestJSON as aJ, MsgsDirectResponseJSON as aK, RouteRequestBase as aL, RouteRequestGivenIn as aM, RouteRequestGivenOut as aN, RouteWarningType as aO, MsgsWarningType as aP, ExperimentalFeature as aQ, RouteWarning as aR, MsgsWarning as aS, FeeType as aT, EstimatedFee as aU, EstimatedFeeJSON as aV, OperationJSON as aW, Operation as aX, RouteResponseJSON as aY, MsgsRequestJSON as aZ, MsgsDirectRequestJSON as a_, Affiliate as aa, ChainAffiliatesJSON as ab, Reason as ac, CosmWasmContractMsgJSON as ad, CosmWasmContractMsg as ae, AutopilotAction as af, AutopilotMsg as ag, PostHandlerJSON as ah, PostHandler as ai, ERC20ApprovalJSON as aj, ERC20Approval as ak, SvmTxJSON as al, EvmTxJSON as am, DenomWithChainIDJSON as an, ApiError as ao, AssetOrErrorJSON as ap, OriginAssetsRequestJSON as aq, OriginAssetsRequest as ar, OriginAssetsResponseJSON as as, OriginAssetsResponse as at, SmartSwapOptionsJSON as au, SmartSwapOptions as av, AssetsRequestJSON as aw, AssetsFromSourceRequestJSON as ax, AssetRecommendation as ay, AssetRecommendationJSON as az, Asset as b, Msg as b0, TxJSON as b1, MsgsResponseJSON as b2, BridgeType as b3, AssetBetweenChainsJSON as b4, AssetsBetweenChainsRequestJSON as b5, AssetsBetweenChainsResponseJSON as b6, AssetsBetweenChainsResponse as b7, BalanceRequestChainEntryJSON as b8, BalanceRequestChainEntry as b9, BalanceRequestJSON as ba, BalanceResponseDenomEntryJSON as bb, BalanceResponseDenomEntry as bc, BalanceResponseChainEntryJSON as bd, BalanceResponseChainEntry as be, BalanceResponseJSON as bf, BridgesResponseJSON as bg, BridgesResponse as bh, BridgeJSON as bi, AssetsFromSourceRequest as c, AssetsBetweenChainsRequest as d, AssetBetweenChains as e, BalanceRequest as f, BalanceResponse as g, MsgsRequest as h, MsgsResponse as i, RouteRequest as j, MsgsDirectRequest as k, MsgsDirectResponse as l, AssetRecommendationRequest as m, RecommendationEntry as n, AssetOrError as o, SwapVenue as p, IBCAddress as q, AssetJSON as r, TransferJSON as s, Transfer as t, AxelarTransferJSON as u, AxelarTransfer as v, BankSendJSON as w, BankSend as x, MultiChainMsgJSON as y, CosmosMsgJSON 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-CXij4l4y.js';
3
+ import { C as CosmosMsg } from './shared-DxdVuIaC.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 { 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';
1
+ import { a9 as AffiliateJSON, aa as Affiliate, r as AssetJSON, b as Asset, az as AssetRecommendationJSON, ay as AssetRecommendation, ax as AssetsFromSourceRequestJSON, c as AssetsFromSourceRequest, aw as AssetsRequestJSON, A as AssetsRequest, aB as RecommendAssetsRequestJSON, aC as RecommendAssetsRequest, aD as RecommendAssetsResponseJSON, aE as RecommendAssetsResponse, aF as RecommendationEntryJSON, n as RecommendationEntry, aV as EstimatedFeeJSON, aU as EstimatedFee, U as SwapVenueJSON, p as SwapVenue, V as SwapVenueRequestJSON, W as SwapVenueRequest, aJ as RouteRequestJSON, j as RouteRequest, s as TransferJSON, t as Transfer, X as SwapOperationJSON, Y as SwapOperation, a1 as SwapRouteJSON, a2 as SwapRoute, $ as SwapExactCoinInJSON, a0 as SwapExactCoinIn, a3 as SmartSwapExactCoinInJSON, a4 as SmartSwapExactCoinIn, Z as SwapExactCoinOutJSON, _ as SwapExactCoinOut, a5 as SwapJSON, a6 as Swap, a7 as EvmSwapJSON, a8 as EvmSwap, aW as OperationJSON, aX as Operation, aY as RouteResponseJSON, R as RouteResponse, ad as CosmWasmContractMsgJSON, ae as CosmWasmContractMsg, ah as PostHandlerJSON, ai as PostHandler, aZ as MsgsRequestJSON, h as MsgsRequest, y as MultiChainMsgJSON, M as MultiChainMsg, z as CosmosMsgJSON, C as CosmosMsg, I as IBCAddressJSON, q as IBCAddress, u as AxelarTransferJSON, v as AxelarTransfer, w as BankSendJSON, x as BankSend, P as SmartRelayFeeQuoteJSON, Q as SmartRelayFeeQuote, H as CCTPTransferJSON, J as CCTPTransfer, K as HyperlaneTransferJSON, L as HyperlaneTransfer, O as OPInitTransferJSON, N as OPInitTransfer, aj as ERC20ApprovalJSON, ak as ERC20Approval, al as SvmTxJSON, S as SvmTx, am as EvmTxJSON, E as EvmTx, F as CosmosTxJSON, G as CosmosTx, b1 as TxJSON, T as Tx, a$ as MsgJSON, b0 as Msg, b2 as MsgsResponseJSON, i as MsgsResponse, an as DenomWithChainIDJSON, D as DenomWithChainID, ap as AssetOrErrorJSON, o as AssetOrError, aq as OriginAssetsRequestJSON, ar as OriginAssetsRequest, as as OriginAssetsResponseJSON, at as OriginAssetsResponse, b4 as AssetBetweenChainsJSON, e as AssetBetweenChains, b5 as AssetsBetweenChainsRequestJSON, d as AssetsBetweenChainsRequest, b6 as AssetsBetweenChainsResponseJSON, b7 as AssetsBetweenChainsResponse, aA as AssetRecommendationRequestJSON, m as AssetRecommendationRequest, bg as BridgesResponseJSON, bh as BridgesResponse, bi as BridgeJSON, B as Bridge, a_ as MsgsDirectRequestJSON, k as MsgsDirectRequest, au as SmartSwapOptionsJSON, av as SmartSwapOptions, ab as ChainAffiliatesJSON, a as ChainAffiliates, b8 as BalanceRequestChainEntryJSON, b9 as BalanceRequestChainEntry, ba as BalanceRequestJSON, f as BalanceRequest, bb as BalanceResponseDenomEntryJSON, bc as BalanceResponseDenomEntry, bd as BalanceResponseChainEntryJSON, be as BalanceResponseChainEntry, bf as BalanceResponseJSON, g as BalanceResponse } from './shared-DxdVuIaC.js';
2
+ export { ao as ApiError, af as AutopilotAction, ag as AutopilotMsg, b3 as BridgeType, aQ as ExperimentalFeature, aT as FeeType, l as MsgsDirectResponse, aK as MsgsDirectResponseJSON, aS as MsgsWarning, aP as MsgsWarningType, ac as Reason, aL as RouteRequestBase, aG as RouteRequestBaseJSON, aM as RouteRequestGivenIn, aH as RouteRequestGivenInJSON, aN as RouteRequestGivenOut, aI as RouteRequestGivenOutJSON, aR as RouteWarning, aO as RouteWarningType } from './shared-DxdVuIaC.js';
3
3
 
4
4
  type SubmitTxRequestJSON = {
5
5
  tx: string;
@@ -563,5 +563,15 @@ declare function chainIDsToAffiliatesMapFromJSON(value: Record<string, ChainAffi
563
563
  declare function chainIDsToAffiliatesMapToJSON(value: Record<string, ChainAffiliates>): Record<string, ChainAffiliatesJSON>;
564
564
  declare function chainAffiliatesFromJSON(value: ChainAffiliatesJSON): ChainAffiliates;
565
565
  declare function chainAffiliatesToJSON(value: ChainAffiliates): ChainAffiliatesJSON;
566
+ declare function balanceRequestChainEntryFromJSON(value: BalanceRequestChainEntryJSON): BalanceRequestChainEntry;
567
+ declare function balanceRequestChainEntryToJSON(value: BalanceRequestChainEntry): BalanceRequestChainEntryJSON;
568
+ declare function balanceRequestFromJSON(value: BalanceRequestJSON): BalanceRequest;
569
+ declare function balanceRequestToJSON(value: BalanceRequest): BalanceRequestJSON;
570
+ declare function balanceResponseDenomEntryFromJSON(value: BalanceResponseDenomEntryJSON): BalanceResponseDenomEntry;
571
+ declare function balanceResponseDenomEntryToJSON(value: BalanceResponseDenomEntry): BalanceResponseDenomEntryJSON;
572
+ declare function balanceResponseChainEntryFromJSON(value: BalanceResponseChainEntryJSON): BalanceResponseChainEntry;
573
+ declare function balanceResponseChainEntryToJSON(value: BalanceResponseChainEntry): BalanceResponseChainEntryJSON;
574
+ declare function balanceResponseFromJSON(value: BalanceResponseJSON): BalanceResponse;
575
+ declare function balanceResponseToJSON(value: BalanceResponse): BalanceResponseJSON;
566
576
 
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 };
577
+ 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, BalanceRequest, BalanceRequestChainEntry, BalanceRequestChainEntryJSON, BalanceRequestJSON, BalanceResponse, BalanceResponseChainEntry, BalanceResponseChainEntryJSON, BalanceResponseDenomEntry, BalanceResponseDenomEntryJSON, BalanceResponseJSON, 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, balanceRequestChainEntryFromJSON, balanceRequestChainEntryToJSON, balanceRequestFromJSON, balanceRequestToJSON, balanceResponseChainEntryFromJSON, balanceResponseChainEntryToJSON, balanceResponseDenomEntryFromJSON, balanceResponseDenomEntryToJSON, balanceResponseFromJSON, balanceResponseToJSON, 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 };