@skip-go/client 0.14.0 → 0.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.ts +112 -65
  2. package/dist/index.js +162 -153
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -304,6 +304,31 @@ type HyperlaneTransferInfo = {
304
304
  state: HyperlaneTransferState;
305
305
  txs: HyperlaneTransferTransactions;
306
306
  };
307
+ type GoFastTransferTransactionsJSON = {
308
+ order_submitted_tx: ChainTransactionJSON | null;
309
+ order_filled_tx: ChainTransactionJSON | null;
310
+ order_refunded_tx: ChainTransactionJSON | null;
311
+ order_timeout_tx: ChainTransactionJSON | null;
312
+ };
313
+ type GoFastTransferTransactions = {
314
+ orderSubmittedTx: ChainTransaction | null;
315
+ orderFilledTx: ChainTransaction | null;
316
+ orderRefundedTx: ChainTransaction | null;
317
+ orderTimeoutTx: ChainTransaction | null;
318
+ };
319
+ type GoFastTransferState = "GO_FAST_TRANSFER_UNKNOWN" | "GO_FAST_TRANSFER_SENT" | "GO_FAST_POST_ACTION_FAILED" | "GO_FAST_TRANSFER_TIMEOUT" | "GO_FAST_TRANSFER_FILLED" | "GO_FAST_TRANSFER_REFUNDED";
320
+ type GoFastTransferInfoJSON = {
321
+ from_chain_id: string;
322
+ to_chain_id: string;
323
+ state: GoFastTransferState;
324
+ txs: GoFastTransferTransactionsJSON;
325
+ };
326
+ type GoFastTransferInfo = {
327
+ fromChainID: string;
328
+ toChainID: string;
329
+ state: GoFastTransferState;
330
+ txs: GoFastTransferTransactions;
331
+ };
307
332
  type OPInitTransferState = 'OPINIT_TRANSFER_UNKNOWN' | 'OPINIT_TRANSFER_SENT' | 'OPINIT_TRANSFER_RECEIVED';
308
333
  type OPInitTransferTransactionsJSON = {
309
334
  send_tx: ChainTransactionJSON | null;
@@ -335,6 +360,8 @@ type TransferEventJSON = {
335
360
  hyperlane_transfer: HyperlaneTransferInfoJSON;
336
361
  } | {
337
362
  op_init_transfer: OPInitTransferInfoJSON;
363
+ } | {
364
+ go_fast_transfer: GoFastTransferInfoJSON;
338
365
  };
339
366
  type TransferEvent = {
340
367
  ibcTransfer: TransferInfo;
@@ -346,6 +373,8 @@ type TransferEvent = {
346
373
  hyperlaneTransfer: HyperlaneTransferInfo;
347
374
  } | {
348
375
  opInitTransfer: OPInitTransferInfo;
376
+ } | {
377
+ goFastTransfer: GoFastTransferInfo;
349
378
  };
350
379
  interface TransactionCallbacks {
351
380
  onTransactionSigned?: (txInfo: {
@@ -493,6 +522,46 @@ type AxelarTransfer = {
493
522
  bridgeID: BridgeType;
494
523
  smartRelay: boolean;
495
524
  };
525
+ type GoFastFeeJSON = {
526
+ fee_asset: AssetJSON;
527
+ bps_fee: string;
528
+ bps_fee_amount: string;
529
+ bps_fee_usd: string;
530
+ source_chain_fee_amount: string;
531
+ source_chain_fee_usd: string;
532
+ destination_chain_fee_amount: string;
533
+ destination_chain_fee_usd: string;
534
+ };
535
+ type GoFastFee = {
536
+ feeAsset: Asset;
537
+ bpsFee: string;
538
+ bpsFeeAmount: string;
539
+ bpsFeeUSD: string;
540
+ sourceChainFeeAmount: string;
541
+ sourceChainFeeUSD: string;
542
+ destinationChainFeeAmount: string;
543
+ destinationChainFeeUSD: string;
544
+ };
545
+ type GoFastTransfer = {
546
+ fromChainID: string;
547
+ toChainID: string;
548
+ fee: GoFastFee;
549
+ bridgeID: BridgeType;
550
+ denomIn: string;
551
+ denomOut: string;
552
+ sourceDomain: string;
553
+ destinationDomain: string;
554
+ };
555
+ type GoFastTransferJSON = {
556
+ from_chain_id: string;
557
+ to_chain_id: string;
558
+ fee: GoFastFeeJSON;
559
+ bridge_id: BridgeType;
560
+ denom_in: string;
561
+ denom_out: string;
562
+ source_domain: string;
563
+ destination_domain: string;
564
+ };
496
565
  type BankSendJSON = {
497
566
  chain_id: string;
498
567
  denom: string;
@@ -956,6 +1025,7 @@ type RouteRequestBaseJSON = {
956
1025
  smart_relay?: boolean;
957
1026
  smart_swap_options?: SmartSwapOptionsJSON;
958
1027
  allow_swaps?: boolean;
1028
+ go_fast?: boolean;
959
1029
  };
960
1030
  type RouteRequestGivenInJSON = RouteRequestBaseJSON & {
961
1031
  amount_in: string;
@@ -993,6 +1063,7 @@ type RouteRequestBase = {
993
1063
  smartRelay?: boolean;
994
1064
  smartSwapOptions?: SmartSwapOptions;
995
1065
  allowSwaps?: boolean;
1066
+ goFast?: boolean;
996
1067
  };
997
1068
  type RouteRequestGivenIn = RouteRequestBase & {
998
1069
  amountIn: string;
@@ -1014,7 +1085,9 @@ type MsgsWarning = {
1014
1085
  type: MsgsWarningType;
1015
1086
  message: string;
1016
1087
  };
1017
- type FeeType = 'SMART_RELAY';
1088
+ declare enum FeeType {
1089
+ SMART_RELAY = "SMART_RELAY"
1090
+ }
1018
1091
  type EstimatedFee = {
1019
1092
  feeType: FeeType;
1020
1093
  bridgeID: BridgeType;
@@ -1035,88 +1108,54 @@ type EstimatedFeeJSON = {
1035
1108
  tx_index: number;
1036
1109
  operation_index?: number;
1037
1110
  };
1038
- type OperationJSON = {
1039
- transfer: TransferJSON;
1111
+ interface BaseOperationJSON {
1040
1112
  tx_index: number;
1041
1113
  amount_in: string;
1042
1114
  amount_out: string;
1043
- } | {
1115
+ }
1116
+ type OperationJSON = (BaseOperationJSON & {
1117
+ transfer: TransferJSON;
1118
+ }) | (BaseOperationJSON & {
1044
1119
  bank_send: BankSendJSON;
1045
- tx_index: number;
1046
- amount_in: string;
1047
- amount_out: string;
1048
- } | {
1120
+ }) | (BaseOperationJSON & {
1049
1121
  swap: SwapJSON;
1050
- tx_index: number;
1051
- amount_in: string;
1052
- amount_out: string;
1053
- } | {
1122
+ }) | (BaseOperationJSON & {
1054
1123
  axelar_transfer: AxelarTransferJSON;
1055
- tx_index: number;
1056
- amount_in: string;
1057
- amount_out: string;
1058
- } | {
1124
+ }) | (BaseOperationJSON & {
1059
1125
  cctp_transfer: CCTPTransferJSON;
1060
- tx_index: number;
1061
- amount_in: string;
1062
- amount_out: string;
1063
- } | {
1126
+ }) | (BaseOperationJSON & {
1064
1127
  hyperlane_transfer: HyperlaneTransferJSON;
1065
- tx_index: number;
1066
- amount_in: string;
1067
- amount_out: string;
1068
- } | {
1128
+ }) | (BaseOperationJSON & {
1069
1129
  evm_swap: EvmSwapJSON;
1070
- tx_index: number;
1071
- amount_in: string;
1072
- amount_out: string;
1073
- } | {
1130
+ }) | (BaseOperationJSON & {
1074
1131
  op_init_transfer: OPInitTransferJSON;
1075
- tx_index: number;
1076
- amount_in: string;
1077
- amount_out: string;
1078
- };
1079
- type Operation = {
1080
- transfer: Transfer;
1132
+ }) | (BaseOperationJSON & {
1133
+ go_fast_transfer: GoFastTransferJSON;
1134
+ });
1135
+ interface BaseOperation {
1081
1136
  txIndex: number;
1082
1137
  amountIn: string;
1083
1138
  amountOut: string;
1084
- } | {
1139
+ }
1140
+ type Operation = (BaseOperation & {
1141
+ transfer: Transfer;
1142
+ }) | (BaseOperation & {
1085
1143
  bankSend: BankSend;
1086
- txIndex: number;
1087
- amountIn: string;
1088
- amountOut: string;
1089
- } | {
1144
+ }) | (BaseOperation & {
1090
1145
  swap: Swap;
1091
- txIndex: number;
1092
- amountIn: string;
1093
- amountOut: string;
1094
- } | {
1146
+ }) | (BaseOperation & {
1095
1147
  axelarTransfer: AxelarTransfer;
1096
- txIndex: number;
1097
- amountIn: string;
1098
- amountOut: string;
1099
- } | {
1148
+ }) | (BaseOperation & {
1100
1149
  cctpTransfer: CCTPTransfer;
1101
- txIndex: number;
1102
- amountIn: string;
1103
- amountOut: string;
1104
- } | {
1150
+ }) | (BaseOperation & {
1105
1151
  hyperlaneTransfer: HyperlaneTransfer;
1106
- txIndex: number;
1107
- amountIn: string;
1108
- amountOut: string;
1109
- } | {
1152
+ }) | (BaseOperation & {
1110
1153
  evmSwap: EvmSwap;
1111
- txIndex: number;
1112
- amountIn: string;
1113
- amountOut: string;
1114
- } | {
1154
+ }) | (BaseOperation & {
1115
1155
  opInitTransfer: OPInitTransfer;
1116
- txIndex: number;
1117
- amountIn: string;
1118
- amountOut: string;
1119
- };
1156
+ }) | (BaseOperation & {
1157
+ goFastTransfer: GoFastTransfer;
1158
+ });
1120
1159
  type RouteResponseJSON = {
1121
1160
  source_asset_denom: string;
1122
1161
  source_asset_chain_id: string;
@@ -1309,7 +1348,7 @@ type MsgsResponse = {
1309
1348
  txs: Tx[];
1310
1349
  warning?: MsgsWarning;
1311
1350
  };
1312
- type BridgeType = 'IBC' | 'AXELAR' | 'CCTP' | 'HYPERLANE' | 'OPINIT';
1351
+ type BridgeType = 'IBC' | 'AXELAR' | 'CCTP' | 'HYPERLANE' | 'OPINIT' | 'GO_FAST';
1313
1352
  type ChainType = 'cosmos' | 'evm' | 'svm';
1314
1353
  type TxResult = {
1315
1354
  txHash: string;
@@ -1539,6 +1578,10 @@ declare function swapFromJSON(swapJSON: SwapJSON): Swap;
1539
1578
  declare function swapToJSON(swap: Swap): SwapJSON;
1540
1579
  declare function evmSwapFromJSON(evmSwapJSON: EvmSwapJSON): EvmSwap;
1541
1580
  declare function evmSwapToJSON(evmSwap: EvmSwap): EvmSwapJSON;
1581
+ declare function goFastFeeToJSON(goFastFee: GoFastFee): GoFastFeeJSON;
1582
+ declare function goFastFeeFromJSON(goFastFeeJSON: GoFastFeeJSON): GoFastFee;
1583
+ declare function goFastTransferToJSON(goFast: GoFastTransfer): GoFastTransferJSON;
1584
+ declare function goFastTransferFromJSON(goFastJSON: GoFastTransferJSON): GoFastTransfer;
1542
1585
  declare function operationFromJSON(operationJSON: OperationJSON): Operation;
1543
1586
  declare function operationToJSON(operation: Operation): OperationJSON;
1544
1587
  declare function routeResponseFromJSON(routeResponseJSON: RouteResponseJSON): RouteResponse;
@@ -1609,6 +1652,8 @@ declare function contractCallWithTokenTransactionsToJSON(value: ContractCallWith
1609
1652
  declare function axelarTransferTransactionsFromJSON(value: AxelarTransferTransactionsJSON): AxelarTransferTransactions;
1610
1653
  declare function axelarTransferTransactionsToJSON(value: AxelarTransferTransactions): AxelarTransferTransactionsJSON;
1611
1654
  declare function axelarTransferInfoFromJSON(value: AxelarTransferInfoJSON): AxelarTransferInfo;
1655
+ declare function goFastTransferInfoFromJSON(value: GoFastTransferInfoJSON): GoFastTransferInfo;
1656
+ declare function goFastTransferInfoToJson(value: GoFastTransferInfo): GoFastTransferInfoJSON;
1612
1657
  declare function axelarTransferInfoToJSON(value: AxelarTransferInfo): AxelarTransferInfoJSON;
1613
1658
  declare function transferEventFromJSON(value: TransferEventJSON): TransferEvent;
1614
1659
  declare function transferEventToJSON(value: TransferEvent): TransferEventJSON;
@@ -1639,6 +1684,8 @@ declare function cctpTransferInfoFromJSON(value: CCTPTransferInfoJSON): CCTPTran
1639
1684
  declare function cctpTransferInfoToJSON(value: CCTPTransferInfo): CCTPTransferInfoJSON;
1640
1685
  declare function hyperlaneTransferTransactionsFromJSON(value: HyperlaneTransferTransactionsJSON): HyperlaneTransferTransactions;
1641
1686
  declare function hyperlaneTransferTransactionsToJSON(value: HyperlaneTransferTransactions): HyperlaneTransferTransactionsJSON;
1687
+ declare function goFastTransferTransactionsToJSON(value: GoFastTransferTransactions): GoFastTransferTransactionsJSON;
1688
+ declare function goFastTransferTransactionsFromJSON(value: GoFastTransferTransactionsJSON): GoFastTransferTransactions;
1642
1689
  declare function hyperlaneTransferInfoFromJSON(value: HyperlaneTransferInfoJSON): HyperlaneTransferInfo;
1643
1690
  declare function hyperlaneTransferInfoToJSON(value: HyperlaneTransferInfo): HyperlaneTransferInfoJSON;
1644
1691
  declare function opInitTransferTransactionsFromJSON(value: OPInitTransferTransactionsJSON): OPInitTransferTransactions;
@@ -1959,4 +2006,4 @@ declare function getEncodeObjectFromCosmosMessage(message: CosmosMsg): EncodeObj
1959
2006
  declare function getEncodeObjectFromCosmosMessageInjective(message: CosmosMsg): Msgs;
1960
2007
  declare function getCosmosGasAmountForMessage(client: SigningStargateClient, signerAddress: string, chainID: string, messages?: CosmosMsg[], encodedMsgs?: EncodeObject[], multiplier?: number): Promise<string>;
1961
2008
 
1962
- 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, type 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, type FeeType, type Gas, type GasPriceInfo, type GetFallbackGasAmount, type GetGasPrice, 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 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 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, 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 };
2009
+ 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, type 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 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 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, 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 };