@orderly.network/trading 2.8.0 → 2.8.1
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.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +21 -21
package/dist/index.d.mts
CHANGED
|
@@ -410,6 +410,9 @@ declare const useFundingRateModalScript: (options: FundingRateOptions) => {
|
|
|
410
410
|
fundingPeriod: string;
|
|
411
411
|
capFunding: string;
|
|
412
412
|
floorFunding: string;
|
|
413
|
+
lastFundingRate: string | undefined;
|
|
414
|
+
estFundingRate: string | undefined;
|
|
415
|
+
estFundingFee: string;
|
|
413
416
|
};
|
|
414
417
|
type FundingRateModalState = ReturnType<typeof useFundingRateModalScript>;
|
|
415
418
|
|
package/dist/index.d.ts
CHANGED
|
@@ -410,6 +410,9 @@ declare const useFundingRateModalScript: (options: FundingRateOptions) => {
|
|
|
410
410
|
fundingPeriod: string;
|
|
411
411
|
capFunding: string;
|
|
412
412
|
floorFunding: string;
|
|
413
|
+
lastFundingRate: string | undefined;
|
|
414
|
+
estFundingRate: string | undefined;
|
|
415
|
+
estFundingFee: string;
|
|
413
416
|
};
|
|
414
417
|
type FundingRateModalState = ReturnType<typeof useFundingRateModalScript>;
|
|
415
418
|
|