@skip-go/client 0.14.0 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +115 -66
- package/dist/index.js +162 -153
- 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;
|
|
@@ -978,11 +1048,13 @@ type MsgsDirectResponseJSON = {
|
|
|
978
1048
|
route: RouteResponseJSON;
|
|
979
1049
|
warning?: MsgsWarning;
|
|
980
1050
|
};
|
|
981
|
-
type RouteRequestBase = {
|
|
1051
|
+
type RouteRequestBase = RouteConfig & {
|
|
982
1052
|
sourceAssetDenom: string;
|
|
983
1053
|
sourceAssetChainID: string;
|
|
984
1054
|
destAssetDenom: string;
|
|
985
1055
|
destAssetChainID: string;
|
|
1056
|
+
};
|
|
1057
|
+
type RouteConfig = {
|
|
986
1058
|
cumulativeAffiliateFeeBPS?: string;
|
|
987
1059
|
swapVenue?: SwapVenueRequest;
|
|
988
1060
|
swapVenues?: SwapVenueRequest[];
|
|
@@ -993,6 +1065,7 @@ type RouteRequestBase = {
|
|
|
993
1065
|
smartRelay?: boolean;
|
|
994
1066
|
smartSwapOptions?: SmartSwapOptions;
|
|
995
1067
|
allowSwaps?: boolean;
|
|
1068
|
+
goFast?: boolean;
|
|
996
1069
|
};
|
|
997
1070
|
type RouteRequestGivenIn = RouteRequestBase & {
|
|
998
1071
|
amountIn: string;
|
|
@@ -1014,7 +1087,9 @@ type MsgsWarning = {
|
|
|
1014
1087
|
type: MsgsWarningType;
|
|
1015
1088
|
message: string;
|
|
1016
1089
|
};
|
|
1017
|
-
|
|
1090
|
+
declare enum FeeType {
|
|
1091
|
+
SMART_RELAY = "SMART_RELAY"
|
|
1092
|
+
}
|
|
1018
1093
|
type EstimatedFee = {
|
|
1019
1094
|
feeType: FeeType;
|
|
1020
1095
|
bridgeID: BridgeType;
|
|
@@ -1035,88 +1110,54 @@ type EstimatedFeeJSON = {
|
|
|
1035
1110
|
tx_index: number;
|
|
1036
1111
|
operation_index?: number;
|
|
1037
1112
|
};
|
|
1038
|
-
|
|
1039
|
-
transfer: TransferJSON;
|
|
1113
|
+
interface BaseOperationJSON {
|
|
1040
1114
|
tx_index: number;
|
|
1041
1115
|
amount_in: string;
|
|
1042
1116
|
amount_out: string;
|
|
1043
|
-
}
|
|
1117
|
+
}
|
|
1118
|
+
type OperationJSON = (BaseOperationJSON & {
|
|
1119
|
+
transfer: TransferJSON;
|
|
1120
|
+
}) | (BaseOperationJSON & {
|
|
1044
1121
|
bank_send: BankSendJSON;
|
|
1045
|
-
|
|
1046
|
-
amount_in: string;
|
|
1047
|
-
amount_out: string;
|
|
1048
|
-
} | {
|
|
1122
|
+
}) | (BaseOperationJSON & {
|
|
1049
1123
|
swap: SwapJSON;
|
|
1050
|
-
|
|
1051
|
-
amount_in: string;
|
|
1052
|
-
amount_out: string;
|
|
1053
|
-
} | {
|
|
1124
|
+
}) | (BaseOperationJSON & {
|
|
1054
1125
|
axelar_transfer: AxelarTransferJSON;
|
|
1055
|
-
|
|
1056
|
-
amount_in: string;
|
|
1057
|
-
amount_out: string;
|
|
1058
|
-
} | {
|
|
1126
|
+
}) | (BaseOperationJSON & {
|
|
1059
1127
|
cctp_transfer: CCTPTransferJSON;
|
|
1060
|
-
|
|
1061
|
-
amount_in: string;
|
|
1062
|
-
amount_out: string;
|
|
1063
|
-
} | {
|
|
1128
|
+
}) | (BaseOperationJSON & {
|
|
1064
1129
|
hyperlane_transfer: HyperlaneTransferJSON;
|
|
1065
|
-
|
|
1066
|
-
amount_in: string;
|
|
1067
|
-
amount_out: string;
|
|
1068
|
-
} | {
|
|
1130
|
+
}) | (BaseOperationJSON & {
|
|
1069
1131
|
evm_swap: EvmSwapJSON;
|
|
1070
|
-
|
|
1071
|
-
amount_in: string;
|
|
1072
|
-
amount_out: string;
|
|
1073
|
-
} | {
|
|
1132
|
+
}) | (BaseOperationJSON & {
|
|
1074
1133
|
op_init_transfer: OPInitTransferJSON;
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
type Operation = {
|
|
1080
|
-
transfer: Transfer;
|
|
1134
|
+
}) | (BaseOperationJSON & {
|
|
1135
|
+
go_fast_transfer: GoFastTransferJSON;
|
|
1136
|
+
});
|
|
1137
|
+
interface BaseOperation {
|
|
1081
1138
|
txIndex: number;
|
|
1082
1139
|
amountIn: string;
|
|
1083
1140
|
amountOut: string;
|
|
1084
|
-
}
|
|
1141
|
+
}
|
|
1142
|
+
type Operation = (BaseOperation & {
|
|
1143
|
+
transfer: Transfer;
|
|
1144
|
+
}) | (BaseOperation & {
|
|
1085
1145
|
bankSend: BankSend;
|
|
1086
|
-
|
|
1087
|
-
amountIn: string;
|
|
1088
|
-
amountOut: string;
|
|
1089
|
-
} | {
|
|
1146
|
+
}) | (BaseOperation & {
|
|
1090
1147
|
swap: Swap;
|
|
1091
|
-
|
|
1092
|
-
amountIn: string;
|
|
1093
|
-
amountOut: string;
|
|
1094
|
-
} | {
|
|
1148
|
+
}) | (BaseOperation & {
|
|
1095
1149
|
axelarTransfer: AxelarTransfer;
|
|
1096
|
-
|
|
1097
|
-
amountIn: string;
|
|
1098
|
-
amountOut: string;
|
|
1099
|
-
} | {
|
|
1150
|
+
}) | (BaseOperation & {
|
|
1100
1151
|
cctpTransfer: CCTPTransfer;
|
|
1101
|
-
|
|
1102
|
-
amountIn: string;
|
|
1103
|
-
amountOut: string;
|
|
1104
|
-
} | {
|
|
1152
|
+
}) | (BaseOperation & {
|
|
1105
1153
|
hyperlaneTransfer: HyperlaneTransfer;
|
|
1106
|
-
|
|
1107
|
-
amountIn: string;
|
|
1108
|
-
amountOut: string;
|
|
1109
|
-
} | {
|
|
1154
|
+
}) | (BaseOperation & {
|
|
1110
1155
|
evmSwap: EvmSwap;
|
|
1111
|
-
|
|
1112
|
-
amountIn: string;
|
|
1113
|
-
amountOut: string;
|
|
1114
|
-
} | {
|
|
1156
|
+
}) | (BaseOperation & {
|
|
1115
1157
|
opInitTransfer: OPInitTransfer;
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
};
|
|
1158
|
+
}) | (BaseOperation & {
|
|
1159
|
+
goFastTransfer: GoFastTransfer;
|
|
1160
|
+
});
|
|
1120
1161
|
type RouteResponseJSON = {
|
|
1121
1162
|
source_asset_denom: string;
|
|
1122
1163
|
source_asset_chain_id: string;
|
|
@@ -1309,7 +1350,7 @@ type MsgsResponse = {
|
|
|
1309
1350
|
txs: Tx[];
|
|
1310
1351
|
warning?: MsgsWarning;
|
|
1311
1352
|
};
|
|
1312
|
-
type BridgeType = 'IBC' | 'AXELAR' | 'CCTP' | 'HYPERLANE' | 'OPINIT';
|
|
1353
|
+
type BridgeType = 'IBC' | 'AXELAR' | 'CCTP' | 'HYPERLANE' | 'OPINIT' | 'GO_FAST';
|
|
1313
1354
|
type ChainType = 'cosmos' | 'evm' | 'svm';
|
|
1314
1355
|
type TxResult = {
|
|
1315
1356
|
txHash: string;
|
|
@@ -1539,6 +1580,10 @@ declare function swapFromJSON(swapJSON: SwapJSON): Swap;
|
|
|
1539
1580
|
declare function swapToJSON(swap: Swap): SwapJSON;
|
|
1540
1581
|
declare function evmSwapFromJSON(evmSwapJSON: EvmSwapJSON): EvmSwap;
|
|
1541
1582
|
declare function evmSwapToJSON(evmSwap: EvmSwap): EvmSwapJSON;
|
|
1583
|
+
declare function goFastFeeToJSON(goFastFee: GoFastFee): GoFastFeeJSON;
|
|
1584
|
+
declare function goFastFeeFromJSON(goFastFeeJSON: GoFastFeeJSON): GoFastFee;
|
|
1585
|
+
declare function goFastTransferToJSON(goFast: GoFastTransfer): GoFastTransferJSON;
|
|
1586
|
+
declare function goFastTransferFromJSON(goFastJSON: GoFastTransferJSON): GoFastTransfer;
|
|
1542
1587
|
declare function operationFromJSON(operationJSON: OperationJSON): Operation;
|
|
1543
1588
|
declare function operationToJSON(operation: Operation): OperationJSON;
|
|
1544
1589
|
declare function routeResponseFromJSON(routeResponseJSON: RouteResponseJSON): RouteResponse;
|
|
@@ -1609,6 +1654,8 @@ declare function contractCallWithTokenTransactionsToJSON(value: ContractCallWith
|
|
|
1609
1654
|
declare function axelarTransferTransactionsFromJSON(value: AxelarTransferTransactionsJSON): AxelarTransferTransactions;
|
|
1610
1655
|
declare function axelarTransferTransactionsToJSON(value: AxelarTransferTransactions): AxelarTransferTransactionsJSON;
|
|
1611
1656
|
declare function axelarTransferInfoFromJSON(value: AxelarTransferInfoJSON): AxelarTransferInfo;
|
|
1657
|
+
declare function goFastTransferInfoFromJSON(value: GoFastTransferInfoJSON): GoFastTransferInfo;
|
|
1658
|
+
declare function goFastTransferInfoToJson(value: GoFastTransferInfo): GoFastTransferInfoJSON;
|
|
1612
1659
|
declare function axelarTransferInfoToJSON(value: AxelarTransferInfo): AxelarTransferInfoJSON;
|
|
1613
1660
|
declare function transferEventFromJSON(value: TransferEventJSON): TransferEvent;
|
|
1614
1661
|
declare function transferEventToJSON(value: TransferEvent): TransferEventJSON;
|
|
@@ -1639,6 +1686,8 @@ declare function cctpTransferInfoFromJSON(value: CCTPTransferInfoJSON): CCTPTran
|
|
|
1639
1686
|
declare function cctpTransferInfoToJSON(value: CCTPTransferInfo): CCTPTransferInfoJSON;
|
|
1640
1687
|
declare function hyperlaneTransferTransactionsFromJSON(value: HyperlaneTransferTransactionsJSON): HyperlaneTransferTransactions;
|
|
1641
1688
|
declare function hyperlaneTransferTransactionsToJSON(value: HyperlaneTransferTransactions): HyperlaneTransferTransactionsJSON;
|
|
1689
|
+
declare function goFastTransferTransactionsToJSON(value: GoFastTransferTransactions): GoFastTransferTransactionsJSON;
|
|
1690
|
+
declare function goFastTransferTransactionsFromJSON(value: GoFastTransferTransactionsJSON): GoFastTransferTransactions;
|
|
1642
1691
|
declare function hyperlaneTransferInfoFromJSON(value: HyperlaneTransferInfoJSON): HyperlaneTransferInfo;
|
|
1643
1692
|
declare function hyperlaneTransferInfoToJSON(value: HyperlaneTransferInfo): HyperlaneTransferInfoJSON;
|
|
1644
1693
|
declare function opInitTransferTransactionsFromJSON(value: OPInitTransferTransactionsJSON): OPInitTransferTransactions;
|
|
@@ -1959,4 +2008,4 @@ declare function getEncodeObjectFromCosmosMessage(message: CosmosMsg): EncodeObj
|
|
|
1959
2008
|
declare function getEncodeObjectFromCosmosMessageInjective(message: CosmosMsg): Msgs;
|
|
1960
2009
|
declare function getCosmosGasAmountForMessage(client: SigningStargateClient, signerAddress: string, chainID: string, messages?: CosmosMsg[], encodedMsgs?: EncodeObject[], multiplier?: number): Promise<string>;
|
|
1961
2010
|
|
|
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 };
|
|
2011
|
+
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 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 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 };
|