@skip-go/client 0.16.17 → 0.16.19
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 +89 -15
- package/dist/index.js +206 -204
- 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 {
|
|
@@ -491,6 +507,7 @@ type TransferJSON = {
|
|
|
491
507
|
fee_asset?: AssetJSON;
|
|
492
508
|
bridge_id: BridgeType;
|
|
493
509
|
smart_relay: boolean;
|
|
510
|
+
to_chain_callback_contract_address?: string;
|
|
494
511
|
/**
|
|
495
512
|
* @deprecated use `from_chain_id` and `to_chain_id` instead
|
|
496
513
|
*/
|
|
@@ -514,6 +531,7 @@ type Transfer = {
|
|
|
514
531
|
feeAsset?: Asset;
|
|
515
532
|
bridgeID: BridgeType;
|
|
516
533
|
smartRelay: boolean;
|
|
534
|
+
toChainCallbackContractAddress?: string;
|
|
517
535
|
/**
|
|
518
536
|
* @deprecated use `fromChainID` and `toChainID` instead
|
|
519
537
|
*/
|
|
@@ -729,6 +747,38 @@ type OPInitTransfer = {
|
|
|
729
747
|
bridgeID: BridgeType;
|
|
730
748
|
smartRelay: boolean;
|
|
731
749
|
};
|
|
750
|
+
type EurekaTransferJSON = {
|
|
751
|
+
destination_port: string;
|
|
752
|
+
source_client: string;
|
|
753
|
+
from_chain_id: string;
|
|
754
|
+
to_chain_id: string;
|
|
755
|
+
pfm_enabled: boolean;
|
|
756
|
+
supports_memo: boolean;
|
|
757
|
+
entry_contract_address: string;
|
|
758
|
+
callback_adapter_contract_address: string;
|
|
759
|
+
denom_in: string;
|
|
760
|
+
denom_out: string;
|
|
761
|
+
bridge_id: BridgeType;
|
|
762
|
+
smart_relay: boolean;
|
|
763
|
+
smart_relay_fee_quote?: SmartRelayFeeQuoteJSON;
|
|
764
|
+
to_chain_callback_contract_address?: string;
|
|
765
|
+
};
|
|
766
|
+
type EurekaTransfer = {
|
|
767
|
+
destinationPort: string;
|
|
768
|
+
sourceClient: string;
|
|
769
|
+
fromChainID: string;
|
|
770
|
+
toChainID: string;
|
|
771
|
+
pfmEnabled: boolean;
|
|
772
|
+
supportsMemo: boolean;
|
|
773
|
+
entryContractAddress: string;
|
|
774
|
+
callbackAdapterContractAddress: string;
|
|
775
|
+
denomIn: string;
|
|
776
|
+
denomOut: string;
|
|
777
|
+
bridgeID: BridgeType;
|
|
778
|
+
smartRelay: boolean;
|
|
779
|
+
smartRelayFeeQuote?: SmartRelayFeeQuote;
|
|
780
|
+
toChainCallbackContractAddress?: string;
|
|
781
|
+
};
|
|
732
782
|
type SmartRelayFeeQuoteJSON = {
|
|
733
783
|
fee_amount: string;
|
|
734
784
|
relayer_address: string;
|
|
@@ -1143,7 +1193,7 @@ type RouteRequestGivenOut = RouteRequestBase & {
|
|
|
1143
1193
|
type RouteRequest = RouteRequestGivenIn | RouteRequestGivenOut;
|
|
1144
1194
|
type RouteWarningType = "LOW_INFO_WARNING" | "BAD_PRICE_WARNING";
|
|
1145
1195
|
type MsgsWarningType = "INSUFFICIENT_GAS_AT_DEST_EOA" | "INSUFFICIENT_GAS_AT_INTERMEDIATE";
|
|
1146
|
-
type ExperimentalFeature = "cctp" | "hyperlane" | "stargate";
|
|
1196
|
+
type ExperimentalFeature = "cctp" | "hyperlane" | "stargate" | "eureka";
|
|
1147
1197
|
type RouteWarning = {
|
|
1148
1198
|
type: RouteWarningType;
|
|
1149
1199
|
message: string;
|
|
@@ -1199,6 +1249,8 @@ type OperationJSON = (BaseOperationJSON & {
|
|
|
1199
1249
|
op_init_transfer: OPInitTransferJSON;
|
|
1200
1250
|
}) | (BaseOperationJSON & {
|
|
1201
1251
|
go_fast_transfer: GoFastTransferJSON;
|
|
1252
|
+
}) | (BaseOperationJSON & {
|
|
1253
|
+
eureka_transfer: EurekaTransferJSON;
|
|
1202
1254
|
}) | (BaseOperationJSON & {
|
|
1203
1255
|
stargate_transfer: StargateTransferJSON;
|
|
1204
1256
|
});
|
|
@@ -1225,6 +1277,8 @@ type Operation = (BaseOperation & {
|
|
|
1225
1277
|
opInitTransfer: OPInitTransfer;
|
|
1226
1278
|
}) | (BaseOperation & {
|
|
1227
1279
|
goFastTransfer: GoFastTransfer;
|
|
1280
|
+
}) | (BaseOperation & {
|
|
1281
|
+
eurekaTransfer: EurekaTransfer;
|
|
1228
1282
|
}) | (BaseOperation & {
|
|
1229
1283
|
stargateTransfer: StargateTransfer;
|
|
1230
1284
|
});
|
|
@@ -1424,7 +1478,7 @@ type MsgsResponse = {
|
|
|
1424
1478
|
txs: Tx[];
|
|
1425
1479
|
warning?: MsgsWarning;
|
|
1426
1480
|
};
|
|
1427
|
-
type BridgeType = "IBC" | "AXELAR" | "CCTP" | "HYPERLANE" | "OPINIT" | "GO_FAST" | "STARGATE";
|
|
1481
|
+
type BridgeType = "IBC" | "AXELAR" | "CCTP" | "HYPERLANE" | "OPINIT" | "GO_FAST" | "STARGATE" | "EUREKA";
|
|
1428
1482
|
declare enum ChainType {
|
|
1429
1483
|
Cosmos = "cosmos",
|
|
1430
1484
|
EVM = "evm",
|
|
@@ -1664,6 +1718,8 @@ declare function goFastTransferToJSON(goFast: GoFastTransfer): GoFastTransferJSO
|
|
|
1664
1718
|
declare function goFastTransferFromJSON(goFastJSON: GoFastTransferJSON): GoFastTransfer;
|
|
1665
1719
|
declare function stargateTransferFromJSON(stargateTransferJSON: StargateTransferJSON): StargateTransfer;
|
|
1666
1720
|
declare function stargateTransferToJSON(stargateTransfer: StargateTransfer): StargateTransferJSON;
|
|
1721
|
+
declare function eurekaTransferFromJSON(eurekaTransferJSON: EurekaTransferJSON): EurekaTransfer;
|
|
1722
|
+
declare function eurekaTransferToJSON(eurekaTransfer: EurekaTransfer): EurekaTransferJSON;
|
|
1667
1723
|
declare function operationFromJSON(operationJSON: OperationJSON): Operation;
|
|
1668
1724
|
declare function operationToJSON(operation: Operation): OperationJSON;
|
|
1669
1725
|
declare function routeResponseFromJSON(routeResponseJSON: RouteResponseJSON): RouteResponse;
|
|
@@ -1778,6 +1834,8 @@ declare function opInitTransferInfoFromJSON(value: OPInitTransferInfoJSON): OPIn
|
|
|
1778
1834
|
declare function opInitTransferInfoToJSON(value: OPInitTransferInfo): OPInitTransferInfoJSON;
|
|
1779
1835
|
declare function stargateTransferInfoFromJSON(value: StargateTransferInfoJSON): StargateTransferInfo;
|
|
1780
1836
|
declare function stargateTransferInfoToJSON(value: StargateTransferInfo): StargateTransferInfoJSON;
|
|
1837
|
+
declare function eurekaTransferInfoFromJSON(value: EurekaTransferInfoJSON): EurekaTransferInfo;
|
|
1838
|
+
declare function eurekaTransferInfoToJSON(value: EurekaTransferInfo): EurekaTransferInfoJSON;
|
|
1781
1839
|
declare function msgsDirectRequestFromJSON(msgDirectRequestJSON: MsgsDirectRequestJSON): MsgsDirectRequest;
|
|
1782
1840
|
declare function msgsDirectRequestToJSON(msgDirectRequest: MsgsDirectRequest): MsgsDirectRequestJSON;
|
|
1783
1841
|
declare function smartSwapOptionsFromJSON(smartSwapOptionsJSON: SmartSwapOptionsJSON): SmartSwapOptions;
|
|
@@ -1910,15 +1968,19 @@ declare class SkipClient {
|
|
|
1910
1968
|
getRpcEndpointForChain?: (chainID: string) => Promise<string>;
|
|
1911
1969
|
getRestEndpointForChain?: (chainID: string) => Promise<string>;
|
|
1912
1970
|
};
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
private
|
|
1920
|
-
private
|
|
1971
|
+
getCosmosSigner?: SignerGetters["getCosmosSigner"];
|
|
1972
|
+
getEVMSigner?: SignerGetters["getEVMSigner"];
|
|
1973
|
+
getSVMSigner?: SignerGetters["getSVMSigner"];
|
|
1974
|
+
chainIDsToAffiliates?: SkipClientOptions["chainIDsToAffiliates"];
|
|
1975
|
+
cumulativeAffiliateFeeBPS?: string;
|
|
1976
|
+
private clientOptions;
|
|
1977
|
+
private skipChains?;
|
|
1978
|
+
private skipAssets?;
|
|
1979
|
+
private skipBalances?;
|
|
1980
|
+
private signingStargateClientByChainId;
|
|
1981
|
+
private cosmosGasFee;
|
|
1921
1982
|
constructor(options?: SkipClientOptions);
|
|
1983
|
+
updateOptions(options?: SkipClientOptions): void;
|
|
1922
1984
|
assets(options?: AssetsRequest): Promise<Record<string, Asset[]>>;
|
|
1923
1985
|
chains(options?: ChainsRequest): Promise<Chain[]>;
|
|
1924
1986
|
assetsFromSource(options: AssetsFromSourceRequest): Promise<Record<string, Asset[]>>;
|
|
@@ -1948,6 +2010,15 @@ declare class SkipClient {
|
|
|
1948
2010
|
message: SvmTx;
|
|
1949
2011
|
options: ExecuteRouteOptions;
|
|
1950
2012
|
}): Promise<string>;
|
|
2013
|
+
getSigningStargateClient({ chainId, getOfflineSigner, }: {
|
|
2014
|
+
chainId: string;
|
|
2015
|
+
getOfflineSigner?: (chainID: string) => Promise<OfflineSigner>;
|
|
2016
|
+
}): Promise<{
|
|
2017
|
+
stargateClient: SigningStargateClient;
|
|
2018
|
+
signer: OfflineSigner;
|
|
2019
|
+
}>;
|
|
2020
|
+
private getAssets;
|
|
2021
|
+
private getChains;
|
|
1951
2022
|
signCosmosMessageDirect(options: SignCosmosMessageDirectOptions): Promise<TxRaw>;
|
|
1952
2023
|
private signCosmosMessageDirectEvmos;
|
|
1953
2024
|
private signCosmosMessageDirectInjective;
|
|
@@ -2064,23 +2135,23 @@ declare class SkipClient {
|
|
|
2064
2135
|
getFeeInfoForChain(chainID: string): Promise<FeeAsset | undefined>;
|
|
2065
2136
|
private getDefaultGasTokenForChain;
|
|
2066
2137
|
private getStakingTokensForChain;
|
|
2067
|
-
validateGasBalances({ txs,
|
|
2138
|
+
validateGasBalances({ txs, onValidateGasBalance, getFallbackGasAmount, getOfflineSigner, simulate, }: {
|
|
2068
2139
|
txs: Tx[];
|
|
2069
2140
|
getOfflineSigner?: (chainID: string) => Promise<OfflineSigner>;
|
|
2070
2141
|
onValidateGasBalance?: ExecuteRouteOptions["onValidateGasBalance"];
|
|
2071
2142
|
getFallbackGasAmount?: GetFallbackGasAmount;
|
|
2072
2143
|
simulate?: ExecuteRouteOptions["simulate"];
|
|
2073
|
-
}): Promise<
|
|
2144
|
+
}): Promise<void>;
|
|
2074
2145
|
/**
|
|
2075
2146
|
*
|
|
2076
2147
|
* Validate gas balance for cosmos messages returns a fee asset and StdFee to be used
|
|
2077
2148
|
*
|
|
2078
2149
|
*/
|
|
2079
|
-
validateCosmosGasBalance({ chainID, signerAddress,
|
|
2150
|
+
validateCosmosGasBalance({ chainID, signerAddress, messages, getFallbackGasAmount, getOfflineSigner, txIndex, simulate, }: {
|
|
2080
2151
|
chainID: string;
|
|
2081
2152
|
signerAddress: string;
|
|
2082
|
-
client: SigningStargateClient;
|
|
2083
2153
|
messages?: CosmosMsg[];
|
|
2154
|
+
getOfflineSigner?: (chainID: string) => Promise<OfflineSigner>;
|
|
2084
2155
|
getFallbackGasAmount?: GetFallbackGasAmount;
|
|
2085
2156
|
txIndex?: number;
|
|
2086
2157
|
simulate?: ExecuteRouteOptions["simulate"];
|
|
@@ -2098,6 +2169,9 @@ declare class SkipClient {
|
|
|
2098
2169
|
fee: StdFee;
|
|
2099
2170
|
}>;
|
|
2100
2171
|
getMainnetAndTestnetChains(): Promise<Chain[]>;
|
|
2172
|
+
getMainnetAndTestnetAssets(chainId?: string): Promise<{
|
|
2173
|
+
[x: string]: Asset[];
|
|
2174
|
+
}>;
|
|
2101
2175
|
validateUserAddresses(userAddresses: UserAddress[]): Promise<boolean>;
|
|
2102
2176
|
}
|
|
2103
2177
|
/**
|
|
@@ -2111,4 +2185,4 @@ declare function getEncodeObjectFromCosmosMessage(message: CosmosMsg): EncodeObj
|
|
|
2111
2185
|
declare function getEncodeObjectFromCosmosMessageInjective(message: CosmosMsg): Msgs;
|
|
2112
2186
|
declare function getCosmosGasAmountForMessage(client: SigningStargateClient, signerAddress: string, chainID: string, messages?: CosmosMsg[], encodedMsgs?: EncodeObject[], multiplier?: number): Promise<string>;
|
|
2113
2187
|
|
|
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 };
|
|
2188
|
+
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 };
|