@orderly.network/ui-transfer 2.6.3-alpha.0 → 2.7.0-alpha.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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +42 -42
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -13
package/dist/index.d.mts
CHANGED
|
@@ -173,6 +173,9 @@ type WithdrawFormScriptOptions = {
|
|
|
173
173
|
close?: () => void;
|
|
174
174
|
};
|
|
175
175
|
declare const useWithdrawFormScript: (options: WithdrawFormScriptOptions) => {
|
|
176
|
+
currentLTV: number;
|
|
177
|
+
nextLTV: number;
|
|
178
|
+
ltvWarningMessage: string;
|
|
176
179
|
withdrawTo: WithdrawTo;
|
|
177
180
|
setWithdrawTo: react.Dispatch<react.SetStateAction<WithdrawTo>>;
|
|
178
181
|
toAccountId: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -173,6 +173,9 @@ type WithdrawFormScriptOptions = {
|
|
|
173
173
|
close?: () => void;
|
|
174
174
|
};
|
|
175
175
|
declare const useWithdrawFormScript: (options: WithdrawFormScriptOptions) => {
|
|
176
|
+
currentLTV: number;
|
|
177
|
+
nextLTV: number;
|
|
178
|
+
ltvWarningMessage: string;
|
|
176
179
|
withdrawTo: WithdrawTo;
|
|
177
180
|
setWithdrawTo: react.Dispatch<react.SetStateAction<WithdrawTo>>;
|
|
178
181
|
toAccountId: string;
|