@orderly.network/hooks 0.0.59 → 0.0.60
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 +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -421,16 +421,16 @@ declare const useCrossSwap: () => {
|
|
|
421
421
|
address: string;
|
|
422
422
|
src: {
|
|
423
423
|
fromToken: string;
|
|
424
|
-
fromAmount:
|
|
424
|
+
fromAmount: bigint;
|
|
425
425
|
bridgeToken: string;
|
|
426
|
-
minBridgeAmount:
|
|
426
|
+
minBridgeAmount: bigint;
|
|
427
427
|
};
|
|
428
428
|
dst: {
|
|
429
429
|
chainId: string;
|
|
430
430
|
bridgedToken: string;
|
|
431
431
|
toToken: string;
|
|
432
|
-
minToAmount:
|
|
433
|
-
airdropNativeAmount:
|
|
432
|
+
minToAmount: bigint;
|
|
433
|
+
airdropNativeAmount: bigint;
|
|
434
434
|
};
|
|
435
435
|
}) => Promise<{} | undefined>;
|
|
436
436
|
loading: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -421,16 +421,16 @@ declare const useCrossSwap: () => {
|
|
|
421
421
|
address: string;
|
|
422
422
|
src: {
|
|
423
423
|
fromToken: string;
|
|
424
|
-
fromAmount:
|
|
424
|
+
fromAmount: bigint;
|
|
425
425
|
bridgeToken: string;
|
|
426
|
-
minBridgeAmount:
|
|
426
|
+
minBridgeAmount: bigint;
|
|
427
427
|
};
|
|
428
428
|
dst: {
|
|
429
429
|
chainId: string;
|
|
430
430
|
bridgedToken: string;
|
|
431
431
|
toToken: string;
|
|
432
|
-
minToAmount:
|
|
433
|
-
airdropNativeAmount:
|
|
432
|
+
minToAmount: bigint;
|
|
433
|
+
airdropNativeAmount: bigint;
|
|
434
434
|
};
|
|
435
435
|
}) => Promise<{} | undefined>;
|
|
436
436
|
loading: boolean;
|