@skip-go/client 0.16.2 → 0.16.3
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 +6 -6
- 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 = {
|