@skip-go/client 0.16.17 → 0.16.18

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +85 -15
  2. package/dist/index.js +206 -204
  3. package/package.json +8 -9
package/dist/index.d.ts CHANGED
@@ -377,6 +377,18 @@ type OPInitTransferInfo = {
377
377
  state: OPInitTransferState;
378
378
  txs: OPInitTransferTransactions;
379
379
  };
380
+ type EurekaTransferInfoJSON = {
381
+ from_chain_id: string;
382
+ to_chain_id: string;
383
+ state: TransferState;
384
+ packet_txs: PacketJSON;
385
+ };
386
+ type EurekaTransferInfo = {
387
+ fromChainID: string;
388
+ toChainID: string;
389
+ state: TransferState;
390
+ packetTxs: Packet;
391
+ };
380
392
  type TransferEventJSON = {
381
393
  ibc_transfer: TransferInfoJSON;
382
394
  } | {
@@ -391,6 +403,8 @@ type TransferEventJSON = {
391
403
  go_fast_transfer: GoFastTransferInfoJSON;
392
404
  } | {
393
405
  stargate_transfer: StargateTransferInfoJSON;
406
+ } | {
407
+ eureka_transfer: EurekaTransferInfoJSON;
394
408
  };
395
409
  type TransferEvent = {
396
410
  ibcTransfer: TransferInfo;
@@ -406,6 +420,8 @@ type TransferEvent = {
406
420
  goFastTransfer: GoFastTransferInfo;
407
421
  } | {
408
422
  stargateTransfer: StargateTransferInfo;
423
+ } | {
424
+ eurekaTransfer: EurekaTransferInfo;
409
425
  };
410
426
  type CallbackStatus = 'success' | 'error' | 'pending' | 'completed';
411
427
  interface TransactionCallbacks {
@@ -729,6 +745,36 @@ type OPInitTransfer = {
729
745
  bridgeID: BridgeType;
730
746
  smartRelay: boolean;
731
747
  };
748
+ type EurekaTransferJSON = {
749
+ destination_port: string;
750
+ source_client: string;
751
+ from_chain_id: string;
752
+ to_chain_id: string;
753
+ pfm_enabled: boolean;
754
+ supports_memo: boolean;
755
+ entry_contract_address: string;
756
+ callback_adapter_contract_address: string;
757
+ denom_in: string;
758
+ denom_out: string;
759
+ bridge_id: BridgeType;
760
+ smart_relay: boolean;
761
+ smart_relay_fee_quote?: SmartRelayFeeQuoteJSON;
762
+ };
763
+ type EurekaTransfer = {
764
+ destinationPort: string;
765
+ sourceClient: string;
766
+ fromChainID: string;
767
+ toChainID: string;
768
+ pfmEnabled: boolean;
769
+ supportsMemo: boolean;
770
+ entryContractAddress: string;
771
+ callbackAdapterContractAddress: string;
772
+ denomIn: string;
773
+ denomOut: string;
774
+ bridgeID: BridgeType;
775
+ smartRelay: boolean;
776
+ smartRelayFeeQuote?: SmartRelayFeeQuote;
777
+ };
732
778
  type SmartRelayFeeQuoteJSON = {
733
779
  fee_amount: string;
734
780
  relayer_address: string;
@@ -1143,7 +1189,7 @@ type RouteRequestGivenOut = RouteRequestBase & {
1143
1189
  type RouteRequest = RouteRequestGivenIn | RouteRequestGivenOut;
1144
1190
  type RouteWarningType = "LOW_INFO_WARNING" | "BAD_PRICE_WARNING";
1145
1191
  type MsgsWarningType = "INSUFFICIENT_GAS_AT_DEST_EOA" | "INSUFFICIENT_GAS_AT_INTERMEDIATE";
1146
- type ExperimentalFeature = "cctp" | "hyperlane" | "stargate";
1192
+ type ExperimentalFeature = "cctp" | "hyperlane" | "stargate" | "eureka";
1147
1193
  type RouteWarning = {
1148
1194
  type: RouteWarningType;
1149
1195
  message: string;
@@ -1199,6 +1245,8 @@ type OperationJSON = (BaseOperationJSON & {
1199
1245
  op_init_transfer: OPInitTransferJSON;
1200
1246
  }) | (BaseOperationJSON & {
1201
1247
  go_fast_transfer: GoFastTransferJSON;
1248
+ }) | (BaseOperationJSON & {
1249
+ eureka_transfer: EurekaTransferJSON;
1202
1250
  }) | (BaseOperationJSON & {
1203
1251
  stargate_transfer: StargateTransferJSON;
1204
1252
  });
@@ -1225,6 +1273,8 @@ type Operation = (BaseOperation & {
1225
1273
  opInitTransfer: OPInitTransfer;
1226
1274
  }) | (BaseOperation & {
1227
1275
  goFastTransfer: GoFastTransfer;
1276
+ }) | (BaseOperation & {
1277
+ eurekaTransfer: EurekaTransfer;
1228
1278
  }) | (BaseOperation & {
1229
1279
  stargateTransfer: StargateTransfer;
1230
1280
  });
@@ -1424,7 +1474,7 @@ type MsgsResponse = {
1424
1474
  txs: Tx[];
1425
1475
  warning?: MsgsWarning;
1426
1476
  };
1427
- type BridgeType = "IBC" | "AXELAR" | "CCTP" | "HYPERLANE" | "OPINIT" | "GO_FAST" | "STARGATE";
1477
+ type BridgeType = "IBC" | "AXELAR" | "CCTP" | "HYPERLANE" | "OPINIT" | "GO_FAST" | "STARGATE" | "EUREKA";
1428
1478
  declare enum ChainType {
1429
1479
  Cosmos = "cosmos",
1430
1480
  EVM = "evm",
@@ -1664,6 +1714,8 @@ declare function goFastTransferToJSON(goFast: GoFastTransfer): GoFastTransferJSO
1664
1714
  declare function goFastTransferFromJSON(goFastJSON: GoFastTransferJSON): GoFastTransfer;
1665
1715
  declare function stargateTransferFromJSON(stargateTransferJSON: StargateTransferJSON): StargateTransfer;
1666
1716
  declare function stargateTransferToJSON(stargateTransfer: StargateTransfer): StargateTransferJSON;
1717
+ declare function eurekaTransferFromJSON(eurekaTransferJSON: EurekaTransferJSON): EurekaTransfer;
1718
+ declare function eurekaTransferToJSON(eurekaTransfer: EurekaTransfer): EurekaTransferJSON;
1667
1719
  declare function operationFromJSON(operationJSON: OperationJSON): Operation;
1668
1720
  declare function operationToJSON(operation: Operation): OperationJSON;
1669
1721
  declare function routeResponseFromJSON(routeResponseJSON: RouteResponseJSON): RouteResponse;
@@ -1778,6 +1830,8 @@ declare function opInitTransferInfoFromJSON(value: OPInitTransferInfoJSON): OPIn
1778
1830
  declare function opInitTransferInfoToJSON(value: OPInitTransferInfo): OPInitTransferInfoJSON;
1779
1831
  declare function stargateTransferInfoFromJSON(value: StargateTransferInfoJSON): StargateTransferInfo;
1780
1832
  declare function stargateTransferInfoToJSON(value: StargateTransferInfo): StargateTransferInfoJSON;
1833
+ declare function eurekaTransferInfoFromJSON(value: EurekaTransferInfoJSON): EurekaTransferInfo;
1834
+ declare function eurekaTransferInfoToJSON(value: EurekaTransferInfo): EurekaTransferInfoJSON;
1781
1835
  declare function msgsDirectRequestFromJSON(msgDirectRequestJSON: MsgsDirectRequestJSON): MsgsDirectRequest;
1782
1836
  declare function msgsDirectRequestToJSON(msgDirectRequest: MsgsDirectRequest): MsgsDirectRequestJSON;
1783
1837
  declare function smartSwapOptionsFromJSON(smartSwapOptionsJSON: SmartSwapOptionsJSON): SmartSwapOptions;
@@ -1910,15 +1964,19 @@ declare class SkipClient {
1910
1964
  getRpcEndpointForChain?: (chainID: string) => Promise<string>;
1911
1965
  getRestEndpointForChain?: (chainID: string) => Promise<string>;
1912
1966
  };
1913
- protected getCosmosSigner?: SignerGetters["getCosmosSigner"];
1914
- protected getEVMSigner?: SignerGetters["getEVMSigner"];
1915
- protected getSVMSigner?: SignerGetters["getSVMSigner"];
1916
- protected chainIDsToAffiliates?: SkipClientOptions["chainIDsToAffiliates"];
1917
- protected cumulativeAffiliateFeeBPS?: string;
1918
- protected cacheDurationMs?: number;
1919
- private cache;
1920
- private cachingMiddleware;
1967
+ getCosmosSigner?: SignerGetters["getCosmosSigner"];
1968
+ getEVMSigner?: SignerGetters["getEVMSigner"];
1969
+ getSVMSigner?: SignerGetters["getSVMSigner"];
1970
+ chainIDsToAffiliates?: SkipClientOptions["chainIDsToAffiliates"];
1971
+ cumulativeAffiliateFeeBPS?: string;
1972
+ private clientOptions;
1973
+ private skipChains?;
1974
+ private skipAssets?;
1975
+ private skipBalances?;
1976
+ private signingStargateClientByChainId;
1977
+ private cosmosGasFee;
1921
1978
  constructor(options?: SkipClientOptions);
1979
+ updateOptions(options?: SkipClientOptions): void;
1922
1980
  assets(options?: AssetsRequest): Promise<Record<string, Asset[]>>;
1923
1981
  chains(options?: ChainsRequest): Promise<Chain[]>;
1924
1982
  assetsFromSource(options: AssetsFromSourceRequest): Promise<Record<string, Asset[]>>;
@@ -1948,6 +2006,15 @@ declare class SkipClient {
1948
2006
  message: SvmTx;
1949
2007
  options: ExecuteRouteOptions;
1950
2008
  }): Promise<string>;
2009
+ getSigningStargateClient({ chainId, getOfflineSigner, }: {
2010
+ chainId: string;
2011
+ getOfflineSigner?: (chainID: string) => Promise<OfflineSigner>;
2012
+ }): Promise<{
2013
+ stargateClient: SigningStargateClient;
2014
+ signer: OfflineSigner;
2015
+ }>;
2016
+ private getAssets;
2017
+ private getChains;
1951
2018
  signCosmosMessageDirect(options: SignCosmosMessageDirectOptions): Promise<TxRaw>;
1952
2019
  private signCosmosMessageDirectEvmos;
1953
2020
  private signCosmosMessageDirectInjective;
@@ -2064,23 +2131,23 @@ declare class SkipClient {
2064
2131
  getFeeInfoForChain(chainID: string): Promise<FeeAsset | undefined>;
2065
2132
  private getDefaultGasTokenForChain;
2066
2133
  private getStakingTokensForChain;
2067
- validateGasBalances({ txs, getOfflineSigner, onValidateGasBalance, getFallbackGasAmount, simulate, }: {
2134
+ validateGasBalances({ txs, onValidateGasBalance, getFallbackGasAmount, getOfflineSigner, simulate, }: {
2068
2135
  txs: Tx[];
2069
2136
  getOfflineSigner?: (chainID: string) => Promise<OfflineSigner>;
2070
2137
  onValidateGasBalance?: ExecuteRouteOptions["onValidateGasBalance"];
2071
2138
  getFallbackGasAmount?: GetFallbackGasAmount;
2072
2139
  simulate?: ExecuteRouteOptions["simulate"];
2073
- }): Promise<Gas[]>;
2140
+ }): Promise<void>;
2074
2141
  /**
2075
2142
  *
2076
2143
  * Validate gas balance for cosmos messages returns a fee asset and StdFee to be used
2077
2144
  *
2078
2145
  */
2079
- validateCosmosGasBalance({ chainID, signerAddress, client, messages, getFallbackGasAmount, txIndex, simulate, }: {
2146
+ validateCosmosGasBalance({ chainID, signerAddress, messages, getFallbackGasAmount, getOfflineSigner, txIndex, simulate, }: {
2080
2147
  chainID: string;
2081
2148
  signerAddress: string;
2082
- client: SigningStargateClient;
2083
2149
  messages?: CosmosMsg[];
2150
+ getOfflineSigner?: (chainID: string) => Promise<OfflineSigner>;
2084
2151
  getFallbackGasAmount?: GetFallbackGasAmount;
2085
2152
  txIndex?: number;
2086
2153
  simulate?: ExecuteRouteOptions["simulate"];
@@ -2098,6 +2165,9 @@ declare class SkipClient {
2098
2165
  fee: StdFee;
2099
2166
  }>;
2100
2167
  getMainnetAndTestnetChains(): Promise<Chain[]>;
2168
+ getMainnetAndTestnetAssets(chainId?: string): Promise<{
2169
+ [x: string]: Asset[];
2170
+ }>;
2101
2171
  validateUserAddresses(userAddresses: UserAddress[]): Promise<boolean>;
2102
2172
  }
2103
2173
  /**
@@ -2111,4 +2181,4 @@ declare function getEncodeObjectFromCosmosMessage(message: CosmosMsg): EncodeObj
2111
2181
  declare function getEncodeObjectFromCosmosMessageInjective(message: CosmosMsg): Msgs;
2112
2182
  declare function getCosmosGasAmountForMessage(client: SigningStargateClient, signerAddress: string, chainID: string, messages?: CosmosMsg[], encodedMsgs?: EncodeObject[], multiplier?: number): Promise<string>;
2113
2183
 
2114
- export { type AcknowledgementError, type Affiliate, type AffiliateJSON, type ApiError, type Asset, type AssetBetweenChains, type AssetBetweenChainsJSON, type AssetJSON, type AssetOrError, type AssetOrErrorJSON, type AssetRecommendation, type AssetRecommendationJSON, type AssetRecommendationRequest, type AssetRecommendationRequestJSON, type AssetsBetweenChainsRequest, type AssetsBetweenChainsRequestJSON, type AssetsBetweenChainsResponse, type AssetsBetweenChainsResponseJSON, type AssetsFromSourceRequest, type AssetsFromSourceRequestJSON, type AssetsRequest, type AssetsRequestJSON, type AutopilotAction, type AutopilotMsg, type AxelarTransfer, type AxelarTransferInfo, type AxelarTransferInfoJSON, type AxelarTransferJSON, type AxelarTransferState, type AxelarTransferTransactions, type AxelarTransferTransactionsJSON, type AxelarTransferType, type BalanceRequest, type BalanceRequestChainEntry, type BalanceRequestChainEntryJSON, type BalanceRequestJSON, type BalanceResponse, type BalanceResponseChainEntry, type BalanceResponseChainEntryJSON, type BalanceResponseDenomEntry, type BalanceResponseDenomEntryJSON, type BalanceResponseJSON, type BankSend, type BankSendJSON, type Bridge, type BridgeJSON, type BridgeType, type BridgesResponse, type BridgesResponseJSON, type CCTPTransfer, type CCTPTransferInfo, type CCTPTransferInfoJSON, type CCTPTransferJSON, type CCTPTransferState, type CCTPTransferTransactions, type CCTPTransferTransactionsJSON, type Chain, type ChainAffiliates, type ChainAffiliatesJSON, type ChainJSON, type ChainTransaction, type ChainTransactionJSON, ChainType, type ChainsRequest, type ChainsRequestJSON, type ContractCallWithTokenError, type ContractCallWithTokenErrorType, type ContractCallWithTokenTransactions, type ContractCallWithTokenTransactionsJSON, type CosmWasmContractMsg, type CosmWasmContractMsgJSON, type CosmosMsg, type CosmosMsgJSON, type CosmosTx, type CosmosTxJSON, DEFAULT_GAS_MULTIPLIER, type DenomWithChainID, type DenomWithChainIDJSON, type ERC20Approval, type ERC20ApprovalJSON, type EndpointOptions, type EstimatedFee, type EstimatedFeeJSON, type EvmSwap, type EvmSwapJSON, type EvmTx, type EvmTxJSON, type ExecuteCosmosMessage, type ExecuteCosmosMessageOptions, type ExecuteRouteOptions, type ExperimentalFeature, type FeeAsset, type FeeAssetJSON, FeeType, type Gas, type GasPriceInfo, type GetFallbackGasAmount, type GetGasPrice, type GoFastFee, type GoFastFeeJSON, type GoFastTransfer, type GoFastTransferInfo, type GoFastTransferInfoJSON, type GoFastTransferJSON, type GoFastTransferState, type GoFastTransferTransactions, type GoFastTransferTransactionsJSON, type HyperlaneTransfer, type HyperlaneTransferInfo, type HyperlaneTransferInfoJSON, type HyperlaneTransferJSON, type HyperlaneTransferState, type HyperlaneTransferTransactions, type HyperlaneTransferTransactionsJSON, type IBCAddress, type IBCAddressJSON, type IbcCapabilities, type IbcCapabilitiesJSON, type ModuleSupport, type ModuleVersionInfo, type Msg, type MsgJSON, type MsgsDirectRequest, type MsgsDirectRequestBase, type MsgsDirectRequestBaseJSON, type MsgsDirectRequestGivenIn, type MsgsDirectRequestGivenInJSON, type MsgsDirectRequestGivenOut, type MsgsDirectRequestGivenOutJSON, type MsgsDirectRequestJSON, type MsgsDirectResponse, type MsgsDirectResponseJSON, type MsgsRequest, type MsgsRequestJSON, type MsgsResponse, type MsgsResponseJSON, type MsgsWarning, type MsgsWarningType, type MultiChainMsg, type MultiChainMsgJSON, type NextBlockingTransfer, type NextBlockingTransferJSON, type OPInitTransfer, type OPInitTransferInfo, type OPInitTransferInfoJSON, type OPInitTransferJSON, type OPInitTransferState, type OPInitTransferTransactions, type OPInitTransferTransactionsJSON, type Operation, type OperationJSON, type OriginAssetsRequest, type OriginAssetsRequestJSON, type OriginAssetsResponse, type OriginAssetsResponseJSON, type Packet, type PacketError, type PacketErrorJSON, type PacketErrorType, type PacketJSON, type PostHandler, type PostHandlerJSON, type Reason, type RecommendAssetsRequest, type RecommendAssetsRequestJSON, type RecommendAssetsResponse, type RecommendAssetsResponseJSON, type RecommendationEntry, type RecommendationEntryJSON, type RouteConfig, type RouteRequest, type RouteRequestBase, type RouteRequestBaseJSON, type RouteRequestGivenIn, type RouteRequestGivenInJSON, type RouteRequestGivenOut, type RouteRequestGivenOutJSON, type RouteRequestJSON, type RouteResponse, type RouteResponseJSON, type RouteWarning, type RouteWarningType, SKIP_API_URL, type SendTokenError, type SendTokenErrorType, type SendTokenTransactions, type SendTokenTransactionsJSON, type SignCosmosMessageAminoOptions, type SignCosmosMessageDirectOptions, type SignerGetters, SkipClient, type SkipClientOptions, SkipRouter, type SmartRelayFeeQuote, type SmartRelayFeeQuoteJSON, type SmartSwapExactCoinIn, type SmartSwapExactCoinInJSON, type SmartSwapOptions, type SmartSwapOptionsJSON, type StargateTransfer, type StargateTransferInfo, type StargateTransferInfoJSON, type StargateTransferJSON, type StargateTransferState, type StargateTransferTransactions, type StargateTransferTransactionsJSON, type StatusError, type StatusErrorJSON, type StatusErrorType, type StatusRequest, type StatusRequestJSON, type StatusState, type SubmitTxRequest, type SubmitTxRequestJSON, type SubmitTxResponse, type SubmitTxResponseJSON, type SvmTx, type SvmTxJSON, type Swap, type SwapExactCoinIn, type SwapExactCoinInJSON, type SwapExactCoinOut, type SwapExactCoinOutJSON, type SwapJSON, type SwapOperation, type SwapOperationJSON, type SwapRoute, type SwapRouteJSON, type SwapVenue, type SwapVenueJSON, type SwapVenueRequest, type SwapVenueRequestJSON, type TrackTxRequest, type TrackTxRequestJSON, type TrackTxResponse, type TrackTxResponseJSON, type TransactionCallbacks, type TransactionExecutionError, type Transfer, type TransferAssetRelease, type TransferAssetReleaseJSON, type TransferEvent, type TransferEventJSON, type TransferInfo, type TransferInfoJSON, type TransferJSON, type TransferState, type TransferStatus, type TransferStatusJSON, type Tx, type TxJSON, type TxResult, type TxStatusResponse, type TxStatusResponseJSON, type UserAddress, 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, chainsRequestToJSON, contractCallWithTokenTransactionsFromJSON, contractCallWithTokenTransactionsToJSON, cosmWasmContractMsgFromJSON, cosmWasmContractMsgToJSON, cosmosMsgFromJSON, cosmosMsgToJSON, cosmosTxFromJSON, cosmosTxToJSON, denomWithChainIDFromJSON, denomWithChainIDToJSON, erc20ApprovalFromJSON, erc20ApprovalToJSON, estimatedFeeFromJSON, estimatedFeeToJSON, evmSwapFromJSON, evmSwapToJSON, evmTxFromJSON, evmTxToJSON, feeAssetFromJSON, feeAssetToJSON, getCosmosGasAmountForMessage, getEncodeObjectFromCosmosMessage, getEncodeObjectFromCosmosMessageInjective, goFastFeeFromJSON, goFastFeeToJSON, goFastTransferFromJSON, goFastTransferInfoFromJSON, goFastTransferInfoToJson, goFastTransferToJSON, goFastTransferTransactionsFromJSON, goFastTransferTransactionsToJSON, 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, stargateTransferFromJSON, stargateTransferInfoFromJSON, stargateTransferInfoToJSON, stargateTransferToJSON, stargateTransferTransactionsFromJSON, stargateTransferTransactionsToJSON, 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 };
2184
+ export { type AcknowledgementError, type Affiliate, type AffiliateJSON, type ApiError, type Asset, type AssetBetweenChains, type AssetBetweenChainsJSON, type AssetJSON, type AssetOrError, type AssetOrErrorJSON, type AssetRecommendation, type AssetRecommendationJSON, type AssetRecommendationRequest, type AssetRecommendationRequestJSON, type AssetsBetweenChainsRequest, type AssetsBetweenChainsRequestJSON, type AssetsBetweenChainsResponse, type AssetsBetweenChainsResponseJSON, type AssetsFromSourceRequest, type AssetsFromSourceRequestJSON, type AssetsRequest, type AssetsRequestJSON, type AutopilotAction, type AutopilotMsg, type AxelarTransfer, type AxelarTransferInfo, type AxelarTransferInfoJSON, type AxelarTransferJSON, type AxelarTransferState, type AxelarTransferTransactions, type AxelarTransferTransactionsJSON, type AxelarTransferType, type BalanceRequest, type BalanceRequestChainEntry, type BalanceRequestChainEntryJSON, type BalanceRequestJSON, type BalanceResponse, type BalanceResponseChainEntry, type BalanceResponseChainEntryJSON, type BalanceResponseDenomEntry, type BalanceResponseDenomEntryJSON, type BalanceResponseJSON, type BankSend, type BankSendJSON, type Bridge, type BridgeJSON, type BridgeType, type BridgesResponse, type BridgesResponseJSON, type CCTPTransfer, type CCTPTransferInfo, type CCTPTransferInfoJSON, type CCTPTransferJSON, type CCTPTransferState, type CCTPTransferTransactions, type CCTPTransferTransactionsJSON, type Chain, type ChainAffiliates, type ChainAffiliatesJSON, type ChainJSON, type ChainTransaction, type ChainTransactionJSON, ChainType, type ChainsRequest, type ChainsRequestJSON, type ContractCallWithTokenError, type ContractCallWithTokenErrorType, type ContractCallWithTokenTransactions, type ContractCallWithTokenTransactionsJSON, type CosmWasmContractMsg, type CosmWasmContractMsgJSON, type CosmosMsg, type CosmosMsgJSON, type CosmosTx, type CosmosTxJSON, DEFAULT_GAS_MULTIPLIER, type DenomWithChainID, type DenomWithChainIDJSON, type ERC20Approval, type ERC20ApprovalJSON, type EndpointOptions, type EstimatedFee, type EstimatedFeeJSON, type EurekaTransfer, type EurekaTransferInfo, type EurekaTransferInfoJSON, type EurekaTransferJSON, type EvmSwap, type EvmSwapJSON, type EvmTx, type EvmTxJSON, type ExecuteCosmosMessage, type ExecuteCosmosMessageOptions, type ExecuteRouteOptions, type ExperimentalFeature, type FeeAsset, type FeeAssetJSON, FeeType, type Gas, type GasPriceInfo, type GetFallbackGasAmount, type GetGasPrice, type GoFastFee, type GoFastFeeJSON, type GoFastTransfer, type GoFastTransferInfo, type GoFastTransferInfoJSON, type GoFastTransferJSON, type GoFastTransferState, type GoFastTransferTransactions, type GoFastTransferTransactionsJSON, type HyperlaneTransfer, type HyperlaneTransferInfo, type HyperlaneTransferInfoJSON, type HyperlaneTransferJSON, type HyperlaneTransferState, type HyperlaneTransferTransactions, type HyperlaneTransferTransactionsJSON, type IBCAddress, type IBCAddressJSON, type IbcCapabilities, type IbcCapabilitiesJSON, type ModuleSupport, type ModuleVersionInfo, type Msg, type MsgJSON, type MsgsDirectRequest, type MsgsDirectRequestBase, type MsgsDirectRequestBaseJSON, type MsgsDirectRequestGivenIn, type MsgsDirectRequestGivenInJSON, type MsgsDirectRequestGivenOut, type MsgsDirectRequestGivenOutJSON, type MsgsDirectRequestJSON, type MsgsDirectResponse, type MsgsDirectResponseJSON, type MsgsRequest, type MsgsRequestJSON, type MsgsResponse, type MsgsResponseJSON, type MsgsWarning, type MsgsWarningType, type MultiChainMsg, type MultiChainMsgJSON, type NextBlockingTransfer, type NextBlockingTransferJSON, type OPInitTransfer, type OPInitTransferInfo, type OPInitTransferInfoJSON, type OPInitTransferJSON, type OPInitTransferState, type OPInitTransferTransactions, type OPInitTransferTransactionsJSON, type Operation, type OperationJSON, type OriginAssetsRequest, type OriginAssetsRequestJSON, type OriginAssetsResponse, type OriginAssetsResponseJSON, type Packet, type PacketError, type PacketErrorJSON, type PacketErrorType, type PacketJSON, type PostHandler, type PostHandlerJSON, type Reason, type RecommendAssetsRequest, type RecommendAssetsRequestJSON, type RecommendAssetsResponse, type RecommendAssetsResponseJSON, type RecommendationEntry, type RecommendationEntryJSON, type RouteConfig, type RouteRequest, type RouteRequestBase, type RouteRequestBaseJSON, type RouteRequestGivenIn, type RouteRequestGivenInJSON, type RouteRequestGivenOut, type RouteRequestGivenOutJSON, type RouteRequestJSON, type RouteResponse, type RouteResponseJSON, type RouteWarning, type RouteWarningType, SKIP_API_URL, type SendTokenError, type SendTokenErrorType, type SendTokenTransactions, type SendTokenTransactionsJSON, type SignCosmosMessageAminoOptions, type SignCosmosMessageDirectOptions, type SignerGetters, SkipClient, type SkipClientOptions, SkipRouter, type SmartRelayFeeQuote, type SmartRelayFeeQuoteJSON, type SmartSwapExactCoinIn, type SmartSwapExactCoinInJSON, type SmartSwapOptions, type SmartSwapOptionsJSON, type StargateTransfer, type StargateTransferInfo, type StargateTransferInfoJSON, type StargateTransferJSON, type StargateTransferState, type StargateTransferTransactions, type StargateTransferTransactionsJSON, type StatusError, type StatusErrorJSON, type StatusErrorType, type StatusRequest, type StatusRequestJSON, type StatusState, type SubmitTxRequest, type SubmitTxRequestJSON, type SubmitTxResponse, type SubmitTxResponseJSON, type SvmTx, type SvmTxJSON, type Swap, type SwapExactCoinIn, type SwapExactCoinInJSON, type SwapExactCoinOut, type SwapExactCoinOutJSON, type SwapJSON, type SwapOperation, type SwapOperationJSON, type SwapRoute, type SwapRouteJSON, type SwapVenue, type SwapVenueJSON, type SwapVenueRequest, type SwapVenueRequestJSON, type TrackTxRequest, type TrackTxRequestJSON, type TrackTxResponse, type TrackTxResponseJSON, type TransactionCallbacks, type TransactionExecutionError, type Transfer, type TransferAssetRelease, type TransferAssetReleaseJSON, type TransferEvent, type TransferEventJSON, type TransferInfo, type TransferInfoJSON, type TransferJSON, type TransferState, type TransferStatus, type TransferStatusJSON, type Tx, type TxJSON, type TxResult, type TxStatusResponse, type TxStatusResponseJSON, type UserAddress, 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, chainsRequestToJSON, contractCallWithTokenTransactionsFromJSON, contractCallWithTokenTransactionsToJSON, cosmWasmContractMsgFromJSON, cosmWasmContractMsgToJSON, cosmosMsgFromJSON, cosmosMsgToJSON, cosmosTxFromJSON, cosmosTxToJSON, denomWithChainIDFromJSON, denomWithChainIDToJSON, erc20ApprovalFromJSON, erc20ApprovalToJSON, estimatedFeeFromJSON, estimatedFeeToJSON, eurekaTransferFromJSON, eurekaTransferInfoFromJSON, eurekaTransferInfoToJSON, eurekaTransferToJSON, evmSwapFromJSON, evmSwapToJSON, evmTxFromJSON, evmTxToJSON, feeAssetFromJSON, feeAssetToJSON, getCosmosGasAmountForMessage, getEncodeObjectFromCosmosMessage, getEncodeObjectFromCosmosMessageInjective, goFastFeeFromJSON, goFastFeeToJSON, goFastTransferFromJSON, goFastTransferInfoFromJSON, goFastTransferInfoToJson, goFastTransferToJSON, goFastTransferTransactionsFromJSON, goFastTransferTransactionsToJSON, 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, stargateTransferFromJSON, stargateTransferInfoFromJSON, stargateTransferInfoToJSON, stargateTransferToJSON, stargateTransferTransactionsFromJSON, stargateTransferTransactionsToJSON, 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 };