@skip-go/client 0.16.2 → 0.16.4
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 +7 -7
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -605,9 +605,9 @@ type StargateTransferJSON = {
|
|
|
605
605
|
oft_fee_asset: AssetJSON;
|
|
606
606
|
oft_fee_amount: string;
|
|
607
607
|
oft_fee_amount_usd: string;
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
608
|
+
messaging_fee_asset: AssetJSON;
|
|
609
|
+
messaging_fee_amount: string;
|
|
610
|
+
messaging_fee_amount_usd: string;
|
|
611
611
|
bridge_id: BridgeType;
|
|
612
612
|
};
|
|
613
613
|
type StargateTransfer = {
|
|
@@ -620,9 +620,9 @@ type StargateTransfer = {
|
|
|
620
620
|
oftFeeAsset: Asset;
|
|
621
621
|
oftFeeAmount: string;
|
|
622
622
|
oftFeeAmountUSD: string;
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
623
|
+
messagingFeeAsset: Asset;
|
|
624
|
+
messagingFeeAmount: string;
|
|
625
|
+
messagingFeeAmountUSD: string;
|
|
626
626
|
bridgeID: BridgeType;
|
|
627
627
|
};
|
|
628
628
|
type BankSendJSON = {
|
|
@@ -1141,7 +1141,7 @@ type RouteRequestGivenOut = RouteRequestBase & {
|
|
|
1141
1141
|
type RouteRequest = RouteRequestGivenIn | RouteRequestGivenOut;
|
|
1142
1142
|
type RouteWarningType = 'LOW_INFO_WARNING' | 'BAD_PRICE_WARNING';
|
|
1143
1143
|
type MsgsWarningType = 'INSUFFICIENT_GAS_AT_DEST_EOA' | 'INSUFFICIENT_GAS_AT_INTERMEDIATE';
|
|
1144
|
-
type ExperimentalFeature = 'cctp' | 'hyperlane';
|
|
1144
|
+
type ExperimentalFeature = 'cctp' | 'hyperlane' | 'stargate';
|
|
1145
1145
|
type RouteWarning = {
|
|
1146
1146
|
type: RouteWarningType;
|
|
1147
1147
|
message: string;
|