@skip-go/client 0.8.2 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-MVYCWIUE.js → chunk-5I2266VA.js} +94 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +234 -185
- package/dist/{shared-CXij4l4y.d.ts → shared-DxdVuIaC.d.ts} +55 -1
- package/dist/transactions.d.ts +1 -1
- package/dist/types.d.ts +13 -3
- package/dist/types.js +201 -161
- package/package.json +1 -1
|
@@ -467,6 +467,60 @@ type AssetsBetweenChainsResponseJSON = {
|
|
|
467
467
|
type AssetsBetweenChainsResponse = {
|
|
468
468
|
assetsBetweenChains: AssetBetweenChains[];
|
|
469
469
|
};
|
|
470
|
+
type BalanceRequestChainEntryJSON = {
|
|
471
|
+
address: string;
|
|
472
|
+
denoms: string[];
|
|
473
|
+
};
|
|
474
|
+
type BalanceRequestChainEntry = {
|
|
475
|
+
address: string;
|
|
476
|
+
denoms: string[];
|
|
477
|
+
};
|
|
478
|
+
type BalanceRequestJSON = {
|
|
479
|
+
chains: {
|
|
480
|
+
[chain: string]: BalanceRequestChainEntryJSON;
|
|
481
|
+
};
|
|
482
|
+
};
|
|
483
|
+
type BalanceRequest = {
|
|
484
|
+
chains: {
|
|
485
|
+
[chain: string]: BalanceRequestChainEntry;
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
type BalanceResponseDenomEntryJSON = {
|
|
489
|
+
amount: string;
|
|
490
|
+
decimals?: number;
|
|
491
|
+
formatted_amount: string;
|
|
492
|
+
price?: string;
|
|
493
|
+
value_usd?: string;
|
|
494
|
+
error?: ApiError;
|
|
495
|
+
};
|
|
496
|
+
type BalanceResponseDenomEntry = {
|
|
497
|
+
amount: string;
|
|
498
|
+
decimals?: number;
|
|
499
|
+
formattedAmount: string;
|
|
500
|
+
price?: string;
|
|
501
|
+
valueUSD?: string;
|
|
502
|
+
error?: ApiError;
|
|
503
|
+
};
|
|
504
|
+
type BalanceResponseChainEntryJSON = {
|
|
505
|
+
denoms: {
|
|
506
|
+
[denom: string]: BalanceResponseDenomEntryJSON;
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
type BalanceResponseChainEntry = {
|
|
510
|
+
denoms: {
|
|
511
|
+
[denom: string]: BalanceResponseDenomEntry;
|
|
512
|
+
};
|
|
513
|
+
};
|
|
514
|
+
type BalanceResponseJSON = {
|
|
515
|
+
chains: {
|
|
516
|
+
[chain: string]: BalanceResponseChainEntryJSON;
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
type BalanceResponse = {
|
|
520
|
+
chains: {
|
|
521
|
+
[chain: string]: BalanceResponseChainEntry;
|
|
522
|
+
};
|
|
523
|
+
};
|
|
470
524
|
type BridgesResponseJSON = {
|
|
471
525
|
bridges: BridgeJSON[];
|
|
472
526
|
};
|
|
@@ -964,4 +1018,4 @@ type SmartSwapOptions = {
|
|
|
964
1018
|
evmSwaps?: boolean;
|
|
965
1019
|
};
|
|
966
1020
|
|
|
967
|
-
export type {
|
|
1021
|
+
export type { SwapExactCoinInJSON as $, AssetsRequest as A, Bridge as B, CosmosMsg as C, DenomWithChainID as D, EvmTx as E, CosmosTxJSON as F, CosmosTx as G, CCTPTransferJSON as H, IBCAddressJSON as I, CCTPTransfer as J, HyperlaneTransferJSON as K, HyperlaneTransfer as L, MultiChainMsg as M, OPInitTransfer as N, OPInitTransferJSON as O, SmartRelayFeeQuoteJSON as P, SmartRelayFeeQuote as Q, RouteResponse as R, SvmTx as S, Tx as T, SwapVenueJSON as U, SwapVenueRequestJSON as V, SwapVenueRequest as W, SwapOperationJSON as X, SwapOperation as Y, SwapExactCoinOutJSON as Z, SwapExactCoinOut as _, ChainAffiliates as a, MsgJSON as a$, SwapExactCoinIn as a0, SwapRouteJSON as a1, SwapRoute as a2, SmartSwapExactCoinInJSON as a3, SmartSwapExactCoinIn as a4, SwapJSON as a5, Swap as a6, EvmSwapJSON as a7, EvmSwap as a8, AffiliateJSON as a9, AssetRecommendationRequestJSON as aA, RecommendAssetsRequestJSON as aB, RecommendAssetsRequest as aC, RecommendAssetsResponseJSON as aD, RecommendAssetsResponse as aE, RecommendationEntryJSON as aF, RouteRequestBaseJSON as aG, RouteRequestGivenInJSON as aH, RouteRequestGivenOutJSON as aI, RouteRequestJSON as aJ, MsgsDirectResponseJSON as aK, RouteRequestBase as aL, RouteRequestGivenIn as aM, RouteRequestGivenOut as aN, RouteWarningType as aO, MsgsWarningType as aP, ExperimentalFeature as aQ, RouteWarning as aR, MsgsWarning as aS, FeeType as aT, EstimatedFee as aU, EstimatedFeeJSON as aV, OperationJSON as aW, Operation as aX, RouteResponseJSON as aY, MsgsRequestJSON as aZ, MsgsDirectRequestJSON as a_, Affiliate as aa, ChainAffiliatesJSON as ab, Reason as ac, CosmWasmContractMsgJSON as ad, CosmWasmContractMsg as ae, AutopilotAction as af, AutopilotMsg as ag, PostHandlerJSON as ah, PostHandler as ai, ERC20ApprovalJSON as aj, ERC20Approval as ak, SvmTxJSON as al, EvmTxJSON as am, DenomWithChainIDJSON as an, ApiError as ao, AssetOrErrorJSON as ap, OriginAssetsRequestJSON as aq, OriginAssetsRequest as ar, OriginAssetsResponseJSON as as, OriginAssetsResponse as at, SmartSwapOptionsJSON as au, SmartSwapOptions as av, AssetsRequestJSON as aw, AssetsFromSourceRequestJSON as ax, AssetRecommendation as ay, AssetRecommendationJSON as az, Asset as b, Msg as b0, TxJSON as b1, MsgsResponseJSON as b2, BridgeType as b3, AssetBetweenChainsJSON as b4, AssetsBetweenChainsRequestJSON as b5, AssetsBetweenChainsResponseJSON as b6, AssetsBetweenChainsResponse as b7, BalanceRequestChainEntryJSON as b8, BalanceRequestChainEntry as b9, BalanceRequestJSON as ba, BalanceResponseDenomEntryJSON as bb, BalanceResponseDenomEntry as bc, BalanceResponseChainEntryJSON as bd, BalanceResponseChainEntry as be, BalanceResponseJSON as bf, BridgesResponseJSON as bg, BridgesResponse as bh, BridgeJSON as bi, AssetsFromSourceRequest as c, AssetsBetweenChainsRequest as d, AssetBetweenChains as e, BalanceRequest as f, BalanceResponse as g, MsgsRequest as h, MsgsResponse as i, RouteRequest as j, MsgsDirectRequest as k, MsgsDirectResponse as l, AssetRecommendationRequest as m, RecommendationEntry as n, AssetOrError as o, SwapVenue as p, IBCAddress as q, AssetJSON as r, TransferJSON as s, Transfer as t, AxelarTransferJSON as u, AxelarTransfer as v, BankSendJSON as w, BankSend as x, MultiChainMsgJSON as y, CosmosMsgJSON as z };
|
package/dist/transactions.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EncodeObject } from '@cosmjs/proto-signing';
|
|
2
2
|
import { Msgs } from '@injectivelabs/sdk-ts/dist/cjs/core/modules/msgs';
|
|
3
|
-
import { C as CosmosMsg } from './shared-
|
|
3
|
+
import { C as CosmosMsg } from './shared-DxdVuIaC.js';
|
|
4
4
|
import { SigningStargateClient } from '@cosmjs/stargate';
|
|
5
5
|
|
|
6
6
|
declare const DEFAULT_GAS_MULTIPLIER = 1.5;
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
1
|
+
import { a9 as AffiliateJSON, aa as Affiliate, r as AssetJSON, b as Asset, az as AssetRecommendationJSON, ay as AssetRecommendation, ax as AssetsFromSourceRequestJSON, c as AssetsFromSourceRequest, aw as AssetsRequestJSON, A as AssetsRequest, aB as RecommendAssetsRequestJSON, aC as RecommendAssetsRequest, aD as RecommendAssetsResponseJSON, aE as RecommendAssetsResponse, aF as RecommendationEntryJSON, n as RecommendationEntry, aV as EstimatedFeeJSON, aU as EstimatedFee, U as SwapVenueJSON, p as SwapVenue, V as SwapVenueRequestJSON, W as SwapVenueRequest, aJ as RouteRequestJSON, j as RouteRequest, s as TransferJSON, t as Transfer, X as SwapOperationJSON, Y as SwapOperation, a1 as SwapRouteJSON, a2 as SwapRoute, $ as SwapExactCoinInJSON, a0 as SwapExactCoinIn, a3 as SmartSwapExactCoinInJSON, a4 as SmartSwapExactCoinIn, Z as SwapExactCoinOutJSON, _ as SwapExactCoinOut, a5 as SwapJSON, a6 as Swap, a7 as EvmSwapJSON, a8 as EvmSwap, aW as OperationJSON, aX as Operation, aY as RouteResponseJSON, R as RouteResponse, ad as CosmWasmContractMsgJSON, ae as CosmWasmContractMsg, ah as PostHandlerJSON, ai as PostHandler, aZ as MsgsRequestJSON, h as MsgsRequest, y as MultiChainMsgJSON, M as MultiChainMsg, z as CosmosMsgJSON, C as CosmosMsg, I as IBCAddressJSON, q as IBCAddress, u as AxelarTransferJSON, v as AxelarTransfer, w as BankSendJSON, x as BankSend, P as SmartRelayFeeQuoteJSON, Q as SmartRelayFeeQuote, H as CCTPTransferJSON, J as CCTPTransfer, K as HyperlaneTransferJSON, L as HyperlaneTransfer, O as OPInitTransferJSON, N as OPInitTransfer, aj as ERC20ApprovalJSON, ak as ERC20Approval, al as SvmTxJSON, S as SvmTx, am as EvmTxJSON, E as EvmTx, F as CosmosTxJSON, G as CosmosTx, b1 as TxJSON, T as Tx, a$ as MsgJSON, b0 as Msg, b2 as MsgsResponseJSON, i as MsgsResponse, an as DenomWithChainIDJSON, D as DenomWithChainID, ap as AssetOrErrorJSON, o as AssetOrError, aq as OriginAssetsRequestJSON, ar as OriginAssetsRequest, as as OriginAssetsResponseJSON, at as OriginAssetsResponse, b4 as AssetBetweenChainsJSON, e as AssetBetweenChains, b5 as AssetsBetweenChainsRequestJSON, d as AssetsBetweenChainsRequest, b6 as AssetsBetweenChainsResponseJSON, b7 as AssetsBetweenChainsResponse, aA as AssetRecommendationRequestJSON, m as AssetRecommendationRequest, bg as BridgesResponseJSON, bh as BridgesResponse, bi as BridgeJSON, B as Bridge, a_ as MsgsDirectRequestJSON, k as MsgsDirectRequest, au as SmartSwapOptionsJSON, av as SmartSwapOptions, ab as ChainAffiliatesJSON, a as ChainAffiliates, b8 as BalanceRequestChainEntryJSON, b9 as BalanceRequestChainEntry, ba as BalanceRequestJSON, f as BalanceRequest, bb as BalanceResponseDenomEntryJSON, bc as BalanceResponseDenomEntry, bd as BalanceResponseChainEntryJSON, be as BalanceResponseChainEntry, bf as BalanceResponseJSON, g as BalanceResponse } from './shared-DxdVuIaC.js';
|
|
2
|
+
export { ao as ApiError, af as AutopilotAction, ag as AutopilotMsg, b3 as BridgeType, aQ as ExperimentalFeature, aT as FeeType, l as MsgsDirectResponse, aK as MsgsDirectResponseJSON, aS as MsgsWarning, aP as MsgsWarningType, ac as Reason, aL as RouteRequestBase, aG as RouteRequestBaseJSON, aM as RouteRequestGivenIn, aH as RouteRequestGivenInJSON, aN as RouteRequestGivenOut, aI as RouteRequestGivenOutJSON, aR as RouteWarning, aO as RouteWarningType } from './shared-DxdVuIaC.js';
|
|
3
3
|
|
|
4
4
|
type SubmitTxRequestJSON = {
|
|
5
5
|
tx: string;
|
|
@@ -563,5 +563,15 @@ declare function chainIDsToAffiliatesMapFromJSON(value: Record<string, ChainAffi
|
|
|
563
563
|
declare function chainIDsToAffiliatesMapToJSON(value: Record<string, ChainAffiliates>): Record<string, ChainAffiliatesJSON>;
|
|
564
564
|
declare function chainAffiliatesFromJSON(value: ChainAffiliatesJSON): ChainAffiliates;
|
|
565
565
|
declare function chainAffiliatesToJSON(value: ChainAffiliates): ChainAffiliatesJSON;
|
|
566
|
+
declare function balanceRequestChainEntryFromJSON(value: BalanceRequestChainEntryJSON): BalanceRequestChainEntry;
|
|
567
|
+
declare function balanceRequestChainEntryToJSON(value: BalanceRequestChainEntry): BalanceRequestChainEntryJSON;
|
|
568
|
+
declare function balanceRequestFromJSON(value: BalanceRequestJSON): BalanceRequest;
|
|
569
|
+
declare function balanceRequestToJSON(value: BalanceRequest): BalanceRequestJSON;
|
|
570
|
+
declare function balanceResponseDenomEntryFromJSON(value: BalanceResponseDenomEntryJSON): BalanceResponseDenomEntry;
|
|
571
|
+
declare function balanceResponseDenomEntryToJSON(value: BalanceResponseDenomEntry): BalanceResponseDenomEntryJSON;
|
|
572
|
+
declare function balanceResponseChainEntryFromJSON(value: BalanceResponseChainEntryJSON): BalanceResponseChainEntry;
|
|
573
|
+
declare function balanceResponseChainEntryToJSON(value: BalanceResponseChainEntry): BalanceResponseChainEntryJSON;
|
|
574
|
+
declare function balanceResponseFromJSON(value: BalanceResponseJSON): BalanceResponse;
|
|
575
|
+
declare function balanceResponseToJSON(value: BalanceResponse): BalanceResponseJSON;
|
|
566
576
|
|
|
567
|
-
export { type AcknowledgementError, Affiliate, AffiliateJSON, Asset, AssetBetweenChains, AssetBetweenChainsJSON, AssetJSON, AssetOrError, AssetOrErrorJSON, AssetRecommendation, AssetRecommendationJSON, AssetRecommendationRequest, AssetRecommendationRequestJSON, AssetsBetweenChainsRequest, AssetsBetweenChainsRequestJSON, AssetsBetweenChainsResponse, AssetsBetweenChainsResponseJSON, AssetsFromSourceRequest, AssetsFromSourceRequestJSON, AssetsRequest, AssetsRequestJSON, AxelarTransfer, type AxelarTransferInfo, type AxelarTransferInfoJSON, AxelarTransferJSON, type AxelarTransferState, type AxelarTransferTransactions, type AxelarTransferTransactionsJSON, type AxelarTransferType, BankSend, BankSendJSON, Bridge, BridgeJSON, BridgesResponse, BridgesResponseJSON, CCTPTransfer, type CCTPTransferInfo, type CCTPTransferInfoJSON, CCTPTransferJSON, type CCTPTransferState, type CCTPTransferTransactions, type CCTPTransferTransactionsJSON, type Chain, ChainAffiliates, ChainAffiliatesJSON, type ChainJSON, type ChainTransaction, type ChainTransactionJSON, type ContractCallWithTokenError, type ContractCallWithTokenErrorType, type ContractCallWithTokenTransactions, type ContractCallWithTokenTransactionsJSON, CosmWasmContractMsg, CosmWasmContractMsgJSON, CosmosMsg, CosmosMsgJSON, CosmosTx, CosmosTxJSON, DenomWithChainID, DenomWithChainIDJSON, ERC20Approval, ERC20ApprovalJSON, EstimatedFee, EstimatedFeeJSON, EvmSwap, EvmSwapJSON, EvmTx, EvmTxJSON, type FeeAsset, type FeeAssetJSON, type GasPriceInfo, HyperlaneTransfer, type HyperlaneTransferInfo, type HyperlaneTransferInfoJSON, HyperlaneTransferJSON, type HyperlaneTransferState, type HyperlaneTransferTransactions, type HyperlaneTransferTransactionsJSON, IBCAddress, IBCAddressJSON, type IbcCapabilities, type IbcCapabilitiesJSON, type ModuleSupport, type ModuleVersionInfo, Msg, MsgJSON, MsgsDirectRequest, MsgsDirectRequestJSON, MsgsRequest, MsgsRequestJSON, MsgsResponse, MsgsResponseJSON, MultiChainMsg, MultiChainMsgJSON, type NextBlockingTransfer, type NextBlockingTransferJSON, OPInitTransfer, type OPInitTransferInfo, type OPInitTransferInfoJSON, OPInitTransferJSON, type OPInitTransferState, type OPInitTransferTransactions, type OPInitTransferTransactionsJSON, Operation, OperationJSON, OriginAssetsRequest, OriginAssetsRequestJSON, OriginAssetsResponse, OriginAssetsResponseJSON, type Packet, type PacketError, type PacketErrorJSON, type PacketErrorType, type PacketJSON, PostHandler, PostHandlerJSON, RecommendAssetsRequest, RecommendAssetsRequestJSON, RecommendAssetsResponse, RecommendAssetsResponseJSON, RecommendationEntry, RecommendationEntryJSON, RouteRequest, RouteRequestJSON, RouteResponse, RouteResponseJSON, type SendTokenError, type SendTokenErrorType, type SendTokenTransactions, type SendTokenTransactionsJSON, SmartRelayFeeQuote, SmartRelayFeeQuoteJSON, SmartSwapExactCoinIn, SmartSwapExactCoinInJSON, SmartSwapOptions, SmartSwapOptionsJSON, type StatusError, type StatusErrorJSON, type StatusErrorType, type StatusRequest, type StatusRequestJSON, type StatusState, type SubmitTxRequest, type SubmitTxRequestJSON, type SubmitTxResponse, type SubmitTxResponseJSON, SvmTx, SvmTxJSON, Swap, SwapExactCoinIn, SwapExactCoinInJSON, SwapExactCoinOut, SwapExactCoinOutJSON, SwapJSON, SwapOperation, SwapOperationJSON, SwapRoute, SwapRouteJSON, SwapVenue, SwapVenueJSON, SwapVenueRequest, SwapVenueRequestJSON, type TrackTxRequest, type TrackTxRequestJSON, type TrackTxResponse, type TrackTxResponseJSON, type TransactionExecutionError, Transfer, type TransferAssetRelease, type TransferAssetReleaseJSON, type TransferEvent, type TransferEventJSON, type TransferInfo, type TransferInfoJSON, TransferJSON, type TransferState, type TransferStatus, type TransferStatusJSON, Tx, TxJSON, type TxStatusResponse, type TxStatusResponseJSON, type Venue, affiliateFromJSON, affiliateToJSON, assetBetweenChainsFromJSON, assetBetweenChainsToJSON, assetFromJSON, assetOrErrorFromJSON, assetOrErrorToJSON, assetRecommendationFromJSON, assetRecommendationRequestFromJSON, assetRecommendationRequestToJSON, assetRecommendationToJSON, assetToJSON, assetsBetweenChainsRequestFromJSON, assetsBetweenChainsRequestToJSON, assetsBetweenChainsResponseFromJSON, assetsFromSourceRequestFromJSON, assetsFromSourceRequestToJSON, assetsRequestFromJSON, assetsRequestToJSON, axelarTransferFromJSON, axelarTransferInfoFromJSON, axelarTransferInfoToJSON, axelarTransferToJSON, axelarTransferTransactionsFromJSON, axelarTransferTransactionsToJSON, bankSendFromJSON, bankSendToJSON, bridgeFromJSON, bridgeToJSON, bridgesResponseFromJSON, bridgesResponseToJSON, cctpTransferFromJSON, cctpTransferInfoFromJSON, cctpTransferInfoToJSON, cctpTransferToJSON, cctpTransferTransactionsFromJSON, cctpTransferTransactionsToJSON, chainAffiliatesFromJSON, chainAffiliatesToJSON, chainFromJSON, chainIDsToAffiliatesMapFromJSON, chainIDsToAffiliatesMapToJSON, chainToJSON, chainTransactionFromJSON, chainTransactionToJSON, contractCallWithTokenTransactionsFromJSON, contractCallWithTokenTransactionsToJSON, cosmWasmContractMsgFromJSON, cosmWasmContractMsgToJSON, cosmosMsgFromJSON, cosmosMsgToJSON, cosmosTxFromJSON, cosmosTxToJSON, denomWithChainIDFromJSON, denomWithChainIDToJSON, erc20ApprovalFromJSON, erc20ApprovalToJSON, estimatedFeeFromJSON, estimatedFeeToJSON, evmSwapFromJSON, evmSwapToJSON, evmTxFromJSON, evmTxToJSON, feeAssetFromJSON, feeAssetToJSON, hyperlaneTransferFromJSON, hyperlaneTransferInfoFromJSON, hyperlaneTransferInfoToJSON, hyperlaneTransferToJSON, hyperlaneTransferTransactionsFromJSON, hyperlaneTransferTransactionsToJSON, ibcAddressFromJSON, ibcAddressToJSON, ibcCapabilitiesFromJSON, ibcCapabilitiesToJSON, messageResponseFromJSON, msgFromJSON, msgToJSON, msgsDirectRequestFromJSON, msgsDirectRequestToJSON, msgsRequestFromJSON, msgsRequestToJSON, multiChainMsgFromJSON, multiChainMsgToJSON, nextBlockingTransferFromJSON, nextBlockingTransferToJSON, opInitTransferFromJSON, opInitTransferInfoFromJSON, opInitTransferInfoToJSON, opInitTransferToJSON, opInitTransferTransactionsFromJSON, opInitTransferTransactionsToJSON, operationFromJSON, operationToJSON, originAssetsRequestFromJSON, originAssetsRequestToJSON, originAssetsResponseFromJSON, originAssetsResponseToJSON, packetFromJSON, packetToJSON, postHandlerFromJSON, postHandlerToJSON, recommendAssetsRequestFromJSON, recommendAssetsRequestToJSON, recommendAssetsResponseFromJSON, recommendAssetsResponseToJSON, recommendationEntryFromJSON, recommendationEntryToJSON, routeRequestFromJSON, routeRequestToJSON, routeResponseFromJSON, routeResponseToJSON, sendTokenTransactionsFromJSON, sendTokenTransactionsToJSON, smartRelayFeeQuoteFromJSON, smartRelayFeeQuoteToJSON, smartSwapExactCoinInFromJSON, smartSwapExactCoinInToJSON, smartSwapOptionsFromJSON, smartSwapOptionsToJSON, submitTxRequestFromJSON, submitTxRequestToJSON, submitTxResponseFromJSON, submitTxResponseToJSON, svmTxFromJSON, svmTxToJSON, swapExactCoinInFromJSON, swapExactCoinInToJSON, swapExactCoinOutFromJSON, swapExactCoinOutToJSON, swapFromJSON, swapOperationFromJSON, swapOperationToJSON, swapRouteFromJSON, swapRouteToJSON, swapToJSON, swapVenueFromJSON, swapVenueRequestFromJSON, swapVenueRequestToJSON, swapVenueToJSON, trackTxRequestFromJSON, trackTxRequestToJSON, trackTxResponseFromJSON, trackTxResponseToJSON, transferAssetReleaseFromJSON, transferAssetReleaseToJSON, transferEventFromJSON, transferEventToJSON, transferFromJSON, transferInfoFromJSON, transferInfoToJSON, transferStatusFromJSON, transferStatusToJSON, transferToJSON, txFromJSON, txStatusRequestFromJSON, txStatusRequestToJSON, txStatusResponseFromJSON, txStatusResponseToJSON, txToJSON };
|
|
577
|
+
export { type AcknowledgementError, Affiliate, AffiliateJSON, Asset, AssetBetweenChains, AssetBetweenChainsJSON, AssetJSON, AssetOrError, AssetOrErrorJSON, AssetRecommendation, AssetRecommendationJSON, AssetRecommendationRequest, AssetRecommendationRequestJSON, AssetsBetweenChainsRequest, AssetsBetweenChainsRequestJSON, AssetsBetweenChainsResponse, AssetsBetweenChainsResponseJSON, AssetsFromSourceRequest, AssetsFromSourceRequestJSON, AssetsRequest, AssetsRequestJSON, AxelarTransfer, type AxelarTransferInfo, type AxelarTransferInfoJSON, AxelarTransferJSON, type AxelarTransferState, type AxelarTransferTransactions, type AxelarTransferTransactionsJSON, type AxelarTransferType, BalanceRequest, BalanceRequestChainEntry, BalanceRequestChainEntryJSON, BalanceRequestJSON, BalanceResponse, BalanceResponseChainEntry, BalanceResponseChainEntryJSON, BalanceResponseDenomEntry, BalanceResponseDenomEntryJSON, BalanceResponseJSON, BankSend, BankSendJSON, Bridge, BridgeJSON, BridgesResponse, BridgesResponseJSON, CCTPTransfer, type CCTPTransferInfo, type CCTPTransferInfoJSON, CCTPTransferJSON, type CCTPTransferState, type CCTPTransferTransactions, type CCTPTransferTransactionsJSON, type Chain, ChainAffiliates, ChainAffiliatesJSON, type ChainJSON, type ChainTransaction, type ChainTransactionJSON, type ContractCallWithTokenError, type ContractCallWithTokenErrorType, type ContractCallWithTokenTransactions, type ContractCallWithTokenTransactionsJSON, CosmWasmContractMsg, CosmWasmContractMsgJSON, CosmosMsg, CosmosMsgJSON, CosmosTx, CosmosTxJSON, DenomWithChainID, DenomWithChainIDJSON, ERC20Approval, ERC20ApprovalJSON, EstimatedFee, EstimatedFeeJSON, EvmSwap, EvmSwapJSON, EvmTx, EvmTxJSON, type FeeAsset, type FeeAssetJSON, type GasPriceInfo, HyperlaneTransfer, type HyperlaneTransferInfo, type HyperlaneTransferInfoJSON, HyperlaneTransferJSON, type HyperlaneTransferState, type HyperlaneTransferTransactions, type HyperlaneTransferTransactionsJSON, IBCAddress, IBCAddressJSON, type IbcCapabilities, type IbcCapabilitiesJSON, type ModuleSupport, type ModuleVersionInfo, Msg, MsgJSON, MsgsDirectRequest, MsgsDirectRequestJSON, MsgsRequest, MsgsRequestJSON, MsgsResponse, MsgsResponseJSON, MultiChainMsg, MultiChainMsgJSON, type NextBlockingTransfer, type NextBlockingTransferJSON, OPInitTransfer, type OPInitTransferInfo, type OPInitTransferInfoJSON, OPInitTransferJSON, type OPInitTransferState, type OPInitTransferTransactions, type OPInitTransferTransactionsJSON, Operation, OperationJSON, OriginAssetsRequest, OriginAssetsRequestJSON, OriginAssetsResponse, OriginAssetsResponseJSON, type Packet, type PacketError, type PacketErrorJSON, type PacketErrorType, type PacketJSON, PostHandler, PostHandlerJSON, RecommendAssetsRequest, RecommendAssetsRequestJSON, RecommendAssetsResponse, RecommendAssetsResponseJSON, RecommendationEntry, RecommendationEntryJSON, RouteRequest, RouteRequestJSON, RouteResponse, RouteResponseJSON, type SendTokenError, type SendTokenErrorType, type SendTokenTransactions, type SendTokenTransactionsJSON, SmartRelayFeeQuote, SmartRelayFeeQuoteJSON, SmartSwapExactCoinIn, SmartSwapExactCoinInJSON, SmartSwapOptions, SmartSwapOptionsJSON, type StatusError, type StatusErrorJSON, type StatusErrorType, type StatusRequest, type StatusRequestJSON, type StatusState, type SubmitTxRequest, type SubmitTxRequestJSON, type SubmitTxResponse, type SubmitTxResponseJSON, SvmTx, SvmTxJSON, Swap, SwapExactCoinIn, SwapExactCoinInJSON, SwapExactCoinOut, SwapExactCoinOutJSON, SwapJSON, SwapOperation, SwapOperationJSON, SwapRoute, SwapRouteJSON, SwapVenue, SwapVenueJSON, SwapVenueRequest, SwapVenueRequestJSON, type TrackTxRequest, type TrackTxRequestJSON, type TrackTxResponse, type TrackTxResponseJSON, type TransactionExecutionError, Transfer, type TransferAssetRelease, type TransferAssetReleaseJSON, type TransferEvent, type TransferEventJSON, type TransferInfo, type TransferInfoJSON, TransferJSON, type TransferState, type TransferStatus, type TransferStatusJSON, Tx, TxJSON, type TxStatusResponse, type TxStatusResponseJSON, type Venue, affiliateFromJSON, affiliateToJSON, assetBetweenChainsFromJSON, assetBetweenChainsToJSON, assetFromJSON, assetOrErrorFromJSON, assetOrErrorToJSON, assetRecommendationFromJSON, assetRecommendationRequestFromJSON, assetRecommendationRequestToJSON, assetRecommendationToJSON, assetToJSON, assetsBetweenChainsRequestFromJSON, assetsBetweenChainsRequestToJSON, assetsBetweenChainsResponseFromJSON, assetsFromSourceRequestFromJSON, assetsFromSourceRequestToJSON, assetsRequestFromJSON, assetsRequestToJSON, axelarTransferFromJSON, axelarTransferInfoFromJSON, axelarTransferInfoToJSON, axelarTransferToJSON, axelarTransferTransactionsFromJSON, axelarTransferTransactionsToJSON, balanceRequestChainEntryFromJSON, balanceRequestChainEntryToJSON, balanceRequestFromJSON, balanceRequestToJSON, balanceResponseChainEntryFromJSON, balanceResponseChainEntryToJSON, balanceResponseDenomEntryFromJSON, balanceResponseDenomEntryToJSON, balanceResponseFromJSON, balanceResponseToJSON, bankSendFromJSON, bankSendToJSON, bridgeFromJSON, bridgeToJSON, bridgesResponseFromJSON, bridgesResponseToJSON, cctpTransferFromJSON, cctpTransferInfoFromJSON, cctpTransferInfoToJSON, cctpTransferToJSON, cctpTransferTransactionsFromJSON, cctpTransferTransactionsToJSON, chainAffiliatesFromJSON, chainAffiliatesToJSON, chainFromJSON, chainIDsToAffiliatesMapFromJSON, chainIDsToAffiliatesMapToJSON, chainToJSON, chainTransactionFromJSON, chainTransactionToJSON, contractCallWithTokenTransactionsFromJSON, contractCallWithTokenTransactionsToJSON, cosmWasmContractMsgFromJSON, cosmWasmContractMsgToJSON, cosmosMsgFromJSON, cosmosMsgToJSON, cosmosTxFromJSON, cosmosTxToJSON, denomWithChainIDFromJSON, denomWithChainIDToJSON, erc20ApprovalFromJSON, erc20ApprovalToJSON, estimatedFeeFromJSON, estimatedFeeToJSON, evmSwapFromJSON, evmSwapToJSON, evmTxFromJSON, evmTxToJSON, feeAssetFromJSON, feeAssetToJSON, hyperlaneTransferFromJSON, hyperlaneTransferInfoFromJSON, hyperlaneTransferInfoToJSON, hyperlaneTransferToJSON, hyperlaneTransferTransactionsFromJSON, hyperlaneTransferTransactionsToJSON, ibcAddressFromJSON, ibcAddressToJSON, ibcCapabilitiesFromJSON, ibcCapabilitiesToJSON, messageResponseFromJSON, msgFromJSON, msgToJSON, msgsDirectRequestFromJSON, msgsDirectRequestToJSON, msgsRequestFromJSON, msgsRequestToJSON, multiChainMsgFromJSON, multiChainMsgToJSON, nextBlockingTransferFromJSON, nextBlockingTransferToJSON, opInitTransferFromJSON, opInitTransferInfoFromJSON, opInitTransferInfoToJSON, opInitTransferToJSON, opInitTransferTransactionsFromJSON, opInitTransferTransactionsToJSON, operationFromJSON, operationToJSON, originAssetsRequestFromJSON, originAssetsRequestToJSON, originAssetsResponseFromJSON, originAssetsResponseToJSON, packetFromJSON, packetToJSON, postHandlerFromJSON, postHandlerToJSON, recommendAssetsRequestFromJSON, recommendAssetsRequestToJSON, recommendAssetsResponseFromJSON, recommendAssetsResponseToJSON, recommendationEntryFromJSON, recommendationEntryToJSON, routeRequestFromJSON, routeRequestToJSON, routeResponseFromJSON, routeResponseToJSON, sendTokenTransactionsFromJSON, sendTokenTransactionsToJSON, smartRelayFeeQuoteFromJSON, smartRelayFeeQuoteToJSON, smartSwapExactCoinInFromJSON, smartSwapExactCoinInToJSON, smartSwapOptionsFromJSON, smartSwapOptionsToJSON, submitTxRequestFromJSON, submitTxRequestToJSON, submitTxResponseFromJSON, submitTxResponseToJSON, svmTxFromJSON, svmTxToJSON, swapExactCoinInFromJSON, swapExactCoinInToJSON, swapExactCoinOutFromJSON, swapExactCoinOutToJSON, swapFromJSON, swapOperationFromJSON, swapOperationToJSON, swapRouteFromJSON, swapRouteToJSON, swapToJSON, swapVenueFromJSON, swapVenueRequestFromJSON, swapVenueRequestToJSON, swapVenueToJSON, trackTxRequestFromJSON, trackTxRequestToJSON, trackTxResponseFromJSON, trackTxResponseToJSON, transferAssetReleaseFromJSON, transferAssetReleaseToJSON, transferEventFromJSON, transferEventToJSON, transferFromJSON, transferInfoFromJSON, transferInfoToJSON, transferStatusFromJSON, transferStatusToJSON, transferToJSON, txFromJSON, txStatusRequestFromJSON, txStatusRequestToJSON, txStatusResponseFromJSON, txStatusResponseToJSON, txToJSON };
|