@chainflip/rpc 2.1.0 → 2.1.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/common.d.cts +380 -380
- package/dist/common.d.mts +380 -380
- package/dist/parsers.d.cts +477 -477
- package/dist/parsers.d.mts +477 -477
- package/package.json +3 -3
package/dist/parsers.d.mts
CHANGED
|
@@ -1928,15 +1928,15 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1928
1928
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1929
1929
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
1930
1930
|
}, "strip", z.ZodTypeAny, {
|
|
1931
|
+
FLIP: bigint;
|
|
1931
1932
|
ETH: bigint;
|
|
1932
1933
|
USDC: bigint;
|
|
1933
|
-
FLIP: bigint;
|
|
1934
1934
|
USDT: bigint;
|
|
1935
1935
|
WBTC: bigint;
|
|
1936
1936
|
}, {
|
|
1937
|
+
FLIP: string | number;
|
|
1937
1938
|
ETH: string | number;
|
|
1938
1939
|
USDC: string | number;
|
|
1939
|
-
FLIP: string | number;
|
|
1940
1940
|
USDT: string | number;
|
|
1941
1941
|
WBTC?: string | number | undefined;
|
|
1942
1942
|
}>;
|
|
@@ -1984,9 +1984,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1984
1984
|
BTC: bigint;
|
|
1985
1985
|
};
|
|
1986
1986
|
Ethereum: {
|
|
1987
|
+
FLIP: bigint;
|
|
1987
1988
|
ETH: bigint;
|
|
1988
1989
|
USDC: bigint;
|
|
1989
|
-
FLIP: bigint;
|
|
1990
1990
|
USDT: bigint;
|
|
1991
1991
|
WBTC: bigint;
|
|
1992
1992
|
};
|
|
@@ -2010,9 +2010,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2010
2010
|
BTC: string | number;
|
|
2011
2011
|
};
|
|
2012
2012
|
Ethereum: {
|
|
2013
|
+
FLIP: string | number;
|
|
2013
2014
|
ETH: string | number;
|
|
2014
2015
|
USDC: string | number;
|
|
2015
|
-
FLIP: string | number;
|
|
2016
2016
|
USDT: string | number;
|
|
2017
2017
|
WBTC?: string | number | undefined;
|
|
2018
2018
|
};
|
|
@@ -2047,15 +2047,15 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2047
2047
|
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2048
2048
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
2049
2049
|
}, "strip", z.ZodTypeAny, {
|
|
2050
|
+
FLIP: bigint | null;
|
|
2050
2051
|
ETH: bigint | null;
|
|
2051
2052
|
USDC: bigint | null;
|
|
2052
|
-
FLIP: bigint | null;
|
|
2053
2053
|
USDT: bigint | null;
|
|
2054
2054
|
WBTC: bigint | null;
|
|
2055
2055
|
}, {
|
|
2056
|
+
FLIP: string | number | null;
|
|
2056
2057
|
ETH: string | number | null;
|
|
2057
2058
|
USDC: string | number | null;
|
|
2058
|
-
FLIP: string | number | null;
|
|
2059
2059
|
USDT: string | number | null;
|
|
2060
2060
|
WBTC?: string | number | null | undefined;
|
|
2061
2061
|
}>;
|
|
@@ -2103,9 +2103,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2103
2103
|
BTC: bigint | null;
|
|
2104
2104
|
};
|
|
2105
2105
|
Ethereum: {
|
|
2106
|
+
FLIP: bigint | null;
|
|
2106
2107
|
ETH: bigint | null;
|
|
2107
2108
|
USDC: bigint | null;
|
|
2108
|
-
FLIP: bigint | null;
|
|
2109
2109
|
USDT: bigint | null;
|
|
2110
2110
|
WBTC: bigint | null;
|
|
2111
2111
|
};
|
|
@@ -2129,9 +2129,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2129
2129
|
BTC: string | number | null;
|
|
2130
2130
|
};
|
|
2131
2131
|
Ethereum: {
|
|
2132
|
+
FLIP: string | number | null;
|
|
2132
2133
|
ETH: string | number | null;
|
|
2133
2134
|
USDC: string | number | null;
|
|
2134
|
-
FLIP: string | number | null;
|
|
2135
2135
|
USDT: string | number | null;
|
|
2136
2136
|
WBTC?: string | number | null | undefined;
|
|
2137
2137
|
};
|
|
@@ -2166,15 +2166,15 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2166
2166
|
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2167
2167
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
2168
2168
|
}, "strip", z.ZodTypeAny, {
|
|
2169
|
+
FLIP: bigint | null;
|
|
2169
2170
|
ETH: bigint | null;
|
|
2170
2171
|
USDC: bigint | null;
|
|
2171
|
-
FLIP: bigint | null;
|
|
2172
2172
|
USDT: bigint | null;
|
|
2173
2173
|
WBTC: bigint | null;
|
|
2174
2174
|
}, {
|
|
2175
|
+
FLIP: string | number | null;
|
|
2175
2176
|
ETH: string | number | null;
|
|
2176
2177
|
USDC: string | number | null;
|
|
2177
|
-
FLIP: string | number | null;
|
|
2178
2178
|
USDT: string | number | null;
|
|
2179
2179
|
WBTC?: string | number | null | undefined;
|
|
2180
2180
|
}>;
|
|
@@ -2222,9 +2222,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2222
2222
|
BTC: bigint | null;
|
|
2223
2223
|
};
|
|
2224
2224
|
Ethereum: {
|
|
2225
|
+
FLIP: bigint | null;
|
|
2225
2226
|
ETH: bigint | null;
|
|
2226
2227
|
USDC: bigint | null;
|
|
2227
|
-
FLIP: bigint | null;
|
|
2228
2228
|
USDT: bigint | null;
|
|
2229
2229
|
WBTC: bigint | null;
|
|
2230
2230
|
};
|
|
@@ -2248,9 +2248,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2248
2248
|
BTC: string | number | null;
|
|
2249
2249
|
};
|
|
2250
2250
|
Ethereum: {
|
|
2251
|
+
FLIP: string | number | null;
|
|
2251
2252
|
ETH: string | number | null;
|
|
2252
2253
|
USDC: string | number | null;
|
|
2253
|
-
FLIP: string | number | null;
|
|
2254
2254
|
USDT: string | number | null;
|
|
2255
2255
|
WBTC?: string | number | null | undefined;
|
|
2256
2256
|
};
|
|
@@ -2304,15 +2304,15 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2304
2304
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2305
2305
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2306
2306
|
}, "strip", z.ZodTypeAny, {
|
|
2307
|
+
FLIP: bigint;
|
|
2307
2308
|
ETH: bigint;
|
|
2308
2309
|
USDC: bigint;
|
|
2309
|
-
FLIP: bigint;
|
|
2310
2310
|
USDT: bigint;
|
|
2311
2311
|
WBTC: bigint;
|
|
2312
2312
|
}, {
|
|
2313
|
+
FLIP: string | number;
|
|
2313
2314
|
ETH: string | number;
|
|
2314
2315
|
USDC: string | number;
|
|
2315
|
-
FLIP: string | number;
|
|
2316
2316
|
USDT: string | number;
|
|
2317
2317
|
WBTC?: string | number | undefined;
|
|
2318
2318
|
}>;
|
|
@@ -2360,9 +2360,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2360
2360
|
BTC: bigint;
|
|
2361
2361
|
};
|
|
2362
2362
|
Ethereum: {
|
|
2363
|
+
FLIP: bigint;
|
|
2363
2364
|
ETH: bigint;
|
|
2364
2365
|
USDC: bigint;
|
|
2365
|
-
FLIP: bigint;
|
|
2366
2366
|
USDT: bigint;
|
|
2367
2367
|
WBTC: bigint;
|
|
2368
2368
|
};
|
|
@@ -2386,9 +2386,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2386
2386
|
BTC: string | number;
|
|
2387
2387
|
};
|
|
2388
2388
|
Ethereum: {
|
|
2389
|
+
FLIP: string | number;
|
|
2389
2390
|
ETH: string | number;
|
|
2390
2391
|
USDC: string | number;
|
|
2391
|
-
FLIP: string | number;
|
|
2392
2392
|
USDT: string | number;
|
|
2393
2393
|
WBTC?: string | number | undefined;
|
|
2394
2394
|
};
|
|
@@ -2471,9 +2471,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2471
2471
|
BTC: bigint;
|
|
2472
2472
|
};
|
|
2473
2473
|
Ethereum: {
|
|
2474
|
+
FLIP: bigint;
|
|
2474
2475
|
ETH: bigint;
|
|
2475
2476
|
USDC: bigint;
|
|
2476
|
-
FLIP: bigint;
|
|
2477
2477
|
USDT: bigint;
|
|
2478
2478
|
WBTC: bigint;
|
|
2479
2479
|
};
|
|
@@ -2498,9 +2498,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2498
2498
|
BTC: bigint | null;
|
|
2499
2499
|
};
|
|
2500
2500
|
Ethereum: {
|
|
2501
|
+
FLIP: bigint | null;
|
|
2501
2502
|
ETH: bigint | null;
|
|
2502
2503
|
USDC: bigint | null;
|
|
2503
|
-
FLIP: bigint | null;
|
|
2504
2504
|
USDT: bigint | null;
|
|
2505
2505
|
WBTC: bigint | null;
|
|
2506
2506
|
};
|
|
@@ -2525,9 +2525,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2525
2525
|
BTC: bigint | null;
|
|
2526
2526
|
};
|
|
2527
2527
|
Ethereum: {
|
|
2528
|
+
FLIP: bigint | null;
|
|
2528
2529
|
ETH: bigint | null;
|
|
2529
2530
|
USDC: bigint | null;
|
|
2530
|
-
FLIP: bigint | null;
|
|
2531
2531
|
USDT: bigint | null;
|
|
2532
2532
|
WBTC: bigint | null;
|
|
2533
2533
|
};
|
|
@@ -2559,9 +2559,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2559
2559
|
BTC: bigint;
|
|
2560
2560
|
};
|
|
2561
2561
|
Ethereum: {
|
|
2562
|
+
FLIP: bigint;
|
|
2562
2563
|
ETH: bigint;
|
|
2563
2564
|
USDC: bigint;
|
|
2564
|
-
FLIP: bigint;
|
|
2565
2565
|
USDT: bigint;
|
|
2566
2566
|
WBTC: bigint;
|
|
2567
2567
|
};
|
|
@@ -2608,9 +2608,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2608
2608
|
BTC: string | number;
|
|
2609
2609
|
};
|
|
2610
2610
|
Ethereum: {
|
|
2611
|
+
FLIP: string | number;
|
|
2611
2612
|
ETH: string | number;
|
|
2612
2613
|
USDC: string | number;
|
|
2613
|
-
FLIP: string | number;
|
|
2614
2614
|
USDT: string | number;
|
|
2615
2615
|
WBTC?: string | number | undefined;
|
|
2616
2616
|
};
|
|
@@ -2635,9 +2635,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2635
2635
|
BTC: string | number | null;
|
|
2636
2636
|
};
|
|
2637
2637
|
Ethereum: {
|
|
2638
|
+
FLIP: string | number | null;
|
|
2638
2639
|
ETH: string | number | null;
|
|
2639
2640
|
USDC: string | number | null;
|
|
2640
|
-
FLIP: string | number | null;
|
|
2641
2641
|
USDT: string | number | null;
|
|
2642
2642
|
WBTC?: string | number | null | undefined;
|
|
2643
2643
|
};
|
|
@@ -2662,9 +2662,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2662
2662
|
BTC: string | number | null;
|
|
2663
2663
|
};
|
|
2664
2664
|
Ethereum: {
|
|
2665
|
+
FLIP: string | number | null;
|
|
2665
2666
|
ETH: string | number | null;
|
|
2666
2667
|
USDC: string | number | null;
|
|
2667
|
-
FLIP: string | number | null;
|
|
2668
2668
|
USDT: string | number | null;
|
|
2669
2669
|
WBTC?: string | number | null | undefined;
|
|
2670
2670
|
};
|
|
@@ -2696,9 +2696,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2696
2696
|
BTC: string | number;
|
|
2697
2697
|
};
|
|
2698
2698
|
Ethereum: {
|
|
2699
|
+
FLIP: string | number;
|
|
2699
2700
|
ETH: string | number;
|
|
2700
2701
|
USDC: string | number;
|
|
2701
|
-
FLIP: string | number;
|
|
2702
2702
|
USDT: string | number;
|
|
2703
2703
|
WBTC?: string | number | undefined;
|
|
2704
2704
|
};
|
|
@@ -2745,9 +2745,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2745
2745
|
BTC: bigint;
|
|
2746
2746
|
};
|
|
2747
2747
|
Ethereum: {
|
|
2748
|
+
FLIP: bigint;
|
|
2748
2749
|
ETH: bigint;
|
|
2749
2750
|
USDC: bigint;
|
|
2750
|
-
FLIP: bigint;
|
|
2751
2751
|
USDT: bigint;
|
|
2752
2752
|
WBTC: bigint;
|
|
2753
2753
|
};
|
|
@@ -2772,9 +2772,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2772
2772
|
BTC: bigint | null;
|
|
2773
2773
|
};
|
|
2774
2774
|
Ethereum: {
|
|
2775
|
+
FLIP: bigint | null;
|
|
2775
2776
|
ETH: bigint | null;
|
|
2776
2777
|
USDC: bigint | null;
|
|
2777
|
-
FLIP: bigint | null;
|
|
2778
2778
|
USDT: bigint | null;
|
|
2779
2779
|
WBTC: bigint | null;
|
|
2780
2780
|
};
|
|
@@ -2799,9 +2799,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2799
2799
|
BTC: bigint | null;
|
|
2800
2800
|
};
|
|
2801
2801
|
Ethereum: {
|
|
2802
|
+
FLIP: bigint | null;
|
|
2802
2803
|
ETH: bigint | null;
|
|
2803
2804
|
USDC: bigint | null;
|
|
2804
|
-
FLIP: bigint | null;
|
|
2805
2805
|
USDT: bigint | null;
|
|
2806
2806
|
WBTC: bigint | null;
|
|
2807
2807
|
};
|
|
@@ -2833,9 +2833,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2833
2833
|
BTC: bigint;
|
|
2834
2834
|
};
|
|
2835
2835
|
Ethereum: {
|
|
2836
|
+
FLIP: bigint;
|
|
2836
2837
|
ETH: bigint;
|
|
2837
2838
|
USDC: bigint;
|
|
2838
|
-
FLIP: bigint;
|
|
2839
2839
|
USDT: bigint;
|
|
2840
2840
|
WBTC: bigint;
|
|
2841
2841
|
};
|
|
@@ -2884,9 +2884,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2884
2884
|
BTC: string | number;
|
|
2885
2885
|
};
|
|
2886
2886
|
Ethereum: {
|
|
2887
|
+
FLIP: string | number;
|
|
2887
2888
|
ETH: string | number;
|
|
2888
2889
|
USDC: string | number;
|
|
2889
|
-
FLIP: string | number;
|
|
2890
2890
|
USDT: string | number;
|
|
2891
2891
|
WBTC?: string | number | undefined;
|
|
2892
2892
|
};
|
|
@@ -2911,9 +2911,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2911
2911
|
BTC: string | number | null;
|
|
2912
2912
|
};
|
|
2913
2913
|
Ethereum: {
|
|
2914
|
+
FLIP: string | number | null;
|
|
2914
2915
|
ETH: string | number | null;
|
|
2915
2916
|
USDC: string | number | null;
|
|
2916
|
-
FLIP: string | number | null;
|
|
2917
2917
|
USDT: string | number | null;
|
|
2918
2918
|
WBTC?: string | number | null | undefined;
|
|
2919
2919
|
};
|
|
@@ -2938,9 +2938,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2938
2938
|
BTC: string | number | null;
|
|
2939
2939
|
};
|
|
2940
2940
|
Ethereum: {
|
|
2941
|
+
FLIP: string | number | null;
|
|
2941
2942
|
ETH: string | number | null;
|
|
2942
2943
|
USDC: string | number | null;
|
|
2943
|
-
FLIP: string | number | null;
|
|
2944
2944
|
USDT: string | number | null;
|
|
2945
2945
|
WBTC?: string | number | null | undefined;
|
|
2946
2946
|
};
|
|
@@ -2972,9 +2972,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2972
2972
|
BTC: string | number;
|
|
2973
2973
|
};
|
|
2974
2974
|
Ethereum: {
|
|
2975
|
+
FLIP: string | number;
|
|
2975
2976
|
ETH: string | number;
|
|
2976
2977
|
USDC: string | number;
|
|
2977
|
-
FLIP: string | number;
|
|
2978
2978
|
USDT: string | number;
|
|
2979
2979
|
WBTC?: string | number | undefined;
|
|
2980
2980
|
};
|
|
@@ -3032,15 +3032,15 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3032
3032
|
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
3033
3033
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
3034
3034
|
}, "strip", z.ZodTypeAny, {
|
|
3035
|
+
FLIP: bigint | null;
|
|
3035
3036
|
ETH: bigint | null;
|
|
3036
3037
|
USDC: bigint | null;
|
|
3037
|
-
FLIP: bigint | null;
|
|
3038
3038
|
USDT: bigint | null;
|
|
3039
3039
|
WBTC: bigint | null;
|
|
3040
3040
|
}, {
|
|
3041
|
+
FLIP: string | number | null;
|
|
3041
3042
|
ETH: string | number | null;
|
|
3042
3043
|
USDC: string | number | null;
|
|
3043
|
-
FLIP: string | number | null;
|
|
3044
3044
|
USDT: string | number | null;
|
|
3045
3045
|
WBTC?: string | number | null | undefined;
|
|
3046
3046
|
}>;
|
|
@@ -3088,9 +3088,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3088
3088
|
BTC: bigint | null;
|
|
3089
3089
|
};
|
|
3090
3090
|
Ethereum: {
|
|
3091
|
+
FLIP: bigint | null;
|
|
3091
3092
|
ETH: bigint | null;
|
|
3092
3093
|
USDC: bigint | null;
|
|
3093
|
-
FLIP: bigint | null;
|
|
3094
3094
|
USDT: bigint | null;
|
|
3095
3095
|
WBTC: bigint | null;
|
|
3096
3096
|
};
|
|
@@ -3114,9 +3114,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3114
3114
|
BTC: string | number | null;
|
|
3115
3115
|
};
|
|
3116
3116
|
Ethereum: {
|
|
3117
|
+
FLIP: string | number | null;
|
|
3117
3118
|
ETH: string | number | null;
|
|
3118
3119
|
USDC: string | number | null;
|
|
3119
|
-
FLIP: string | number | null;
|
|
3120
3120
|
USDT: string | number | null;
|
|
3121
3121
|
WBTC?: string | number | null | undefined;
|
|
3122
3122
|
};
|
|
@@ -3155,15 +3155,15 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3155
3155
|
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
3156
3156
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
3157
3157
|
}, "strip", z.ZodTypeAny, {
|
|
3158
|
+
FLIP: bigint | null;
|
|
3158
3159
|
ETH: bigint | null;
|
|
3159
3160
|
USDC: bigint | null;
|
|
3160
|
-
FLIP: bigint | null;
|
|
3161
3161
|
USDT: bigint | null;
|
|
3162
3162
|
WBTC: bigint | null;
|
|
3163
3163
|
}, {
|
|
3164
|
+
FLIP: string | number | null;
|
|
3164
3165
|
ETH: string | number | null;
|
|
3165
3166
|
USDC: string | number | null;
|
|
3166
|
-
FLIP: string | number | null;
|
|
3167
3167
|
USDT: string | number | null;
|
|
3168
3168
|
WBTC?: string | number | null | undefined;
|
|
3169
3169
|
}>;
|
|
@@ -3211,9 +3211,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3211
3211
|
BTC: bigint | null;
|
|
3212
3212
|
};
|
|
3213
3213
|
Ethereum: {
|
|
3214
|
+
FLIP: bigint | null;
|
|
3214
3215
|
ETH: bigint | null;
|
|
3215
3216
|
USDC: bigint | null;
|
|
3216
|
-
FLIP: bigint | null;
|
|
3217
3217
|
USDT: bigint | null;
|
|
3218
3218
|
WBTC: bigint | null;
|
|
3219
3219
|
};
|
|
@@ -3237,9 +3237,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3237
3237
|
BTC: string | number | null;
|
|
3238
3238
|
};
|
|
3239
3239
|
Ethereum: {
|
|
3240
|
+
FLIP: string | number | null;
|
|
3240
3241
|
ETH: string | number | null;
|
|
3241
3242
|
USDC: string | number | null;
|
|
3242
|
-
FLIP: string | number | null;
|
|
3243
3243
|
USDT: string | number | null;
|
|
3244
3244
|
WBTC?: string | number | null | undefined;
|
|
3245
3245
|
};
|
|
@@ -3286,15 +3286,15 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3286
3286
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3287
3287
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
3288
3288
|
}, "strip", z.ZodTypeAny, {
|
|
3289
|
+
FLIP: bigint;
|
|
3289
3290
|
ETH: bigint;
|
|
3290
3291
|
USDC: bigint;
|
|
3291
|
-
FLIP: bigint;
|
|
3292
3292
|
USDT: bigint;
|
|
3293
3293
|
WBTC: bigint;
|
|
3294
3294
|
}, {
|
|
3295
|
+
FLIP: string | number;
|
|
3295
3296
|
ETH: string | number;
|
|
3296
3297
|
USDC: string | number;
|
|
3297
|
-
FLIP: string | number;
|
|
3298
3298
|
USDT: string | number;
|
|
3299
3299
|
WBTC?: string | number | undefined;
|
|
3300
3300
|
}>;
|
|
@@ -3342,9 +3342,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3342
3342
|
BTC: bigint;
|
|
3343
3343
|
};
|
|
3344
3344
|
Ethereum: {
|
|
3345
|
+
FLIP: bigint;
|
|
3345
3346
|
ETH: bigint;
|
|
3346
3347
|
USDC: bigint;
|
|
3347
|
-
FLIP: bigint;
|
|
3348
3348
|
USDT: bigint;
|
|
3349
3349
|
WBTC: bigint;
|
|
3350
3350
|
};
|
|
@@ -3368,9 +3368,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3368
3368
|
BTC: string | number;
|
|
3369
3369
|
};
|
|
3370
3370
|
Ethereum: {
|
|
3371
|
+
FLIP: string | number;
|
|
3371
3372
|
ETH: string | number;
|
|
3372
3373
|
USDC: string | number;
|
|
3373
|
-
FLIP: string | number;
|
|
3374
3374
|
USDT: string | number;
|
|
3375
3375
|
WBTC?: string | number | undefined;
|
|
3376
3376
|
};
|
|
@@ -3400,9 +3400,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3400
3400
|
BTC: bigint;
|
|
3401
3401
|
};
|
|
3402
3402
|
Ethereum: {
|
|
3403
|
+
FLIP: bigint;
|
|
3403
3404
|
ETH: bigint;
|
|
3404
3405
|
USDC: bigint;
|
|
3405
|
-
FLIP: bigint;
|
|
3406
3406
|
USDT: bigint;
|
|
3407
3407
|
WBTC: bigint;
|
|
3408
3408
|
};
|
|
@@ -3432,9 +3432,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3432
3432
|
BTC: string | number;
|
|
3433
3433
|
};
|
|
3434
3434
|
Ethereum: {
|
|
3435
|
+
FLIP: string | number;
|
|
3435
3436
|
ETH: string | number;
|
|
3436
3437
|
USDC: string | number;
|
|
3437
|
-
FLIP: string | number;
|
|
3438
3438
|
USDT: string | number;
|
|
3439
3439
|
WBTC?: string | number | undefined;
|
|
3440
3440
|
};
|
|
@@ -3481,15 +3481,15 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3481
3481
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3482
3482
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
3483
3483
|
}, "strip", z.ZodTypeAny, {
|
|
3484
|
+
FLIP: bigint;
|
|
3484
3485
|
ETH: bigint;
|
|
3485
3486
|
USDC: bigint;
|
|
3486
|
-
FLIP: bigint;
|
|
3487
3487
|
USDT: bigint;
|
|
3488
3488
|
WBTC: bigint;
|
|
3489
3489
|
}, {
|
|
3490
|
+
FLIP: string | number;
|
|
3490
3491
|
ETH: string | number;
|
|
3491
3492
|
USDC: string | number;
|
|
3492
|
-
FLIP: string | number;
|
|
3493
3493
|
USDT: string | number;
|
|
3494
3494
|
WBTC?: string | number | undefined;
|
|
3495
3495
|
}>;
|
|
@@ -3537,9 +3537,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3537
3537
|
BTC: bigint;
|
|
3538
3538
|
};
|
|
3539
3539
|
Ethereum: {
|
|
3540
|
+
FLIP: bigint;
|
|
3540
3541
|
ETH: bigint;
|
|
3541
3542
|
USDC: bigint;
|
|
3542
|
-
FLIP: bigint;
|
|
3543
3543
|
USDT: bigint;
|
|
3544
3544
|
WBTC: bigint;
|
|
3545
3545
|
};
|
|
@@ -3563,9 +3563,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3563
3563
|
BTC: string | number;
|
|
3564
3564
|
};
|
|
3565
3565
|
Ethereum: {
|
|
3566
|
+
FLIP: string | number;
|
|
3566
3567
|
ETH: string | number;
|
|
3567
3568
|
USDC: string | number;
|
|
3568
|
-
FLIP: string | number;
|
|
3569
3569
|
USDT: string | number;
|
|
3570
3570
|
WBTC?: string | number | undefined;
|
|
3571
3571
|
};
|
|
@@ -3595,9 +3595,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3595
3595
|
BTC: bigint;
|
|
3596
3596
|
};
|
|
3597
3597
|
Ethereum: {
|
|
3598
|
+
FLIP: bigint;
|
|
3598
3599
|
ETH: bigint;
|
|
3599
3600
|
USDC: bigint;
|
|
3600
|
-
FLIP: bigint;
|
|
3601
3601
|
USDT: bigint;
|
|
3602
3602
|
WBTC: bigint;
|
|
3603
3603
|
};
|
|
@@ -3627,9 +3627,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3627
3627
|
BTC: string | number;
|
|
3628
3628
|
};
|
|
3629
3629
|
Ethereum: {
|
|
3630
|
+
FLIP: string | number;
|
|
3630
3631
|
ETH: string | number;
|
|
3631
3632
|
USDC: string | number;
|
|
3632
|
-
FLIP: string | number;
|
|
3633
3633
|
USDT: string | number;
|
|
3634
3634
|
WBTC?: string | number | undefined;
|
|
3635
3635
|
};
|
|
@@ -3661,9 +3661,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3661
3661
|
BTC: bigint;
|
|
3662
3662
|
};
|
|
3663
3663
|
Ethereum: {
|
|
3664
|
+
FLIP: bigint;
|
|
3664
3665
|
ETH: bigint;
|
|
3665
3666
|
USDC: bigint;
|
|
3666
|
-
FLIP: bigint;
|
|
3667
3667
|
USDT: bigint;
|
|
3668
3668
|
WBTC: bigint;
|
|
3669
3669
|
};
|
|
@@ -3694,9 +3694,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3694
3694
|
BTC: bigint;
|
|
3695
3695
|
};
|
|
3696
3696
|
Ethereum: {
|
|
3697
|
+
FLIP: bigint;
|
|
3697
3698
|
ETH: bigint;
|
|
3698
3699
|
USDC: bigint;
|
|
3699
|
-
FLIP: bigint;
|
|
3700
3700
|
USDT: bigint;
|
|
3701
3701
|
WBTC: bigint;
|
|
3702
3702
|
};
|
|
@@ -3728,9 +3728,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3728
3728
|
BTC: string | number;
|
|
3729
3729
|
};
|
|
3730
3730
|
Ethereum: {
|
|
3731
|
+
FLIP: string | number;
|
|
3731
3732
|
ETH: string | number;
|
|
3732
3733
|
USDC: string | number;
|
|
3733
|
-
FLIP: string | number;
|
|
3734
3734
|
USDT: string | number;
|
|
3735
3735
|
WBTC?: string | number | undefined;
|
|
3736
3736
|
};
|
|
@@ -3761,9 +3761,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3761
3761
|
BTC: string | number;
|
|
3762
3762
|
};
|
|
3763
3763
|
Ethereum: {
|
|
3764
|
+
FLIP: string | number;
|
|
3764
3765
|
ETH: string | number;
|
|
3765
3766
|
USDC: string | number;
|
|
3766
|
-
FLIP: string | number;
|
|
3767
3767
|
USDT: string | number;
|
|
3768
3768
|
WBTC?: string | number | undefined;
|
|
3769
3769
|
};
|
|
@@ -3791,9 +3791,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3791
3791
|
BTC: bigint | null;
|
|
3792
3792
|
};
|
|
3793
3793
|
Ethereum: {
|
|
3794
|
+
FLIP: bigint | null;
|
|
3794
3795
|
ETH: bigint | null;
|
|
3795
3796
|
USDC: bigint | null;
|
|
3796
|
-
FLIP: bigint | null;
|
|
3797
3797
|
USDT: bigint | null;
|
|
3798
3798
|
WBTC: bigint | null;
|
|
3799
3799
|
};
|
|
@@ -3825,9 +3825,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3825
3825
|
BTC: bigint;
|
|
3826
3826
|
};
|
|
3827
3827
|
Ethereum: {
|
|
3828
|
+
FLIP: bigint;
|
|
3828
3829
|
ETH: bigint;
|
|
3829
3830
|
USDC: bigint;
|
|
3830
|
-
FLIP: bigint;
|
|
3831
3831
|
USDT: bigint;
|
|
3832
3832
|
WBTC: bigint;
|
|
3833
3833
|
};
|
|
@@ -3858,9 +3858,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3858
3858
|
BTC: bigint;
|
|
3859
3859
|
};
|
|
3860
3860
|
Ethereum: {
|
|
3861
|
+
FLIP: bigint;
|
|
3861
3862
|
ETH: bigint;
|
|
3862
3863
|
USDC: bigint;
|
|
3863
|
-
FLIP: bigint;
|
|
3864
3864
|
USDT: bigint;
|
|
3865
3865
|
WBTC: bigint;
|
|
3866
3866
|
};
|
|
@@ -3890,9 +3890,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3890
3890
|
BTC: bigint | null;
|
|
3891
3891
|
};
|
|
3892
3892
|
Ethereum: {
|
|
3893
|
+
FLIP: bigint | null;
|
|
3893
3894
|
ETH: bigint | null;
|
|
3894
3895
|
USDC: bigint | null;
|
|
3895
|
-
FLIP: bigint | null;
|
|
3896
3896
|
USDT: bigint | null;
|
|
3897
3897
|
WBTC: bigint | null;
|
|
3898
3898
|
};
|
|
@@ -3918,9 +3918,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3918
3918
|
BTC: string | number | null;
|
|
3919
3919
|
};
|
|
3920
3920
|
Ethereum: {
|
|
3921
|
+
FLIP: string | number | null;
|
|
3921
3922
|
ETH: string | number | null;
|
|
3922
3923
|
USDC: string | number | null;
|
|
3923
|
-
FLIP: string | number | null;
|
|
3924
3924
|
USDT: string | number | null;
|
|
3925
3925
|
WBTC?: string | number | null | undefined;
|
|
3926
3926
|
};
|
|
@@ -3952,9 +3952,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3952
3952
|
BTC: string | number;
|
|
3953
3953
|
};
|
|
3954
3954
|
Ethereum: {
|
|
3955
|
+
FLIP: string | number;
|
|
3955
3956
|
ETH: string | number;
|
|
3956
3957
|
USDC: string | number;
|
|
3957
|
-
FLIP: string | number;
|
|
3958
3958
|
USDT: string | number;
|
|
3959
3959
|
WBTC?: string | number | undefined;
|
|
3960
3960
|
};
|
|
@@ -3985,9 +3985,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3985
3985
|
BTC: string | number;
|
|
3986
3986
|
};
|
|
3987
3987
|
Ethereum: {
|
|
3988
|
+
FLIP: string | number;
|
|
3988
3989
|
ETH: string | number;
|
|
3989
3990
|
USDC: string | number;
|
|
3990
|
-
FLIP: string | number;
|
|
3991
3991
|
USDT: string | number;
|
|
3992
3992
|
WBTC?: string | number | undefined;
|
|
3993
3993
|
};
|
|
@@ -4017,9 +4017,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
4017
4017
|
BTC: string | number | null;
|
|
4018
4018
|
};
|
|
4019
4019
|
Ethereum: {
|
|
4020
|
+
FLIP: string | number | null;
|
|
4020
4021
|
ETH: string | number | null;
|
|
4021
4022
|
USDC: string | number | null;
|
|
4022
|
-
FLIP: string | number | null;
|
|
4023
4023
|
USDT: string | number | null;
|
|
4024
4024
|
WBTC?: string | number | null | undefined;
|
|
4025
4025
|
};
|
|
@@ -4974,7 +4974,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4974
4974
|
};
|
|
4975
4975
|
} | null>>;
|
|
4976
4976
|
}, "strip", z.ZodTypeAny, {
|
|
4977
|
-
|
|
4977
|
+
FLIP: {
|
|
4978
4978
|
limit_order_fee_hundredth_pips: number;
|
|
4979
4979
|
range_order_fee_hundredth_pips: number;
|
|
4980
4980
|
range_order_total_fees_earned: {
|
|
@@ -5021,7 +5021,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5021
5021
|
readonly asset: "USDC";
|
|
5022
5022
|
};
|
|
5023
5023
|
};
|
|
5024
|
-
|
|
5024
|
+
ETH: {
|
|
5025
5025
|
limit_order_fee_hundredth_pips: number;
|
|
5026
5026
|
range_order_fee_hundredth_pips: number;
|
|
5027
5027
|
range_order_total_fees_earned: {
|
|
@@ -5163,7 +5163,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5163
5163
|
};
|
|
5164
5164
|
};
|
|
5165
5165
|
}, {
|
|
5166
|
-
|
|
5166
|
+
FLIP: {
|
|
5167
5167
|
limit_order_fee_hundredth_pips: number;
|
|
5168
5168
|
range_order_fee_hundredth_pips: number;
|
|
5169
5169
|
range_order_total_fees_earned: {
|
|
@@ -5187,7 +5187,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5187
5187
|
asset: "USDC";
|
|
5188
5188
|
};
|
|
5189
5189
|
} | null;
|
|
5190
|
-
|
|
5190
|
+
ETH: {
|
|
5191
5191
|
limit_order_fee_hundredth_pips: number;
|
|
5192
5192
|
range_order_fee_hundredth_pips: number;
|
|
5193
5193
|
range_order_total_fees_earned: {
|
|
@@ -7483,7 +7483,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7483
7483
|
};
|
|
7484
7484
|
};
|
|
7485
7485
|
Ethereum: {
|
|
7486
|
-
|
|
7486
|
+
FLIP: {
|
|
7487
7487
|
limit_order_fee_hundredth_pips: number;
|
|
7488
7488
|
range_order_fee_hundredth_pips: number;
|
|
7489
7489
|
range_order_total_fees_earned: {
|
|
@@ -7530,7 +7530,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7530
7530
|
readonly asset: "USDC";
|
|
7531
7531
|
};
|
|
7532
7532
|
};
|
|
7533
|
-
|
|
7533
|
+
ETH: {
|
|
7534
7534
|
limit_order_fee_hundredth_pips: number;
|
|
7535
7535
|
range_order_fee_hundredth_pips: number;
|
|
7536
7536
|
range_order_total_fees_earned: {
|
|
@@ -8129,7 +8129,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
8129
8129
|
} | null;
|
|
8130
8130
|
};
|
|
8131
8131
|
Ethereum: {
|
|
8132
|
-
|
|
8132
|
+
FLIP: {
|
|
8133
8133
|
limit_order_fee_hundredth_pips: number;
|
|
8134
8134
|
range_order_fee_hundredth_pips: number;
|
|
8135
8135
|
range_order_total_fees_earned: {
|
|
@@ -8153,7 +8153,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
8153
8153
|
asset: "USDC";
|
|
8154
8154
|
};
|
|
8155
8155
|
} | null;
|
|
8156
|
-
|
|
8156
|
+
ETH: {
|
|
8157
8157
|
limit_order_fee_hundredth_pips: number;
|
|
8158
8158
|
range_order_fee_hundredth_pips: number;
|
|
8159
8159
|
range_order_total_fees_earned: {
|
|
@@ -8501,7 +8501,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
8501
8501
|
};
|
|
8502
8502
|
};
|
|
8503
8503
|
Ethereum: {
|
|
8504
|
-
|
|
8504
|
+
FLIP: {
|
|
8505
8505
|
limit_order_fee_hundredth_pips: number;
|
|
8506
8506
|
range_order_fee_hundredth_pips: number;
|
|
8507
8507
|
range_order_total_fees_earned: {
|
|
@@ -8548,7 +8548,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
8548
8548
|
readonly asset: "USDC";
|
|
8549
8549
|
};
|
|
8550
8550
|
};
|
|
8551
|
-
|
|
8551
|
+
ETH: {
|
|
8552
8552
|
limit_order_fee_hundredth_pips: number;
|
|
8553
8553
|
range_order_fee_hundredth_pips: number;
|
|
8554
8554
|
range_order_total_fees_earned: {
|
|
@@ -9149,7 +9149,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
9149
9149
|
} | null;
|
|
9150
9150
|
};
|
|
9151
9151
|
Ethereum: {
|
|
9152
|
-
|
|
9152
|
+
FLIP: {
|
|
9153
9153
|
limit_order_fee_hundredth_pips: number;
|
|
9154
9154
|
range_order_fee_hundredth_pips: number;
|
|
9155
9155
|
range_order_total_fees_earned: {
|
|
@@ -9173,7 +9173,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
9173
9173
|
asset: "USDC";
|
|
9174
9174
|
};
|
|
9175
9175
|
} | null;
|
|
9176
|
-
|
|
9176
|
+
ETH: {
|
|
9177
9177
|
limit_order_fee_hundredth_pips: number;
|
|
9178
9178
|
range_order_fee_hundredth_pips: number;
|
|
9179
9179
|
range_order_total_fees_earned: {
|
|
@@ -9487,15 +9487,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9487
9487
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
9488
9488
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9489
9489
|
}, "strip", z.ZodTypeAny, {
|
|
9490
|
+
FLIP: bigint;
|
|
9490
9491
|
ETH: bigint;
|
|
9491
9492
|
USDC: bigint;
|
|
9492
|
-
FLIP: bigint;
|
|
9493
9493
|
USDT: bigint;
|
|
9494
9494
|
WBTC: bigint;
|
|
9495
9495
|
}, {
|
|
9496
|
+
FLIP: string | number;
|
|
9496
9497
|
ETH: string | number;
|
|
9497
9498
|
USDC: string | number;
|
|
9498
|
-
FLIP: string | number;
|
|
9499
9499
|
USDT: string | number;
|
|
9500
9500
|
WBTC?: string | number | undefined;
|
|
9501
9501
|
}>;
|
|
@@ -9543,9 +9543,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9543
9543
|
BTC: bigint;
|
|
9544
9544
|
};
|
|
9545
9545
|
Ethereum: {
|
|
9546
|
+
FLIP: bigint;
|
|
9546
9547
|
ETH: bigint;
|
|
9547
9548
|
USDC: bigint;
|
|
9548
|
-
FLIP: bigint;
|
|
9549
9549
|
USDT: bigint;
|
|
9550
9550
|
WBTC: bigint;
|
|
9551
9551
|
};
|
|
@@ -9569,9 +9569,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9569
9569
|
BTC: string | number;
|
|
9570
9570
|
};
|
|
9571
9571
|
Ethereum: {
|
|
9572
|
+
FLIP: string | number;
|
|
9572
9573
|
ETH: string | number;
|
|
9573
9574
|
USDC: string | number;
|
|
9574
|
-
FLIP: string | number;
|
|
9575
9575
|
USDT: string | number;
|
|
9576
9576
|
WBTC?: string | number | undefined;
|
|
9577
9577
|
};
|
|
@@ -9606,15 +9606,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9606
9606
|
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9607
9607
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
9608
9608
|
}, "strip", z.ZodTypeAny, {
|
|
9609
|
+
FLIP: bigint | null;
|
|
9609
9610
|
ETH: bigint | null;
|
|
9610
9611
|
USDC: bigint | null;
|
|
9611
|
-
FLIP: bigint | null;
|
|
9612
9612
|
USDT: bigint | null;
|
|
9613
9613
|
WBTC: bigint | null;
|
|
9614
9614
|
}, {
|
|
9615
|
+
FLIP: string | number | null;
|
|
9615
9616
|
ETH: string | number | null;
|
|
9616
9617
|
USDC: string | number | null;
|
|
9617
|
-
FLIP: string | number | null;
|
|
9618
9618
|
USDT: string | number | null;
|
|
9619
9619
|
WBTC?: string | number | null | undefined;
|
|
9620
9620
|
}>;
|
|
@@ -9662,9 +9662,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9662
9662
|
BTC: bigint | null;
|
|
9663
9663
|
};
|
|
9664
9664
|
Ethereum: {
|
|
9665
|
+
FLIP: bigint | null;
|
|
9665
9666
|
ETH: bigint | null;
|
|
9666
9667
|
USDC: bigint | null;
|
|
9667
|
-
FLIP: bigint | null;
|
|
9668
9668
|
USDT: bigint | null;
|
|
9669
9669
|
WBTC: bigint | null;
|
|
9670
9670
|
};
|
|
@@ -9688,9 +9688,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9688
9688
|
BTC: string | number | null;
|
|
9689
9689
|
};
|
|
9690
9690
|
Ethereum: {
|
|
9691
|
+
FLIP: string | number | null;
|
|
9691
9692
|
ETH: string | number | null;
|
|
9692
9693
|
USDC: string | number | null;
|
|
9693
|
-
FLIP: string | number | null;
|
|
9694
9694
|
USDT: string | number | null;
|
|
9695
9695
|
WBTC?: string | number | null | undefined;
|
|
9696
9696
|
};
|
|
@@ -9725,15 +9725,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9725
9725
|
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9726
9726
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
9727
9727
|
}, "strip", z.ZodTypeAny, {
|
|
9728
|
+
FLIP: bigint | null;
|
|
9728
9729
|
ETH: bigint | null;
|
|
9729
9730
|
USDC: bigint | null;
|
|
9730
|
-
FLIP: bigint | null;
|
|
9731
9731
|
USDT: bigint | null;
|
|
9732
9732
|
WBTC: bigint | null;
|
|
9733
9733
|
}, {
|
|
9734
|
+
FLIP: string | number | null;
|
|
9734
9735
|
ETH: string | number | null;
|
|
9735
9736
|
USDC: string | number | null;
|
|
9736
|
-
FLIP: string | number | null;
|
|
9737
9737
|
USDT: string | number | null;
|
|
9738
9738
|
WBTC?: string | number | null | undefined;
|
|
9739
9739
|
}>;
|
|
@@ -9781,9 +9781,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9781
9781
|
BTC: bigint | null;
|
|
9782
9782
|
};
|
|
9783
9783
|
Ethereum: {
|
|
9784
|
+
FLIP: bigint | null;
|
|
9784
9785
|
ETH: bigint | null;
|
|
9785
9786
|
USDC: bigint | null;
|
|
9786
|
-
FLIP: bigint | null;
|
|
9787
9787
|
USDT: bigint | null;
|
|
9788
9788
|
WBTC: bigint | null;
|
|
9789
9789
|
};
|
|
@@ -9807,9 +9807,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9807
9807
|
BTC: string | number | null;
|
|
9808
9808
|
};
|
|
9809
9809
|
Ethereum: {
|
|
9810
|
+
FLIP: string | number | null;
|
|
9810
9811
|
ETH: string | number | null;
|
|
9811
9812
|
USDC: string | number | null;
|
|
9812
|
-
FLIP: string | number | null;
|
|
9813
9813
|
USDT: string | number | null;
|
|
9814
9814
|
WBTC?: string | number | null | undefined;
|
|
9815
9815
|
};
|
|
@@ -9863,15 +9863,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9863
9863
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
9864
9864
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9865
9865
|
}, "strip", z.ZodTypeAny, {
|
|
9866
|
+
FLIP: bigint;
|
|
9866
9867
|
ETH: bigint;
|
|
9867
9868
|
USDC: bigint;
|
|
9868
|
-
FLIP: bigint;
|
|
9869
9869
|
USDT: bigint;
|
|
9870
9870
|
WBTC: bigint;
|
|
9871
9871
|
}, {
|
|
9872
|
+
FLIP: string | number;
|
|
9872
9873
|
ETH: string | number;
|
|
9873
9874
|
USDC: string | number;
|
|
9874
|
-
FLIP: string | number;
|
|
9875
9875
|
USDT: string | number;
|
|
9876
9876
|
WBTC?: string | number | undefined;
|
|
9877
9877
|
}>;
|
|
@@ -9919,9 +9919,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9919
9919
|
BTC: bigint;
|
|
9920
9920
|
};
|
|
9921
9921
|
Ethereum: {
|
|
9922
|
+
FLIP: bigint;
|
|
9922
9923
|
ETH: bigint;
|
|
9923
9924
|
USDC: bigint;
|
|
9924
|
-
FLIP: bigint;
|
|
9925
9925
|
USDT: bigint;
|
|
9926
9926
|
WBTC: bigint;
|
|
9927
9927
|
};
|
|
@@ -9945,9 +9945,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9945
9945
|
BTC: string | number;
|
|
9946
9946
|
};
|
|
9947
9947
|
Ethereum: {
|
|
9948
|
+
FLIP: string | number;
|
|
9948
9949
|
ETH: string | number;
|
|
9949
9950
|
USDC: string | number;
|
|
9950
|
-
FLIP: string | number;
|
|
9951
9951
|
USDT: string | number;
|
|
9952
9952
|
WBTC?: string | number | undefined;
|
|
9953
9953
|
};
|
|
@@ -10030,9 +10030,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10030
10030
|
BTC: bigint;
|
|
10031
10031
|
};
|
|
10032
10032
|
Ethereum: {
|
|
10033
|
+
FLIP: bigint;
|
|
10033
10034
|
ETH: bigint;
|
|
10034
10035
|
USDC: bigint;
|
|
10035
|
-
FLIP: bigint;
|
|
10036
10036
|
USDT: bigint;
|
|
10037
10037
|
WBTC: bigint;
|
|
10038
10038
|
};
|
|
@@ -10057,9 +10057,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10057
10057
|
BTC: bigint | null;
|
|
10058
10058
|
};
|
|
10059
10059
|
Ethereum: {
|
|
10060
|
+
FLIP: bigint | null;
|
|
10060
10061
|
ETH: bigint | null;
|
|
10061
10062
|
USDC: bigint | null;
|
|
10062
|
-
FLIP: bigint | null;
|
|
10063
10063
|
USDT: bigint | null;
|
|
10064
10064
|
WBTC: bigint | null;
|
|
10065
10065
|
};
|
|
@@ -10084,9 +10084,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10084
10084
|
BTC: bigint | null;
|
|
10085
10085
|
};
|
|
10086
10086
|
Ethereum: {
|
|
10087
|
+
FLIP: bigint | null;
|
|
10087
10088
|
ETH: bigint | null;
|
|
10088
10089
|
USDC: bigint | null;
|
|
10089
|
-
FLIP: bigint | null;
|
|
10090
10090
|
USDT: bigint | null;
|
|
10091
10091
|
WBTC: bigint | null;
|
|
10092
10092
|
};
|
|
@@ -10118,9 +10118,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10118
10118
|
BTC: bigint;
|
|
10119
10119
|
};
|
|
10120
10120
|
Ethereum: {
|
|
10121
|
+
FLIP: bigint;
|
|
10121
10122
|
ETH: bigint;
|
|
10122
10123
|
USDC: bigint;
|
|
10123
|
-
FLIP: bigint;
|
|
10124
10124
|
USDT: bigint;
|
|
10125
10125
|
WBTC: bigint;
|
|
10126
10126
|
};
|
|
@@ -10167,9 +10167,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10167
10167
|
BTC: string | number;
|
|
10168
10168
|
};
|
|
10169
10169
|
Ethereum: {
|
|
10170
|
+
FLIP: string | number;
|
|
10170
10171
|
ETH: string | number;
|
|
10171
10172
|
USDC: string | number;
|
|
10172
|
-
FLIP: string | number;
|
|
10173
10173
|
USDT: string | number;
|
|
10174
10174
|
WBTC?: string | number | undefined;
|
|
10175
10175
|
};
|
|
@@ -10194,9 +10194,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10194
10194
|
BTC: string | number | null;
|
|
10195
10195
|
};
|
|
10196
10196
|
Ethereum: {
|
|
10197
|
+
FLIP: string | number | null;
|
|
10197
10198
|
ETH: string | number | null;
|
|
10198
10199
|
USDC: string | number | null;
|
|
10199
|
-
FLIP: string | number | null;
|
|
10200
10200
|
USDT: string | number | null;
|
|
10201
10201
|
WBTC?: string | number | null | undefined;
|
|
10202
10202
|
};
|
|
@@ -10221,9 +10221,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10221
10221
|
BTC: string | number | null;
|
|
10222
10222
|
};
|
|
10223
10223
|
Ethereum: {
|
|
10224
|
+
FLIP: string | number | null;
|
|
10224
10225
|
ETH: string | number | null;
|
|
10225
10226
|
USDC: string | number | null;
|
|
10226
|
-
FLIP: string | number | null;
|
|
10227
10227
|
USDT: string | number | null;
|
|
10228
10228
|
WBTC?: string | number | null | undefined;
|
|
10229
10229
|
};
|
|
@@ -10255,9 +10255,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10255
10255
|
BTC: string | number;
|
|
10256
10256
|
};
|
|
10257
10257
|
Ethereum: {
|
|
10258
|
+
FLIP: string | number;
|
|
10258
10259
|
ETH: string | number;
|
|
10259
10260
|
USDC: string | number;
|
|
10260
|
-
FLIP: string | number;
|
|
10261
10261
|
USDT: string | number;
|
|
10262
10262
|
WBTC?: string | number | undefined;
|
|
10263
10263
|
};
|
|
@@ -10304,9 +10304,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10304
10304
|
BTC: bigint;
|
|
10305
10305
|
};
|
|
10306
10306
|
Ethereum: {
|
|
10307
|
+
FLIP: bigint;
|
|
10307
10308
|
ETH: bigint;
|
|
10308
10309
|
USDC: bigint;
|
|
10309
|
-
FLIP: bigint;
|
|
10310
10310
|
USDT: bigint;
|
|
10311
10311
|
WBTC: bigint;
|
|
10312
10312
|
};
|
|
@@ -10331,9 +10331,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10331
10331
|
BTC: bigint | null;
|
|
10332
10332
|
};
|
|
10333
10333
|
Ethereum: {
|
|
10334
|
+
FLIP: bigint | null;
|
|
10334
10335
|
ETH: bigint | null;
|
|
10335
10336
|
USDC: bigint | null;
|
|
10336
|
-
FLIP: bigint | null;
|
|
10337
10337
|
USDT: bigint | null;
|
|
10338
10338
|
WBTC: bigint | null;
|
|
10339
10339
|
};
|
|
@@ -10358,9 +10358,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10358
10358
|
BTC: bigint | null;
|
|
10359
10359
|
};
|
|
10360
10360
|
Ethereum: {
|
|
10361
|
+
FLIP: bigint | null;
|
|
10361
10362
|
ETH: bigint | null;
|
|
10362
10363
|
USDC: bigint | null;
|
|
10363
|
-
FLIP: bigint | null;
|
|
10364
10364
|
USDT: bigint | null;
|
|
10365
10365
|
WBTC: bigint | null;
|
|
10366
10366
|
};
|
|
@@ -10392,9 +10392,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10392
10392
|
BTC: bigint;
|
|
10393
10393
|
};
|
|
10394
10394
|
Ethereum: {
|
|
10395
|
+
FLIP: bigint;
|
|
10395
10396
|
ETH: bigint;
|
|
10396
10397
|
USDC: bigint;
|
|
10397
|
-
FLIP: bigint;
|
|
10398
10398
|
USDT: bigint;
|
|
10399
10399
|
WBTC: bigint;
|
|
10400
10400
|
};
|
|
@@ -10443,9 +10443,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10443
10443
|
BTC: string | number;
|
|
10444
10444
|
};
|
|
10445
10445
|
Ethereum: {
|
|
10446
|
+
FLIP: string | number;
|
|
10446
10447
|
ETH: string | number;
|
|
10447
10448
|
USDC: string | number;
|
|
10448
|
-
FLIP: string | number;
|
|
10449
10449
|
USDT: string | number;
|
|
10450
10450
|
WBTC?: string | number | undefined;
|
|
10451
10451
|
};
|
|
@@ -10470,9 +10470,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10470
10470
|
BTC: string | number | null;
|
|
10471
10471
|
};
|
|
10472
10472
|
Ethereum: {
|
|
10473
|
+
FLIP: string | number | null;
|
|
10473
10474
|
ETH: string | number | null;
|
|
10474
10475
|
USDC: string | number | null;
|
|
10475
|
-
FLIP: string | number | null;
|
|
10476
10476
|
USDT: string | number | null;
|
|
10477
10477
|
WBTC?: string | number | null | undefined;
|
|
10478
10478
|
};
|
|
@@ -10497,9 +10497,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10497
10497
|
BTC: string | number | null;
|
|
10498
10498
|
};
|
|
10499
10499
|
Ethereum: {
|
|
10500
|
+
FLIP: string | number | null;
|
|
10500
10501
|
ETH: string | number | null;
|
|
10501
10502
|
USDC: string | number | null;
|
|
10502
|
-
FLIP: string | number | null;
|
|
10503
10503
|
USDT: string | number | null;
|
|
10504
10504
|
WBTC?: string | number | null | undefined;
|
|
10505
10505
|
};
|
|
@@ -10531,9 +10531,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10531
10531
|
BTC: string | number;
|
|
10532
10532
|
};
|
|
10533
10533
|
Ethereum: {
|
|
10534
|
+
FLIP: string | number;
|
|
10534
10535
|
ETH: string | number;
|
|
10535
10536
|
USDC: string | number;
|
|
10536
|
-
FLIP: string | number;
|
|
10537
10537
|
USDT: string | number;
|
|
10538
10538
|
WBTC?: string | number | undefined;
|
|
10539
10539
|
};
|
|
@@ -10591,15 +10591,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10591
10591
|
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
10592
10592
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
10593
10593
|
}, "strip", z.ZodTypeAny, {
|
|
10594
|
+
FLIP: bigint | null;
|
|
10594
10595
|
ETH: bigint | null;
|
|
10595
10596
|
USDC: bigint | null;
|
|
10596
|
-
FLIP: bigint | null;
|
|
10597
10597
|
USDT: bigint | null;
|
|
10598
10598
|
WBTC: bigint | null;
|
|
10599
10599
|
}, {
|
|
10600
|
+
FLIP: string | number | null;
|
|
10600
10601
|
ETH: string | number | null;
|
|
10601
10602
|
USDC: string | number | null;
|
|
10602
|
-
FLIP: string | number | null;
|
|
10603
10603
|
USDT: string | number | null;
|
|
10604
10604
|
WBTC?: string | number | null | undefined;
|
|
10605
10605
|
}>;
|
|
@@ -10647,9 +10647,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10647
10647
|
BTC: bigint | null;
|
|
10648
10648
|
};
|
|
10649
10649
|
Ethereum: {
|
|
10650
|
+
FLIP: bigint | null;
|
|
10650
10651
|
ETH: bigint | null;
|
|
10651
10652
|
USDC: bigint | null;
|
|
10652
|
-
FLIP: bigint | null;
|
|
10653
10653
|
USDT: bigint | null;
|
|
10654
10654
|
WBTC: bigint | null;
|
|
10655
10655
|
};
|
|
@@ -10673,9 +10673,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10673
10673
|
BTC: string | number | null;
|
|
10674
10674
|
};
|
|
10675
10675
|
Ethereum: {
|
|
10676
|
+
FLIP: string | number | null;
|
|
10676
10677
|
ETH: string | number | null;
|
|
10677
10678
|
USDC: string | number | null;
|
|
10678
|
-
FLIP: string | number | null;
|
|
10679
10679
|
USDT: string | number | null;
|
|
10680
10680
|
WBTC?: string | number | null | undefined;
|
|
10681
10681
|
};
|
|
@@ -10714,15 +10714,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10714
10714
|
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
10715
10715
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
10716
10716
|
}, "strip", z.ZodTypeAny, {
|
|
10717
|
+
FLIP: bigint | null;
|
|
10717
10718
|
ETH: bigint | null;
|
|
10718
10719
|
USDC: bigint | null;
|
|
10719
|
-
FLIP: bigint | null;
|
|
10720
10720
|
USDT: bigint | null;
|
|
10721
10721
|
WBTC: bigint | null;
|
|
10722
10722
|
}, {
|
|
10723
|
+
FLIP: string | number | null;
|
|
10723
10724
|
ETH: string | number | null;
|
|
10724
10725
|
USDC: string | number | null;
|
|
10725
|
-
FLIP: string | number | null;
|
|
10726
10726
|
USDT: string | number | null;
|
|
10727
10727
|
WBTC?: string | number | null | undefined;
|
|
10728
10728
|
}>;
|
|
@@ -10770,9 +10770,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10770
10770
|
BTC: bigint | null;
|
|
10771
10771
|
};
|
|
10772
10772
|
Ethereum: {
|
|
10773
|
+
FLIP: bigint | null;
|
|
10773
10774
|
ETH: bigint | null;
|
|
10774
10775
|
USDC: bigint | null;
|
|
10775
|
-
FLIP: bigint | null;
|
|
10776
10776
|
USDT: bigint | null;
|
|
10777
10777
|
WBTC: bigint | null;
|
|
10778
10778
|
};
|
|
@@ -10796,9 +10796,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10796
10796
|
BTC: string | number | null;
|
|
10797
10797
|
};
|
|
10798
10798
|
Ethereum: {
|
|
10799
|
+
FLIP: string | number | null;
|
|
10799
10800
|
ETH: string | number | null;
|
|
10800
10801
|
USDC: string | number | null;
|
|
10801
|
-
FLIP: string | number | null;
|
|
10802
10802
|
USDT: string | number | null;
|
|
10803
10803
|
WBTC?: string | number | null | undefined;
|
|
10804
10804
|
};
|
|
@@ -10845,15 +10845,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10845
10845
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
10846
10846
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
10847
10847
|
}, "strip", z.ZodTypeAny, {
|
|
10848
|
+
FLIP: bigint;
|
|
10848
10849
|
ETH: bigint;
|
|
10849
10850
|
USDC: bigint;
|
|
10850
|
-
FLIP: bigint;
|
|
10851
10851
|
USDT: bigint;
|
|
10852
10852
|
WBTC: bigint;
|
|
10853
10853
|
}, {
|
|
10854
|
+
FLIP: string | number;
|
|
10854
10855
|
ETH: string | number;
|
|
10855
10856
|
USDC: string | number;
|
|
10856
|
-
FLIP: string | number;
|
|
10857
10857
|
USDT: string | number;
|
|
10858
10858
|
WBTC?: string | number | undefined;
|
|
10859
10859
|
}>;
|
|
@@ -10901,9 +10901,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10901
10901
|
BTC: bigint;
|
|
10902
10902
|
};
|
|
10903
10903
|
Ethereum: {
|
|
10904
|
+
FLIP: bigint;
|
|
10904
10905
|
ETH: bigint;
|
|
10905
10906
|
USDC: bigint;
|
|
10906
|
-
FLIP: bigint;
|
|
10907
10907
|
USDT: bigint;
|
|
10908
10908
|
WBTC: bigint;
|
|
10909
10909
|
};
|
|
@@ -10927,9 +10927,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10927
10927
|
BTC: string | number;
|
|
10928
10928
|
};
|
|
10929
10929
|
Ethereum: {
|
|
10930
|
+
FLIP: string | number;
|
|
10930
10931
|
ETH: string | number;
|
|
10931
10932
|
USDC: string | number;
|
|
10932
|
-
FLIP: string | number;
|
|
10933
10933
|
USDT: string | number;
|
|
10934
10934
|
WBTC?: string | number | undefined;
|
|
10935
10935
|
};
|
|
@@ -10959,9 +10959,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10959
10959
|
BTC: bigint;
|
|
10960
10960
|
};
|
|
10961
10961
|
Ethereum: {
|
|
10962
|
+
FLIP: bigint;
|
|
10962
10963
|
ETH: bigint;
|
|
10963
10964
|
USDC: bigint;
|
|
10964
|
-
FLIP: bigint;
|
|
10965
10965
|
USDT: bigint;
|
|
10966
10966
|
WBTC: bigint;
|
|
10967
10967
|
};
|
|
@@ -10991,9 +10991,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10991
10991
|
BTC: string | number;
|
|
10992
10992
|
};
|
|
10993
10993
|
Ethereum: {
|
|
10994
|
+
FLIP: string | number;
|
|
10994
10995
|
ETH: string | number;
|
|
10995
10996
|
USDC: string | number;
|
|
10996
|
-
FLIP: string | number;
|
|
10997
10997
|
USDT: string | number;
|
|
10998
10998
|
WBTC?: string | number | undefined;
|
|
10999
10999
|
};
|
|
@@ -11040,15 +11040,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11040
11040
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
11041
11041
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
11042
11042
|
}, "strip", z.ZodTypeAny, {
|
|
11043
|
+
FLIP: bigint;
|
|
11043
11044
|
ETH: bigint;
|
|
11044
11045
|
USDC: bigint;
|
|
11045
|
-
FLIP: bigint;
|
|
11046
11046
|
USDT: bigint;
|
|
11047
11047
|
WBTC: bigint;
|
|
11048
11048
|
}, {
|
|
11049
|
+
FLIP: string | number;
|
|
11049
11050
|
ETH: string | number;
|
|
11050
11051
|
USDC: string | number;
|
|
11051
|
-
FLIP: string | number;
|
|
11052
11052
|
USDT: string | number;
|
|
11053
11053
|
WBTC?: string | number | undefined;
|
|
11054
11054
|
}>;
|
|
@@ -11096,9 +11096,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11096
11096
|
BTC: bigint;
|
|
11097
11097
|
};
|
|
11098
11098
|
Ethereum: {
|
|
11099
|
+
FLIP: bigint;
|
|
11099
11100
|
ETH: bigint;
|
|
11100
11101
|
USDC: bigint;
|
|
11101
|
-
FLIP: bigint;
|
|
11102
11102
|
USDT: bigint;
|
|
11103
11103
|
WBTC: bigint;
|
|
11104
11104
|
};
|
|
@@ -11122,9 +11122,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11122
11122
|
BTC: string | number;
|
|
11123
11123
|
};
|
|
11124
11124
|
Ethereum: {
|
|
11125
|
+
FLIP: string | number;
|
|
11125
11126
|
ETH: string | number;
|
|
11126
11127
|
USDC: string | number;
|
|
11127
|
-
FLIP: string | number;
|
|
11128
11128
|
USDT: string | number;
|
|
11129
11129
|
WBTC?: string | number | undefined;
|
|
11130
11130
|
};
|
|
@@ -11154,9 +11154,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11154
11154
|
BTC: bigint;
|
|
11155
11155
|
};
|
|
11156
11156
|
Ethereum: {
|
|
11157
|
+
FLIP: bigint;
|
|
11157
11158
|
ETH: bigint;
|
|
11158
11159
|
USDC: bigint;
|
|
11159
|
-
FLIP: bigint;
|
|
11160
11160
|
USDT: bigint;
|
|
11161
11161
|
WBTC: bigint;
|
|
11162
11162
|
};
|
|
@@ -11186,9 +11186,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11186
11186
|
BTC: string | number;
|
|
11187
11187
|
};
|
|
11188
11188
|
Ethereum: {
|
|
11189
|
+
FLIP: string | number;
|
|
11189
11190
|
ETH: string | number;
|
|
11190
11191
|
USDC: string | number;
|
|
11191
|
-
FLIP: string | number;
|
|
11192
11192
|
USDT: string | number;
|
|
11193
11193
|
WBTC?: string | number | undefined;
|
|
11194
11194
|
};
|
|
@@ -11220,9 +11220,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11220
11220
|
BTC: bigint;
|
|
11221
11221
|
};
|
|
11222
11222
|
Ethereum: {
|
|
11223
|
+
FLIP: bigint;
|
|
11223
11224
|
ETH: bigint;
|
|
11224
11225
|
USDC: bigint;
|
|
11225
|
-
FLIP: bigint;
|
|
11226
11226
|
USDT: bigint;
|
|
11227
11227
|
WBTC: bigint;
|
|
11228
11228
|
};
|
|
@@ -11253,9 +11253,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11253
11253
|
BTC: bigint;
|
|
11254
11254
|
};
|
|
11255
11255
|
Ethereum: {
|
|
11256
|
+
FLIP: bigint;
|
|
11256
11257
|
ETH: bigint;
|
|
11257
11258
|
USDC: bigint;
|
|
11258
|
-
FLIP: bigint;
|
|
11259
11259
|
USDT: bigint;
|
|
11260
11260
|
WBTC: bigint;
|
|
11261
11261
|
};
|
|
@@ -11287,9 +11287,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11287
11287
|
BTC: string | number;
|
|
11288
11288
|
};
|
|
11289
11289
|
Ethereum: {
|
|
11290
|
+
FLIP: string | number;
|
|
11290
11291
|
ETH: string | number;
|
|
11291
11292
|
USDC: string | number;
|
|
11292
|
-
FLIP: string | number;
|
|
11293
11293
|
USDT: string | number;
|
|
11294
11294
|
WBTC?: string | number | undefined;
|
|
11295
11295
|
};
|
|
@@ -11320,9 +11320,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11320
11320
|
BTC: string | number;
|
|
11321
11321
|
};
|
|
11322
11322
|
Ethereum: {
|
|
11323
|
+
FLIP: string | number;
|
|
11323
11324
|
ETH: string | number;
|
|
11324
11325
|
USDC: string | number;
|
|
11325
|
-
FLIP: string | number;
|
|
11326
11326
|
USDT: string | number;
|
|
11327
11327
|
WBTC?: string | number | undefined;
|
|
11328
11328
|
};
|
|
@@ -11350,9 +11350,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11350
11350
|
BTC: bigint | null;
|
|
11351
11351
|
};
|
|
11352
11352
|
Ethereum: {
|
|
11353
|
+
FLIP: bigint | null;
|
|
11353
11354
|
ETH: bigint | null;
|
|
11354
11355
|
USDC: bigint | null;
|
|
11355
|
-
FLIP: bigint | null;
|
|
11356
11356
|
USDT: bigint | null;
|
|
11357
11357
|
WBTC: bigint | null;
|
|
11358
11358
|
};
|
|
@@ -11384,9 +11384,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11384
11384
|
BTC: bigint;
|
|
11385
11385
|
};
|
|
11386
11386
|
Ethereum: {
|
|
11387
|
+
FLIP: bigint;
|
|
11387
11388
|
ETH: bigint;
|
|
11388
11389
|
USDC: bigint;
|
|
11389
|
-
FLIP: bigint;
|
|
11390
11390
|
USDT: bigint;
|
|
11391
11391
|
WBTC: bigint;
|
|
11392
11392
|
};
|
|
@@ -11417,9 +11417,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11417
11417
|
BTC: bigint;
|
|
11418
11418
|
};
|
|
11419
11419
|
Ethereum: {
|
|
11420
|
+
FLIP: bigint;
|
|
11420
11421
|
ETH: bigint;
|
|
11421
11422
|
USDC: bigint;
|
|
11422
|
-
FLIP: bigint;
|
|
11423
11423
|
USDT: bigint;
|
|
11424
11424
|
WBTC: bigint;
|
|
11425
11425
|
};
|
|
@@ -11449,9 +11449,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11449
11449
|
BTC: bigint | null;
|
|
11450
11450
|
};
|
|
11451
11451
|
Ethereum: {
|
|
11452
|
+
FLIP: bigint | null;
|
|
11452
11453
|
ETH: bigint | null;
|
|
11453
11454
|
USDC: bigint | null;
|
|
11454
|
-
FLIP: bigint | null;
|
|
11455
11455
|
USDT: bigint | null;
|
|
11456
11456
|
WBTC: bigint | null;
|
|
11457
11457
|
};
|
|
@@ -11477,9 +11477,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11477
11477
|
BTC: string | number | null;
|
|
11478
11478
|
};
|
|
11479
11479
|
Ethereum: {
|
|
11480
|
+
FLIP: string | number | null;
|
|
11480
11481
|
ETH: string | number | null;
|
|
11481
11482
|
USDC: string | number | null;
|
|
11482
|
-
FLIP: string | number | null;
|
|
11483
11483
|
USDT: string | number | null;
|
|
11484
11484
|
WBTC?: string | number | null | undefined;
|
|
11485
11485
|
};
|
|
@@ -11511,9 +11511,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11511
11511
|
BTC: string | number;
|
|
11512
11512
|
};
|
|
11513
11513
|
Ethereum: {
|
|
11514
|
+
FLIP: string | number;
|
|
11514
11515
|
ETH: string | number;
|
|
11515
11516
|
USDC: string | number;
|
|
11516
|
-
FLIP: string | number;
|
|
11517
11517
|
USDT: string | number;
|
|
11518
11518
|
WBTC?: string | number | undefined;
|
|
11519
11519
|
};
|
|
@@ -11544,9 +11544,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11544
11544
|
BTC: string | number;
|
|
11545
11545
|
};
|
|
11546
11546
|
Ethereum: {
|
|
11547
|
+
FLIP: string | number;
|
|
11547
11548
|
ETH: string | number;
|
|
11548
11549
|
USDC: string | number;
|
|
11549
|
-
FLIP: string | number;
|
|
11550
11550
|
USDT: string | number;
|
|
11551
11551
|
WBTC?: string | number | undefined;
|
|
11552
11552
|
};
|
|
@@ -11576,9 +11576,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11576
11576
|
BTC: string | number | null;
|
|
11577
11577
|
};
|
|
11578
11578
|
Ethereum: {
|
|
11579
|
+
FLIP: string | number | null;
|
|
11579
11580
|
ETH: string | number | null;
|
|
11580
11581
|
USDC: string | number | null;
|
|
11581
|
-
FLIP: string | number | null;
|
|
11582
11582
|
USDT: string | number | null;
|
|
11583
11583
|
WBTC?: string | number | null | undefined;
|
|
11584
11584
|
};
|
|
@@ -12533,7 +12533,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
12533
12533
|
};
|
|
12534
12534
|
} | null>>;
|
|
12535
12535
|
}, "strip", z.ZodTypeAny, {
|
|
12536
|
-
|
|
12536
|
+
FLIP: {
|
|
12537
12537
|
limit_order_fee_hundredth_pips: number;
|
|
12538
12538
|
range_order_fee_hundredth_pips: number;
|
|
12539
12539
|
range_order_total_fees_earned: {
|
|
@@ -12580,7 +12580,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
12580
12580
|
readonly asset: "USDC";
|
|
12581
12581
|
};
|
|
12582
12582
|
};
|
|
12583
|
-
|
|
12583
|
+
ETH: {
|
|
12584
12584
|
limit_order_fee_hundredth_pips: number;
|
|
12585
12585
|
range_order_fee_hundredth_pips: number;
|
|
12586
12586
|
range_order_total_fees_earned: {
|
|
@@ -12722,7 +12722,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
12722
12722
|
};
|
|
12723
12723
|
};
|
|
12724
12724
|
}, {
|
|
12725
|
-
|
|
12725
|
+
FLIP: {
|
|
12726
12726
|
limit_order_fee_hundredth_pips: number;
|
|
12727
12727
|
range_order_fee_hundredth_pips: number;
|
|
12728
12728
|
range_order_total_fees_earned: {
|
|
@@ -12746,7 +12746,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
12746
12746
|
asset: "USDC";
|
|
12747
12747
|
};
|
|
12748
12748
|
} | null;
|
|
12749
|
-
|
|
12749
|
+
ETH: {
|
|
12750
12750
|
limit_order_fee_hundredth_pips: number;
|
|
12751
12751
|
range_order_fee_hundredth_pips: number;
|
|
12752
12752
|
range_order_total_fees_earned: {
|
|
@@ -15042,7 +15042,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15042
15042
|
};
|
|
15043
15043
|
};
|
|
15044
15044
|
Ethereum: {
|
|
15045
|
-
|
|
15045
|
+
FLIP: {
|
|
15046
15046
|
limit_order_fee_hundredth_pips: number;
|
|
15047
15047
|
range_order_fee_hundredth_pips: number;
|
|
15048
15048
|
range_order_total_fees_earned: {
|
|
@@ -15089,7 +15089,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15089
15089
|
readonly asset: "USDC";
|
|
15090
15090
|
};
|
|
15091
15091
|
};
|
|
15092
|
-
|
|
15092
|
+
ETH: {
|
|
15093
15093
|
limit_order_fee_hundredth_pips: number;
|
|
15094
15094
|
range_order_fee_hundredth_pips: number;
|
|
15095
15095
|
range_order_total_fees_earned: {
|
|
@@ -15688,7 +15688,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15688
15688
|
} | null;
|
|
15689
15689
|
};
|
|
15690
15690
|
Ethereum: {
|
|
15691
|
-
|
|
15691
|
+
FLIP: {
|
|
15692
15692
|
limit_order_fee_hundredth_pips: number;
|
|
15693
15693
|
range_order_fee_hundredth_pips: number;
|
|
15694
15694
|
range_order_total_fees_earned: {
|
|
@@ -15712,7 +15712,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15712
15712
|
asset: "USDC";
|
|
15713
15713
|
};
|
|
15714
15714
|
} | null;
|
|
15715
|
-
|
|
15715
|
+
ETH: {
|
|
15716
15716
|
limit_order_fee_hundredth_pips: number;
|
|
15717
15717
|
range_order_fee_hundredth_pips: number;
|
|
15718
15718
|
range_order_total_fees_earned: {
|
|
@@ -16060,7 +16060,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
16060
16060
|
};
|
|
16061
16061
|
};
|
|
16062
16062
|
Ethereum: {
|
|
16063
|
-
|
|
16063
|
+
FLIP: {
|
|
16064
16064
|
limit_order_fee_hundredth_pips: number;
|
|
16065
16065
|
range_order_fee_hundredth_pips: number;
|
|
16066
16066
|
range_order_total_fees_earned: {
|
|
@@ -16107,7 +16107,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
16107
16107
|
readonly asset: "USDC";
|
|
16108
16108
|
};
|
|
16109
16109
|
};
|
|
16110
|
-
|
|
16110
|
+
ETH: {
|
|
16111
16111
|
limit_order_fee_hundredth_pips: number;
|
|
16112
16112
|
range_order_fee_hundredth_pips: number;
|
|
16113
16113
|
range_order_total_fees_earned: {
|
|
@@ -16708,7 +16708,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
16708
16708
|
} | null;
|
|
16709
16709
|
};
|
|
16710
16710
|
Ethereum: {
|
|
16711
|
-
|
|
16711
|
+
FLIP: {
|
|
16712
16712
|
limit_order_fee_hundredth_pips: number;
|
|
16713
16713
|
range_order_fee_hundredth_pips: number;
|
|
16714
16714
|
range_order_total_fees_earned: {
|
|
@@ -16732,7 +16732,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
16732
16732
|
asset: "USDC";
|
|
16733
16733
|
};
|
|
16734
16734
|
} | null;
|
|
16735
|
-
|
|
16735
|
+
ETH: {
|
|
16736
16736
|
limit_order_fee_hundredth_pips: number;
|
|
16737
16737
|
range_order_fee_hundredth_pips: number;
|
|
16738
16738
|
range_order_total_fees_earned: {
|
|
@@ -17036,9 +17036,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17036
17036
|
BTC: bigint;
|
|
17037
17037
|
};
|
|
17038
17038
|
Ethereum: {
|
|
17039
|
+
FLIP: bigint;
|
|
17039
17040
|
ETH: bigint;
|
|
17040
17041
|
USDC: bigint;
|
|
17041
|
-
FLIP: bigint;
|
|
17042
17042
|
USDT: bigint;
|
|
17043
17043
|
WBTC: bigint;
|
|
17044
17044
|
};
|
|
@@ -17063,9 +17063,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17063
17063
|
BTC: bigint | null;
|
|
17064
17064
|
};
|
|
17065
17065
|
Ethereum: {
|
|
17066
|
+
FLIP: bigint | null;
|
|
17066
17067
|
ETH: bigint | null;
|
|
17067
17068
|
USDC: bigint | null;
|
|
17068
|
-
FLIP: bigint | null;
|
|
17069
17069
|
USDT: bigint | null;
|
|
17070
17070
|
WBTC: bigint | null;
|
|
17071
17071
|
};
|
|
@@ -17090,9 +17090,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17090
17090
|
BTC: bigint | null;
|
|
17091
17091
|
};
|
|
17092
17092
|
Ethereum: {
|
|
17093
|
+
FLIP: bigint | null;
|
|
17093
17094
|
ETH: bigint | null;
|
|
17094
17095
|
USDC: bigint | null;
|
|
17095
|
-
FLIP: bigint | null;
|
|
17096
17096
|
USDT: bigint | null;
|
|
17097
17097
|
WBTC: bigint | null;
|
|
17098
17098
|
};
|
|
@@ -17124,9 +17124,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17124
17124
|
BTC: bigint;
|
|
17125
17125
|
};
|
|
17126
17126
|
Ethereum: {
|
|
17127
|
+
FLIP: bigint;
|
|
17127
17128
|
ETH: bigint;
|
|
17128
17129
|
USDC: bigint;
|
|
17129
|
-
FLIP: bigint;
|
|
17130
17130
|
USDT: bigint;
|
|
17131
17131
|
WBTC: bigint;
|
|
17132
17132
|
};
|
|
@@ -17173,9 +17173,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17173
17173
|
BTC: bigint;
|
|
17174
17174
|
};
|
|
17175
17175
|
Ethereum: {
|
|
17176
|
+
FLIP: bigint;
|
|
17176
17177
|
ETH: bigint;
|
|
17177
17178
|
USDC: bigint;
|
|
17178
|
-
FLIP: bigint;
|
|
17179
17179
|
USDT: bigint;
|
|
17180
17180
|
WBTC: bigint;
|
|
17181
17181
|
};
|
|
@@ -17202,9 +17202,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17202
17202
|
BTC: bigint | null;
|
|
17203
17203
|
};
|
|
17204
17204
|
Ethereum: {
|
|
17205
|
+
FLIP: bigint | null;
|
|
17205
17206
|
ETH: bigint | null;
|
|
17206
17207
|
USDC: bigint | null;
|
|
17207
|
-
FLIP: bigint | null;
|
|
17208
17208
|
USDT: bigint | null;
|
|
17209
17209
|
WBTC: bigint | null;
|
|
17210
17210
|
};
|
|
@@ -17236,9 +17236,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17236
17236
|
BTC: bigint;
|
|
17237
17237
|
};
|
|
17238
17238
|
Ethereum: {
|
|
17239
|
+
FLIP: bigint;
|
|
17239
17240
|
ETH: bigint;
|
|
17240
17241
|
USDC: bigint;
|
|
17241
|
-
FLIP: bigint;
|
|
17242
17242
|
USDT: bigint;
|
|
17243
17243
|
WBTC: bigint;
|
|
17244
17244
|
};
|
|
@@ -17269,9 +17269,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17269
17269
|
BTC: bigint;
|
|
17270
17270
|
};
|
|
17271
17271
|
Ethereum: {
|
|
17272
|
+
FLIP: bigint;
|
|
17272
17273
|
ETH: bigint;
|
|
17273
17274
|
USDC: bigint;
|
|
17274
|
-
FLIP: bigint;
|
|
17275
17275
|
USDT: bigint;
|
|
17276
17276
|
WBTC: bigint;
|
|
17277
17277
|
};
|
|
@@ -17301,9 +17301,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17301
17301
|
BTC: bigint | null;
|
|
17302
17302
|
};
|
|
17303
17303
|
Ethereum: {
|
|
17304
|
+
FLIP: bigint | null;
|
|
17304
17305
|
ETH: bigint | null;
|
|
17305
17306
|
USDC: bigint | null;
|
|
17306
|
-
FLIP: bigint | null;
|
|
17307
17307
|
USDT: bigint | null;
|
|
17308
17308
|
WBTC: bigint | null;
|
|
17309
17309
|
};
|
|
@@ -17380,7 +17380,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17380
17380
|
};
|
|
17381
17381
|
};
|
|
17382
17382
|
Ethereum: {
|
|
17383
|
-
|
|
17383
|
+
FLIP: {
|
|
17384
17384
|
limit_order_fee_hundredth_pips: number;
|
|
17385
17385
|
range_order_fee_hundredth_pips: number;
|
|
17386
17386
|
range_order_total_fees_earned: {
|
|
@@ -17427,7 +17427,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
17427
17427
|
readonly asset: "USDC";
|
|
17428
17428
|
};
|
|
17429
17429
|
};
|
|
17430
|
-
|
|
17430
|
+
ETH: {
|
|
17431
17431
|
limit_order_fee_hundredth_pips: number;
|
|
17432
17432
|
range_order_fee_hundredth_pips: number;
|
|
17433
17433
|
range_order_total_fees_earned: {
|
|
@@ -18007,9 +18007,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18007
18007
|
BTC: string | number;
|
|
18008
18008
|
};
|
|
18009
18009
|
Ethereum: {
|
|
18010
|
+
FLIP: string | number;
|
|
18010
18011
|
ETH: string | number;
|
|
18011
18012
|
USDC: string | number;
|
|
18012
|
-
FLIP: string | number;
|
|
18013
18013
|
USDT: string | number;
|
|
18014
18014
|
WBTC?: string | number | undefined;
|
|
18015
18015
|
};
|
|
@@ -18034,9 +18034,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18034
18034
|
BTC: string | number | null;
|
|
18035
18035
|
};
|
|
18036
18036
|
Ethereum: {
|
|
18037
|
+
FLIP: string | number | null;
|
|
18037
18038
|
ETH: string | number | null;
|
|
18038
18039
|
USDC: string | number | null;
|
|
18039
|
-
FLIP: string | number | null;
|
|
18040
18040
|
USDT: string | number | null;
|
|
18041
18041
|
WBTC?: string | number | null | undefined;
|
|
18042
18042
|
};
|
|
@@ -18061,9 +18061,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18061
18061
|
BTC: string | number | null;
|
|
18062
18062
|
};
|
|
18063
18063
|
Ethereum: {
|
|
18064
|
+
FLIP: string | number | null;
|
|
18064
18065
|
ETH: string | number | null;
|
|
18065
18066
|
USDC: string | number | null;
|
|
18066
|
-
FLIP: string | number | null;
|
|
18067
18067
|
USDT: string | number | null;
|
|
18068
18068
|
WBTC?: string | number | null | undefined;
|
|
18069
18069
|
};
|
|
@@ -18095,9 +18095,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18095
18095
|
BTC: string | number;
|
|
18096
18096
|
};
|
|
18097
18097
|
Ethereum: {
|
|
18098
|
+
FLIP: string | number;
|
|
18098
18099
|
ETH: string | number;
|
|
18099
18100
|
USDC: string | number;
|
|
18100
|
-
FLIP: string | number;
|
|
18101
18101
|
USDT: string | number;
|
|
18102
18102
|
WBTC?: string | number | undefined;
|
|
18103
18103
|
};
|
|
@@ -18145,9 +18145,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18145
18145
|
BTC: string | number | null;
|
|
18146
18146
|
};
|
|
18147
18147
|
Ethereum: {
|
|
18148
|
+
FLIP: string | number | null;
|
|
18148
18149
|
ETH: string | number | null;
|
|
18149
18150
|
USDC: string | number | null;
|
|
18150
|
-
FLIP: string | number | null;
|
|
18151
18151
|
USDT: string | number | null;
|
|
18152
18152
|
WBTC?: string | number | null | undefined;
|
|
18153
18153
|
};
|
|
@@ -18179,9 +18179,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18179
18179
|
BTC: string | number;
|
|
18180
18180
|
};
|
|
18181
18181
|
Ethereum: {
|
|
18182
|
+
FLIP: string | number;
|
|
18182
18183
|
ETH: string | number;
|
|
18183
18184
|
USDC: string | number;
|
|
18184
|
-
FLIP: string | number;
|
|
18185
18185
|
USDT: string | number;
|
|
18186
18186
|
WBTC?: string | number | undefined;
|
|
18187
18187
|
};
|
|
@@ -18212,9 +18212,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18212
18212
|
BTC: string | number;
|
|
18213
18213
|
};
|
|
18214
18214
|
Ethereum: {
|
|
18215
|
+
FLIP: string | number;
|
|
18215
18216
|
ETH: string | number;
|
|
18216
18217
|
USDC: string | number;
|
|
18217
|
-
FLIP: string | number;
|
|
18218
18218
|
USDT: string | number;
|
|
18219
18219
|
WBTC?: string | number | undefined;
|
|
18220
18220
|
};
|
|
@@ -18244,9 +18244,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18244
18244
|
BTC: string | number | null;
|
|
18245
18245
|
};
|
|
18246
18246
|
Ethereum: {
|
|
18247
|
+
FLIP: string | number | null;
|
|
18247
18248
|
ETH: string | number | null;
|
|
18248
18249
|
USDC: string | number | null;
|
|
18249
|
-
FLIP: string | number | null;
|
|
18250
18250
|
USDT: string | number | null;
|
|
18251
18251
|
WBTC?: string | number | null | undefined;
|
|
18252
18252
|
};
|
|
@@ -18300,7 +18300,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18300
18300
|
} | null;
|
|
18301
18301
|
};
|
|
18302
18302
|
Ethereum: {
|
|
18303
|
-
|
|
18303
|
+
FLIP: {
|
|
18304
18304
|
limit_order_fee_hundredth_pips: number;
|
|
18305
18305
|
range_order_fee_hundredth_pips: number;
|
|
18306
18306
|
range_order_total_fees_earned: {
|
|
@@ -18324,7 +18324,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
18324
18324
|
asset: "USDC";
|
|
18325
18325
|
};
|
|
18326
18326
|
} | null;
|
|
18327
|
-
|
|
18327
|
+
ETH: {
|
|
18328
18328
|
limit_order_fee_hundredth_pips: number;
|
|
18329
18329
|
range_order_fee_hundredth_pips: number;
|
|
18330
18330
|
range_order_total_fees_earned: {
|
|
@@ -18761,11 +18761,11 @@ declare const cfBoostPoolsDepth: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodO
|
|
|
18761
18761
|
tier: z.ZodNumber;
|
|
18762
18762
|
available_amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
18763
18763
|
}, "strip", z.ZodTypeAny, {
|
|
18764
|
-
available_amount: bigint;
|
|
18765
18764
|
tier: number;
|
|
18765
|
+
available_amount: bigint;
|
|
18766
18766
|
}, {
|
|
18767
|
-
available_amount: string;
|
|
18768
18767
|
tier: number;
|
|
18768
|
+
available_amount: string;
|
|
18769
18769
|
}>>, "many">;
|
|
18770
18770
|
declare const cfPoolDepth: z.ZodNullable<z.ZodObject<{
|
|
18771
18771
|
asks: z.ZodObject<{
|
|
@@ -19097,15 +19097,15 @@ declare const accountInfoCommon: {
|
|
|
19097
19097
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19098
19098
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
19099
19099
|
}, "strip", z.ZodTypeAny, {
|
|
19100
|
+
FLIP: bigint;
|
|
19100
19101
|
ETH: bigint;
|
|
19101
19102
|
USDC: bigint;
|
|
19102
|
-
FLIP: bigint;
|
|
19103
19103
|
USDT: bigint;
|
|
19104
19104
|
WBTC: bigint;
|
|
19105
19105
|
}, {
|
|
19106
|
+
FLIP: string | number;
|
|
19106
19107
|
ETH: string | number;
|
|
19107
19108
|
USDC: string | number;
|
|
19108
|
-
FLIP: string | number;
|
|
19109
19109
|
USDT: string | number;
|
|
19110
19110
|
WBTC?: string | number | undefined;
|
|
19111
19111
|
}>;
|
|
@@ -19153,9 +19153,9 @@ declare const accountInfoCommon: {
|
|
|
19153
19153
|
BTC: bigint;
|
|
19154
19154
|
};
|
|
19155
19155
|
Ethereum: {
|
|
19156
|
+
FLIP: bigint;
|
|
19156
19157
|
ETH: bigint;
|
|
19157
19158
|
USDC: bigint;
|
|
19158
|
-
FLIP: bigint;
|
|
19159
19159
|
USDT: bigint;
|
|
19160
19160
|
WBTC: bigint;
|
|
19161
19161
|
};
|
|
@@ -19179,9 +19179,9 @@ declare const accountInfoCommon: {
|
|
|
19179
19179
|
BTC: string | number;
|
|
19180
19180
|
};
|
|
19181
19181
|
Ethereum: {
|
|
19182
|
+
FLIP: string | number;
|
|
19182
19183
|
ETH: string | number;
|
|
19183
19184
|
USDC: string | number;
|
|
19184
|
-
FLIP: string | number;
|
|
19185
19185
|
USDT: string | number;
|
|
19186
19186
|
WBTC?: string | number | undefined;
|
|
19187
19187
|
};
|
|
@@ -19244,15 +19244,15 @@ declare const unregistered: z.ZodObject<{
|
|
|
19244
19244
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19245
19245
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
19246
19246
|
}, "strip", z.ZodTypeAny, {
|
|
19247
|
+
FLIP: bigint;
|
|
19247
19248
|
ETH: bigint;
|
|
19248
19249
|
USDC: bigint;
|
|
19249
|
-
FLIP: bigint;
|
|
19250
19250
|
USDT: bigint;
|
|
19251
19251
|
WBTC: bigint;
|
|
19252
19252
|
}, {
|
|
19253
|
+
FLIP: string | number;
|
|
19253
19254
|
ETH: string | number;
|
|
19254
19255
|
USDC: string | number;
|
|
19255
|
-
FLIP: string | number;
|
|
19256
19256
|
USDT: string | number;
|
|
19257
19257
|
WBTC?: string | number | undefined;
|
|
19258
19258
|
}>;
|
|
@@ -19300,9 +19300,9 @@ declare const unregistered: z.ZodObject<{
|
|
|
19300
19300
|
BTC: bigint;
|
|
19301
19301
|
};
|
|
19302
19302
|
Ethereum: {
|
|
19303
|
+
FLIP: bigint;
|
|
19303
19304
|
ETH: bigint;
|
|
19304
19305
|
USDC: bigint;
|
|
19305
|
-
FLIP: bigint;
|
|
19306
19306
|
USDT: bigint;
|
|
19307
19307
|
WBTC: bigint;
|
|
19308
19308
|
};
|
|
@@ -19326,9 +19326,9 @@ declare const unregistered: z.ZodObject<{
|
|
|
19326
19326
|
BTC: string | number;
|
|
19327
19327
|
};
|
|
19328
19328
|
Ethereum: {
|
|
19329
|
+
FLIP: string | number;
|
|
19329
19330
|
ETH: string | number;
|
|
19330
19331
|
USDC: string | number;
|
|
19331
|
-
FLIP: string | number;
|
|
19332
19332
|
USDT: string | number;
|
|
19333
19333
|
WBTC?: string | number | undefined;
|
|
19334
19334
|
};
|
|
@@ -19381,9 +19381,9 @@ declare const unregistered: z.ZodObject<{
|
|
|
19381
19381
|
BTC: bigint;
|
|
19382
19382
|
};
|
|
19383
19383
|
Ethereum: {
|
|
19384
|
+
FLIP: bigint;
|
|
19384
19385
|
ETH: bigint;
|
|
19385
19386
|
USDC: bigint;
|
|
19386
|
-
FLIP: bigint;
|
|
19387
19387
|
USDT: bigint;
|
|
19388
19388
|
WBTC: bigint;
|
|
19389
19389
|
};
|
|
@@ -19424,9 +19424,9 @@ declare const unregistered: z.ZodObject<{
|
|
|
19424
19424
|
BTC: string | number;
|
|
19425
19425
|
};
|
|
19426
19426
|
Ethereum: {
|
|
19427
|
+
FLIP: string | number;
|
|
19427
19428
|
ETH: string | number;
|
|
19428
19429
|
USDC: string | number;
|
|
19429
|
-
FLIP: string | number;
|
|
19430
19430
|
USDT: string | number;
|
|
19431
19431
|
WBTC?: string | number | undefined;
|
|
19432
19432
|
};
|
|
@@ -19476,15 +19476,15 @@ declare const broker: z.ZodObject<{
|
|
|
19476
19476
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19477
19477
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
19478
19478
|
}, "strip", z.ZodTypeAny, {
|
|
19479
|
+
FLIP: bigint;
|
|
19479
19480
|
ETH: bigint;
|
|
19480
19481
|
USDC: bigint;
|
|
19481
|
-
FLIP: bigint;
|
|
19482
19482
|
USDT: bigint;
|
|
19483
19483
|
WBTC: bigint;
|
|
19484
19484
|
}, {
|
|
19485
|
+
FLIP: string | number;
|
|
19485
19486
|
ETH: string | number;
|
|
19486
19487
|
USDC: string | number;
|
|
19487
|
-
FLIP: string | number;
|
|
19488
19488
|
USDT: string | number;
|
|
19489
19489
|
WBTC?: string | number | undefined;
|
|
19490
19490
|
}>;
|
|
@@ -19532,9 +19532,9 @@ declare const broker: z.ZodObject<{
|
|
|
19532
19532
|
BTC: bigint;
|
|
19533
19533
|
};
|
|
19534
19534
|
Ethereum: {
|
|
19535
|
+
FLIP: bigint;
|
|
19535
19536
|
ETH: bigint;
|
|
19536
19537
|
USDC: bigint;
|
|
19537
|
-
FLIP: bigint;
|
|
19538
19538
|
USDT: bigint;
|
|
19539
19539
|
WBTC: bigint;
|
|
19540
19540
|
};
|
|
@@ -19558,9 +19558,9 @@ declare const broker: z.ZodObject<{
|
|
|
19558
19558
|
BTC: string | number;
|
|
19559
19559
|
};
|
|
19560
19560
|
Ethereum: {
|
|
19561
|
+
FLIP: string | number;
|
|
19561
19562
|
ETH: string | number;
|
|
19562
19563
|
USDC: string | number;
|
|
19563
|
-
FLIP: string | number;
|
|
19564
19564
|
USDT: string | number;
|
|
19565
19565
|
WBTC?: string | number | undefined;
|
|
19566
19566
|
};
|
|
@@ -19611,15 +19611,15 @@ declare const broker: z.ZodObject<{
|
|
|
19611
19611
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19612
19612
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
19613
19613
|
}, "strip", z.ZodTypeAny, {
|
|
19614
|
+
FLIP: bigint;
|
|
19614
19615
|
ETH: bigint;
|
|
19615
19616
|
USDC: bigint;
|
|
19616
|
-
FLIP: bigint;
|
|
19617
19617
|
USDT: bigint;
|
|
19618
19618
|
WBTC: bigint;
|
|
19619
19619
|
}, {
|
|
19620
|
+
FLIP: string | number;
|
|
19620
19621
|
ETH: string | number;
|
|
19621
19622
|
USDC: string | number;
|
|
19622
|
-
FLIP: string | number;
|
|
19623
19623
|
USDT: string | number;
|
|
19624
19624
|
WBTC?: string | number | undefined;
|
|
19625
19625
|
}>;
|
|
@@ -19667,9 +19667,9 @@ declare const broker: z.ZodObject<{
|
|
|
19667
19667
|
BTC: bigint;
|
|
19668
19668
|
};
|
|
19669
19669
|
Ethereum: {
|
|
19670
|
+
FLIP: bigint;
|
|
19670
19671
|
ETH: bigint;
|
|
19671
19672
|
USDC: bigint;
|
|
19672
|
-
FLIP: bigint;
|
|
19673
19673
|
USDT: bigint;
|
|
19674
19674
|
WBTC: bigint;
|
|
19675
19675
|
};
|
|
@@ -19693,9 +19693,9 @@ declare const broker: z.ZodObject<{
|
|
|
19693
19693
|
BTC: string | number;
|
|
19694
19694
|
};
|
|
19695
19695
|
Ethereum: {
|
|
19696
|
+
FLIP: string | number;
|
|
19696
19697
|
ETH: string | number;
|
|
19697
19698
|
USDC: string | number;
|
|
19698
|
-
FLIP: string | number;
|
|
19699
19699
|
USDT: string | number;
|
|
19700
19700
|
WBTC?: string | number | undefined;
|
|
19701
19701
|
};
|
|
@@ -19748,9 +19748,9 @@ declare const broker: z.ZodObject<{
|
|
|
19748
19748
|
BTC: bigint;
|
|
19749
19749
|
};
|
|
19750
19750
|
Ethereum: {
|
|
19751
|
+
FLIP: bigint;
|
|
19751
19752
|
ETH: bigint;
|
|
19752
19753
|
USDC: bigint;
|
|
19753
|
-
FLIP: bigint;
|
|
19754
19754
|
USDT: bigint;
|
|
19755
19755
|
WBTC: bigint;
|
|
19756
19756
|
};
|
|
@@ -19777,9 +19777,9 @@ declare const broker: z.ZodObject<{
|
|
|
19777
19777
|
BTC: bigint;
|
|
19778
19778
|
};
|
|
19779
19779
|
Ethereum: {
|
|
19780
|
+
FLIP: bigint;
|
|
19780
19781
|
ETH: bigint;
|
|
19781
19782
|
USDC: bigint;
|
|
19782
|
-
FLIP: bigint;
|
|
19783
19783
|
USDT: bigint;
|
|
19784
19784
|
WBTC: bigint;
|
|
19785
19785
|
};
|
|
@@ -19824,9 +19824,9 @@ declare const broker: z.ZodObject<{
|
|
|
19824
19824
|
BTC: string | number;
|
|
19825
19825
|
};
|
|
19826
19826
|
Ethereum: {
|
|
19827
|
+
FLIP: string | number;
|
|
19827
19828
|
ETH: string | number;
|
|
19828
19829
|
USDC: string | number;
|
|
19829
|
-
FLIP: string | number;
|
|
19830
19830
|
USDT: string | number;
|
|
19831
19831
|
WBTC?: string | number | undefined;
|
|
19832
19832
|
};
|
|
@@ -19853,9 +19853,9 @@ declare const broker: z.ZodObject<{
|
|
|
19853
19853
|
BTC: string | number;
|
|
19854
19854
|
};
|
|
19855
19855
|
Ethereum: {
|
|
19856
|
+
FLIP: string | number;
|
|
19856
19857
|
ETH: string | number;
|
|
19857
19858
|
USDC: string | number;
|
|
19858
|
-
FLIP: string | number;
|
|
19859
19859
|
USDT: string | number;
|
|
19860
19860
|
WBTC?: string | number | undefined;
|
|
19861
19861
|
};
|
|
@@ -19941,15 +19941,15 @@ declare const operator: z.ZodObject<{
|
|
|
19941
19941
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19942
19942
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
19943
19943
|
}, "strip", z.ZodTypeAny, {
|
|
19944
|
+
FLIP: bigint;
|
|
19944
19945
|
ETH: bigint;
|
|
19945
19946
|
USDC: bigint;
|
|
19946
|
-
FLIP: bigint;
|
|
19947
19947
|
USDT: bigint;
|
|
19948
19948
|
WBTC: bigint;
|
|
19949
19949
|
}, {
|
|
19950
|
+
FLIP: string | number;
|
|
19950
19951
|
ETH: string | number;
|
|
19951
19952
|
USDC: string | number;
|
|
19952
|
-
FLIP: string | number;
|
|
19953
19953
|
USDT: string | number;
|
|
19954
19954
|
WBTC?: string | number | undefined;
|
|
19955
19955
|
}>;
|
|
@@ -19997,9 +19997,9 @@ declare const operator: z.ZodObject<{
|
|
|
19997
19997
|
BTC: bigint;
|
|
19998
19998
|
};
|
|
19999
19999
|
Ethereum: {
|
|
20000
|
+
FLIP: bigint;
|
|
20000
20001
|
ETH: bigint;
|
|
20001
20002
|
USDC: bigint;
|
|
20002
|
-
FLIP: bigint;
|
|
20003
20003
|
USDT: bigint;
|
|
20004
20004
|
WBTC: bigint;
|
|
20005
20005
|
};
|
|
@@ -20023,9 +20023,9 @@ declare const operator: z.ZodObject<{
|
|
|
20023
20023
|
BTC: string | number;
|
|
20024
20024
|
};
|
|
20025
20025
|
Ethereum: {
|
|
20026
|
+
FLIP: string | number;
|
|
20026
20027
|
ETH: string | number;
|
|
20027
20028
|
USDC: string | number;
|
|
20028
|
-
FLIP: string | number;
|
|
20029
20029
|
USDT: string | number;
|
|
20030
20030
|
WBTC?: string | number | undefined;
|
|
20031
20031
|
};
|
|
@@ -20078,9 +20078,9 @@ declare const operator: z.ZodObject<{
|
|
|
20078
20078
|
BTC: bigint;
|
|
20079
20079
|
};
|
|
20080
20080
|
Ethereum: {
|
|
20081
|
+
FLIP: bigint;
|
|
20081
20082
|
ETH: bigint;
|
|
20082
20083
|
USDC: bigint;
|
|
20083
|
-
FLIP: bigint;
|
|
20084
20084
|
USDT: bigint;
|
|
20085
20085
|
WBTC: bigint;
|
|
20086
20086
|
};
|
|
@@ -20135,9 +20135,9 @@ declare const operator: z.ZodObject<{
|
|
|
20135
20135
|
BTC: string | number;
|
|
20136
20136
|
};
|
|
20137
20137
|
Ethereum: {
|
|
20138
|
+
FLIP: string | number;
|
|
20138
20139
|
ETH: string | number;
|
|
20139
20140
|
USDC: string | number;
|
|
20140
|
-
FLIP: string | number;
|
|
20141
20141
|
USDT: string | number;
|
|
20142
20142
|
WBTC?: string | number | undefined;
|
|
20143
20143
|
};
|
|
@@ -20220,15 +20220,15 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20220
20220
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20221
20221
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
20222
20222
|
}, "strip", z.ZodTypeAny, {
|
|
20223
|
+
FLIP: bigint;
|
|
20223
20224
|
ETH: bigint;
|
|
20224
20225
|
USDC: bigint;
|
|
20225
|
-
FLIP: bigint;
|
|
20226
20226
|
USDT: bigint;
|
|
20227
20227
|
WBTC: bigint;
|
|
20228
20228
|
}, {
|
|
20229
|
+
FLIP: string | number;
|
|
20229
20230
|
ETH: string | number;
|
|
20230
20231
|
USDC: string | number;
|
|
20231
|
-
FLIP: string | number;
|
|
20232
20232
|
USDT: string | number;
|
|
20233
20233
|
WBTC?: string | number | undefined;
|
|
20234
20234
|
}>;
|
|
@@ -20276,9 +20276,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20276
20276
|
BTC: bigint;
|
|
20277
20277
|
};
|
|
20278
20278
|
Ethereum: {
|
|
20279
|
+
FLIP: bigint;
|
|
20279
20280
|
ETH: bigint;
|
|
20280
20281
|
USDC: bigint;
|
|
20281
|
-
FLIP: bigint;
|
|
20282
20282
|
USDT: bigint;
|
|
20283
20283
|
WBTC: bigint;
|
|
20284
20284
|
};
|
|
@@ -20302,9 +20302,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20302
20302
|
BTC: string | number;
|
|
20303
20303
|
};
|
|
20304
20304
|
Ethereum: {
|
|
20305
|
+
FLIP: string | number;
|
|
20305
20306
|
ETH: string | number;
|
|
20306
20307
|
USDC: string | number;
|
|
20307
|
-
FLIP: string | number;
|
|
20308
20308
|
USDT: string | number;
|
|
20309
20309
|
WBTC?: string | number | undefined;
|
|
20310
20310
|
};
|
|
@@ -20459,21 +20459,21 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20459
20459
|
is_withdrawing: boolean;
|
|
20460
20460
|
}>, "many">>;
|
|
20461
20461
|
}, "strip", z.ZodTypeAny, {
|
|
20462
|
-
|
|
20462
|
+
FLIP: {
|
|
20463
20463
|
fee_tier: number;
|
|
20464
20464
|
total_balance: bigint;
|
|
20465
20465
|
available_balance: bigint;
|
|
20466
20466
|
in_use_balance: bigint;
|
|
20467
20467
|
is_withdrawing: boolean;
|
|
20468
20468
|
}[];
|
|
20469
|
-
|
|
20469
|
+
ETH: {
|
|
20470
20470
|
fee_tier: number;
|
|
20471
20471
|
total_balance: bigint;
|
|
20472
20472
|
available_balance: bigint;
|
|
20473
20473
|
in_use_balance: bigint;
|
|
20474
20474
|
is_withdrawing: boolean;
|
|
20475
20475
|
}[];
|
|
20476
|
-
|
|
20476
|
+
USDC: {
|
|
20477
20477
|
fee_tier: number;
|
|
20478
20478
|
total_balance: bigint;
|
|
20479
20479
|
available_balance: bigint;
|
|
@@ -20495,21 +20495,21 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20495
20495
|
is_withdrawing: boolean;
|
|
20496
20496
|
}[];
|
|
20497
20497
|
}, {
|
|
20498
|
-
|
|
20498
|
+
FLIP: {
|
|
20499
20499
|
fee_tier: number;
|
|
20500
20500
|
total_balance: string;
|
|
20501
20501
|
available_balance: string;
|
|
20502
20502
|
in_use_balance: string;
|
|
20503
20503
|
is_withdrawing: boolean;
|
|
20504
20504
|
}[];
|
|
20505
|
-
|
|
20505
|
+
ETH: {
|
|
20506
20506
|
fee_tier: number;
|
|
20507
20507
|
total_balance: string;
|
|
20508
20508
|
available_balance: string;
|
|
20509
20509
|
in_use_balance: string;
|
|
20510
20510
|
is_withdrawing: boolean;
|
|
20511
20511
|
}[];
|
|
20512
|
-
|
|
20512
|
+
USDC: {
|
|
20513
20513
|
fee_tier: number;
|
|
20514
20514
|
total_balance: string;
|
|
20515
20515
|
available_balance: string;
|
|
@@ -20851,21 +20851,21 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20851
20851
|
}[];
|
|
20852
20852
|
};
|
|
20853
20853
|
Ethereum: {
|
|
20854
|
-
|
|
20854
|
+
FLIP: {
|
|
20855
20855
|
fee_tier: number;
|
|
20856
20856
|
total_balance: bigint;
|
|
20857
20857
|
available_balance: bigint;
|
|
20858
20858
|
in_use_balance: bigint;
|
|
20859
20859
|
is_withdrawing: boolean;
|
|
20860
20860
|
}[];
|
|
20861
|
-
|
|
20861
|
+
ETH: {
|
|
20862
20862
|
fee_tier: number;
|
|
20863
20863
|
total_balance: bigint;
|
|
20864
20864
|
available_balance: bigint;
|
|
20865
20865
|
in_use_balance: bigint;
|
|
20866
20866
|
is_withdrawing: boolean;
|
|
20867
20867
|
}[];
|
|
20868
|
-
|
|
20868
|
+
USDC: {
|
|
20869
20869
|
fee_tier: number;
|
|
20870
20870
|
total_balance: bigint;
|
|
20871
20871
|
available_balance: bigint;
|
|
@@ -20967,21 +20967,21 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20967
20967
|
}[];
|
|
20968
20968
|
};
|
|
20969
20969
|
Ethereum: {
|
|
20970
|
-
|
|
20970
|
+
FLIP: {
|
|
20971
20971
|
fee_tier: number;
|
|
20972
20972
|
total_balance: string;
|
|
20973
20973
|
available_balance: string;
|
|
20974
20974
|
in_use_balance: string;
|
|
20975
20975
|
is_withdrawing: boolean;
|
|
20976
20976
|
}[];
|
|
20977
|
-
|
|
20977
|
+
ETH: {
|
|
20978
20978
|
fee_tier: number;
|
|
20979
20979
|
total_balance: string;
|
|
20980
20980
|
available_balance: string;
|
|
20981
20981
|
in_use_balance: string;
|
|
20982
20982
|
is_withdrawing: boolean;
|
|
20983
20983
|
}[];
|
|
20984
|
-
|
|
20984
|
+
USDC: {
|
|
20985
20985
|
fee_tier: number;
|
|
20986
20986
|
total_balance: string;
|
|
20987
20987
|
available_balance: string;
|
|
@@ -21212,11 +21212,11 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21212
21212
|
total_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21213
21213
|
available_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21214
21214
|
}, "strip", z.ZodTypeAny, {
|
|
21215
|
-
total_amount: bigint;
|
|
21216
21215
|
available_amount: bigint;
|
|
21216
|
+
total_amount: bigint;
|
|
21217
21217
|
}, {
|
|
21218
|
-
total_amount: string | number;
|
|
21219
21218
|
available_amount: string | number;
|
|
21219
|
+
total_amount: string | number;
|
|
21220
21220
|
}>>, "many">>;
|
|
21221
21221
|
collateral_balances: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
21222
21222
|
chain: z.ZodLiteral<"Bitcoin">;
|
|
@@ -21377,15 +21377,15 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21377
21377
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21378
21378
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21379
21379
|
}, "strip", z.ZodTypeAny, {
|
|
21380
|
+
FLIP: bigint;
|
|
21380
21381
|
ETH: bigint;
|
|
21381
21382
|
USDC: bigint;
|
|
21382
|
-
FLIP: bigint;
|
|
21383
21383
|
USDT: bigint;
|
|
21384
21384
|
WBTC: bigint;
|
|
21385
21385
|
}, {
|
|
21386
|
+
FLIP: string | number;
|
|
21386
21387
|
ETH: string | number;
|
|
21387
21388
|
USDC: string | number;
|
|
21388
|
-
FLIP: string | number;
|
|
21389
21389
|
USDT: string | number;
|
|
21390
21390
|
WBTC?: string | number | undefined;
|
|
21391
21391
|
}>;
|
|
@@ -21433,9 +21433,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21433
21433
|
BTC: bigint;
|
|
21434
21434
|
};
|
|
21435
21435
|
Ethereum: {
|
|
21436
|
+
FLIP: bigint;
|
|
21436
21437
|
ETH: bigint;
|
|
21437
21438
|
USDC: bigint;
|
|
21438
|
-
FLIP: bigint;
|
|
21439
21439
|
USDT: bigint;
|
|
21440
21440
|
WBTC: bigint;
|
|
21441
21441
|
};
|
|
@@ -21459,9 +21459,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21459
21459
|
BTC: string | number;
|
|
21460
21460
|
};
|
|
21461
21461
|
Ethereum: {
|
|
21462
|
+
FLIP: string | number;
|
|
21462
21463
|
ETH: string | number;
|
|
21463
21464
|
USDC: string | number;
|
|
21464
|
-
FLIP: string | number;
|
|
21465
21465
|
USDT: string | number;
|
|
21466
21466
|
WBTC?: string | number | undefined;
|
|
21467
21467
|
};
|
|
@@ -21514,9 +21514,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21514
21514
|
BTC: bigint;
|
|
21515
21515
|
};
|
|
21516
21516
|
Ethereum: {
|
|
21517
|
+
FLIP: bigint;
|
|
21517
21518
|
ETH: bigint;
|
|
21518
21519
|
USDC: bigint;
|
|
21519
|
-
FLIP: bigint;
|
|
21520
21520
|
USDT: bigint;
|
|
21521
21521
|
WBTC: bigint;
|
|
21522
21522
|
};
|
|
@@ -21543,9 +21543,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21543
21543
|
BTC: bigint;
|
|
21544
21544
|
};
|
|
21545
21545
|
Ethereum: {
|
|
21546
|
+
FLIP: bigint;
|
|
21546
21547
|
ETH: bigint;
|
|
21547
21548
|
USDC: bigint;
|
|
21548
|
-
FLIP: bigint;
|
|
21549
21549
|
USDT: bigint;
|
|
21550
21550
|
WBTC: bigint;
|
|
21551
21551
|
};
|
|
@@ -21583,21 +21583,21 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21583
21583
|
}[];
|
|
21584
21584
|
};
|
|
21585
21585
|
Ethereum: {
|
|
21586
|
-
|
|
21586
|
+
FLIP: {
|
|
21587
21587
|
fee_tier: number;
|
|
21588
21588
|
total_balance: bigint;
|
|
21589
21589
|
available_balance: bigint;
|
|
21590
21590
|
in_use_balance: bigint;
|
|
21591
21591
|
is_withdrawing: boolean;
|
|
21592
21592
|
}[];
|
|
21593
|
-
|
|
21593
|
+
ETH: {
|
|
21594
21594
|
fee_tier: number;
|
|
21595
21595
|
total_balance: bigint;
|
|
21596
21596
|
available_balance: bigint;
|
|
21597
21597
|
in_use_balance: bigint;
|
|
21598
21598
|
is_withdrawing: boolean;
|
|
21599
21599
|
}[];
|
|
21600
|
-
|
|
21600
|
+
USDC: {
|
|
21601
21601
|
fee_tier: number;
|
|
21602
21602
|
total_balance: bigint;
|
|
21603
21603
|
available_balance: bigint;
|
|
@@ -21746,8 +21746,8 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21746
21746
|
chain: "Assethub";
|
|
21747
21747
|
asset: "USDT";
|
|
21748
21748
|
}) & {
|
|
21749
|
-
total_amount: bigint;
|
|
21750
21749
|
available_amount: bigint;
|
|
21750
|
+
total_amount: bigint;
|
|
21751
21751
|
})[] | undefined;
|
|
21752
21752
|
collateral_balances?: (({
|
|
21753
21753
|
chain: "Bitcoin";
|
|
@@ -21805,9 +21805,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21805
21805
|
BTC: string | number;
|
|
21806
21806
|
};
|
|
21807
21807
|
Ethereum: {
|
|
21808
|
+
FLIP: string | number;
|
|
21808
21809
|
ETH: string | number;
|
|
21809
21810
|
USDC: string | number;
|
|
21810
|
-
FLIP: string | number;
|
|
21811
21811
|
USDT: string | number;
|
|
21812
21812
|
WBTC?: string | number | undefined;
|
|
21813
21813
|
};
|
|
@@ -21834,9 +21834,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21834
21834
|
BTC: string | number;
|
|
21835
21835
|
};
|
|
21836
21836
|
Ethereum: {
|
|
21837
|
+
FLIP: string | number;
|
|
21837
21838
|
ETH: string | number;
|
|
21838
21839
|
USDC: string | number;
|
|
21839
|
-
FLIP: string | number;
|
|
21840
21840
|
USDT: string | number;
|
|
21841
21841
|
WBTC?: string | number | undefined;
|
|
21842
21842
|
};
|
|
@@ -21874,21 +21874,21 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
21874
21874
|
}[];
|
|
21875
21875
|
};
|
|
21876
21876
|
Ethereum: {
|
|
21877
|
-
|
|
21877
|
+
FLIP: {
|
|
21878
21878
|
fee_tier: number;
|
|
21879
21879
|
total_balance: string;
|
|
21880
21880
|
available_balance: string;
|
|
21881
21881
|
in_use_balance: string;
|
|
21882
21882
|
is_withdrawing: boolean;
|
|
21883
21883
|
}[];
|
|
21884
|
-
|
|
21884
|
+
ETH: {
|
|
21885
21885
|
fee_tier: number;
|
|
21886
21886
|
total_balance: string;
|
|
21887
21887
|
available_balance: string;
|
|
21888
21888
|
in_use_balance: string;
|
|
21889
21889
|
is_withdrawing: boolean;
|
|
21890
21890
|
}[];
|
|
21891
|
-
|
|
21891
|
+
USDC: {
|
|
21892
21892
|
fee_tier: number;
|
|
21893
21893
|
total_balance: string;
|
|
21894
21894
|
available_balance: string;
|
|
@@ -22037,8 +22037,8 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
22037
22037
|
chain: "Assethub";
|
|
22038
22038
|
asset: "USDT";
|
|
22039
22039
|
}) & {
|
|
22040
|
-
total_amount: string | number;
|
|
22041
22040
|
available_amount: string | number;
|
|
22041
|
+
total_amount: string | number;
|
|
22042
22042
|
})[] | undefined;
|
|
22043
22043
|
collateral_balances?: (({
|
|
22044
22044
|
chain: "Bitcoin";
|
|
@@ -22117,15 +22117,15 @@ declare const validator: z.ZodObject<{
|
|
|
22117
22117
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22118
22118
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
22119
22119
|
}, "strip", z.ZodTypeAny, {
|
|
22120
|
+
FLIP: bigint;
|
|
22120
22121
|
ETH: bigint;
|
|
22121
22122
|
USDC: bigint;
|
|
22122
|
-
FLIP: bigint;
|
|
22123
22123
|
USDT: bigint;
|
|
22124
22124
|
WBTC: bigint;
|
|
22125
22125
|
}, {
|
|
22126
|
+
FLIP: string | number;
|
|
22126
22127
|
ETH: string | number;
|
|
22127
22128
|
USDC: string | number;
|
|
22128
|
-
FLIP: string | number;
|
|
22129
22129
|
USDT: string | number;
|
|
22130
22130
|
WBTC?: string | number | undefined;
|
|
22131
22131
|
}>;
|
|
@@ -22173,9 +22173,9 @@ declare const validator: z.ZodObject<{
|
|
|
22173
22173
|
BTC: bigint;
|
|
22174
22174
|
};
|
|
22175
22175
|
Ethereum: {
|
|
22176
|
+
FLIP: bigint;
|
|
22176
22177
|
ETH: bigint;
|
|
22177
22178
|
USDC: bigint;
|
|
22178
|
-
FLIP: bigint;
|
|
22179
22179
|
USDT: bigint;
|
|
22180
22180
|
WBTC: bigint;
|
|
22181
22181
|
};
|
|
@@ -22199,9 +22199,9 @@ declare const validator: z.ZodObject<{
|
|
|
22199
22199
|
BTC: string | number;
|
|
22200
22200
|
};
|
|
22201
22201
|
Ethereum: {
|
|
22202
|
+
FLIP: string | number;
|
|
22202
22203
|
ETH: string | number;
|
|
22203
22204
|
USDC: string | number;
|
|
22204
|
-
FLIP: string | number;
|
|
22205
22205
|
USDT: string | number;
|
|
22206
22206
|
WBTC?: string | number | undefined;
|
|
22207
22207
|
};
|
|
@@ -22254,9 +22254,9 @@ declare const validator: z.ZodObject<{
|
|
|
22254
22254
|
BTC: bigint;
|
|
22255
22255
|
};
|
|
22256
22256
|
Ethereum: {
|
|
22257
|
+
FLIP: bigint;
|
|
22257
22258
|
ETH: bigint;
|
|
22258
22259
|
USDC: bigint;
|
|
22259
|
-
FLIP: bigint;
|
|
22260
22260
|
USDT: bigint;
|
|
22261
22261
|
WBTC: bigint;
|
|
22262
22262
|
};
|
|
@@ -22307,9 +22307,9 @@ declare const validator: z.ZodObject<{
|
|
|
22307
22307
|
BTC: string | number;
|
|
22308
22308
|
};
|
|
22309
22309
|
Ethereum: {
|
|
22310
|
+
FLIP: string | number;
|
|
22310
22311
|
ETH: string | number;
|
|
22311
22312
|
USDC: string | number;
|
|
22312
|
-
FLIP: string | number;
|
|
22313
22313
|
USDT: string | number;
|
|
22314
22314
|
WBTC?: string | number | undefined;
|
|
22315
22315
|
};
|
|
@@ -22371,15 +22371,15 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22371
22371
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22372
22372
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
22373
22373
|
}, "strip", z.ZodTypeAny, {
|
|
22374
|
+
FLIP: bigint;
|
|
22374
22375
|
ETH: bigint;
|
|
22375
22376
|
USDC: bigint;
|
|
22376
|
-
FLIP: bigint;
|
|
22377
22377
|
USDT: bigint;
|
|
22378
22378
|
WBTC: bigint;
|
|
22379
22379
|
}, {
|
|
22380
|
+
FLIP: string | number;
|
|
22380
22381
|
ETH: string | number;
|
|
22381
22382
|
USDC: string | number;
|
|
22382
|
-
FLIP: string | number;
|
|
22383
22383
|
USDT: string | number;
|
|
22384
22384
|
WBTC?: string | number | undefined;
|
|
22385
22385
|
}>;
|
|
@@ -22427,9 +22427,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22427
22427
|
BTC: bigint;
|
|
22428
22428
|
};
|
|
22429
22429
|
Ethereum: {
|
|
22430
|
+
FLIP: bigint;
|
|
22430
22431
|
ETH: bigint;
|
|
22431
22432
|
USDC: bigint;
|
|
22432
|
-
FLIP: bigint;
|
|
22433
22433
|
USDT: bigint;
|
|
22434
22434
|
WBTC: bigint;
|
|
22435
22435
|
};
|
|
@@ -22453,9 +22453,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22453
22453
|
BTC: string | number;
|
|
22454
22454
|
};
|
|
22455
22455
|
Ethereum: {
|
|
22456
|
+
FLIP: string | number;
|
|
22456
22457
|
ETH: string | number;
|
|
22457
22458
|
USDC: string | number;
|
|
22458
|
-
FLIP: string | number;
|
|
22459
22459
|
USDT: string | number;
|
|
22460
22460
|
WBTC?: string | number | undefined;
|
|
22461
22461
|
};
|
|
@@ -22508,9 +22508,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22508
22508
|
BTC: bigint;
|
|
22509
22509
|
};
|
|
22510
22510
|
Ethereum: {
|
|
22511
|
+
FLIP: bigint;
|
|
22511
22512
|
ETH: bigint;
|
|
22512
22513
|
USDC: bigint;
|
|
22513
|
-
FLIP: bigint;
|
|
22514
22514
|
USDT: bigint;
|
|
22515
22515
|
WBTC: bigint;
|
|
22516
22516
|
};
|
|
@@ -22551,9 +22551,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22551
22551
|
BTC: string | number;
|
|
22552
22552
|
};
|
|
22553
22553
|
Ethereum: {
|
|
22554
|
+
FLIP: string | number;
|
|
22554
22555
|
ETH: string | number;
|
|
22555
22556
|
USDC: string | number;
|
|
22556
|
-
FLIP: string | number;
|
|
22557
22557
|
USDT: string | number;
|
|
22558
22558
|
WBTC?: string | number | undefined;
|
|
22559
22559
|
};
|
|
@@ -22602,15 +22602,15 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22602
22602
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22603
22603
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
22604
22604
|
}, "strip", z.ZodTypeAny, {
|
|
22605
|
+
FLIP: bigint;
|
|
22605
22606
|
ETH: bigint;
|
|
22606
22607
|
USDC: bigint;
|
|
22607
|
-
FLIP: bigint;
|
|
22608
22608
|
USDT: bigint;
|
|
22609
22609
|
WBTC: bigint;
|
|
22610
22610
|
}, {
|
|
22611
|
+
FLIP: string | number;
|
|
22611
22612
|
ETH: string | number;
|
|
22612
22613
|
USDC: string | number;
|
|
22613
|
-
FLIP: string | number;
|
|
22614
22614
|
USDT: string | number;
|
|
22615
22615
|
WBTC?: string | number | undefined;
|
|
22616
22616
|
}>;
|
|
@@ -22658,9 +22658,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22658
22658
|
BTC: bigint;
|
|
22659
22659
|
};
|
|
22660
22660
|
Ethereum: {
|
|
22661
|
+
FLIP: bigint;
|
|
22661
22662
|
ETH: bigint;
|
|
22662
22663
|
USDC: bigint;
|
|
22663
|
-
FLIP: bigint;
|
|
22664
22664
|
USDT: bigint;
|
|
22665
22665
|
WBTC: bigint;
|
|
22666
22666
|
};
|
|
@@ -22684,9 +22684,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22684
22684
|
BTC: string | number;
|
|
22685
22685
|
};
|
|
22686
22686
|
Ethereum: {
|
|
22687
|
+
FLIP: string | number;
|
|
22687
22688
|
ETH: string | number;
|
|
22688
22689
|
USDC: string | number;
|
|
22689
|
-
FLIP: string | number;
|
|
22690
22690
|
USDT: string | number;
|
|
22691
22691
|
WBTC?: string | number | undefined;
|
|
22692
22692
|
};
|
|
@@ -22737,15 +22737,15 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22737
22737
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22738
22738
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
22739
22739
|
}, "strip", z.ZodTypeAny, {
|
|
22740
|
+
FLIP: bigint;
|
|
22740
22741
|
ETH: bigint;
|
|
22741
22742
|
USDC: bigint;
|
|
22742
|
-
FLIP: bigint;
|
|
22743
22743
|
USDT: bigint;
|
|
22744
22744
|
WBTC: bigint;
|
|
22745
22745
|
}, {
|
|
22746
|
+
FLIP: string | number;
|
|
22746
22747
|
ETH: string | number;
|
|
22747
22748
|
USDC: string | number;
|
|
22748
|
-
FLIP: string | number;
|
|
22749
22749
|
USDT: string | number;
|
|
22750
22750
|
WBTC?: string | number | undefined;
|
|
22751
22751
|
}>;
|
|
@@ -22793,9 +22793,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22793
22793
|
BTC: bigint;
|
|
22794
22794
|
};
|
|
22795
22795
|
Ethereum: {
|
|
22796
|
+
FLIP: bigint;
|
|
22796
22797
|
ETH: bigint;
|
|
22797
22798
|
USDC: bigint;
|
|
22798
|
-
FLIP: bigint;
|
|
22799
22799
|
USDT: bigint;
|
|
22800
22800
|
WBTC: bigint;
|
|
22801
22801
|
};
|
|
@@ -22819,9 +22819,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22819
22819
|
BTC: string | number;
|
|
22820
22820
|
};
|
|
22821
22821
|
Ethereum: {
|
|
22822
|
+
FLIP: string | number;
|
|
22822
22823
|
ETH: string | number;
|
|
22823
22824
|
USDC: string | number;
|
|
22824
|
-
FLIP: string | number;
|
|
22825
22825
|
USDT: string | number;
|
|
22826
22826
|
WBTC?: string | number | undefined;
|
|
22827
22827
|
};
|
|
@@ -22874,9 +22874,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22874
22874
|
BTC: bigint;
|
|
22875
22875
|
};
|
|
22876
22876
|
Ethereum: {
|
|
22877
|
+
FLIP: bigint;
|
|
22877
22878
|
ETH: bigint;
|
|
22878
22879
|
USDC: bigint;
|
|
22879
|
-
FLIP: bigint;
|
|
22880
22880
|
USDT: bigint;
|
|
22881
22881
|
WBTC: bigint;
|
|
22882
22882
|
};
|
|
@@ -22903,9 +22903,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22903
22903
|
BTC: bigint;
|
|
22904
22904
|
};
|
|
22905
22905
|
Ethereum: {
|
|
22906
|
+
FLIP: bigint;
|
|
22906
22907
|
ETH: bigint;
|
|
22907
22908
|
USDC: bigint;
|
|
22908
|
-
FLIP: bigint;
|
|
22909
22909
|
USDT: bigint;
|
|
22910
22910
|
WBTC: bigint;
|
|
22911
22911
|
};
|
|
@@ -22950,9 +22950,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22950
22950
|
BTC: string | number;
|
|
22951
22951
|
};
|
|
22952
22952
|
Ethereum: {
|
|
22953
|
+
FLIP: string | number;
|
|
22953
22954
|
ETH: string | number;
|
|
22954
22955
|
USDC: string | number;
|
|
22955
|
-
FLIP: string | number;
|
|
22956
22956
|
USDT: string | number;
|
|
22957
22957
|
WBTC?: string | number | undefined;
|
|
22958
22958
|
};
|
|
@@ -22979,9 +22979,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22979
22979
|
BTC: string | number;
|
|
22980
22980
|
};
|
|
22981
22981
|
Ethereum: {
|
|
22982
|
+
FLIP: string | number;
|
|
22982
22983
|
ETH: string | number;
|
|
22983
22984
|
USDC: string | number;
|
|
22984
|
-
FLIP: string | number;
|
|
22985
22985
|
USDT: string | number;
|
|
22986
22986
|
WBTC?: string | number | undefined;
|
|
22987
22987
|
};
|
|
@@ -23066,15 +23066,15 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23066
23066
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
23067
23067
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
23068
23068
|
}, "strip", z.ZodTypeAny, {
|
|
23069
|
+
FLIP: bigint;
|
|
23069
23070
|
ETH: bigint;
|
|
23070
23071
|
USDC: bigint;
|
|
23071
|
-
FLIP: bigint;
|
|
23072
23072
|
USDT: bigint;
|
|
23073
23073
|
WBTC: bigint;
|
|
23074
23074
|
}, {
|
|
23075
|
+
FLIP: string | number;
|
|
23075
23076
|
ETH: string | number;
|
|
23076
23077
|
USDC: string | number;
|
|
23077
|
-
FLIP: string | number;
|
|
23078
23078
|
USDT: string | number;
|
|
23079
23079
|
WBTC?: string | number | undefined;
|
|
23080
23080
|
}>;
|
|
@@ -23122,9 +23122,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23122
23122
|
BTC: bigint;
|
|
23123
23123
|
};
|
|
23124
23124
|
Ethereum: {
|
|
23125
|
+
FLIP: bigint;
|
|
23125
23126
|
ETH: bigint;
|
|
23126
23127
|
USDC: bigint;
|
|
23127
|
-
FLIP: bigint;
|
|
23128
23128
|
USDT: bigint;
|
|
23129
23129
|
WBTC: bigint;
|
|
23130
23130
|
};
|
|
@@ -23148,9 +23148,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23148
23148
|
BTC: string | number;
|
|
23149
23149
|
};
|
|
23150
23150
|
Ethereum: {
|
|
23151
|
+
FLIP: string | number;
|
|
23151
23152
|
ETH: string | number;
|
|
23152
23153
|
USDC: string | number;
|
|
23153
|
-
FLIP: string | number;
|
|
23154
23154
|
USDT: string | number;
|
|
23155
23155
|
WBTC?: string | number | undefined;
|
|
23156
23156
|
};
|
|
@@ -23203,9 +23203,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23203
23203
|
BTC: bigint;
|
|
23204
23204
|
};
|
|
23205
23205
|
Ethereum: {
|
|
23206
|
+
FLIP: bigint;
|
|
23206
23207
|
ETH: bigint;
|
|
23207
23208
|
USDC: bigint;
|
|
23208
|
-
FLIP: bigint;
|
|
23209
23209
|
USDT: bigint;
|
|
23210
23210
|
WBTC: bigint;
|
|
23211
23211
|
};
|
|
@@ -23260,9 +23260,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23260
23260
|
BTC: string | number;
|
|
23261
23261
|
};
|
|
23262
23262
|
Ethereum: {
|
|
23263
|
+
FLIP: string | number;
|
|
23263
23264
|
ETH: string | number;
|
|
23264
23265
|
USDC: string | number;
|
|
23265
|
-
FLIP: string | number;
|
|
23266
23266
|
USDT: string | number;
|
|
23267
23267
|
WBTC?: string | number | undefined;
|
|
23268
23268
|
};
|
|
@@ -23344,15 +23344,15 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23344
23344
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
23345
23345
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
23346
23346
|
}, "strip", z.ZodTypeAny, {
|
|
23347
|
+
FLIP: bigint;
|
|
23347
23348
|
ETH: bigint;
|
|
23348
23349
|
USDC: bigint;
|
|
23349
|
-
FLIP: bigint;
|
|
23350
23350
|
USDT: bigint;
|
|
23351
23351
|
WBTC: bigint;
|
|
23352
23352
|
}, {
|
|
23353
|
+
FLIP: string | number;
|
|
23353
23354
|
ETH: string | number;
|
|
23354
23355
|
USDC: string | number;
|
|
23355
|
-
FLIP: string | number;
|
|
23356
23356
|
USDT: string | number;
|
|
23357
23357
|
WBTC?: string | number | undefined;
|
|
23358
23358
|
}>;
|
|
@@ -23400,9 +23400,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23400
23400
|
BTC: bigint;
|
|
23401
23401
|
};
|
|
23402
23402
|
Ethereum: {
|
|
23403
|
+
FLIP: bigint;
|
|
23403
23404
|
ETH: bigint;
|
|
23404
23405
|
USDC: bigint;
|
|
23405
|
-
FLIP: bigint;
|
|
23406
23406
|
USDT: bigint;
|
|
23407
23407
|
WBTC: bigint;
|
|
23408
23408
|
};
|
|
@@ -23426,9 +23426,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23426
23426
|
BTC: string | number;
|
|
23427
23427
|
};
|
|
23428
23428
|
Ethereum: {
|
|
23429
|
+
FLIP: string | number;
|
|
23429
23430
|
ETH: string | number;
|
|
23430
23431
|
USDC: string | number;
|
|
23431
|
-
FLIP: string | number;
|
|
23432
23432
|
USDT: string | number;
|
|
23433
23433
|
WBTC?: string | number | undefined;
|
|
23434
23434
|
};
|
|
@@ -23583,21 +23583,21 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23583
23583
|
is_withdrawing: boolean;
|
|
23584
23584
|
}>, "many">>;
|
|
23585
23585
|
}, "strip", z.ZodTypeAny, {
|
|
23586
|
-
|
|
23586
|
+
FLIP: {
|
|
23587
23587
|
fee_tier: number;
|
|
23588
23588
|
total_balance: bigint;
|
|
23589
23589
|
available_balance: bigint;
|
|
23590
23590
|
in_use_balance: bigint;
|
|
23591
23591
|
is_withdrawing: boolean;
|
|
23592
23592
|
}[];
|
|
23593
|
-
|
|
23593
|
+
ETH: {
|
|
23594
23594
|
fee_tier: number;
|
|
23595
23595
|
total_balance: bigint;
|
|
23596
23596
|
available_balance: bigint;
|
|
23597
23597
|
in_use_balance: bigint;
|
|
23598
23598
|
is_withdrawing: boolean;
|
|
23599
23599
|
}[];
|
|
23600
|
-
|
|
23600
|
+
USDC: {
|
|
23601
23601
|
fee_tier: number;
|
|
23602
23602
|
total_balance: bigint;
|
|
23603
23603
|
available_balance: bigint;
|
|
@@ -23619,21 +23619,21 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23619
23619
|
is_withdrawing: boolean;
|
|
23620
23620
|
}[];
|
|
23621
23621
|
}, {
|
|
23622
|
-
|
|
23622
|
+
FLIP: {
|
|
23623
23623
|
fee_tier: number;
|
|
23624
23624
|
total_balance: string;
|
|
23625
23625
|
available_balance: string;
|
|
23626
23626
|
in_use_balance: string;
|
|
23627
23627
|
is_withdrawing: boolean;
|
|
23628
23628
|
}[];
|
|
23629
|
-
|
|
23629
|
+
ETH: {
|
|
23630
23630
|
fee_tier: number;
|
|
23631
23631
|
total_balance: string;
|
|
23632
23632
|
available_balance: string;
|
|
23633
23633
|
in_use_balance: string;
|
|
23634
23634
|
is_withdrawing: boolean;
|
|
23635
23635
|
}[];
|
|
23636
|
-
|
|
23636
|
+
USDC: {
|
|
23637
23637
|
fee_tier: number;
|
|
23638
23638
|
total_balance: string;
|
|
23639
23639
|
available_balance: string;
|
|
@@ -23975,21 +23975,21 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23975
23975
|
}[];
|
|
23976
23976
|
};
|
|
23977
23977
|
Ethereum: {
|
|
23978
|
-
|
|
23978
|
+
FLIP: {
|
|
23979
23979
|
fee_tier: number;
|
|
23980
23980
|
total_balance: bigint;
|
|
23981
23981
|
available_balance: bigint;
|
|
23982
23982
|
in_use_balance: bigint;
|
|
23983
23983
|
is_withdrawing: boolean;
|
|
23984
23984
|
}[];
|
|
23985
|
-
|
|
23985
|
+
ETH: {
|
|
23986
23986
|
fee_tier: number;
|
|
23987
23987
|
total_balance: bigint;
|
|
23988
23988
|
available_balance: bigint;
|
|
23989
23989
|
in_use_balance: bigint;
|
|
23990
23990
|
is_withdrawing: boolean;
|
|
23991
23991
|
}[];
|
|
23992
|
-
|
|
23992
|
+
USDC: {
|
|
23993
23993
|
fee_tier: number;
|
|
23994
23994
|
total_balance: bigint;
|
|
23995
23995
|
available_balance: bigint;
|
|
@@ -24091,21 +24091,21 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24091
24091
|
}[];
|
|
24092
24092
|
};
|
|
24093
24093
|
Ethereum: {
|
|
24094
|
-
|
|
24094
|
+
FLIP: {
|
|
24095
24095
|
fee_tier: number;
|
|
24096
24096
|
total_balance: string;
|
|
24097
24097
|
available_balance: string;
|
|
24098
24098
|
in_use_balance: string;
|
|
24099
24099
|
is_withdrawing: boolean;
|
|
24100
24100
|
}[];
|
|
24101
|
-
|
|
24101
|
+
ETH: {
|
|
24102
24102
|
fee_tier: number;
|
|
24103
24103
|
total_balance: string;
|
|
24104
24104
|
available_balance: string;
|
|
24105
24105
|
in_use_balance: string;
|
|
24106
24106
|
is_withdrawing: boolean;
|
|
24107
24107
|
}[];
|
|
24108
|
-
|
|
24108
|
+
USDC: {
|
|
24109
24109
|
fee_tier: number;
|
|
24110
24110
|
total_balance: string;
|
|
24111
24111
|
available_balance: string;
|
|
@@ -24336,11 +24336,11 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24336
24336
|
total_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
24337
24337
|
available_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
24338
24338
|
}, "strip", z.ZodTypeAny, {
|
|
24339
|
-
total_amount: bigint;
|
|
24340
24339
|
available_amount: bigint;
|
|
24340
|
+
total_amount: bigint;
|
|
24341
24341
|
}, {
|
|
24342
|
-
total_amount: string | number;
|
|
24343
24342
|
available_amount: string | number;
|
|
24343
|
+
total_amount: string | number;
|
|
24344
24344
|
}>>, "many">>;
|
|
24345
24345
|
collateral_balances: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
24346
24346
|
chain: z.ZodLiteral<"Bitcoin">;
|
|
@@ -24501,15 +24501,15 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24501
24501
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
24502
24502
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
24503
24503
|
}, "strip", z.ZodTypeAny, {
|
|
24504
|
+
FLIP: bigint;
|
|
24504
24505
|
ETH: bigint;
|
|
24505
24506
|
USDC: bigint;
|
|
24506
|
-
FLIP: bigint;
|
|
24507
24507
|
USDT: bigint;
|
|
24508
24508
|
WBTC: bigint;
|
|
24509
24509
|
}, {
|
|
24510
|
+
FLIP: string | number;
|
|
24510
24511
|
ETH: string | number;
|
|
24511
24512
|
USDC: string | number;
|
|
24512
|
-
FLIP: string | number;
|
|
24513
24513
|
USDT: string | number;
|
|
24514
24514
|
WBTC?: string | number | undefined;
|
|
24515
24515
|
}>;
|
|
@@ -24557,9 +24557,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24557
24557
|
BTC: bigint;
|
|
24558
24558
|
};
|
|
24559
24559
|
Ethereum: {
|
|
24560
|
+
FLIP: bigint;
|
|
24560
24561
|
ETH: bigint;
|
|
24561
24562
|
USDC: bigint;
|
|
24562
|
-
FLIP: bigint;
|
|
24563
24563
|
USDT: bigint;
|
|
24564
24564
|
WBTC: bigint;
|
|
24565
24565
|
};
|
|
@@ -24583,9 +24583,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24583
24583
|
BTC: string | number;
|
|
24584
24584
|
};
|
|
24585
24585
|
Ethereum: {
|
|
24586
|
+
FLIP: string | number;
|
|
24586
24587
|
ETH: string | number;
|
|
24587
24588
|
USDC: string | number;
|
|
24588
|
-
FLIP: string | number;
|
|
24589
24589
|
USDT: string | number;
|
|
24590
24590
|
WBTC?: string | number | undefined;
|
|
24591
24591
|
};
|
|
@@ -24638,9 +24638,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24638
24638
|
BTC: bigint;
|
|
24639
24639
|
};
|
|
24640
24640
|
Ethereum: {
|
|
24641
|
+
FLIP: bigint;
|
|
24641
24642
|
ETH: bigint;
|
|
24642
24643
|
USDC: bigint;
|
|
24643
|
-
FLIP: bigint;
|
|
24644
24644
|
USDT: bigint;
|
|
24645
24645
|
WBTC: bigint;
|
|
24646
24646
|
};
|
|
@@ -24667,9 +24667,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24667
24667
|
BTC: bigint;
|
|
24668
24668
|
};
|
|
24669
24669
|
Ethereum: {
|
|
24670
|
+
FLIP: bigint;
|
|
24670
24671
|
ETH: bigint;
|
|
24671
24672
|
USDC: bigint;
|
|
24672
|
-
FLIP: bigint;
|
|
24673
24673
|
USDT: bigint;
|
|
24674
24674
|
WBTC: bigint;
|
|
24675
24675
|
};
|
|
@@ -24707,21 +24707,21 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24707
24707
|
}[];
|
|
24708
24708
|
};
|
|
24709
24709
|
Ethereum: {
|
|
24710
|
-
|
|
24710
|
+
FLIP: {
|
|
24711
24711
|
fee_tier: number;
|
|
24712
24712
|
total_balance: bigint;
|
|
24713
24713
|
available_balance: bigint;
|
|
24714
24714
|
in_use_balance: bigint;
|
|
24715
24715
|
is_withdrawing: boolean;
|
|
24716
24716
|
}[];
|
|
24717
|
-
|
|
24717
|
+
ETH: {
|
|
24718
24718
|
fee_tier: number;
|
|
24719
24719
|
total_balance: bigint;
|
|
24720
24720
|
available_balance: bigint;
|
|
24721
24721
|
in_use_balance: bigint;
|
|
24722
24722
|
is_withdrawing: boolean;
|
|
24723
24723
|
}[];
|
|
24724
|
-
|
|
24724
|
+
USDC: {
|
|
24725
24725
|
fee_tier: number;
|
|
24726
24726
|
total_balance: bigint;
|
|
24727
24727
|
available_balance: bigint;
|
|
@@ -24870,8 +24870,8 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24870
24870
|
chain: "Assethub";
|
|
24871
24871
|
asset: "USDT";
|
|
24872
24872
|
}) & {
|
|
24873
|
-
total_amount: bigint;
|
|
24874
24873
|
available_amount: bigint;
|
|
24874
|
+
total_amount: bigint;
|
|
24875
24875
|
})[] | undefined;
|
|
24876
24876
|
collateral_balances?: (({
|
|
24877
24877
|
chain: "Bitcoin";
|
|
@@ -24929,9 +24929,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24929
24929
|
BTC: string | number;
|
|
24930
24930
|
};
|
|
24931
24931
|
Ethereum: {
|
|
24932
|
+
FLIP: string | number;
|
|
24932
24933
|
ETH: string | number;
|
|
24933
24934
|
USDC: string | number;
|
|
24934
|
-
FLIP: string | number;
|
|
24935
24935
|
USDT: string | number;
|
|
24936
24936
|
WBTC?: string | number | undefined;
|
|
24937
24937
|
};
|
|
@@ -24958,9 +24958,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24958
24958
|
BTC: string | number;
|
|
24959
24959
|
};
|
|
24960
24960
|
Ethereum: {
|
|
24961
|
+
FLIP: string | number;
|
|
24961
24962
|
ETH: string | number;
|
|
24962
24963
|
USDC: string | number;
|
|
24963
|
-
FLIP: string | number;
|
|
24964
24964
|
USDT: string | number;
|
|
24965
24965
|
WBTC?: string | number | undefined;
|
|
24966
24966
|
};
|
|
@@ -24998,21 +24998,21 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
24998
24998
|
}[];
|
|
24999
24999
|
};
|
|
25000
25000
|
Ethereum: {
|
|
25001
|
-
|
|
25001
|
+
FLIP: {
|
|
25002
25002
|
fee_tier: number;
|
|
25003
25003
|
total_balance: string;
|
|
25004
25004
|
available_balance: string;
|
|
25005
25005
|
in_use_balance: string;
|
|
25006
25006
|
is_withdrawing: boolean;
|
|
25007
25007
|
}[];
|
|
25008
|
-
|
|
25008
|
+
ETH: {
|
|
25009
25009
|
fee_tier: number;
|
|
25010
25010
|
total_balance: string;
|
|
25011
25011
|
available_balance: string;
|
|
25012
25012
|
in_use_balance: string;
|
|
25013
25013
|
is_withdrawing: boolean;
|
|
25014
25014
|
}[];
|
|
25015
|
-
|
|
25015
|
+
USDC: {
|
|
25016
25016
|
fee_tier: number;
|
|
25017
25017
|
total_balance: string;
|
|
25018
25018
|
available_balance: string;
|
|
@@ -25161,8 +25161,8 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25161
25161
|
chain: "Assethub";
|
|
25162
25162
|
asset: "USDT";
|
|
25163
25163
|
}) & {
|
|
25164
|
-
total_amount: string | number;
|
|
25165
25164
|
available_amount: string | number;
|
|
25165
|
+
total_amount: string | number;
|
|
25166
25166
|
})[] | undefined;
|
|
25167
25167
|
collateral_balances?: (({
|
|
25168
25168
|
chain: "Bitcoin";
|
|
@@ -25240,15 +25240,15 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25240
25240
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
25241
25241
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
25242
25242
|
}, "strip", z.ZodTypeAny, {
|
|
25243
|
+
FLIP: bigint;
|
|
25243
25244
|
ETH: bigint;
|
|
25244
25245
|
USDC: bigint;
|
|
25245
|
-
FLIP: bigint;
|
|
25246
25246
|
USDT: bigint;
|
|
25247
25247
|
WBTC: bigint;
|
|
25248
25248
|
}, {
|
|
25249
|
+
FLIP: string | number;
|
|
25249
25250
|
ETH: string | number;
|
|
25250
25251
|
USDC: string | number;
|
|
25251
|
-
FLIP: string | number;
|
|
25252
25252
|
USDT: string | number;
|
|
25253
25253
|
WBTC?: string | number | undefined;
|
|
25254
25254
|
}>;
|
|
@@ -25296,9 +25296,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25296
25296
|
BTC: bigint;
|
|
25297
25297
|
};
|
|
25298
25298
|
Ethereum: {
|
|
25299
|
+
FLIP: bigint;
|
|
25299
25300
|
ETH: bigint;
|
|
25300
25301
|
USDC: bigint;
|
|
25301
|
-
FLIP: bigint;
|
|
25302
25302
|
USDT: bigint;
|
|
25303
25303
|
WBTC: bigint;
|
|
25304
25304
|
};
|
|
@@ -25322,9 +25322,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25322
25322
|
BTC: string | number;
|
|
25323
25323
|
};
|
|
25324
25324
|
Ethereum: {
|
|
25325
|
+
FLIP: string | number;
|
|
25325
25326
|
ETH: string | number;
|
|
25326
25327
|
USDC: string | number;
|
|
25327
|
-
FLIP: string | number;
|
|
25328
25328
|
USDT: string | number;
|
|
25329
25329
|
WBTC?: string | number | undefined;
|
|
25330
25330
|
};
|
|
@@ -25377,9 +25377,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25377
25377
|
BTC: bigint;
|
|
25378
25378
|
};
|
|
25379
25379
|
Ethereum: {
|
|
25380
|
+
FLIP: bigint;
|
|
25380
25381
|
ETH: bigint;
|
|
25381
25382
|
USDC: bigint;
|
|
25382
|
-
FLIP: bigint;
|
|
25383
25383
|
USDT: bigint;
|
|
25384
25384
|
WBTC: bigint;
|
|
25385
25385
|
};
|
|
@@ -25430,9 +25430,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25430
25430
|
BTC: string | number;
|
|
25431
25431
|
};
|
|
25432
25432
|
Ethereum: {
|
|
25433
|
+
FLIP: string | number;
|
|
25433
25434
|
ETH: string | number;
|
|
25434
25435
|
USDC: string | number;
|
|
25435
|
-
FLIP: string | number;
|
|
25436
25436
|
USDT: string | number;
|
|
25437
25437
|
WBTC?: string | number | undefined;
|
|
25438
25438
|
};
|
|
@@ -25483,9 +25483,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25483
25483
|
BTC: bigint;
|
|
25484
25484
|
};
|
|
25485
25485
|
Ethereum: {
|
|
25486
|
+
FLIP: bigint;
|
|
25486
25487
|
ETH: bigint;
|
|
25487
25488
|
USDC: bigint;
|
|
25488
|
-
FLIP: bigint;
|
|
25489
25489
|
USDT: bigint;
|
|
25490
25490
|
WBTC: bigint;
|
|
25491
25491
|
};
|
|
@@ -25526,9 +25526,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25526
25526
|
BTC: bigint;
|
|
25527
25527
|
};
|
|
25528
25528
|
Ethereum: {
|
|
25529
|
+
FLIP: bigint;
|
|
25529
25530
|
ETH: bigint;
|
|
25530
25531
|
USDC: bigint;
|
|
25531
|
-
FLIP: bigint;
|
|
25532
25532
|
USDT: bigint;
|
|
25533
25533
|
WBTC: bigint;
|
|
25534
25534
|
};
|
|
@@ -25555,9 +25555,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25555
25555
|
BTC: bigint;
|
|
25556
25556
|
};
|
|
25557
25557
|
Ethereum: {
|
|
25558
|
+
FLIP: bigint;
|
|
25558
25559
|
ETH: bigint;
|
|
25559
25560
|
USDC: bigint;
|
|
25560
|
-
FLIP: bigint;
|
|
25561
25561
|
USDT: bigint;
|
|
25562
25562
|
WBTC: bigint;
|
|
25563
25563
|
};
|
|
@@ -25602,9 +25602,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25602
25602
|
BTC: bigint;
|
|
25603
25603
|
};
|
|
25604
25604
|
Ethereum: {
|
|
25605
|
+
FLIP: bigint;
|
|
25605
25606
|
ETH: bigint;
|
|
25606
25607
|
USDC: bigint;
|
|
25607
|
-
FLIP: bigint;
|
|
25608
25608
|
USDT: bigint;
|
|
25609
25609
|
WBTC: bigint;
|
|
25610
25610
|
};
|
|
@@ -25631,9 +25631,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25631
25631
|
BTC: bigint;
|
|
25632
25632
|
};
|
|
25633
25633
|
Ethereum: {
|
|
25634
|
+
FLIP: bigint;
|
|
25634
25635
|
ETH: bigint;
|
|
25635
25636
|
USDC: bigint;
|
|
25636
|
-
FLIP: bigint;
|
|
25637
25637
|
USDT: bigint;
|
|
25638
25638
|
WBTC: bigint;
|
|
25639
25639
|
};
|
|
@@ -25671,21 +25671,21 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25671
25671
|
}[];
|
|
25672
25672
|
};
|
|
25673
25673
|
Ethereum: {
|
|
25674
|
-
|
|
25674
|
+
FLIP: {
|
|
25675
25675
|
fee_tier: number;
|
|
25676
25676
|
total_balance: bigint;
|
|
25677
25677
|
available_balance: bigint;
|
|
25678
25678
|
in_use_balance: bigint;
|
|
25679
25679
|
is_withdrawing: boolean;
|
|
25680
25680
|
}[];
|
|
25681
|
-
|
|
25681
|
+
ETH: {
|
|
25682
25682
|
fee_tier: number;
|
|
25683
25683
|
total_balance: bigint;
|
|
25684
25684
|
available_balance: bigint;
|
|
25685
25685
|
in_use_balance: bigint;
|
|
25686
25686
|
is_withdrawing: boolean;
|
|
25687
25687
|
}[];
|
|
25688
|
-
|
|
25688
|
+
USDC: {
|
|
25689
25689
|
fee_tier: number;
|
|
25690
25690
|
total_balance: bigint;
|
|
25691
25691
|
available_balance: bigint;
|
|
@@ -25834,8 +25834,8 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25834
25834
|
chain: "Assethub";
|
|
25835
25835
|
asset: "USDT";
|
|
25836
25836
|
}) & {
|
|
25837
|
-
total_amount: bigint;
|
|
25838
25837
|
available_amount: bigint;
|
|
25838
|
+
total_amount: bigint;
|
|
25839
25839
|
})[] | undefined;
|
|
25840
25840
|
collateral_balances?: (({
|
|
25841
25841
|
chain: "Bitcoin";
|
|
@@ -25893,9 +25893,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25893
25893
|
BTC: bigint;
|
|
25894
25894
|
};
|
|
25895
25895
|
Ethereum: {
|
|
25896
|
+
FLIP: bigint;
|
|
25896
25897
|
ETH: bigint;
|
|
25897
25898
|
USDC: bigint;
|
|
25898
|
-
FLIP: bigint;
|
|
25899
25899
|
USDT: bigint;
|
|
25900
25900
|
WBTC: bigint;
|
|
25901
25901
|
};
|
|
@@ -25952,9 +25952,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
25952
25952
|
BTC: bigint;
|
|
25953
25953
|
};
|
|
25954
25954
|
Ethereum: {
|
|
25955
|
+
FLIP: bigint;
|
|
25955
25956
|
ETH: bigint;
|
|
25956
25957
|
USDC: bigint;
|
|
25957
|
-
FLIP: bigint;
|
|
25958
25958
|
USDT: bigint;
|
|
25959
25959
|
WBTC: bigint;
|
|
25960
25960
|
};
|
|
@@ -26003,9 +26003,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
26003
26003
|
BTC: string | number;
|
|
26004
26004
|
};
|
|
26005
26005
|
Ethereum: {
|
|
26006
|
+
FLIP: string | number;
|
|
26006
26007
|
ETH: string | number;
|
|
26007
26008
|
USDC: string | number;
|
|
26008
|
-
FLIP: string | number;
|
|
26009
26009
|
USDT: string | number;
|
|
26010
26010
|
WBTC?: string | number | undefined;
|
|
26011
26011
|
};
|
|
@@ -26046,9 +26046,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
26046
26046
|
BTC: string | number;
|
|
26047
26047
|
};
|
|
26048
26048
|
Ethereum: {
|
|
26049
|
+
FLIP: string | number;
|
|
26049
26050
|
ETH: string | number;
|
|
26050
26051
|
USDC: string | number;
|
|
26051
|
-
FLIP: string | number;
|
|
26052
26052
|
USDT: string | number;
|
|
26053
26053
|
WBTC?: string | number | undefined;
|
|
26054
26054
|
};
|
|
@@ -26075,9 +26075,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
26075
26075
|
BTC: string | number;
|
|
26076
26076
|
};
|
|
26077
26077
|
Ethereum: {
|
|
26078
|
+
FLIP: string | number;
|
|
26078
26079
|
ETH: string | number;
|
|
26079
26080
|
USDC: string | number;
|
|
26080
|
-
FLIP: string | number;
|
|
26081
26081
|
USDT: string | number;
|
|
26082
26082
|
WBTC?: string | number | undefined;
|
|
26083
26083
|
};
|
|
@@ -26122,9 +26122,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
26122
26122
|
BTC: string | number;
|
|
26123
26123
|
};
|
|
26124
26124
|
Ethereum: {
|
|
26125
|
+
FLIP: string | number;
|
|
26125
26126
|
ETH: string | number;
|
|
26126
26127
|
USDC: string | number;
|
|
26127
|
-
FLIP: string | number;
|
|
26128
26128
|
USDT: string | number;
|
|
26129
26129
|
WBTC?: string | number | undefined;
|
|
26130
26130
|
};
|
|
@@ -26179,9 +26179,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
26179
26179
|
BTC: string | number;
|
|
26180
26180
|
};
|
|
26181
26181
|
Ethereum: {
|
|
26182
|
+
FLIP: string | number;
|
|
26182
26183
|
ETH: string | number;
|
|
26183
26184
|
USDC: string | number;
|
|
26184
|
-
FLIP: string | number;
|
|
26185
26185
|
USDT: string | number;
|
|
26186
26186
|
WBTC?: string | number | undefined;
|
|
26187
26187
|
};
|
|
@@ -26208,9 +26208,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
26208
26208
|
BTC: string | number;
|
|
26209
26209
|
};
|
|
26210
26210
|
Ethereum: {
|
|
26211
|
+
FLIP: string | number;
|
|
26211
26212
|
ETH: string | number;
|
|
26212
26213
|
USDC: string | number;
|
|
26213
|
-
FLIP: string | number;
|
|
26214
26214
|
USDT: string | number;
|
|
26215
26215
|
WBTC?: string | number | undefined;
|
|
26216
26216
|
};
|
|
@@ -26248,21 +26248,21 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
26248
26248
|
}[];
|
|
26249
26249
|
};
|
|
26250
26250
|
Ethereum: {
|
|
26251
|
-
|
|
26251
|
+
FLIP: {
|
|
26252
26252
|
fee_tier: number;
|
|
26253
26253
|
total_balance: string;
|
|
26254
26254
|
available_balance: string;
|
|
26255
26255
|
in_use_balance: string;
|
|
26256
26256
|
is_withdrawing: boolean;
|
|
26257
26257
|
}[];
|
|
26258
|
-
|
|
26258
|
+
ETH: {
|
|
26259
26259
|
fee_tier: number;
|
|
26260
26260
|
total_balance: string;
|
|
26261
26261
|
available_balance: string;
|
|
26262
26262
|
in_use_balance: string;
|
|
26263
26263
|
is_withdrawing: boolean;
|
|
26264
26264
|
}[];
|
|
26265
|
-
|
|
26265
|
+
USDC: {
|
|
26266
26266
|
fee_tier: number;
|
|
26267
26267
|
total_balance: string;
|
|
26268
26268
|
available_balance: string;
|
|
@@ -26411,8 +26411,8 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
26411
26411
|
chain: "Assethub";
|
|
26412
26412
|
asset: "USDT";
|
|
26413
26413
|
}) & {
|
|
26414
|
-
total_amount: string | number;
|
|
26415
26414
|
available_amount: string | number;
|
|
26415
|
+
total_amount: string | number;
|
|
26416
26416
|
})[] | undefined;
|
|
26417
26417
|
collateral_balances?: (({
|
|
26418
26418
|
chain: "Bitcoin";
|
|
@@ -26470,9 +26470,9 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
26470
26470
|
BTC: string | number;
|
|
26471
26471
|
};
|
|
26472
26472
|
Ethereum: {
|
|
26473
|
+
FLIP: string | number;
|
|
26473
26474
|
ETH: string | number;
|
|
26474
26475
|
USDC: string | number;
|
|
26475
|
-
FLIP: string | number;
|
|
26476
26476
|
USDT: string | number;
|
|
26477
26477
|
WBTC?: string | number | undefined;
|
|
26478
26478
|
};
|
|
@@ -26995,33 +26995,33 @@ declare const ask: z.ZodEffects<z.ZodObject<{
|
|
|
26995
26995
|
lp: z.ZodString;
|
|
26996
26996
|
}, "strip", z.ZodTypeAny, {
|
|
26997
26997
|
id: string;
|
|
26998
|
+
fees_earned: bigint;
|
|
26999
|
+
lp: string;
|
|
26998
27000
|
tick: number;
|
|
26999
27001
|
sell_amount: bigint;
|
|
27000
|
-
fees_earned: bigint;
|
|
27001
27002
|
original_sell_amount: bigint;
|
|
27002
|
-
lp: string;
|
|
27003
27003
|
}, {
|
|
27004
27004
|
id: string | number;
|
|
27005
|
+
fees_earned: string | number;
|
|
27006
|
+
lp: string;
|
|
27005
27007
|
tick: number;
|
|
27006
27008
|
sell_amount: string | number;
|
|
27007
|
-
fees_earned: string | number;
|
|
27008
27009
|
original_sell_amount: string | number;
|
|
27009
|
-
lp: string;
|
|
27010
27010
|
}>, {
|
|
27011
27011
|
type: "ask";
|
|
27012
27012
|
id: string;
|
|
27013
|
+
fees_earned: bigint;
|
|
27014
|
+
lp: string;
|
|
27013
27015
|
tick: number;
|
|
27014
27016
|
sell_amount: bigint;
|
|
27015
|
-
fees_earned: bigint;
|
|
27016
27017
|
original_sell_amount: bigint;
|
|
27017
|
-
lp: string;
|
|
27018
27018
|
}, {
|
|
27019
27019
|
id: string | number;
|
|
27020
|
+
fees_earned: string | number;
|
|
27021
|
+
lp: string;
|
|
27020
27022
|
tick: number;
|
|
27021
27023
|
sell_amount: string | number;
|
|
27022
|
-
fees_earned: string | number;
|
|
27023
27024
|
original_sell_amount: string | number;
|
|
27024
|
-
lp: string;
|
|
27025
27025
|
}>;
|
|
27026
27026
|
declare const bid: z.ZodEffects<z.ZodObject<{
|
|
27027
27027
|
id: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>, string, string | number>;
|
|
@@ -27032,33 +27032,33 @@ declare const bid: z.ZodEffects<z.ZodObject<{
|
|
|
27032
27032
|
lp: z.ZodString;
|
|
27033
27033
|
}, "strip", z.ZodTypeAny, {
|
|
27034
27034
|
id: string;
|
|
27035
|
+
fees_earned: bigint;
|
|
27036
|
+
lp: string;
|
|
27035
27037
|
tick: number;
|
|
27036
27038
|
sell_amount: bigint;
|
|
27037
|
-
fees_earned: bigint;
|
|
27038
27039
|
original_sell_amount: bigint;
|
|
27039
|
-
lp: string;
|
|
27040
27040
|
}, {
|
|
27041
27041
|
id: string | number;
|
|
27042
|
+
fees_earned: string | number;
|
|
27043
|
+
lp: string;
|
|
27042
27044
|
tick: number;
|
|
27043
27045
|
sell_amount: string | number;
|
|
27044
|
-
fees_earned: string | number;
|
|
27045
27046
|
original_sell_amount: string | number;
|
|
27046
|
-
lp: string;
|
|
27047
27047
|
}>, {
|
|
27048
27048
|
type: "bid";
|
|
27049
27049
|
id: string;
|
|
27050
|
+
fees_earned: bigint;
|
|
27051
|
+
lp: string;
|
|
27050
27052
|
tick: number;
|
|
27051
27053
|
sell_amount: bigint;
|
|
27052
|
-
fees_earned: bigint;
|
|
27053
27054
|
original_sell_amount: bigint;
|
|
27054
|
-
lp: string;
|
|
27055
27055
|
}, {
|
|
27056
27056
|
id: string | number;
|
|
27057
|
+
fees_earned: string | number;
|
|
27058
|
+
lp: string;
|
|
27057
27059
|
tick: number;
|
|
27058
27060
|
sell_amount: string | number;
|
|
27059
|
-
fees_earned: string | number;
|
|
27060
27061
|
original_sell_amount: string | number;
|
|
27061
|
-
lp: string;
|
|
27062
27062
|
}>;
|
|
27063
27063
|
type RpcLimitOrder = z.infer<typeof ask> | z.infer<typeof bid>;
|
|
27064
27064
|
type RpcRangeOrder = z.infer<typeof rangeOrder>;
|
|
@@ -27088,53 +27088,53 @@ declare const rangeOrder: z.ZodEffects<z.ZodObject<{
|
|
|
27088
27088
|
lp: z.ZodString;
|
|
27089
27089
|
}, "strip", z.ZodTypeAny, {
|
|
27090
27090
|
id: string;
|
|
27091
|
+
range: {
|
|
27092
|
+
start: number;
|
|
27093
|
+
end: number;
|
|
27094
|
+
};
|
|
27095
|
+
liquidity: bigint;
|
|
27091
27096
|
fees_earned: {
|
|
27092
27097
|
base: bigint;
|
|
27093
27098
|
quote: bigint;
|
|
27094
27099
|
};
|
|
27095
27100
|
lp: string;
|
|
27101
|
+
}, {
|
|
27102
|
+
id: string | number;
|
|
27096
27103
|
range: {
|
|
27097
27104
|
start: number;
|
|
27098
27105
|
end: number;
|
|
27099
27106
|
};
|
|
27100
|
-
liquidity:
|
|
27101
|
-
}, {
|
|
27102
|
-
id: string | number;
|
|
27107
|
+
liquidity: string | number;
|
|
27103
27108
|
fees_earned: {
|
|
27104
27109
|
base: string | number;
|
|
27105
27110
|
quote: string | number;
|
|
27106
27111
|
};
|
|
27107
27112
|
lp: string;
|
|
27113
|
+
}>, {
|
|
27114
|
+
type: "range";
|
|
27115
|
+
id: string;
|
|
27108
27116
|
range: {
|
|
27109
27117
|
start: number;
|
|
27110
27118
|
end: number;
|
|
27111
27119
|
};
|
|
27112
|
-
liquidity:
|
|
27113
|
-
}>, {
|
|
27114
|
-
type: "range";
|
|
27115
|
-
id: string;
|
|
27120
|
+
liquidity: bigint;
|
|
27116
27121
|
fees_earned: {
|
|
27117
27122
|
base: bigint;
|
|
27118
27123
|
quote: bigint;
|
|
27119
27124
|
};
|
|
27120
27125
|
lp: string;
|
|
27126
|
+
}, {
|
|
27127
|
+
id: string | number;
|
|
27121
27128
|
range: {
|
|
27122
27129
|
start: number;
|
|
27123
27130
|
end: number;
|
|
27124
27131
|
};
|
|
27125
|
-
liquidity:
|
|
27126
|
-
}, {
|
|
27127
|
-
id: string | number;
|
|
27132
|
+
liquidity: string | number;
|
|
27128
27133
|
fees_earned: {
|
|
27129
27134
|
base: string | number;
|
|
27130
27135
|
quote: string | number;
|
|
27131
27136
|
};
|
|
27132
27137
|
lp: string;
|
|
27133
|
-
range: {
|
|
27134
|
-
start: number;
|
|
27135
|
-
end: number;
|
|
27136
|
-
};
|
|
27137
|
-
liquidity: string | number;
|
|
27138
27138
|
}>;
|
|
27139
27139
|
declare const cfPoolOrders: z.ZodObject<{
|
|
27140
27140
|
limit_orders: z.ZodObject<{
|
|
@@ -27147,33 +27147,33 @@ declare const cfPoolOrders: z.ZodObject<{
|
|
|
27147
27147
|
lp: z.ZodString;
|
|
27148
27148
|
}, "strip", z.ZodTypeAny, {
|
|
27149
27149
|
id: string;
|
|
27150
|
+
fees_earned: bigint;
|
|
27151
|
+
lp: string;
|
|
27150
27152
|
tick: number;
|
|
27151
27153
|
sell_amount: bigint;
|
|
27152
|
-
fees_earned: bigint;
|
|
27153
27154
|
original_sell_amount: bigint;
|
|
27154
|
-
lp: string;
|
|
27155
27155
|
}, {
|
|
27156
27156
|
id: string | number;
|
|
27157
|
+
fees_earned: string | number;
|
|
27158
|
+
lp: string;
|
|
27157
27159
|
tick: number;
|
|
27158
27160
|
sell_amount: string | number;
|
|
27159
|
-
fees_earned: string | number;
|
|
27160
27161
|
original_sell_amount: string | number;
|
|
27161
|
-
lp: string;
|
|
27162
27162
|
}>, {
|
|
27163
27163
|
type: "ask";
|
|
27164
27164
|
id: string;
|
|
27165
|
+
fees_earned: bigint;
|
|
27166
|
+
lp: string;
|
|
27165
27167
|
tick: number;
|
|
27166
27168
|
sell_amount: bigint;
|
|
27167
|
-
fees_earned: bigint;
|
|
27168
27169
|
original_sell_amount: bigint;
|
|
27169
|
-
lp: string;
|
|
27170
27170
|
}, {
|
|
27171
27171
|
id: string | number;
|
|
27172
|
+
fees_earned: string | number;
|
|
27173
|
+
lp: string;
|
|
27172
27174
|
tick: number;
|
|
27173
27175
|
sell_amount: string | number;
|
|
27174
|
-
fees_earned: string | number;
|
|
27175
27176
|
original_sell_amount: string | number;
|
|
27176
|
-
lp: string;
|
|
27177
27177
|
}>, "many">;
|
|
27178
27178
|
bids: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
27179
27179
|
id: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>, string, string | number>;
|
|
@@ -27184,69 +27184,69 @@ declare const cfPoolOrders: z.ZodObject<{
|
|
|
27184
27184
|
lp: z.ZodString;
|
|
27185
27185
|
}, "strip", z.ZodTypeAny, {
|
|
27186
27186
|
id: string;
|
|
27187
|
+
fees_earned: bigint;
|
|
27188
|
+
lp: string;
|
|
27187
27189
|
tick: number;
|
|
27188
27190
|
sell_amount: bigint;
|
|
27189
|
-
fees_earned: bigint;
|
|
27190
27191
|
original_sell_amount: bigint;
|
|
27191
|
-
lp: string;
|
|
27192
27192
|
}, {
|
|
27193
27193
|
id: string | number;
|
|
27194
|
+
fees_earned: string | number;
|
|
27195
|
+
lp: string;
|
|
27194
27196
|
tick: number;
|
|
27195
27197
|
sell_amount: string | number;
|
|
27196
|
-
fees_earned: string | number;
|
|
27197
27198
|
original_sell_amount: string | number;
|
|
27198
|
-
lp: string;
|
|
27199
27199
|
}>, {
|
|
27200
27200
|
type: "bid";
|
|
27201
27201
|
id: string;
|
|
27202
|
+
fees_earned: bigint;
|
|
27203
|
+
lp: string;
|
|
27202
27204
|
tick: number;
|
|
27203
27205
|
sell_amount: bigint;
|
|
27204
|
-
fees_earned: bigint;
|
|
27205
27206
|
original_sell_amount: bigint;
|
|
27206
|
-
lp: string;
|
|
27207
27207
|
}, {
|
|
27208
27208
|
id: string | number;
|
|
27209
|
+
fees_earned: string | number;
|
|
27210
|
+
lp: string;
|
|
27209
27211
|
tick: number;
|
|
27210
27212
|
sell_amount: string | number;
|
|
27211
|
-
fees_earned: string | number;
|
|
27212
27213
|
original_sell_amount: string | number;
|
|
27213
|
-
lp: string;
|
|
27214
27214
|
}>, "many">;
|
|
27215
27215
|
}, "strip", z.ZodTypeAny, {
|
|
27216
27216
|
asks: {
|
|
27217
27217
|
type: "ask";
|
|
27218
27218
|
id: string;
|
|
27219
|
+
fees_earned: bigint;
|
|
27220
|
+
lp: string;
|
|
27219
27221
|
tick: number;
|
|
27220
27222
|
sell_amount: bigint;
|
|
27221
|
-
fees_earned: bigint;
|
|
27222
27223
|
original_sell_amount: bigint;
|
|
27223
|
-
lp: string;
|
|
27224
27224
|
}[];
|
|
27225
27225
|
bids: {
|
|
27226
27226
|
type: "bid";
|
|
27227
27227
|
id: string;
|
|
27228
|
+
fees_earned: bigint;
|
|
27229
|
+
lp: string;
|
|
27228
27230
|
tick: number;
|
|
27229
27231
|
sell_amount: bigint;
|
|
27230
|
-
fees_earned: bigint;
|
|
27231
27232
|
original_sell_amount: bigint;
|
|
27232
|
-
lp: string;
|
|
27233
27233
|
}[];
|
|
27234
27234
|
}, {
|
|
27235
27235
|
asks: {
|
|
27236
27236
|
id: string | number;
|
|
27237
|
+
fees_earned: string | number;
|
|
27238
|
+
lp: string;
|
|
27237
27239
|
tick: number;
|
|
27238
27240
|
sell_amount: string | number;
|
|
27239
|
-
fees_earned: string | number;
|
|
27240
27241
|
original_sell_amount: string | number;
|
|
27241
|
-
lp: string;
|
|
27242
27242
|
}[];
|
|
27243
27243
|
bids: {
|
|
27244
27244
|
id: string | number;
|
|
27245
|
+
fees_earned: string | number;
|
|
27246
|
+
lp: string;
|
|
27245
27247
|
tick: number;
|
|
27246
27248
|
sell_amount: string | number;
|
|
27247
|
-
fees_earned: string | number;
|
|
27248
27249
|
original_sell_amount: string | number;
|
|
27249
|
-
lp: string;
|
|
27250
27250
|
}[];
|
|
27251
27251
|
}>;
|
|
27252
27252
|
range_orders: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
@@ -27275,120 +27275,120 @@ declare const cfPoolOrders: z.ZodObject<{
|
|
|
27275
27275
|
lp: z.ZodString;
|
|
27276
27276
|
}, "strip", z.ZodTypeAny, {
|
|
27277
27277
|
id: string;
|
|
27278
|
+
range: {
|
|
27279
|
+
start: number;
|
|
27280
|
+
end: number;
|
|
27281
|
+
};
|
|
27282
|
+
liquidity: bigint;
|
|
27278
27283
|
fees_earned: {
|
|
27279
27284
|
base: bigint;
|
|
27280
27285
|
quote: bigint;
|
|
27281
27286
|
};
|
|
27282
27287
|
lp: string;
|
|
27288
|
+
}, {
|
|
27289
|
+
id: string | number;
|
|
27283
27290
|
range: {
|
|
27284
27291
|
start: number;
|
|
27285
27292
|
end: number;
|
|
27286
27293
|
};
|
|
27287
|
-
liquidity:
|
|
27288
|
-
}, {
|
|
27289
|
-
id: string | number;
|
|
27294
|
+
liquidity: string | number;
|
|
27290
27295
|
fees_earned: {
|
|
27291
27296
|
base: string | number;
|
|
27292
27297
|
quote: string | number;
|
|
27293
27298
|
};
|
|
27294
27299
|
lp: string;
|
|
27300
|
+
}>, {
|
|
27301
|
+
type: "range";
|
|
27302
|
+
id: string;
|
|
27295
27303
|
range: {
|
|
27296
27304
|
start: number;
|
|
27297
27305
|
end: number;
|
|
27298
27306
|
};
|
|
27299
|
-
liquidity:
|
|
27300
|
-
}>, {
|
|
27301
|
-
type: "range";
|
|
27302
|
-
id: string;
|
|
27307
|
+
liquidity: bigint;
|
|
27303
27308
|
fees_earned: {
|
|
27304
27309
|
base: bigint;
|
|
27305
27310
|
quote: bigint;
|
|
27306
27311
|
};
|
|
27307
27312
|
lp: string;
|
|
27313
|
+
}, {
|
|
27314
|
+
id: string | number;
|
|
27308
27315
|
range: {
|
|
27309
27316
|
start: number;
|
|
27310
27317
|
end: number;
|
|
27311
27318
|
};
|
|
27312
|
-
liquidity:
|
|
27313
|
-
}, {
|
|
27314
|
-
id: string | number;
|
|
27319
|
+
liquidity: string | number;
|
|
27315
27320
|
fees_earned: {
|
|
27316
27321
|
base: string | number;
|
|
27317
27322
|
quote: string | number;
|
|
27318
27323
|
};
|
|
27319
27324
|
lp: string;
|
|
27320
|
-
range: {
|
|
27321
|
-
start: number;
|
|
27322
|
-
end: number;
|
|
27323
|
-
};
|
|
27324
|
-
liquidity: string | number;
|
|
27325
27325
|
}>, "many">;
|
|
27326
27326
|
}, "strip", z.ZodTypeAny, {
|
|
27327
27327
|
limit_orders: {
|
|
27328
27328
|
asks: {
|
|
27329
27329
|
type: "ask";
|
|
27330
27330
|
id: string;
|
|
27331
|
+
fees_earned: bigint;
|
|
27332
|
+
lp: string;
|
|
27331
27333
|
tick: number;
|
|
27332
27334
|
sell_amount: bigint;
|
|
27333
|
-
fees_earned: bigint;
|
|
27334
27335
|
original_sell_amount: bigint;
|
|
27335
|
-
lp: string;
|
|
27336
27336
|
}[];
|
|
27337
27337
|
bids: {
|
|
27338
27338
|
type: "bid";
|
|
27339
27339
|
id: string;
|
|
27340
|
+
fees_earned: bigint;
|
|
27341
|
+
lp: string;
|
|
27340
27342
|
tick: number;
|
|
27341
27343
|
sell_amount: bigint;
|
|
27342
|
-
fees_earned: bigint;
|
|
27343
27344
|
original_sell_amount: bigint;
|
|
27344
|
-
lp: string;
|
|
27345
27345
|
}[];
|
|
27346
27346
|
};
|
|
27347
27347
|
range_orders: {
|
|
27348
27348
|
type: "range";
|
|
27349
27349
|
id: string;
|
|
27350
|
-
fees_earned: {
|
|
27351
|
-
base: bigint;
|
|
27352
|
-
quote: bigint;
|
|
27353
|
-
};
|
|
27354
|
-
lp: string;
|
|
27355
27350
|
range: {
|
|
27356
27351
|
start: number;
|
|
27357
27352
|
end: number;
|
|
27358
27353
|
};
|
|
27359
27354
|
liquidity: bigint;
|
|
27355
|
+
fees_earned: {
|
|
27356
|
+
base: bigint;
|
|
27357
|
+
quote: bigint;
|
|
27358
|
+
};
|
|
27359
|
+
lp: string;
|
|
27360
27360
|
}[];
|
|
27361
27361
|
}, {
|
|
27362
27362
|
limit_orders: {
|
|
27363
27363
|
asks: {
|
|
27364
27364
|
id: string | number;
|
|
27365
|
+
fees_earned: string | number;
|
|
27366
|
+
lp: string;
|
|
27365
27367
|
tick: number;
|
|
27366
27368
|
sell_amount: string | number;
|
|
27367
|
-
fees_earned: string | number;
|
|
27368
27369
|
original_sell_amount: string | number;
|
|
27369
|
-
lp: string;
|
|
27370
27370
|
}[];
|
|
27371
27371
|
bids: {
|
|
27372
27372
|
id: string | number;
|
|
27373
|
+
fees_earned: string | number;
|
|
27374
|
+
lp: string;
|
|
27373
27375
|
tick: number;
|
|
27374
27376
|
sell_amount: string | number;
|
|
27375
|
-
fees_earned: string | number;
|
|
27376
27377
|
original_sell_amount: string | number;
|
|
27377
|
-
lp: string;
|
|
27378
27378
|
}[];
|
|
27379
27379
|
};
|
|
27380
27380
|
range_orders: {
|
|
27381
27381
|
id: string | number;
|
|
27382
|
-
fees_earned: {
|
|
27383
|
-
base: string | number;
|
|
27384
|
-
quote: string | number;
|
|
27385
|
-
};
|
|
27386
|
-
lp: string;
|
|
27387
27382
|
range: {
|
|
27388
27383
|
start: number;
|
|
27389
27384
|
end: number;
|
|
27390
27385
|
};
|
|
27391
27386
|
liquidity: string | number;
|
|
27387
|
+
fees_earned: {
|
|
27388
|
+
base: string | number;
|
|
27389
|
+
quote: string | number;
|
|
27390
|
+
};
|
|
27391
|
+
lp: string;
|
|
27392
27392
|
}[];
|
|
27393
27393
|
}>;
|
|
27394
27394
|
declare const cfBoostPoolDetails: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
@@ -27532,11 +27532,11 @@ declare const cfBoostPoolDetails: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.Zod
|
|
|
27532
27532
|
account_id: z.ZodString;
|
|
27533
27533
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
27534
27534
|
}, "strip", z.ZodTypeAny, {
|
|
27535
|
-
account_id: string;
|
|
27536
27535
|
amount: bigint;
|
|
27537
|
-
}, {
|
|
27538
27536
|
account_id: string;
|
|
27537
|
+
}, {
|
|
27539
27538
|
amount: string;
|
|
27539
|
+
account_id: string;
|
|
27540
27540
|
}>, "many">;
|
|
27541
27541
|
deposits_pending_finalization: z.ZodArray<z.ZodObject<{
|
|
27542
27542
|
deposit_id: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -27544,23 +27544,23 @@ declare const cfBoostPoolDetails: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.Zod
|
|
|
27544
27544
|
account_id: z.ZodString;
|
|
27545
27545
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
27546
27546
|
}, "strip", z.ZodTypeAny, {
|
|
27547
|
-
account_id: string;
|
|
27548
27547
|
amount: bigint;
|
|
27549
|
-
}, {
|
|
27550
27548
|
account_id: string;
|
|
27549
|
+
}, {
|
|
27551
27550
|
amount: string;
|
|
27551
|
+
account_id: string;
|
|
27552
27552
|
}>, "many">;
|
|
27553
27553
|
}, "strip", z.ZodTypeAny, {
|
|
27554
27554
|
deposit_id: bigint;
|
|
27555
27555
|
owed_amounts: {
|
|
27556
|
-
account_id: string;
|
|
27557
27556
|
amount: bigint;
|
|
27557
|
+
account_id: string;
|
|
27558
27558
|
}[];
|
|
27559
27559
|
}, {
|
|
27560
27560
|
deposit_id: string | number;
|
|
27561
27561
|
owed_amounts: {
|
|
27562
|
-
account_id: string;
|
|
27563
27562
|
amount: string;
|
|
27563
|
+
account_id: string;
|
|
27564
27564
|
}[];
|
|
27565
27565
|
}>, "many">;
|
|
27566
27566
|
pending_withdrawals: z.ZodArray<z.ZodObject<{
|
|
@@ -27577,14 +27577,14 @@ declare const cfBoostPoolDetails: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.Zod
|
|
|
27577
27577
|
}, "strip", z.ZodTypeAny, {
|
|
27578
27578
|
fee_tier: number;
|
|
27579
27579
|
available_amounts: {
|
|
27580
|
-
account_id: string;
|
|
27581
27580
|
amount: bigint;
|
|
27581
|
+
account_id: string;
|
|
27582
27582
|
}[];
|
|
27583
27583
|
deposits_pending_finalization: {
|
|
27584
27584
|
deposit_id: bigint;
|
|
27585
27585
|
owed_amounts: {
|
|
27586
|
-
account_id: string;
|
|
27587
27586
|
amount: bigint;
|
|
27587
|
+
account_id: string;
|
|
27588
27588
|
}[];
|
|
27589
27589
|
}[];
|
|
27590
27590
|
pending_withdrawals: {
|
|
@@ -27595,14 +27595,14 @@ declare const cfBoostPoolDetails: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.Zod
|
|
|
27595
27595
|
}, {
|
|
27596
27596
|
fee_tier: number;
|
|
27597
27597
|
available_amounts: {
|
|
27598
|
-
account_id: string;
|
|
27599
27598
|
amount: string;
|
|
27599
|
+
account_id: string;
|
|
27600
27600
|
}[];
|
|
27601
27601
|
deposits_pending_finalization: {
|
|
27602
27602
|
deposit_id: string | number;
|
|
27603
27603
|
owed_amounts: {
|
|
27604
|
-
account_id: string;
|
|
27605
27604
|
amount: string;
|
|
27605
|
+
account_id: string;
|
|
27606
27606
|
}[];
|
|
27607
27607
|
}[];
|
|
27608
27608
|
pending_withdrawals: {
|
|
@@ -27754,22 +27754,22 @@ declare const cfBoostPoolPendingFees: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z
|
|
|
27754
27754
|
account_id: z.ZodString;
|
|
27755
27755
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
27756
27756
|
}, "strip", z.ZodTypeAny, {
|
|
27757
|
-
account_id: string;
|
|
27758
27757
|
amount: bigint;
|
|
27759
|
-
}, {
|
|
27760
27758
|
account_id: string;
|
|
27759
|
+
}, {
|
|
27761
27760
|
amount: string;
|
|
27761
|
+
account_id: string;
|
|
27762
27762
|
}>, "many">;
|
|
27763
27763
|
}, "strip", z.ZodTypeAny, {
|
|
27764
27764
|
fees: {
|
|
27765
|
-
account_id: string;
|
|
27766
27765
|
amount: bigint;
|
|
27766
|
+
account_id: string;
|
|
27767
27767
|
}[];
|
|
27768
27768
|
deposit_id: bigint;
|
|
27769
27769
|
}, {
|
|
27770
27770
|
fees: {
|
|
27771
|
-
account_id: string;
|
|
27772
27771
|
amount: string;
|
|
27772
|
+
account_id: string;
|
|
27773
27773
|
}[];
|
|
27774
27774
|
deposit_id: number;
|
|
27775
27775
|
}>, "many">;
|
|
@@ -27777,8 +27777,8 @@ declare const cfBoostPoolPendingFees: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z
|
|
|
27777
27777
|
fee_tier: number;
|
|
27778
27778
|
pending_fees: {
|
|
27779
27779
|
fees: {
|
|
27780
|
-
account_id: string;
|
|
27781
27780
|
amount: bigint;
|
|
27781
|
+
account_id: string;
|
|
27782
27782
|
}[];
|
|
27783
27783
|
deposit_id: bigint;
|
|
27784
27784
|
}[];
|
|
@@ -27786,8 +27786,8 @@ declare const cfBoostPoolPendingFees: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z
|
|
|
27786
27786
|
fee_tier: number;
|
|
27787
27787
|
pending_fees: {
|
|
27788
27788
|
fees: {
|
|
27789
|
-
account_id: string;
|
|
27790
27789
|
amount: string;
|
|
27790
|
+
account_id: string;
|
|
27791
27791
|
}[];
|
|
27792
27792
|
deposit_id: number;
|
|
27793
27793
|
}[];
|
|
@@ -27807,15 +27807,15 @@ declare const lpTotalBalances: z.ZodObject<{
|
|
|
27807
27807
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
27808
27808
|
WBTC: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
27809
27809
|
}, "strip", z.ZodTypeAny, {
|
|
27810
|
+
FLIP: bigint;
|
|
27810
27811
|
ETH: bigint;
|
|
27811
27812
|
USDC: bigint;
|
|
27812
|
-
FLIP: bigint;
|
|
27813
27813
|
USDT: bigint;
|
|
27814
27814
|
WBTC: bigint;
|
|
27815
27815
|
}, {
|
|
27816
|
+
FLIP: string | number;
|
|
27816
27817
|
ETH: string | number;
|
|
27817
27818
|
USDC: string | number;
|
|
27818
|
-
FLIP: string | number;
|
|
27819
27819
|
USDT: string | number;
|
|
27820
27820
|
WBTC?: string | number | undefined;
|
|
27821
27821
|
}>;
|
|
@@ -27863,9 +27863,9 @@ declare const lpTotalBalances: z.ZodObject<{
|
|
|
27863
27863
|
BTC: bigint;
|
|
27864
27864
|
};
|
|
27865
27865
|
Ethereum: {
|
|
27866
|
+
FLIP: bigint;
|
|
27866
27867
|
ETH: bigint;
|
|
27867
27868
|
USDC: bigint;
|
|
27868
|
-
FLIP: bigint;
|
|
27869
27869
|
USDT: bigint;
|
|
27870
27870
|
WBTC: bigint;
|
|
27871
27871
|
};
|
|
@@ -27889,9 +27889,9 @@ declare const lpTotalBalances: z.ZodObject<{
|
|
|
27889
27889
|
BTC: string | number;
|
|
27890
27890
|
};
|
|
27891
27891
|
Ethereum: {
|
|
27892
|
+
FLIP: string | number;
|
|
27892
27893
|
ETH: string | number;
|
|
27893
27894
|
USDC: string | number;
|
|
27894
|
-
FLIP: string | number;
|
|
27895
27895
|
USDT: string | number;
|
|
27896
27896
|
WBTC?: string | number | undefined;
|
|
27897
27897
|
};
|
|
@@ -31235,15 +31235,15 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31235
31235
|
USDT: z.ZodNullable<z.ZodNumber>;
|
|
31236
31236
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
31237
31237
|
}, "strip", z.ZodTypeAny, {
|
|
31238
|
+
FLIP: number | null;
|
|
31238
31239
|
ETH: number | null;
|
|
31239
31240
|
USDC: number | null;
|
|
31240
|
-
FLIP: number | null;
|
|
31241
31241
|
USDT: number | null;
|
|
31242
31242
|
WBTC: number | null;
|
|
31243
31243
|
}, {
|
|
31244
|
+
FLIP: number | null;
|
|
31244
31245
|
ETH: number | null;
|
|
31245
31246
|
USDC: number | null;
|
|
31246
|
-
FLIP: number | null;
|
|
31247
31247
|
USDT: number | null;
|
|
31248
31248
|
WBTC?: number | null | undefined;
|
|
31249
31249
|
}>;
|
|
@@ -31291,9 +31291,9 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31291
31291
|
BTC: number | null;
|
|
31292
31292
|
};
|
|
31293
31293
|
Ethereum: {
|
|
31294
|
+
FLIP: number | null;
|
|
31294
31295
|
ETH: number | null;
|
|
31295
31296
|
USDC: number | null;
|
|
31296
|
-
FLIP: number | null;
|
|
31297
31297
|
USDT: number | null;
|
|
31298
31298
|
WBTC: number | null;
|
|
31299
31299
|
};
|
|
@@ -31317,9 +31317,9 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31317
31317
|
BTC: number | null;
|
|
31318
31318
|
};
|
|
31319
31319
|
Ethereum: {
|
|
31320
|
+
FLIP: number | null;
|
|
31320
31321
|
ETH: number | null;
|
|
31321
31322
|
USDC: number | null;
|
|
31322
|
-
FLIP: number | null;
|
|
31323
31323
|
USDT: number | null;
|
|
31324
31324
|
WBTC?: number | null | undefined;
|
|
31325
31325
|
};
|
|
@@ -31354,15 +31354,15 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31354
31354
|
USDT: z.ZodNullable<z.ZodNumber>;
|
|
31355
31355
|
WBTC: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
31356
31356
|
}, "strip", z.ZodTypeAny, {
|
|
31357
|
+
FLIP: number | null;
|
|
31357
31358
|
ETH: number | null;
|
|
31358
31359
|
USDC: number | null;
|
|
31359
|
-
FLIP: number | null;
|
|
31360
31360
|
USDT: number | null;
|
|
31361
31361
|
WBTC: number | null;
|
|
31362
31362
|
}, {
|
|
31363
|
+
FLIP: number | null;
|
|
31363
31364
|
ETH: number | null;
|
|
31364
31365
|
USDC: number | null;
|
|
31365
|
-
FLIP: number | null;
|
|
31366
31366
|
USDT: number | null;
|
|
31367
31367
|
WBTC?: number | null | undefined;
|
|
31368
31368
|
}>;
|
|
@@ -31410,9 +31410,9 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31410
31410
|
BTC: number | null;
|
|
31411
31411
|
};
|
|
31412
31412
|
Ethereum: {
|
|
31413
|
+
FLIP: number | null;
|
|
31413
31414
|
ETH: number | null;
|
|
31414
31415
|
USDC: number | null;
|
|
31415
|
-
FLIP: number | null;
|
|
31416
31416
|
USDT: number | null;
|
|
31417
31417
|
WBTC: number | null;
|
|
31418
31418
|
};
|
|
@@ -31436,9 +31436,9 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31436
31436
|
BTC: number | null;
|
|
31437
31437
|
};
|
|
31438
31438
|
Ethereum: {
|
|
31439
|
+
FLIP: number | null;
|
|
31439
31440
|
ETH: number | null;
|
|
31440
31441
|
USDC: number | null;
|
|
31441
|
-
FLIP: number | null;
|
|
31442
31442
|
USDT: number | null;
|
|
31443
31443
|
WBTC?: number | null | undefined;
|
|
31444
31444
|
};
|
|
@@ -31464,9 +31464,9 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31464
31464
|
BTC: number | null;
|
|
31465
31465
|
};
|
|
31466
31466
|
Ethereum: {
|
|
31467
|
+
FLIP: number | null;
|
|
31467
31468
|
ETH: number | null;
|
|
31468
31469
|
USDC: number | null;
|
|
31469
|
-
FLIP: number | null;
|
|
31470
31470
|
USDT: number | null;
|
|
31471
31471
|
WBTC: number | null;
|
|
31472
31472
|
};
|
|
@@ -31491,9 +31491,9 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31491
31491
|
BTC: number | null;
|
|
31492
31492
|
};
|
|
31493
31493
|
Ethereum: {
|
|
31494
|
+
FLIP: number | null;
|
|
31494
31495
|
ETH: number | null;
|
|
31495
31496
|
USDC: number | null;
|
|
31496
|
-
FLIP: number | null;
|
|
31497
31497
|
USDT: number | null;
|
|
31498
31498
|
WBTC: number | null;
|
|
31499
31499
|
};
|
|
@@ -31519,9 +31519,9 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31519
31519
|
BTC: number | null;
|
|
31520
31520
|
};
|
|
31521
31521
|
Ethereum: {
|
|
31522
|
+
FLIP: number | null;
|
|
31522
31523
|
ETH: number | null;
|
|
31523
31524
|
USDC: number | null;
|
|
31524
|
-
FLIP: number | null;
|
|
31525
31525
|
USDT: number | null;
|
|
31526
31526
|
WBTC?: number | null | undefined;
|
|
31527
31527
|
};
|
|
@@ -31546,9 +31546,9 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
31546
31546
|
BTC: number | null;
|
|
31547
31547
|
};
|
|
31548
31548
|
Ethereum: {
|
|
31549
|
+
FLIP: number | null;
|
|
31549
31550
|
ETH: number | null;
|
|
31550
31551
|
USDC: number | null;
|
|
31551
|
-
FLIP: number | null;
|
|
31552
31552
|
USDT: number | null;
|
|
31553
31553
|
WBTC?: number | null | undefined;
|
|
31554
31554
|
};
|
|
@@ -31911,15 +31911,15 @@ declare const cfOraclePrices: z.ZodArray<z.ZodObject<{
|
|
|
31911
31911
|
quote_asset: z.ZodEnum<["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd", "Fine"]>;
|
|
31912
31912
|
price_status: z.ZodOptional<z.ZodEnum<["UpToDate", "Stale", "MaybeStale"]>>;
|
|
31913
31913
|
}, "strip", z.ZodTypeAny, {
|
|
31914
|
-
price: bigint;
|
|
31915
31914
|
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd" | "Fine";
|
|
31915
|
+
price: bigint;
|
|
31916
31916
|
base_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd" | "Fine";
|
|
31917
31917
|
updated_at_oracle_timestamp: number;
|
|
31918
31918
|
updated_at_statechain_block: number;
|
|
31919
31919
|
price_status?: "UpToDate" | "Stale" | "MaybeStale" | undefined;
|
|
31920
31920
|
}, {
|
|
31921
|
-
price: string | number;
|
|
31922
31921
|
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd" | "Fine";
|
|
31922
|
+
price: string | number;
|
|
31923
31923
|
base_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd" | "Fine";
|
|
31924
31924
|
updated_at_oracle_timestamp: number;
|
|
31925
31925
|
updated_at_statechain_block: number;
|
|
@@ -33359,6 +33359,18 @@ declare const cfSafeModeStatuses: z.ZodObject<{
|
|
|
33359
33359
|
oracle_price_elections: boolean;
|
|
33360
33360
|
}>;
|
|
33361
33361
|
}, "strip", z.ZodTypeAny, {
|
|
33362
|
+
swapping: {
|
|
33363
|
+
swaps_enabled: boolean;
|
|
33364
|
+
withdrawals_enabled: boolean;
|
|
33365
|
+
broker_registration_enabled: boolean;
|
|
33366
|
+
};
|
|
33367
|
+
funding: {
|
|
33368
|
+
redeem_enabled: boolean;
|
|
33369
|
+
};
|
|
33370
|
+
pools: {
|
|
33371
|
+
range_order_update_enabled: boolean;
|
|
33372
|
+
limit_order_update_enabled: boolean;
|
|
33373
|
+
};
|
|
33362
33374
|
asset_balances: {
|
|
33363
33375
|
reconciliation_enabled: boolean;
|
|
33364
33376
|
};
|
|
@@ -33372,18 +33384,6 @@ declare const cfSafeModeStatuses: z.ZodObject<{
|
|
|
33372
33384
|
start_bidding_enabled: boolean;
|
|
33373
33385
|
stop_bidding_enabled: boolean;
|
|
33374
33386
|
};
|
|
33375
|
-
swapping: {
|
|
33376
|
-
swaps_enabled: boolean;
|
|
33377
|
-
withdrawals_enabled: boolean;
|
|
33378
|
-
broker_registration_enabled: boolean;
|
|
33379
|
-
};
|
|
33380
|
-
funding: {
|
|
33381
|
-
redeem_enabled: boolean;
|
|
33382
|
-
};
|
|
33383
|
-
pools: {
|
|
33384
|
-
range_order_update_enabled: boolean;
|
|
33385
|
-
limit_order_update_enabled: boolean;
|
|
33386
|
-
};
|
|
33387
33387
|
emissions: {
|
|
33388
33388
|
emissions_sync_enabled: boolean;
|
|
33389
33389
|
};
|
|
@@ -33706,6 +33706,18 @@ declare const cfSafeModeStatuses: z.ZodObject<{
|
|
|
33706
33706
|
oracle_price_elections: boolean;
|
|
33707
33707
|
};
|
|
33708
33708
|
}, {
|
|
33709
|
+
swapping: {
|
|
33710
|
+
swaps_enabled: boolean;
|
|
33711
|
+
withdrawals_enabled: boolean;
|
|
33712
|
+
broker_registration_enabled: boolean;
|
|
33713
|
+
};
|
|
33714
|
+
funding: {
|
|
33715
|
+
redeem_enabled: boolean;
|
|
33716
|
+
};
|
|
33717
|
+
pools: {
|
|
33718
|
+
range_order_update_enabled: boolean;
|
|
33719
|
+
limit_order_update_enabled: boolean;
|
|
33720
|
+
};
|
|
33709
33721
|
asset_balances: {
|
|
33710
33722
|
reconciliation_enabled: boolean;
|
|
33711
33723
|
};
|
|
@@ -33719,18 +33731,6 @@ declare const cfSafeModeStatuses: z.ZodObject<{
|
|
|
33719
33731
|
start_bidding_enabled: boolean;
|
|
33720
33732
|
stop_bidding_enabled: boolean;
|
|
33721
33733
|
};
|
|
33722
|
-
swapping: {
|
|
33723
|
-
swaps_enabled: boolean;
|
|
33724
|
-
withdrawals_enabled: boolean;
|
|
33725
|
-
broker_registration_enabled: boolean;
|
|
33726
|
-
};
|
|
33727
|
-
funding: {
|
|
33728
|
-
redeem_enabled: boolean;
|
|
33729
|
-
};
|
|
33730
|
-
pools: {
|
|
33731
|
-
range_order_update_enabled: boolean;
|
|
33732
|
-
limit_order_update_enabled: boolean;
|
|
33733
|
-
};
|
|
33734
33734
|
emissions: {
|
|
33735
33735
|
emissions_sync_enabled: boolean;
|
|
33736
33736
|
};
|
|
@@ -34259,8 +34259,8 @@ declare const cfLendingPools: z.ZodArray<z.ZodObject<{
|
|
|
34259
34259
|
chain: "Assethub";
|
|
34260
34260
|
asset: "USDT";
|
|
34261
34261
|
};
|
|
34262
|
-
total_amount: bigint;
|
|
34263
34262
|
available_amount: bigint;
|
|
34263
|
+
total_amount: bigint;
|
|
34264
34264
|
utilisation_rate: number;
|
|
34265
34265
|
current_interest_rate: number;
|
|
34266
34266
|
origination_fee: number;
|
|
@@ -34318,8 +34318,8 @@ declare const cfLendingPools: z.ZodArray<z.ZodObject<{
|
|
|
34318
34318
|
chain: "Assethub";
|
|
34319
34319
|
asset: "USDT";
|
|
34320
34320
|
};
|
|
34321
|
-
total_amount: string | number;
|
|
34322
34321
|
available_amount: string | number;
|
|
34322
|
+
total_amount: string | number;
|
|
34323
34323
|
utilisation_rate: number;
|
|
34324
34324
|
current_interest_rate: number;
|
|
34325
34325
|
origination_fee: number;
|