@chainflip/rpc 2.0.6-wbtc-dev.0 → 2.0.6-wbtc-dev.2
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 +1197 -42
- package/dist/common.d.ts +1197 -42
- package/dist/parsers.cjs +2 -2
- package/dist/parsers.d.cts +1377 -109
- package/dist/parsers.d.ts +1377 -109
- package/dist/parsers.mjs +2 -2
- package/package.json +16 -16
package/dist/parsers.d.cts
CHANGED
|
@@ -1813,16 +1813,19 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1813
1813
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1814
1814
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1815
1815
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1816
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1816
1817
|
}, "strip", z.ZodTypeAny, {
|
|
1817
1818
|
ETH: bigint;
|
|
1818
1819
|
USDC: bigint;
|
|
1819
1820
|
FLIP: bigint;
|
|
1820
1821
|
USDT: bigint;
|
|
1822
|
+
WBTC: bigint;
|
|
1821
1823
|
}, {
|
|
1822
1824
|
ETH: string | number;
|
|
1823
1825
|
USDC: string | number;
|
|
1824
1826
|
FLIP: string | number;
|
|
1825
1827
|
USDT: string | number;
|
|
1828
|
+
WBTC: string | number;
|
|
1826
1829
|
}>;
|
|
1827
1830
|
Polkadot: z.ZodObject<{
|
|
1828
1831
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -1873,6 +1876,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1873
1876
|
USDC: bigint;
|
|
1874
1877
|
FLIP: bigint;
|
|
1875
1878
|
USDT: bigint;
|
|
1879
|
+
WBTC: bigint;
|
|
1876
1880
|
};
|
|
1877
1881
|
Arbitrum: {
|
|
1878
1882
|
ETH: bigint;
|
|
@@ -1896,6 +1900,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1896
1900
|
USDC: string | number;
|
|
1897
1901
|
FLIP: string | number;
|
|
1898
1902
|
USDT: string | number;
|
|
1903
|
+
WBTC: string | number;
|
|
1899
1904
|
};
|
|
1900
1905
|
Arbitrum: {
|
|
1901
1906
|
ETH: string | number;
|
|
@@ -1924,16 +1929,19 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1924
1929
|
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
1925
1930
|
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
1926
1931
|
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>>;
|
|
1932
|
+
WBTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
1927
1933
|
}, "strip", z.ZodTypeAny, {
|
|
1928
1934
|
ETH: bigint | null;
|
|
1929
1935
|
USDC: bigint | null;
|
|
1930
1936
|
FLIP: bigint | null;
|
|
1931
1937
|
USDT: bigint | null;
|
|
1938
|
+
WBTC: bigint | null;
|
|
1932
1939
|
}, {
|
|
1933
1940
|
ETH: string | number | null;
|
|
1934
1941
|
USDC: string | number | null;
|
|
1935
1942
|
FLIP: string | number | null;
|
|
1936
1943
|
USDT: string | number | null;
|
|
1944
|
+
WBTC: string | number | null;
|
|
1937
1945
|
}>;
|
|
1938
1946
|
Polkadot: z.ZodObject<{
|
|
1939
1947
|
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
@@ -1984,6 +1992,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1984
1992
|
USDC: bigint | null;
|
|
1985
1993
|
FLIP: bigint | null;
|
|
1986
1994
|
USDT: bigint | null;
|
|
1995
|
+
WBTC: bigint | null;
|
|
1987
1996
|
};
|
|
1988
1997
|
Arbitrum: {
|
|
1989
1998
|
ETH: bigint | null;
|
|
@@ -2007,6 +2016,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2007
2016
|
USDC: string | number | null;
|
|
2008
2017
|
FLIP: string | number | null;
|
|
2009
2018
|
USDT: string | number | null;
|
|
2019
|
+
WBTC: string | number | null;
|
|
2010
2020
|
};
|
|
2011
2021
|
Arbitrum: {
|
|
2012
2022
|
ETH: string | number | null;
|
|
@@ -2035,16 +2045,19 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2035
2045
|
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2036
2046
|
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2037
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
|
+
WBTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2038
2049
|
}, "strip", z.ZodTypeAny, {
|
|
2039
2050
|
ETH: bigint | null;
|
|
2040
2051
|
USDC: bigint | null;
|
|
2041
2052
|
FLIP: bigint | null;
|
|
2042
2053
|
USDT: bigint | null;
|
|
2054
|
+
WBTC: bigint | null;
|
|
2043
2055
|
}, {
|
|
2044
2056
|
ETH: string | number | null;
|
|
2045
2057
|
USDC: string | number | null;
|
|
2046
2058
|
FLIP: string | number | null;
|
|
2047
2059
|
USDT: string | number | null;
|
|
2060
|
+
WBTC: string | number | null;
|
|
2048
2061
|
}>;
|
|
2049
2062
|
Polkadot: z.ZodObject<{
|
|
2050
2063
|
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
@@ -2095,6 +2108,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2095
2108
|
USDC: bigint | null;
|
|
2096
2109
|
FLIP: bigint | null;
|
|
2097
2110
|
USDT: bigint | null;
|
|
2111
|
+
WBTC: bigint | null;
|
|
2098
2112
|
};
|
|
2099
2113
|
Arbitrum: {
|
|
2100
2114
|
ETH: bigint | null;
|
|
@@ -2118,6 +2132,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2118
2132
|
USDC: string | number | null;
|
|
2119
2133
|
FLIP: string | number | null;
|
|
2120
2134
|
USDT: string | number | null;
|
|
2135
|
+
WBTC: string | number | null;
|
|
2121
2136
|
};
|
|
2122
2137
|
Arbitrum: {
|
|
2123
2138
|
ETH: string | number | null;
|
|
@@ -2166,16 +2181,19 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2166
2181
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2167
2182
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2168
2183
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2184
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2169
2185
|
}, "strip", z.ZodTypeAny, {
|
|
2170
2186
|
ETH: bigint;
|
|
2171
2187
|
USDC: bigint;
|
|
2172
2188
|
FLIP: bigint;
|
|
2173
2189
|
USDT: bigint;
|
|
2190
|
+
WBTC: bigint;
|
|
2174
2191
|
}, {
|
|
2175
2192
|
ETH: string | number;
|
|
2176
2193
|
USDC: string | number;
|
|
2177
2194
|
FLIP: string | number;
|
|
2178
2195
|
USDT: string | number;
|
|
2196
|
+
WBTC: string | number;
|
|
2179
2197
|
}>;
|
|
2180
2198
|
Polkadot: z.ZodObject<{
|
|
2181
2199
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -2226,6 +2244,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2226
2244
|
USDC: bigint;
|
|
2227
2245
|
FLIP: bigint;
|
|
2228
2246
|
USDT: bigint;
|
|
2247
|
+
WBTC: bigint;
|
|
2229
2248
|
};
|
|
2230
2249
|
Arbitrum: {
|
|
2231
2250
|
ETH: bigint;
|
|
@@ -2249,6 +2268,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2249
2268
|
USDC: string | number;
|
|
2250
2269
|
FLIP: string | number;
|
|
2251
2270
|
USDT: string | number;
|
|
2271
|
+
WBTC: string | number;
|
|
2252
2272
|
};
|
|
2253
2273
|
Arbitrum: {
|
|
2254
2274
|
ETH: string | number;
|
|
@@ -2334,6 +2354,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2334
2354
|
USDC: bigint;
|
|
2335
2355
|
FLIP: bigint;
|
|
2336
2356
|
USDT: bigint;
|
|
2357
|
+
WBTC: bigint;
|
|
2337
2358
|
};
|
|
2338
2359
|
Arbitrum: {
|
|
2339
2360
|
ETH: bigint;
|
|
@@ -2358,6 +2379,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2358
2379
|
USDC: bigint | null;
|
|
2359
2380
|
FLIP: bigint | null;
|
|
2360
2381
|
USDT: bigint | null;
|
|
2382
|
+
WBTC: bigint | null;
|
|
2361
2383
|
};
|
|
2362
2384
|
Arbitrum: {
|
|
2363
2385
|
ETH: bigint | null;
|
|
@@ -2382,6 +2404,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2382
2404
|
USDC: bigint | null;
|
|
2383
2405
|
FLIP: bigint | null;
|
|
2384
2406
|
USDT: bigint | null;
|
|
2407
|
+
WBTC: bigint | null;
|
|
2385
2408
|
};
|
|
2386
2409
|
Arbitrum: {
|
|
2387
2410
|
ETH: bigint | null;
|
|
@@ -2413,6 +2436,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2413
2436
|
USDC: bigint;
|
|
2414
2437
|
FLIP: bigint;
|
|
2415
2438
|
USDT: bigint;
|
|
2439
|
+
WBTC: bigint;
|
|
2416
2440
|
};
|
|
2417
2441
|
Arbitrum: {
|
|
2418
2442
|
ETH: bigint;
|
|
@@ -2459,6 +2483,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2459
2483
|
USDC: string | number;
|
|
2460
2484
|
FLIP: string | number;
|
|
2461
2485
|
USDT: string | number;
|
|
2486
|
+
WBTC: string | number;
|
|
2462
2487
|
};
|
|
2463
2488
|
Arbitrum: {
|
|
2464
2489
|
ETH: string | number;
|
|
@@ -2483,6 +2508,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2483
2508
|
USDC: string | number | null;
|
|
2484
2509
|
FLIP: string | number | null;
|
|
2485
2510
|
USDT: string | number | null;
|
|
2511
|
+
WBTC: string | number | null;
|
|
2486
2512
|
};
|
|
2487
2513
|
Arbitrum: {
|
|
2488
2514
|
ETH: string | number | null;
|
|
@@ -2507,6 +2533,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2507
2533
|
USDC: string | number | null;
|
|
2508
2534
|
FLIP: string | number | null;
|
|
2509
2535
|
USDT: string | number | null;
|
|
2536
|
+
WBTC: string | number | null;
|
|
2510
2537
|
};
|
|
2511
2538
|
Arbitrum: {
|
|
2512
2539
|
ETH: string | number | null;
|
|
@@ -2538,6 +2565,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2538
2565
|
USDC: string | number;
|
|
2539
2566
|
FLIP: string | number;
|
|
2540
2567
|
USDT: string | number;
|
|
2568
|
+
WBTC: string | number;
|
|
2541
2569
|
};
|
|
2542
2570
|
Arbitrum: {
|
|
2543
2571
|
ETH: string | number;
|
|
@@ -2584,6 +2612,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2584
2612
|
USDC: bigint;
|
|
2585
2613
|
FLIP: bigint;
|
|
2586
2614
|
USDT: bigint;
|
|
2615
|
+
WBTC: bigint;
|
|
2587
2616
|
};
|
|
2588
2617
|
Arbitrum: {
|
|
2589
2618
|
ETH: bigint;
|
|
@@ -2608,6 +2637,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2608
2637
|
USDC: bigint | null;
|
|
2609
2638
|
FLIP: bigint | null;
|
|
2610
2639
|
USDT: bigint | null;
|
|
2640
|
+
WBTC: bigint | null;
|
|
2611
2641
|
};
|
|
2612
2642
|
Arbitrum: {
|
|
2613
2643
|
ETH: bigint | null;
|
|
@@ -2632,6 +2662,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2632
2662
|
USDC: bigint | null;
|
|
2633
2663
|
FLIP: bigint | null;
|
|
2634
2664
|
USDT: bigint | null;
|
|
2665
|
+
WBTC: bigint | null;
|
|
2635
2666
|
};
|
|
2636
2667
|
Arbitrum: {
|
|
2637
2668
|
ETH: bigint | null;
|
|
@@ -2663,6 +2694,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2663
2694
|
USDC: bigint;
|
|
2664
2695
|
FLIP: bigint;
|
|
2665
2696
|
USDT: bigint;
|
|
2697
|
+
WBTC: bigint;
|
|
2666
2698
|
};
|
|
2667
2699
|
Arbitrum: {
|
|
2668
2700
|
ETH: bigint;
|
|
@@ -2711,6 +2743,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2711
2743
|
USDC: string | number;
|
|
2712
2744
|
FLIP: string | number;
|
|
2713
2745
|
USDT: string | number;
|
|
2746
|
+
WBTC: string | number;
|
|
2714
2747
|
};
|
|
2715
2748
|
Arbitrum: {
|
|
2716
2749
|
ETH: string | number;
|
|
@@ -2735,6 +2768,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2735
2768
|
USDC: string | number | null;
|
|
2736
2769
|
FLIP: string | number | null;
|
|
2737
2770
|
USDT: string | number | null;
|
|
2771
|
+
WBTC: string | number | null;
|
|
2738
2772
|
};
|
|
2739
2773
|
Arbitrum: {
|
|
2740
2774
|
ETH: string | number | null;
|
|
@@ -2759,6 +2793,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2759
2793
|
USDC: string | number | null;
|
|
2760
2794
|
FLIP: string | number | null;
|
|
2761
2795
|
USDT: string | number | null;
|
|
2796
|
+
WBTC: string | number | null;
|
|
2762
2797
|
};
|
|
2763
2798
|
Arbitrum: {
|
|
2764
2799
|
ETH: string | number | null;
|
|
@@ -2790,6 +2825,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2790
2825
|
USDC: string | number;
|
|
2791
2826
|
FLIP: string | number;
|
|
2792
2827
|
USDT: string | number;
|
|
2828
|
+
WBTC: string | number;
|
|
2793
2829
|
};
|
|
2794
2830
|
Arbitrum: {
|
|
2795
2831
|
ETH: string | number;
|
|
@@ -2841,16 +2877,19 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2841
2877
|
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2842
2878
|
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2843
2879
|
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>>;
|
|
2880
|
+
WBTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2844
2881
|
}, "strip", z.ZodTypeAny, {
|
|
2845
2882
|
ETH: bigint | null;
|
|
2846
2883
|
USDC: bigint | null;
|
|
2847
2884
|
FLIP: bigint | null;
|
|
2848
2885
|
USDT: bigint | null;
|
|
2886
|
+
WBTC: bigint | null;
|
|
2849
2887
|
}, {
|
|
2850
2888
|
ETH: string | number | null;
|
|
2851
2889
|
USDC: string | number | null;
|
|
2852
2890
|
FLIP: string | number | null;
|
|
2853
2891
|
USDT: string | number | null;
|
|
2892
|
+
WBTC: string | number | null;
|
|
2854
2893
|
}>;
|
|
2855
2894
|
Polkadot: z.ZodObject<{
|
|
2856
2895
|
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
@@ -2901,6 +2940,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2901
2940
|
USDC: bigint | null;
|
|
2902
2941
|
FLIP: bigint | null;
|
|
2903
2942
|
USDT: bigint | null;
|
|
2943
|
+
WBTC: bigint | null;
|
|
2904
2944
|
};
|
|
2905
2945
|
Arbitrum: {
|
|
2906
2946
|
ETH: bigint | null;
|
|
@@ -2924,6 +2964,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2924
2964
|
USDC: string | number | null;
|
|
2925
2965
|
FLIP: string | number | null;
|
|
2926
2966
|
USDT: string | number | null;
|
|
2967
|
+
WBTC: string | number | null;
|
|
2927
2968
|
};
|
|
2928
2969
|
Arbitrum: {
|
|
2929
2970
|
ETH: string | number | null;
|
|
@@ -2956,16 +2997,19 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2956
2997
|
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2957
2998
|
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2958
2999
|
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>>;
|
|
3000
|
+
WBTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
2959
3001
|
}, "strip", z.ZodTypeAny, {
|
|
2960
3002
|
ETH: bigint | null;
|
|
2961
3003
|
USDC: bigint | null;
|
|
2962
3004
|
FLIP: bigint | null;
|
|
2963
3005
|
USDT: bigint | null;
|
|
3006
|
+
WBTC: bigint | null;
|
|
2964
3007
|
}, {
|
|
2965
3008
|
ETH: string | number | null;
|
|
2966
3009
|
USDC: string | number | null;
|
|
2967
3010
|
FLIP: string | number | null;
|
|
2968
3011
|
USDT: string | number | null;
|
|
3012
|
+
WBTC: string | number | null;
|
|
2969
3013
|
}>;
|
|
2970
3014
|
Polkadot: z.ZodObject<{
|
|
2971
3015
|
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
@@ -3016,6 +3060,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3016
3060
|
USDC: bigint | null;
|
|
3017
3061
|
FLIP: bigint | null;
|
|
3018
3062
|
USDT: bigint | null;
|
|
3063
|
+
WBTC: bigint | null;
|
|
3019
3064
|
};
|
|
3020
3065
|
Arbitrum: {
|
|
3021
3066
|
ETH: bigint | null;
|
|
@@ -3039,6 +3084,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3039
3084
|
USDC: string | number | null;
|
|
3040
3085
|
FLIP: string | number | null;
|
|
3041
3086
|
USDT: string | number | null;
|
|
3087
|
+
WBTC: string | number | null;
|
|
3042
3088
|
};
|
|
3043
3089
|
Arbitrum: {
|
|
3044
3090
|
ETH: string | number | null;
|
|
@@ -3079,16 +3125,19 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3079
3125
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3080
3126
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3081
3127
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3128
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3082
3129
|
}, "strip", z.ZodTypeAny, {
|
|
3083
3130
|
ETH: bigint;
|
|
3084
3131
|
USDC: bigint;
|
|
3085
3132
|
FLIP: bigint;
|
|
3086
3133
|
USDT: bigint;
|
|
3134
|
+
WBTC: bigint;
|
|
3087
3135
|
}, {
|
|
3088
3136
|
ETH: string | number;
|
|
3089
3137
|
USDC: string | number;
|
|
3090
3138
|
FLIP: string | number;
|
|
3091
3139
|
USDT: string | number;
|
|
3140
|
+
WBTC: string | number;
|
|
3092
3141
|
}>;
|
|
3093
3142
|
Polkadot: z.ZodObject<{
|
|
3094
3143
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -3139,6 +3188,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3139
3188
|
USDC: bigint;
|
|
3140
3189
|
FLIP: bigint;
|
|
3141
3190
|
USDT: bigint;
|
|
3191
|
+
WBTC: bigint;
|
|
3142
3192
|
};
|
|
3143
3193
|
Arbitrum: {
|
|
3144
3194
|
ETH: bigint;
|
|
@@ -3162,6 +3212,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3162
3212
|
USDC: string | number;
|
|
3163
3213
|
FLIP: string | number;
|
|
3164
3214
|
USDT: string | number;
|
|
3215
|
+
WBTC: string | number;
|
|
3165
3216
|
};
|
|
3166
3217
|
Arbitrum: {
|
|
3167
3218
|
ETH: string | number;
|
|
@@ -3191,6 +3242,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3191
3242
|
USDC: bigint;
|
|
3192
3243
|
FLIP: bigint;
|
|
3193
3244
|
USDT: bigint;
|
|
3245
|
+
WBTC: bigint;
|
|
3194
3246
|
};
|
|
3195
3247
|
Arbitrum: {
|
|
3196
3248
|
ETH: bigint;
|
|
@@ -3220,6 +3272,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3220
3272
|
USDC: string | number;
|
|
3221
3273
|
FLIP: string | number;
|
|
3222
3274
|
USDT: string | number;
|
|
3275
|
+
WBTC: string | number;
|
|
3223
3276
|
};
|
|
3224
3277
|
Arbitrum: {
|
|
3225
3278
|
ETH: string | number;
|
|
@@ -3260,16 +3313,19 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3260
3313
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3261
3314
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3262
3315
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3316
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3263
3317
|
}, "strip", z.ZodTypeAny, {
|
|
3264
3318
|
ETH: bigint;
|
|
3265
3319
|
USDC: bigint;
|
|
3266
3320
|
FLIP: bigint;
|
|
3267
3321
|
USDT: bigint;
|
|
3322
|
+
WBTC: bigint;
|
|
3268
3323
|
}, {
|
|
3269
3324
|
ETH: string | number;
|
|
3270
3325
|
USDC: string | number;
|
|
3271
3326
|
FLIP: string | number;
|
|
3272
3327
|
USDT: string | number;
|
|
3328
|
+
WBTC: string | number;
|
|
3273
3329
|
}>;
|
|
3274
3330
|
Polkadot: z.ZodObject<{
|
|
3275
3331
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -3320,6 +3376,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3320
3376
|
USDC: bigint;
|
|
3321
3377
|
FLIP: bigint;
|
|
3322
3378
|
USDT: bigint;
|
|
3379
|
+
WBTC: bigint;
|
|
3323
3380
|
};
|
|
3324
3381
|
Arbitrum: {
|
|
3325
3382
|
ETH: bigint;
|
|
@@ -3343,6 +3400,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3343
3400
|
USDC: string | number;
|
|
3344
3401
|
FLIP: string | number;
|
|
3345
3402
|
USDT: string | number;
|
|
3403
|
+
WBTC: string | number;
|
|
3346
3404
|
};
|
|
3347
3405
|
Arbitrum: {
|
|
3348
3406
|
ETH: string | number;
|
|
@@ -3372,6 +3430,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3372
3430
|
USDC: bigint;
|
|
3373
3431
|
FLIP: bigint;
|
|
3374
3432
|
USDT: bigint;
|
|
3433
|
+
WBTC: bigint;
|
|
3375
3434
|
};
|
|
3376
3435
|
Arbitrum: {
|
|
3377
3436
|
ETH: bigint;
|
|
@@ -3401,6 +3460,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3401
3460
|
USDC: string | number;
|
|
3402
3461
|
FLIP: string | number;
|
|
3403
3462
|
USDT: string | number;
|
|
3463
|
+
WBTC: string | number;
|
|
3404
3464
|
};
|
|
3405
3465
|
Arbitrum: {
|
|
3406
3466
|
ETH: string | number;
|
|
@@ -3432,6 +3492,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3432
3492
|
USDC: bigint;
|
|
3433
3493
|
FLIP: bigint;
|
|
3434
3494
|
USDT: bigint;
|
|
3495
|
+
WBTC: bigint;
|
|
3435
3496
|
};
|
|
3436
3497
|
Arbitrum: {
|
|
3437
3498
|
ETH: bigint;
|
|
@@ -3462,6 +3523,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3462
3523
|
USDC: bigint;
|
|
3463
3524
|
FLIP: bigint;
|
|
3464
3525
|
USDT: bigint;
|
|
3526
|
+
WBTC: bigint;
|
|
3465
3527
|
};
|
|
3466
3528
|
Arbitrum: {
|
|
3467
3529
|
ETH: bigint;
|
|
@@ -3493,6 +3555,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3493
3555
|
USDC: string | number;
|
|
3494
3556
|
FLIP: string | number;
|
|
3495
3557
|
USDT: string | number;
|
|
3558
|
+
WBTC: string | number;
|
|
3496
3559
|
};
|
|
3497
3560
|
Arbitrum: {
|
|
3498
3561
|
ETH: string | number;
|
|
@@ -3523,6 +3586,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3523
3586
|
USDC: string | number;
|
|
3524
3587
|
FLIP: string | number;
|
|
3525
3588
|
USDT: string | number;
|
|
3589
|
+
WBTC: string | number;
|
|
3526
3590
|
};
|
|
3527
3591
|
Arbitrum: {
|
|
3528
3592
|
ETH: string | number;
|
|
@@ -3550,6 +3614,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3550
3614
|
USDC: bigint | null;
|
|
3551
3615
|
FLIP: bigint | null;
|
|
3552
3616
|
USDT: bigint | null;
|
|
3617
|
+
WBTC: bigint | null;
|
|
3553
3618
|
};
|
|
3554
3619
|
Arbitrum: {
|
|
3555
3620
|
ETH: bigint | null;
|
|
@@ -3581,6 +3646,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3581
3646
|
USDC: bigint;
|
|
3582
3647
|
FLIP: bigint;
|
|
3583
3648
|
USDT: bigint;
|
|
3649
|
+
WBTC: bigint;
|
|
3584
3650
|
};
|
|
3585
3651
|
Arbitrum: {
|
|
3586
3652
|
ETH: bigint;
|
|
@@ -3611,6 +3677,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3611
3677
|
USDC: bigint;
|
|
3612
3678
|
FLIP: bigint;
|
|
3613
3679
|
USDT: bigint;
|
|
3680
|
+
WBTC: bigint;
|
|
3614
3681
|
};
|
|
3615
3682
|
Arbitrum: {
|
|
3616
3683
|
ETH: bigint;
|
|
@@ -3640,6 +3707,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3640
3707
|
USDC: bigint | null;
|
|
3641
3708
|
FLIP: bigint | null;
|
|
3642
3709
|
USDT: bigint | null;
|
|
3710
|
+
WBTC: bigint | null;
|
|
3643
3711
|
};
|
|
3644
3712
|
Arbitrum: {
|
|
3645
3713
|
ETH: bigint | null;
|
|
@@ -3665,6 +3733,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3665
3733
|
USDC: string | number | null;
|
|
3666
3734
|
FLIP: string | number | null;
|
|
3667
3735
|
USDT: string | number | null;
|
|
3736
|
+
WBTC: string | number | null;
|
|
3668
3737
|
};
|
|
3669
3738
|
Arbitrum: {
|
|
3670
3739
|
ETH: string | number | null;
|
|
@@ -3696,6 +3765,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3696
3765
|
USDC: string | number;
|
|
3697
3766
|
FLIP: string | number;
|
|
3698
3767
|
USDT: string | number;
|
|
3768
|
+
WBTC: string | number;
|
|
3699
3769
|
};
|
|
3700
3770
|
Arbitrum: {
|
|
3701
3771
|
ETH: string | number;
|
|
@@ -3726,6 +3796,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3726
3796
|
USDC: string | number;
|
|
3727
3797
|
FLIP: string | number;
|
|
3728
3798
|
USDT: string | number;
|
|
3799
|
+
WBTC: string | number;
|
|
3729
3800
|
};
|
|
3730
3801
|
Arbitrum: {
|
|
3731
3802
|
ETH: string | number;
|
|
@@ -3755,6 +3826,7 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
3755
3826
|
USDC: string | number | null;
|
|
3756
3827
|
FLIP: string | number | null;
|
|
3757
3828
|
USDT: string | number | null;
|
|
3829
|
+
WBTC: string | number | null;
|
|
3758
3830
|
};
|
|
3759
3831
|
Arbitrum: {
|
|
3760
3832
|
ETH: string | number | null;
|
|
@@ -4535,6 +4607,175 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4535
4607
|
asset: "USDC";
|
|
4536
4608
|
};
|
|
4537
4609
|
} | null>;
|
|
4610
|
+
WBTC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
4611
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
4612
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
4613
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
4614
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4615
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4616
|
+
}, "strip", z.ZodTypeAny, {
|
|
4617
|
+
base: bigint;
|
|
4618
|
+
quote: bigint;
|
|
4619
|
+
}, {
|
|
4620
|
+
base: string;
|
|
4621
|
+
quote: string;
|
|
4622
|
+
}>;
|
|
4623
|
+
limit_order_total_fees_earned: z.ZodObject<{
|
|
4624
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4625
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4626
|
+
}, "strip", z.ZodTypeAny, {
|
|
4627
|
+
base: bigint;
|
|
4628
|
+
quote: bigint;
|
|
4629
|
+
}, {
|
|
4630
|
+
base: string;
|
|
4631
|
+
quote: string;
|
|
4632
|
+
}>;
|
|
4633
|
+
range_total_swap_inputs: z.ZodObject<{
|
|
4634
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4635
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4636
|
+
}, "strip", z.ZodTypeAny, {
|
|
4637
|
+
base: bigint;
|
|
4638
|
+
quote: bigint;
|
|
4639
|
+
}, {
|
|
4640
|
+
base: string;
|
|
4641
|
+
quote: string;
|
|
4642
|
+
}>;
|
|
4643
|
+
limit_total_swap_inputs: z.ZodObject<{
|
|
4644
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4645
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4646
|
+
}, "strip", z.ZodTypeAny, {
|
|
4647
|
+
base: bigint;
|
|
4648
|
+
quote: bigint;
|
|
4649
|
+
}, {
|
|
4650
|
+
base: string;
|
|
4651
|
+
quote: string;
|
|
4652
|
+
}>;
|
|
4653
|
+
quote_asset: z.ZodObject<{
|
|
4654
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
4655
|
+
asset: z.ZodLiteral<"USDC">;
|
|
4656
|
+
}, "strip", z.ZodTypeAny, {
|
|
4657
|
+
chain: "Ethereum";
|
|
4658
|
+
asset: "USDC";
|
|
4659
|
+
}, {
|
|
4660
|
+
chain: "Ethereum";
|
|
4661
|
+
asset: "USDC";
|
|
4662
|
+
}>;
|
|
4663
|
+
}, "strip", z.ZodTypeAny, {
|
|
4664
|
+
limit_order_fee_hundredth_pips: number;
|
|
4665
|
+
range_order_fee_hundredth_pips: number;
|
|
4666
|
+
range_order_total_fees_earned: {
|
|
4667
|
+
base: bigint;
|
|
4668
|
+
quote: bigint;
|
|
4669
|
+
};
|
|
4670
|
+
limit_order_total_fees_earned: {
|
|
4671
|
+
base: bigint;
|
|
4672
|
+
quote: bigint;
|
|
4673
|
+
};
|
|
4674
|
+
range_total_swap_inputs: {
|
|
4675
|
+
base: bigint;
|
|
4676
|
+
quote: bigint;
|
|
4677
|
+
};
|
|
4678
|
+
limit_total_swap_inputs: {
|
|
4679
|
+
base: bigint;
|
|
4680
|
+
quote: bigint;
|
|
4681
|
+
};
|
|
4682
|
+
quote_asset: {
|
|
4683
|
+
chain: "Ethereum";
|
|
4684
|
+
asset: "USDC";
|
|
4685
|
+
};
|
|
4686
|
+
}, {
|
|
4687
|
+
limit_order_fee_hundredth_pips: number;
|
|
4688
|
+
range_order_fee_hundredth_pips: number;
|
|
4689
|
+
range_order_total_fees_earned: {
|
|
4690
|
+
base: string;
|
|
4691
|
+
quote: string;
|
|
4692
|
+
};
|
|
4693
|
+
limit_order_total_fees_earned: {
|
|
4694
|
+
base: string;
|
|
4695
|
+
quote: string;
|
|
4696
|
+
};
|
|
4697
|
+
range_total_swap_inputs: {
|
|
4698
|
+
base: string;
|
|
4699
|
+
quote: string;
|
|
4700
|
+
};
|
|
4701
|
+
limit_total_swap_inputs: {
|
|
4702
|
+
base: string;
|
|
4703
|
+
quote: string;
|
|
4704
|
+
};
|
|
4705
|
+
quote_asset: {
|
|
4706
|
+
chain: "Ethereum";
|
|
4707
|
+
asset: "USDC";
|
|
4708
|
+
};
|
|
4709
|
+
}>>, {
|
|
4710
|
+
limit_order_fee_hundredth_pips: number;
|
|
4711
|
+
range_order_fee_hundredth_pips: number;
|
|
4712
|
+
range_order_total_fees_earned: {
|
|
4713
|
+
base: bigint;
|
|
4714
|
+
quote: bigint;
|
|
4715
|
+
};
|
|
4716
|
+
limit_order_total_fees_earned: {
|
|
4717
|
+
base: bigint;
|
|
4718
|
+
quote: bigint;
|
|
4719
|
+
};
|
|
4720
|
+
range_total_swap_inputs: {
|
|
4721
|
+
base: bigint;
|
|
4722
|
+
quote: bigint;
|
|
4723
|
+
};
|
|
4724
|
+
limit_total_swap_inputs: {
|
|
4725
|
+
base: bigint;
|
|
4726
|
+
quote: bigint;
|
|
4727
|
+
};
|
|
4728
|
+
quote_asset: {
|
|
4729
|
+
chain: "Ethereum";
|
|
4730
|
+
asset: "USDC";
|
|
4731
|
+
};
|
|
4732
|
+
} | {
|
|
4733
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4734
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4735
|
+
readonly range_order_total_fees_earned: {
|
|
4736
|
+
readonly base: "0x0";
|
|
4737
|
+
readonly quote: "0x0";
|
|
4738
|
+
};
|
|
4739
|
+
readonly limit_order_total_fees_earned: {
|
|
4740
|
+
readonly base: "0x0";
|
|
4741
|
+
readonly quote: "0x0";
|
|
4742
|
+
};
|
|
4743
|
+
readonly range_total_swap_inputs: {
|
|
4744
|
+
readonly base: "0x0";
|
|
4745
|
+
readonly quote: "0x0";
|
|
4746
|
+
};
|
|
4747
|
+
readonly limit_total_swap_inputs: {
|
|
4748
|
+
readonly base: "0x0";
|
|
4749
|
+
readonly quote: "0x0";
|
|
4750
|
+
};
|
|
4751
|
+
readonly quote_asset: {
|
|
4752
|
+
readonly chain: "Ethereum";
|
|
4753
|
+
readonly asset: "USDC";
|
|
4754
|
+
};
|
|
4755
|
+
}, {
|
|
4756
|
+
limit_order_fee_hundredth_pips: number;
|
|
4757
|
+
range_order_fee_hundredth_pips: number;
|
|
4758
|
+
range_order_total_fees_earned: {
|
|
4759
|
+
base: string;
|
|
4760
|
+
quote: string;
|
|
4761
|
+
};
|
|
4762
|
+
limit_order_total_fees_earned: {
|
|
4763
|
+
base: string;
|
|
4764
|
+
quote: string;
|
|
4765
|
+
};
|
|
4766
|
+
range_total_swap_inputs: {
|
|
4767
|
+
base: string;
|
|
4768
|
+
quote: string;
|
|
4769
|
+
};
|
|
4770
|
+
limit_total_swap_inputs: {
|
|
4771
|
+
base: string;
|
|
4772
|
+
quote: string;
|
|
4773
|
+
};
|
|
4774
|
+
quote_asset: {
|
|
4775
|
+
chain: "Ethereum";
|
|
4776
|
+
asset: "USDC";
|
|
4777
|
+
};
|
|
4778
|
+
} | null>;
|
|
4538
4779
|
}, "strip", z.ZodTypeAny, {
|
|
4539
4780
|
ETH: {
|
|
4540
4781
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -4677,6 +4918,53 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4677
4918
|
readonly asset: "USDC";
|
|
4678
4919
|
};
|
|
4679
4920
|
};
|
|
4921
|
+
WBTC: {
|
|
4922
|
+
limit_order_fee_hundredth_pips: number;
|
|
4923
|
+
range_order_fee_hundredth_pips: number;
|
|
4924
|
+
range_order_total_fees_earned: {
|
|
4925
|
+
base: bigint;
|
|
4926
|
+
quote: bigint;
|
|
4927
|
+
};
|
|
4928
|
+
limit_order_total_fees_earned: {
|
|
4929
|
+
base: bigint;
|
|
4930
|
+
quote: bigint;
|
|
4931
|
+
};
|
|
4932
|
+
range_total_swap_inputs: {
|
|
4933
|
+
base: bigint;
|
|
4934
|
+
quote: bigint;
|
|
4935
|
+
};
|
|
4936
|
+
limit_total_swap_inputs: {
|
|
4937
|
+
base: bigint;
|
|
4938
|
+
quote: bigint;
|
|
4939
|
+
};
|
|
4940
|
+
quote_asset: {
|
|
4941
|
+
chain: "Ethereum";
|
|
4942
|
+
asset: "USDC";
|
|
4943
|
+
};
|
|
4944
|
+
} | {
|
|
4945
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4946
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4947
|
+
readonly range_order_total_fees_earned: {
|
|
4948
|
+
readonly base: "0x0";
|
|
4949
|
+
readonly quote: "0x0";
|
|
4950
|
+
};
|
|
4951
|
+
readonly limit_order_total_fees_earned: {
|
|
4952
|
+
readonly base: "0x0";
|
|
4953
|
+
readonly quote: "0x0";
|
|
4954
|
+
};
|
|
4955
|
+
readonly range_total_swap_inputs: {
|
|
4956
|
+
readonly base: "0x0";
|
|
4957
|
+
readonly quote: "0x0";
|
|
4958
|
+
};
|
|
4959
|
+
readonly limit_total_swap_inputs: {
|
|
4960
|
+
readonly base: "0x0";
|
|
4961
|
+
readonly quote: "0x0";
|
|
4962
|
+
};
|
|
4963
|
+
readonly quote_asset: {
|
|
4964
|
+
readonly chain: "Ethereum";
|
|
4965
|
+
readonly asset: "USDC";
|
|
4966
|
+
};
|
|
4967
|
+
};
|
|
4680
4968
|
}, {
|
|
4681
4969
|
ETH: {
|
|
4682
4970
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -4750,6 +5038,30 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4750
5038
|
asset: "USDC";
|
|
4751
5039
|
};
|
|
4752
5040
|
} | null;
|
|
5041
|
+
WBTC: {
|
|
5042
|
+
limit_order_fee_hundredth_pips: number;
|
|
5043
|
+
range_order_fee_hundredth_pips: number;
|
|
5044
|
+
range_order_total_fees_earned: {
|
|
5045
|
+
base: string;
|
|
5046
|
+
quote: string;
|
|
5047
|
+
};
|
|
5048
|
+
limit_order_total_fees_earned: {
|
|
5049
|
+
base: string;
|
|
5050
|
+
quote: string;
|
|
5051
|
+
};
|
|
5052
|
+
range_total_swap_inputs: {
|
|
5053
|
+
base: string;
|
|
5054
|
+
quote: string;
|
|
5055
|
+
};
|
|
5056
|
+
limit_total_swap_inputs: {
|
|
5057
|
+
base: string;
|
|
5058
|
+
quote: string;
|
|
5059
|
+
};
|
|
5060
|
+
quote_asset: {
|
|
5061
|
+
chain: "Ethereum";
|
|
5062
|
+
asset: "USDC";
|
|
5063
|
+
};
|
|
5064
|
+
} | null;
|
|
4753
5065
|
}>;
|
|
4754
5066
|
Polkadot: z.ZodObject<{
|
|
4755
5067
|
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
@@ -6879,9 +7191,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
6879
7191
|
readonly asset: "USDC";
|
|
6880
7192
|
};
|
|
6881
7193
|
};
|
|
6882
|
-
|
|
6883
|
-
Arbitrum: {
|
|
6884
|
-
ETH: {
|
|
7194
|
+
WBTC: {
|
|
6885
7195
|
limit_order_fee_hundredth_pips: number;
|
|
6886
7196
|
range_order_fee_hundredth_pips: number;
|
|
6887
7197
|
range_order_total_fees_earned: {
|
|
@@ -6928,7 +7238,9 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
6928
7238
|
readonly asset: "USDC";
|
|
6929
7239
|
};
|
|
6930
7240
|
};
|
|
6931
|
-
|
|
7241
|
+
};
|
|
7242
|
+
Arbitrum: {
|
|
7243
|
+
ETH: {
|
|
6932
7244
|
limit_order_fee_hundredth_pips: number;
|
|
6933
7245
|
range_order_fee_hundredth_pips: number;
|
|
6934
7246
|
range_order_total_fees_earned: {
|
|
@@ -6975,8 +7287,6 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
6975
7287
|
readonly asset: "USDC";
|
|
6976
7288
|
};
|
|
6977
7289
|
};
|
|
6978
|
-
};
|
|
6979
|
-
Solana: {
|
|
6980
7290
|
USDC: {
|
|
6981
7291
|
limit_order_fee_hundredth_pips: number;
|
|
6982
7292
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7024,7 +7334,9 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7024
7334
|
readonly asset: "USDC";
|
|
7025
7335
|
};
|
|
7026
7336
|
};
|
|
7027
|
-
|
|
7337
|
+
};
|
|
7338
|
+
Solana: {
|
|
7339
|
+
USDC: {
|
|
7028
7340
|
limit_order_fee_hundredth_pips: number;
|
|
7029
7341
|
range_order_fee_hundredth_pips: number;
|
|
7030
7342
|
range_order_total_fees_earned: {
|
|
@@ -7071,9 +7383,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7071
7383
|
readonly asset: "USDC";
|
|
7072
7384
|
};
|
|
7073
7385
|
};
|
|
7074
|
-
|
|
7075
|
-
Assethub: {
|
|
7076
|
-
USDC: {
|
|
7386
|
+
SOL: {
|
|
7077
7387
|
limit_order_fee_hundredth_pips: number;
|
|
7078
7388
|
range_order_fee_hundredth_pips: number;
|
|
7079
7389
|
range_order_total_fees_earned: {
|
|
@@ -7120,8 +7430,57 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7120
7430
|
readonly asset: "USDC";
|
|
7121
7431
|
};
|
|
7122
7432
|
};
|
|
7123
|
-
|
|
7124
|
-
|
|
7433
|
+
};
|
|
7434
|
+
Assethub: {
|
|
7435
|
+
USDC: {
|
|
7436
|
+
limit_order_fee_hundredth_pips: number;
|
|
7437
|
+
range_order_fee_hundredth_pips: number;
|
|
7438
|
+
range_order_total_fees_earned: {
|
|
7439
|
+
base: bigint;
|
|
7440
|
+
quote: bigint;
|
|
7441
|
+
};
|
|
7442
|
+
limit_order_total_fees_earned: {
|
|
7443
|
+
base: bigint;
|
|
7444
|
+
quote: bigint;
|
|
7445
|
+
};
|
|
7446
|
+
range_total_swap_inputs: {
|
|
7447
|
+
base: bigint;
|
|
7448
|
+
quote: bigint;
|
|
7449
|
+
};
|
|
7450
|
+
limit_total_swap_inputs: {
|
|
7451
|
+
base: bigint;
|
|
7452
|
+
quote: bigint;
|
|
7453
|
+
};
|
|
7454
|
+
quote_asset: {
|
|
7455
|
+
chain: "Ethereum";
|
|
7456
|
+
asset: "USDC";
|
|
7457
|
+
};
|
|
7458
|
+
} | {
|
|
7459
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7460
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7461
|
+
readonly range_order_total_fees_earned: {
|
|
7462
|
+
readonly base: "0x0";
|
|
7463
|
+
readonly quote: "0x0";
|
|
7464
|
+
};
|
|
7465
|
+
readonly limit_order_total_fees_earned: {
|
|
7466
|
+
readonly base: "0x0";
|
|
7467
|
+
readonly quote: "0x0";
|
|
7468
|
+
};
|
|
7469
|
+
readonly range_total_swap_inputs: {
|
|
7470
|
+
readonly base: "0x0";
|
|
7471
|
+
readonly quote: "0x0";
|
|
7472
|
+
};
|
|
7473
|
+
readonly limit_total_swap_inputs: {
|
|
7474
|
+
readonly base: "0x0";
|
|
7475
|
+
readonly quote: "0x0";
|
|
7476
|
+
};
|
|
7477
|
+
readonly quote_asset: {
|
|
7478
|
+
readonly chain: "Ethereum";
|
|
7479
|
+
readonly asset: "USDC";
|
|
7480
|
+
};
|
|
7481
|
+
};
|
|
7482
|
+
USDT: {
|
|
7483
|
+
limit_order_fee_hundredth_pips: number;
|
|
7125
7484
|
range_order_fee_hundredth_pips: number;
|
|
7126
7485
|
range_order_total_fees_earned: {
|
|
7127
7486
|
base: bigint;
|
|
@@ -7315,6 +7674,30 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7315
7674
|
asset: "USDC";
|
|
7316
7675
|
};
|
|
7317
7676
|
} | null;
|
|
7677
|
+
WBTC: {
|
|
7678
|
+
limit_order_fee_hundredth_pips: number;
|
|
7679
|
+
range_order_fee_hundredth_pips: number;
|
|
7680
|
+
range_order_total_fees_earned: {
|
|
7681
|
+
base: string;
|
|
7682
|
+
quote: string;
|
|
7683
|
+
};
|
|
7684
|
+
limit_order_total_fees_earned: {
|
|
7685
|
+
base: string;
|
|
7686
|
+
quote: string;
|
|
7687
|
+
};
|
|
7688
|
+
range_total_swap_inputs: {
|
|
7689
|
+
base: string;
|
|
7690
|
+
quote: string;
|
|
7691
|
+
};
|
|
7692
|
+
limit_total_swap_inputs: {
|
|
7693
|
+
base: string;
|
|
7694
|
+
quote: string;
|
|
7695
|
+
};
|
|
7696
|
+
quote_asset: {
|
|
7697
|
+
chain: "Ethereum";
|
|
7698
|
+
asset: "USDC";
|
|
7699
|
+
};
|
|
7700
|
+
} | null;
|
|
7318
7701
|
};
|
|
7319
7702
|
Arbitrum: {
|
|
7320
7703
|
ETH: {
|
|
@@ -7684,6 +8067,53 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7684
8067
|
readonly asset: "USDC";
|
|
7685
8068
|
};
|
|
7686
8069
|
};
|
|
8070
|
+
WBTC: {
|
|
8071
|
+
limit_order_fee_hundredth_pips: number;
|
|
8072
|
+
range_order_fee_hundredth_pips: number;
|
|
8073
|
+
range_order_total_fees_earned: {
|
|
8074
|
+
base: bigint;
|
|
8075
|
+
quote: bigint;
|
|
8076
|
+
};
|
|
8077
|
+
limit_order_total_fees_earned: {
|
|
8078
|
+
base: bigint;
|
|
8079
|
+
quote: bigint;
|
|
8080
|
+
};
|
|
8081
|
+
range_total_swap_inputs: {
|
|
8082
|
+
base: bigint;
|
|
8083
|
+
quote: bigint;
|
|
8084
|
+
};
|
|
8085
|
+
limit_total_swap_inputs: {
|
|
8086
|
+
base: bigint;
|
|
8087
|
+
quote: bigint;
|
|
8088
|
+
};
|
|
8089
|
+
quote_asset: {
|
|
8090
|
+
chain: "Ethereum";
|
|
8091
|
+
asset: "USDC";
|
|
8092
|
+
};
|
|
8093
|
+
} | {
|
|
8094
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8095
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8096
|
+
readonly range_order_total_fees_earned: {
|
|
8097
|
+
readonly base: "0x0";
|
|
8098
|
+
readonly quote: "0x0";
|
|
8099
|
+
};
|
|
8100
|
+
readonly limit_order_total_fees_earned: {
|
|
8101
|
+
readonly base: "0x0";
|
|
8102
|
+
readonly quote: "0x0";
|
|
8103
|
+
};
|
|
8104
|
+
readonly range_total_swap_inputs: {
|
|
8105
|
+
readonly base: "0x0";
|
|
8106
|
+
readonly quote: "0x0";
|
|
8107
|
+
};
|
|
8108
|
+
readonly limit_total_swap_inputs: {
|
|
8109
|
+
readonly base: "0x0";
|
|
8110
|
+
readonly quote: "0x0";
|
|
8111
|
+
};
|
|
8112
|
+
readonly quote_asset: {
|
|
8113
|
+
readonly chain: "Ethereum";
|
|
8114
|
+
readonly asset: "USDC";
|
|
8115
|
+
};
|
|
8116
|
+
};
|
|
7687
8117
|
};
|
|
7688
8118
|
Arbitrum: {
|
|
7689
8119
|
ETH: {
|
|
@@ -8122,6 +8552,30 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
8122
8552
|
asset: "USDC";
|
|
8123
8553
|
};
|
|
8124
8554
|
} | null;
|
|
8555
|
+
WBTC: {
|
|
8556
|
+
limit_order_fee_hundredth_pips: number;
|
|
8557
|
+
range_order_fee_hundredth_pips: number;
|
|
8558
|
+
range_order_total_fees_earned: {
|
|
8559
|
+
base: string;
|
|
8560
|
+
quote: string;
|
|
8561
|
+
};
|
|
8562
|
+
limit_order_total_fees_earned: {
|
|
8563
|
+
base: string;
|
|
8564
|
+
quote: string;
|
|
8565
|
+
};
|
|
8566
|
+
range_total_swap_inputs: {
|
|
8567
|
+
base: string;
|
|
8568
|
+
quote: string;
|
|
8569
|
+
};
|
|
8570
|
+
limit_total_swap_inputs: {
|
|
8571
|
+
base: string;
|
|
8572
|
+
quote: string;
|
|
8573
|
+
};
|
|
8574
|
+
quote_asset: {
|
|
8575
|
+
chain: "Ethereum";
|
|
8576
|
+
asset: "USDC";
|
|
8577
|
+
};
|
|
8578
|
+
} | null;
|
|
8125
8579
|
};
|
|
8126
8580
|
Arbitrum: {
|
|
8127
8581
|
ETH: {
|
|
@@ -8314,16 +8768,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8314
8768
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
8315
8769
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
8316
8770
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
8771
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
8317
8772
|
}, "strip", z.ZodTypeAny, {
|
|
8318
8773
|
ETH: bigint;
|
|
8319
8774
|
USDC: bigint;
|
|
8320
8775
|
FLIP: bigint;
|
|
8321
8776
|
USDT: bigint;
|
|
8777
|
+
WBTC: bigint;
|
|
8322
8778
|
}, {
|
|
8323
8779
|
ETH: string | number;
|
|
8324
8780
|
USDC: string | number;
|
|
8325
8781
|
FLIP: string | number;
|
|
8326
8782
|
USDT: string | number;
|
|
8783
|
+
WBTC: string | number;
|
|
8327
8784
|
}>;
|
|
8328
8785
|
Polkadot: z.ZodObject<{
|
|
8329
8786
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -8374,6 +8831,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8374
8831
|
USDC: bigint;
|
|
8375
8832
|
FLIP: bigint;
|
|
8376
8833
|
USDT: bigint;
|
|
8834
|
+
WBTC: bigint;
|
|
8377
8835
|
};
|
|
8378
8836
|
Arbitrum: {
|
|
8379
8837
|
ETH: bigint;
|
|
@@ -8397,6 +8855,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8397
8855
|
USDC: string | number;
|
|
8398
8856
|
FLIP: string | number;
|
|
8399
8857
|
USDT: string | number;
|
|
8858
|
+
WBTC: string | number;
|
|
8400
8859
|
};
|
|
8401
8860
|
Arbitrum: {
|
|
8402
8861
|
ETH: string | number;
|
|
@@ -8425,16 +8884,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8425
8884
|
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
8426
8885
|
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
8427
8886
|
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>>;
|
|
8887
|
+
WBTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
8428
8888
|
}, "strip", z.ZodTypeAny, {
|
|
8429
8889
|
ETH: bigint | null;
|
|
8430
8890
|
USDC: bigint | null;
|
|
8431
8891
|
FLIP: bigint | null;
|
|
8432
8892
|
USDT: bigint | null;
|
|
8893
|
+
WBTC: bigint | null;
|
|
8433
8894
|
}, {
|
|
8434
8895
|
ETH: string | number | null;
|
|
8435
8896
|
USDC: string | number | null;
|
|
8436
8897
|
FLIP: string | number | null;
|
|
8437
8898
|
USDT: string | number | null;
|
|
8899
|
+
WBTC: string | number | null;
|
|
8438
8900
|
}>;
|
|
8439
8901
|
Polkadot: z.ZodObject<{
|
|
8440
8902
|
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
@@ -8485,6 +8947,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8485
8947
|
USDC: bigint | null;
|
|
8486
8948
|
FLIP: bigint | null;
|
|
8487
8949
|
USDT: bigint | null;
|
|
8950
|
+
WBTC: bigint | null;
|
|
8488
8951
|
};
|
|
8489
8952
|
Arbitrum: {
|
|
8490
8953
|
ETH: bigint | null;
|
|
@@ -8508,6 +8971,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8508
8971
|
USDC: string | number | null;
|
|
8509
8972
|
FLIP: string | number | null;
|
|
8510
8973
|
USDT: string | number | null;
|
|
8974
|
+
WBTC: string | number | null;
|
|
8511
8975
|
};
|
|
8512
8976
|
Arbitrum: {
|
|
8513
8977
|
ETH: string | number | null;
|
|
@@ -8536,16 +9000,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8536
9000
|
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
8537
9001
|
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
8538
9002
|
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>>;
|
|
9003
|
+
WBTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
8539
9004
|
}, "strip", z.ZodTypeAny, {
|
|
8540
9005
|
ETH: bigint | null;
|
|
8541
9006
|
USDC: bigint | null;
|
|
8542
9007
|
FLIP: bigint | null;
|
|
8543
9008
|
USDT: bigint | null;
|
|
9009
|
+
WBTC: bigint | null;
|
|
8544
9010
|
}, {
|
|
8545
9011
|
ETH: string | number | null;
|
|
8546
9012
|
USDC: string | number | null;
|
|
8547
9013
|
FLIP: string | number | null;
|
|
8548
9014
|
USDT: string | number | null;
|
|
9015
|
+
WBTC: string | number | null;
|
|
8549
9016
|
}>;
|
|
8550
9017
|
Polkadot: z.ZodObject<{
|
|
8551
9018
|
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
@@ -8596,6 +9063,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8596
9063
|
USDC: bigint | null;
|
|
8597
9064
|
FLIP: bigint | null;
|
|
8598
9065
|
USDT: bigint | null;
|
|
9066
|
+
WBTC: bigint | null;
|
|
8599
9067
|
};
|
|
8600
9068
|
Arbitrum: {
|
|
8601
9069
|
ETH: bigint | null;
|
|
@@ -8619,6 +9087,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8619
9087
|
USDC: string | number | null;
|
|
8620
9088
|
FLIP: string | number | null;
|
|
8621
9089
|
USDT: string | number | null;
|
|
9090
|
+
WBTC: string | number | null;
|
|
8622
9091
|
};
|
|
8623
9092
|
Arbitrum: {
|
|
8624
9093
|
ETH: string | number | null;
|
|
@@ -8667,16 +9136,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8667
9136
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
8668
9137
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
8669
9138
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
9139
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
8670
9140
|
}, "strip", z.ZodTypeAny, {
|
|
8671
9141
|
ETH: bigint;
|
|
8672
9142
|
USDC: bigint;
|
|
8673
9143
|
FLIP: bigint;
|
|
8674
9144
|
USDT: bigint;
|
|
9145
|
+
WBTC: bigint;
|
|
8675
9146
|
}, {
|
|
8676
9147
|
ETH: string | number;
|
|
8677
9148
|
USDC: string | number;
|
|
8678
9149
|
FLIP: string | number;
|
|
8679
9150
|
USDT: string | number;
|
|
9151
|
+
WBTC: string | number;
|
|
8680
9152
|
}>;
|
|
8681
9153
|
Polkadot: z.ZodObject<{
|
|
8682
9154
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -8727,6 +9199,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8727
9199
|
USDC: bigint;
|
|
8728
9200
|
FLIP: bigint;
|
|
8729
9201
|
USDT: bigint;
|
|
9202
|
+
WBTC: bigint;
|
|
8730
9203
|
};
|
|
8731
9204
|
Arbitrum: {
|
|
8732
9205
|
ETH: bigint;
|
|
@@ -8750,6 +9223,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8750
9223
|
USDC: string | number;
|
|
8751
9224
|
FLIP: string | number;
|
|
8752
9225
|
USDT: string | number;
|
|
9226
|
+
WBTC: string | number;
|
|
8753
9227
|
};
|
|
8754
9228
|
Arbitrum: {
|
|
8755
9229
|
ETH: string | number;
|
|
@@ -8835,6 +9309,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8835
9309
|
USDC: bigint;
|
|
8836
9310
|
FLIP: bigint;
|
|
8837
9311
|
USDT: bigint;
|
|
9312
|
+
WBTC: bigint;
|
|
8838
9313
|
};
|
|
8839
9314
|
Arbitrum: {
|
|
8840
9315
|
ETH: bigint;
|
|
@@ -8859,6 +9334,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8859
9334
|
USDC: bigint | null;
|
|
8860
9335
|
FLIP: bigint | null;
|
|
8861
9336
|
USDT: bigint | null;
|
|
9337
|
+
WBTC: bigint | null;
|
|
8862
9338
|
};
|
|
8863
9339
|
Arbitrum: {
|
|
8864
9340
|
ETH: bigint | null;
|
|
@@ -8883,6 +9359,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8883
9359
|
USDC: bigint | null;
|
|
8884
9360
|
FLIP: bigint | null;
|
|
8885
9361
|
USDT: bigint | null;
|
|
9362
|
+
WBTC: bigint | null;
|
|
8886
9363
|
};
|
|
8887
9364
|
Arbitrum: {
|
|
8888
9365
|
ETH: bigint | null;
|
|
@@ -8914,6 +9391,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8914
9391
|
USDC: bigint;
|
|
8915
9392
|
FLIP: bigint;
|
|
8916
9393
|
USDT: bigint;
|
|
9394
|
+
WBTC: bigint;
|
|
8917
9395
|
};
|
|
8918
9396
|
Arbitrum: {
|
|
8919
9397
|
ETH: bigint;
|
|
@@ -8960,6 +9438,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8960
9438
|
USDC: string | number;
|
|
8961
9439
|
FLIP: string | number;
|
|
8962
9440
|
USDT: string | number;
|
|
9441
|
+
WBTC: string | number;
|
|
8963
9442
|
};
|
|
8964
9443
|
Arbitrum: {
|
|
8965
9444
|
ETH: string | number;
|
|
@@ -8984,6 +9463,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8984
9463
|
USDC: string | number | null;
|
|
8985
9464
|
FLIP: string | number | null;
|
|
8986
9465
|
USDT: string | number | null;
|
|
9466
|
+
WBTC: string | number | null;
|
|
8987
9467
|
};
|
|
8988
9468
|
Arbitrum: {
|
|
8989
9469
|
ETH: string | number | null;
|
|
@@ -9008,6 +9488,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9008
9488
|
USDC: string | number | null;
|
|
9009
9489
|
FLIP: string | number | null;
|
|
9010
9490
|
USDT: string | number | null;
|
|
9491
|
+
WBTC: string | number | null;
|
|
9011
9492
|
};
|
|
9012
9493
|
Arbitrum: {
|
|
9013
9494
|
ETH: string | number | null;
|
|
@@ -9039,6 +9520,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9039
9520
|
USDC: string | number;
|
|
9040
9521
|
FLIP: string | number;
|
|
9041
9522
|
USDT: string | number;
|
|
9523
|
+
WBTC: string | number;
|
|
9042
9524
|
};
|
|
9043
9525
|
Arbitrum: {
|
|
9044
9526
|
ETH: string | number;
|
|
@@ -9085,6 +9567,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9085
9567
|
USDC: bigint;
|
|
9086
9568
|
FLIP: bigint;
|
|
9087
9569
|
USDT: bigint;
|
|
9570
|
+
WBTC: bigint;
|
|
9088
9571
|
};
|
|
9089
9572
|
Arbitrum: {
|
|
9090
9573
|
ETH: bigint;
|
|
@@ -9109,6 +9592,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9109
9592
|
USDC: bigint | null;
|
|
9110
9593
|
FLIP: bigint | null;
|
|
9111
9594
|
USDT: bigint | null;
|
|
9595
|
+
WBTC: bigint | null;
|
|
9112
9596
|
};
|
|
9113
9597
|
Arbitrum: {
|
|
9114
9598
|
ETH: bigint | null;
|
|
@@ -9133,6 +9617,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9133
9617
|
USDC: bigint | null;
|
|
9134
9618
|
FLIP: bigint | null;
|
|
9135
9619
|
USDT: bigint | null;
|
|
9620
|
+
WBTC: bigint | null;
|
|
9136
9621
|
};
|
|
9137
9622
|
Arbitrum: {
|
|
9138
9623
|
ETH: bigint | null;
|
|
@@ -9164,6 +9649,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9164
9649
|
USDC: bigint;
|
|
9165
9650
|
FLIP: bigint;
|
|
9166
9651
|
USDT: bigint;
|
|
9652
|
+
WBTC: bigint;
|
|
9167
9653
|
};
|
|
9168
9654
|
Arbitrum: {
|
|
9169
9655
|
ETH: bigint;
|
|
@@ -9212,6 +9698,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9212
9698
|
USDC: string | number;
|
|
9213
9699
|
FLIP: string | number;
|
|
9214
9700
|
USDT: string | number;
|
|
9701
|
+
WBTC: string | number;
|
|
9215
9702
|
};
|
|
9216
9703
|
Arbitrum: {
|
|
9217
9704
|
ETH: string | number;
|
|
@@ -9236,6 +9723,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9236
9723
|
USDC: string | number | null;
|
|
9237
9724
|
FLIP: string | number | null;
|
|
9238
9725
|
USDT: string | number | null;
|
|
9726
|
+
WBTC: string | number | null;
|
|
9239
9727
|
};
|
|
9240
9728
|
Arbitrum: {
|
|
9241
9729
|
ETH: string | number | null;
|
|
@@ -9260,6 +9748,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9260
9748
|
USDC: string | number | null;
|
|
9261
9749
|
FLIP: string | number | null;
|
|
9262
9750
|
USDT: string | number | null;
|
|
9751
|
+
WBTC: string | number | null;
|
|
9263
9752
|
};
|
|
9264
9753
|
Arbitrum: {
|
|
9265
9754
|
ETH: string | number | null;
|
|
@@ -9291,6 +9780,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9291
9780
|
USDC: string | number;
|
|
9292
9781
|
FLIP: string | number;
|
|
9293
9782
|
USDT: string | number;
|
|
9783
|
+
WBTC: string | number;
|
|
9294
9784
|
};
|
|
9295
9785
|
Arbitrum: {
|
|
9296
9786
|
ETH: string | number;
|
|
@@ -9342,16 +9832,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9342
9832
|
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9343
9833
|
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9344
9834
|
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>>;
|
|
9835
|
+
WBTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9345
9836
|
}, "strip", z.ZodTypeAny, {
|
|
9346
9837
|
ETH: bigint | null;
|
|
9347
9838
|
USDC: bigint | null;
|
|
9348
9839
|
FLIP: bigint | null;
|
|
9349
9840
|
USDT: bigint | null;
|
|
9841
|
+
WBTC: bigint | null;
|
|
9350
9842
|
}, {
|
|
9351
9843
|
ETH: string | number | null;
|
|
9352
9844
|
USDC: string | number | null;
|
|
9353
9845
|
FLIP: string | number | null;
|
|
9354
9846
|
USDT: string | number | null;
|
|
9847
|
+
WBTC: string | number | null;
|
|
9355
9848
|
}>;
|
|
9356
9849
|
Polkadot: z.ZodObject<{
|
|
9357
9850
|
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
@@ -9402,6 +9895,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9402
9895
|
USDC: bigint | null;
|
|
9403
9896
|
FLIP: bigint | null;
|
|
9404
9897
|
USDT: bigint | null;
|
|
9898
|
+
WBTC: bigint | null;
|
|
9405
9899
|
};
|
|
9406
9900
|
Arbitrum: {
|
|
9407
9901
|
ETH: bigint | null;
|
|
@@ -9425,6 +9919,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9425
9919
|
USDC: string | number | null;
|
|
9426
9920
|
FLIP: string | number | null;
|
|
9427
9921
|
USDT: string | number | null;
|
|
9922
|
+
WBTC: string | number | null;
|
|
9428
9923
|
};
|
|
9429
9924
|
Arbitrum: {
|
|
9430
9925
|
ETH: string | number | null;
|
|
@@ -9457,16 +9952,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9457
9952
|
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9458
9953
|
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9459
9954
|
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>>;
|
|
9955
|
+
WBTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
9460
9956
|
}, "strip", z.ZodTypeAny, {
|
|
9461
9957
|
ETH: bigint | null;
|
|
9462
9958
|
USDC: bigint | null;
|
|
9463
9959
|
FLIP: bigint | null;
|
|
9464
9960
|
USDT: bigint | null;
|
|
9961
|
+
WBTC: bigint | null;
|
|
9465
9962
|
}, {
|
|
9466
9963
|
ETH: string | number | null;
|
|
9467
9964
|
USDC: string | number | null;
|
|
9468
9965
|
FLIP: string | number | null;
|
|
9469
9966
|
USDT: string | number | null;
|
|
9967
|
+
WBTC: string | number | null;
|
|
9470
9968
|
}>;
|
|
9471
9969
|
Polkadot: z.ZodObject<{
|
|
9472
9970
|
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
@@ -9517,6 +10015,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9517
10015
|
USDC: bigint | null;
|
|
9518
10016
|
FLIP: bigint | null;
|
|
9519
10017
|
USDT: bigint | null;
|
|
10018
|
+
WBTC: bigint | null;
|
|
9520
10019
|
};
|
|
9521
10020
|
Arbitrum: {
|
|
9522
10021
|
ETH: bigint | null;
|
|
@@ -9540,6 +10039,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9540
10039
|
USDC: string | number | null;
|
|
9541
10040
|
FLIP: string | number | null;
|
|
9542
10041
|
USDT: string | number | null;
|
|
10042
|
+
WBTC: string | number | null;
|
|
9543
10043
|
};
|
|
9544
10044
|
Arbitrum: {
|
|
9545
10045
|
ETH: string | number | null;
|
|
@@ -9580,16 +10080,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9580
10080
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
9581
10081
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
9582
10082
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
10083
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
9583
10084
|
}, "strip", z.ZodTypeAny, {
|
|
9584
10085
|
ETH: bigint;
|
|
9585
10086
|
USDC: bigint;
|
|
9586
10087
|
FLIP: bigint;
|
|
9587
10088
|
USDT: bigint;
|
|
10089
|
+
WBTC: bigint;
|
|
9588
10090
|
}, {
|
|
9589
10091
|
ETH: string | number;
|
|
9590
10092
|
USDC: string | number;
|
|
9591
10093
|
FLIP: string | number;
|
|
9592
10094
|
USDT: string | number;
|
|
10095
|
+
WBTC: string | number;
|
|
9593
10096
|
}>;
|
|
9594
10097
|
Polkadot: z.ZodObject<{
|
|
9595
10098
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -9640,6 +10143,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9640
10143
|
USDC: bigint;
|
|
9641
10144
|
FLIP: bigint;
|
|
9642
10145
|
USDT: bigint;
|
|
10146
|
+
WBTC: bigint;
|
|
9643
10147
|
};
|
|
9644
10148
|
Arbitrum: {
|
|
9645
10149
|
ETH: bigint;
|
|
@@ -9663,6 +10167,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9663
10167
|
USDC: string | number;
|
|
9664
10168
|
FLIP: string | number;
|
|
9665
10169
|
USDT: string | number;
|
|
10170
|
+
WBTC: string | number;
|
|
9666
10171
|
};
|
|
9667
10172
|
Arbitrum: {
|
|
9668
10173
|
ETH: string | number;
|
|
@@ -9692,6 +10197,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9692
10197
|
USDC: bigint;
|
|
9693
10198
|
FLIP: bigint;
|
|
9694
10199
|
USDT: bigint;
|
|
10200
|
+
WBTC: bigint;
|
|
9695
10201
|
};
|
|
9696
10202
|
Arbitrum: {
|
|
9697
10203
|
ETH: bigint;
|
|
@@ -9721,6 +10227,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9721
10227
|
USDC: string | number;
|
|
9722
10228
|
FLIP: string | number;
|
|
9723
10229
|
USDT: string | number;
|
|
10230
|
+
WBTC: string | number;
|
|
9724
10231
|
};
|
|
9725
10232
|
Arbitrum: {
|
|
9726
10233
|
ETH: string | number;
|
|
@@ -9761,16 +10268,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9761
10268
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
9762
10269
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
9763
10270
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
10271
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
9764
10272
|
}, "strip", z.ZodTypeAny, {
|
|
9765
10273
|
ETH: bigint;
|
|
9766
10274
|
USDC: bigint;
|
|
9767
10275
|
FLIP: bigint;
|
|
9768
10276
|
USDT: bigint;
|
|
10277
|
+
WBTC: bigint;
|
|
9769
10278
|
}, {
|
|
9770
10279
|
ETH: string | number;
|
|
9771
10280
|
USDC: string | number;
|
|
9772
10281
|
FLIP: string | number;
|
|
9773
10282
|
USDT: string | number;
|
|
10283
|
+
WBTC: string | number;
|
|
9774
10284
|
}>;
|
|
9775
10285
|
Polkadot: z.ZodObject<{
|
|
9776
10286
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -9821,6 +10331,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9821
10331
|
USDC: bigint;
|
|
9822
10332
|
FLIP: bigint;
|
|
9823
10333
|
USDT: bigint;
|
|
10334
|
+
WBTC: bigint;
|
|
9824
10335
|
};
|
|
9825
10336
|
Arbitrum: {
|
|
9826
10337
|
ETH: bigint;
|
|
@@ -9844,6 +10355,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9844
10355
|
USDC: string | number;
|
|
9845
10356
|
FLIP: string | number;
|
|
9846
10357
|
USDT: string | number;
|
|
10358
|
+
WBTC: string | number;
|
|
9847
10359
|
};
|
|
9848
10360
|
Arbitrum: {
|
|
9849
10361
|
ETH: string | number;
|
|
@@ -9873,6 +10385,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9873
10385
|
USDC: bigint;
|
|
9874
10386
|
FLIP: bigint;
|
|
9875
10387
|
USDT: bigint;
|
|
10388
|
+
WBTC: bigint;
|
|
9876
10389
|
};
|
|
9877
10390
|
Arbitrum: {
|
|
9878
10391
|
ETH: bigint;
|
|
@@ -9902,6 +10415,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9902
10415
|
USDC: string | number;
|
|
9903
10416
|
FLIP: string | number;
|
|
9904
10417
|
USDT: string | number;
|
|
10418
|
+
WBTC: string | number;
|
|
9905
10419
|
};
|
|
9906
10420
|
Arbitrum: {
|
|
9907
10421
|
ETH: string | number;
|
|
@@ -9933,6 +10447,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9933
10447
|
USDC: bigint;
|
|
9934
10448
|
FLIP: bigint;
|
|
9935
10449
|
USDT: bigint;
|
|
10450
|
+
WBTC: bigint;
|
|
9936
10451
|
};
|
|
9937
10452
|
Arbitrum: {
|
|
9938
10453
|
ETH: bigint;
|
|
@@ -9963,6 +10478,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9963
10478
|
USDC: bigint;
|
|
9964
10479
|
FLIP: bigint;
|
|
9965
10480
|
USDT: bigint;
|
|
10481
|
+
WBTC: bigint;
|
|
9966
10482
|
};
|
|
9967
10483
|
Arbitrum: {
|
|
9968
10484
|
ETH: bigint;
|
|
@@ -9994,6 +10510,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9994
10510
|
USDC: string | number;
|
|
9995
10511
|
FLIP: string | number;
|
|
9996
10512
|
USDT: string | number;
|
|
10513
|
+
WBTC: string | number;
|
|
9997
10514
|
};
|
|
9998
10515
|
Arbitrum: {
|
|
9999
10516
|
ETH: string | number;
|
|
@@ -10024,6 +10541,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10024
10541
|
USDC: string | number;
|
|
10025
10542
|
FLIP: string | number;
|
|
10026
10543
|
USDT: string | number;
|
|
10544
|
+
WBTC: string | number;
|
|
10027
10545
|
};
|
|
10028
10546
|
Arbitrum: {
|
|
10029
10547
|
ETH: string | number;
|
|
@@ -10051,6 +10569,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10051
10569
|
USDC: bigint | null;
|
|
10052
10570
|
FLIP: bigint | null;
|
|
10053
10571
|
USDT: bigint | null;
|
|
10572
|
+
WBTC: bigint | null;
|
|
10054
10573
|
};
|
|
10055
10574
|
Arbitrum: {
|
|
10056
10575
|
ETH: bigint | null;
|
|
@@ -10082,6 +10601,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10082
10601
|
USDC: bigint;
|
|
10083
10602
|
FLIP: bigint;
|
|
10084
10603
|
USDT: bigint;
|
|
10604
|
+
WBTC: bigint;
|
|
10085
10605
|
};
|
|
10086
10606
|
Arbitrum: {
|
|
10087
10607
|
ETH: bigint;
|
|
@@ -10112,6 +10632,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10112
10632
|
USDC: bigint;
|
|
10113
10633
|
FLIP: bigint;
|
|
10114
10634
|
USDT: bigint;
|
|
10635
|
+
WBTC: bigint;
|
|
10115
10636
|
};
|
|
10116
10637
|
Arbitrum: {
|
|
10117
10638
|
ETH: bigint;
|
|
@@ -10141,6 +10662,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10141
10662
|
USDC: bigint | null;
|
|
10142
10663
|
FLIP: bigint | null;
|
|
10143
10664
|
USDT: bigint | null;
|
|
10665
|
+
WBTC: bigint | null;
|
|
10144
10666
|
};
|
|
10145
10667
|
Arbitrum: {
|
|
10146
10668
|
ETH: bigint | null;
|
|
@@ -10166,6 +10688,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10166
10688
|
USDC: string | number | null;
|
|
10167
10689
|
FLIP: string | number | null;
|
|
10168
10690
|
USDT: string | number | null;
|
|
10691
|
+
WBTC: string | number | null;
|
|
10169
10692
|
};
|
|
10170
10693
|
Arbitrum: {
|
|
10171
10694
|
ETH: string | number | null;
|
|
@@ -10197,6 +10720,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10197
10720
|
USDC: string | number;
|
|
10198
10721
|
FLIP: string | number;
|
|
10199
10722
|
USDT: string | number;
|
|
10723
|
+
WBTC: string | number;
|
|
10200
10724
|
};
|
|
10201
10725
|
Arbitrum: {
|
|
10202
10726
|
ETH: string | number;
|
|
@@ -10227,6 +10751,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10227
10751
|
USDC: string | number;
|
|
10228
10752
|
FLIP: string | number;
|
|
10229
10753
|
USDT: string | number;
|
|
10754
|
+
WBTC: string | number;
|
|
10230
10755
|
};
|
|
10231
10756
|
Arbitrum: {
|
|
10232
10757
|
ETH: string | number;
|
|
@@ -10256,6 +10781,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10256
10781
|
USDC: string | number | null;
|
|
10257
10782
|
FLIP: string | number | null;
|
|
10258
10783
|
USDT: string | number | null;
|
|
10784
|
+
WBTC: string | number | null;
|
|
10259
10785
|
};
|
|
10260
10786
|
Arbitrum: {
|
|
10261
10787
|
ETH: string | number | null;
|
|
@@ -10454,82 +10980,251 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10454
10980
|
asset: "USDC";
|
|
10455
10981
|
};
|
|
10456
10982
|
} | null>;
|
|
10457
|
-
}, "strip", z.ZodTypeAny, {
|
|
10458
|
-
BTC: {
|
|
10459
|
-
limit_order_fee_hundredth_pips: number;
|
|
10460
|
-
range_order_fee_hundredth_pips: number;
|
|
10461
|
-
range_order_total_fees_earned: {
|
|
10462
|
-
base: bigint;
|
|
10463
|
-
quote: bigint;
|
|
10464
|
-
};
|
|
10465
|
-
limit_order_total_fees_earned: {
|
|
10466
|
-
base: bigint;
|
|
10467
|
-
quote: bigint;
|
|
10468
|
-
};
|
|
10469
|
-
range_total_swap_inputs: {
|
|
10470
|
-
base: bigint;
|
|
10471
|
-
quote: bigint;
|
|
10472
|
-
};
|
|
10473
|
-
limit_total_swap_inputs: {
|
|
10474
|
-
base: bigint;
|
|
10475
|
-
quote: bigint;
|
|
10476
|
-
};
|
|
10477
|
-
quote_asset: {
|
|
10478
|
-
chain: "Ethereum";
|
|
10479
|
-
asset: "USDC";
|
|
10480
|
-
};
|
|
10481
|
-
} | {
|
|
10482
|
-
readonly limit_order_fee_hundredth_pips: 0;
|
|
10483
|
-
readonly range_order_fee_hundredth_pips: 0;
|
|
10484
|
-
readonly range_order_total_fees_earned: {
|
|
10485
|
-
readonly base: "0x0";
|
|
10486
|
-
readonly quote: "0x0";
|
|
10487
|
-
};
|
|
10488
|
-
readonly limit_order_total_fees_earned: {
|
|
10489
|
-
readonly base: "0x0";
|
|
10490
|
-
readonly quote: "0x0";
|
|
10491
|
-
};
|
|
10492
|
-
readonly range_total_swap_inputs: {
|
|
10493
|
-
readonly base: "0x0";
|
|
10494
|
-
readonly quote: "0x0";
|
|
10495
|
-
};
|
|
10496
|
-
readonly limit_total_swap_inputs: {
|
|
10497
|
-
readonly base: "0x0";
|
|
10498
|
-
readonly quote: "0x0";
|
|
10499
|
-
};
|
|
10500
|
-
readonly quote_asset: {
|
|
10501
|
-
readonly chain: "Ethereum";
|
|
10502
|
-
readonly asset: "USDC";
|
|
10503
|
-
};
|
|
10504
|
-
};
|
|
10505
|
-
}, {
|
|
10506
|
-
BTC: {
|
|
10507
|
-
limit_order_fee_hundredth_pips: number;
|
|
10508
|
-
range_order_fee_hundredth_pips: number;
|
|
10509
|
-
range_order_total_fees_earned: {
|
|
10510
|
-
base: string;
|
|
10511
|
-
quote: string;
|
|
10512
|
-
};
|
|
10513
|
-
limit_order_total_fees_earned: {
|
|
10514
|
-
base: string;
|
|
10515
|
-
quote: string;
|
|
10516
|
-
};
|
|
10517
|
-
range_total_swap_inputs: {
|
|
10518
|
-
base: string;
|
|
10519
|
-
quote: string;
|
|
10520
|
-
};
|
|
10521
|
-
limit_total_swap_inputs: {
|
|
10522
|
-
base: string;
|
|
10523
|
-
quote: string;
|
|
10524
|
-
};
|
|
10525
|
-
quote_asset: {
|
|
10526
|
-
chain: "Ethereum";
|
|
10527
|
-
asset: "USDC";
|
|
10528
|
-
};
|
|
10529
|
-
} | null;
|
|
10530
|
-
}>;
|
|
10531
|
-
Ethereum: z.ZodObject<{
|
|
10532
|
-
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
10983
|
+
}, "strip", z.ZodTypeAny, {
|
|
10984
|
+
BTC: {
|
|
10985
|
+
limit_order_fee_hundredth_pips: number;
|
|
10986
|
+
range_order_fee_hundredth_pips: number;
|
|
10987
|
+
range_order_total_fees_earned: {
|
|
10988
|
+
base: bigint;
|
|
10989
|
+
quote: bigint;
|
|
10990
|
+
};
|
|
10991
|
+
limit_order_total_fees_earned: {
|
|
10992
|
+
base: bigint;
|
|
10993
|
+
quote: bigint;
|
|
10994
|
+
};
|
|
10995
|
+
range_total_swap_inputs: {
|
|
10996
|
+
base: bigint;
|
|
10997
|
+
quote: bigint;
|
|
10998
|
+
};
|
|
10999
|
+
limit_total_swap_inputs: {
|
|
11000
|
+
base: bigint;
|
|
11001
|
+
quote: bigint;
|
|
11002
|
+
};
|
|
11003
|
+
quote_asset: {
|
|
11004
|
+
chain: "Ethereum";
|
|
11005
|
+
asset: "USDC";
|
|
11006
|
+
};
|
|
11007
|
+
} | {
|
|
11008
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
11009
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
11010
|
+
readonly range_order_total_fees_earned: {
|
|
11011
|
+
readonly base: "0x0";
|
|
11012
|
+
readonly quote: "0x0";
|
|
11013
|
+
};
|
|
11014
|
+
readonly limit_order_total_fees_earned: {
|
|
11015
|
+
readonly base: "0x0";
|
|
11016
|
+
readonly quote: "0x0";
|
|
11017
|
+
};
|
|
11018
|
+
readonly range_total_swap_inputs: {
|
|
11019
|
+
readonly base: "0x0";
|
|
11020
|
+
readonly quote: "0x0";
|
|
11021
|
+
};
|
|
11022
|
+
readonly limit_total_swap_inputs: {
|
|
11023
|
+
readonly base: "0x0";
|
|
11024
|
+
readonly quote: "0x0";
|
|
11025
|
+
};
|
|
11026
|
+
readonly quote_asset: {
|
|
11027
|
+
readonly chain: "Ethereum";
|
|
11028
|
+
readonly asset: "USDC";
|
|
11029
|
+
};
|
|
11030
|
+
};
|
|
11031
|
+
}, {
|
|
11032
|
+
BTC: {
|
|
11033
|
+
limit_order_fee_hundredth_pips: number;
|
|
11034
|
+
range_order_fee_hundredth_pips: number;
|
|
11035
|
+
range_order_total_fees_earned: {
|
|
11036
|
+
base: string;
|
|
11037
|
+
quote: string;
|
|
11038
|
+
};
|
|
11039
|
+
limit_order_total_fees_earned: {
|
|
11040
|
+
base: string;
|
|
11041
|
+
quote: string;
|
|
11042
|
+
};
|
|
11043
|
+
range_total_swap_inputs: {
|
|
11044
|
+
base: string;
|
|
11045
|
+
quote: string;
|
|
11046
|
+
};
|
|
11047
|
+
limit_total_swap_inputs: {
|
|
11048
|
+
base: string;
|
|
11049
|
+
quote: string;
|
|
11050
|
+
};
|
|
11051
|
+
quote_asset: {
|
|
11052
|
+
chain: "Ethereum";
|
|
11053
|
+
asset: "USDC";
|
|
11054
|
+
};
|
|
11055
|
+
} | null;
|
|
11056
|
+
}>;
|
|
11057
|
+
Ethereum: z.ZodObject<{
|
|
11058
|
+
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
11059
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
11060
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
11061
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
11062
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
11063
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
11064
|
+
}, "strip", z.ZodTypeAny, {
|
|
11065
|
+
base: bigint;
|
|
11066
|
+
quote: bigint;
|
|
11067
|
+
}, {
|
|
11068
|
+
base: string;
|
|
11069
|
+
quote: string;
|
|
11070
|
+
}>;
|
|
11071
|
+
limit_order_total_fees_earned: z.ZodObject<{
|
|
11072
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
11073
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
11074
|
+
}, "strip", z.ZodTypeAny, {
|
|
11075
|
+
base: bigint;
|
|
11076
|
+
quote: bigint;
|
|
11077
|
+
}, {
|
|
11078
|
+
base: string;
|
|
11079
|
+
quote: string;
|
|
11080
|
+
}>;
|
|
11081
|
+
range_total_swap_inputs: z.ZodObject<{
|
|
11082
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
11083
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
11084
|
+
}, "strip", z.ZodTypeAny, {
|
|
11085
|
+
base: bigint;
|
|
11086
|
+
quote: bigint;
|
|
11087
|
+
}, {
|
|
11088
|
+
base: string;
|
|
11089
|
+
quote: string;
|
|
11090
|
+
}>;
|
|
11091
|
+
limit_total_swap_inputs: z.ZodObject<{
|
|
11092
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
11093
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
11094
|
+
}, "strip", z.ZodTypeAny, {
|
|
11095
|
+
base: bigint;
|
|
11096
|
+
quote: bigint;
|
|
11097
|
+
}, {
|
|
11098
|
+
base: string;
|
|
11099
|
+
quote: string;
|
|
11100
|
+
}>;
|
|
11101
|
+
quote_asset: z.ZodObject<{
|
|
11102
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
11103
|
+
asset: z.ZodLiteral<"USDC">;
|
|
11104
|
+
}, "strip", z.ZodTypeAny, {
|
|
11105
|
+
chain: "Ethereum";
|
|
11106
|
+
asset: "USDC";
|
|
11107
|
+
}, {
|
|
11108
|
+
chain: "Ethereum";
|
|
11109
|
+
asset: "USDC";
|
|
11110
|
+
}>;
|
|
11111
|
+
}, "strip", z.ZodTypeAny, {
|
|
11112
|
+
limit_order_fee_hundredth_pips: number;
|
|
11113
|
+
range_order_fee_hundredth_pips: number;
|
|
11114
|
+
range_order_total_fees_earned: {
|
|
11115
|
+
base: bigint;
|
|
11116
|
+
quote: bigint;
|
|
11117
|
+
};
|
|
11118
|
+
limit_order_total_fees_earned: {
|
|
11119
|
+
base: bigint;
|
|
11120
|
+
quote: bigint;
|
|
11121
|
+
};
|
|
11122
|
+
range_total_swap_inputs: {
|
|
11123
|
+
base: bigint;
|
|
11124
|
+
quote: bigint;
|
|
11125
|
+
};
|
|
11126
|
+
limit_total_swap_inputs: {
|
|
11127
|
+
base: bigint;
|
|
11128
|
+
quote: bigint;
|
|
11129
|
+
};
|
|
11130
|
+
quote_asset: {
|
|
11131
|
+
chain: "Ethereum";
|
|
11132
|
+
asset: "USDC";
|
|
11133
|
+
};
|
|
11134
|
+
}, {
|
|
11135
|
+
limit_order_fee_hundredth_pips: number;
|
|
11136
|
+
range_order_fee_hundredth_pips: number;
|
|
11137
|
+
range_order_total_fees_earned: {
|
|
11138
|
+
base: string;
|
|
11139
|
+
quote: string;
|
|
11140
|
+
};
|
|
11141
|
+
limit_order_total_fees_earned: {
|
|
11142
|
+
base: string;
|
|
11143
|
+
quote: string;
|
|
11144
|
+
};
|
|
11145
|
+
range_total_swap_inputs: {
|
|
11146
|
+
base: string;
|
|
11147
|
+
quote: string;
|
|
11148
|
+
};
|
|
11149
|
+
limit_total_swap_inputs: {
|
|
11150
|
+
base: string;
|
|
11151
|
+
quote: string;
|
|
11152
|
+
};
|
|
11153
|
+
quote_asset: {
|
|
11154
|
+
chain: "Ethereum";
|
|
11155
|
+
asset: "USDC";
|
|
11156
|
+
};
|
|
11157
|
+
}>>, {
|
|
11158
|
+
limit_order_fee_hundredth_pips: number;
|
|
11159
|
+
range_order_fee_hundredth_pips: number;
|
|
11160
|
+
range_order_total_fees_earned: {
|
|
11161
|
+
base: bigint;
|
|
11162
|
+
quote: bigint;
|
|
11163
|
+
};
|
|
11164
|
+
limit_order_total_fees_earned: {
|
|
11165
|
+
base: bigint;
|
|
11166
|
+
quote: bigint;
|
|
11167
|
+
};
|
|
11168
|
+
range_total_swap_inputs: {
|
|
11169
|
+
base: bigint;
|
|
11170
|
+
quote: bigint;
|
|
11171
|
+
};
|
|
11172
|
+
limit_total_swap_inputs: {
|
|
11173
|
+
base: bigint;
|
|
11174
|
+
quote: bigint;
|
|
11175
|
+
};
|
|
11176
|
+
quote_asset: {
|
|
11177
|
+
chain: "Ethereum";
|
|
11178
|
+
asset: "USDC";
|
|
11179
|
+
};
|
|
11180
|
+
} | {
|
|
11181
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
11182
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
11183
|
+
readonly range_order_total_fees_earned: {
|
|
11184
|
+
readonly base: "0x0";
|
|
11185
|
+
readonly quote: "0x0";
|
|
11186
|
+
};
|
|
11187
|
+
readonly limit_order_total_fees_earned: {
|
|
11188
|
+
readonly base: "0x0";
|
|
11189
|
+
readonly quote: "0x0";
|
|
11190
|
+
};
|
|
11191
|
+
readonly range_total_swap_inputs: {
|
|
11192
|
+
readonly base: "0x0";
|
|
11193
|
+
readonly quote: "0x0";
|
|
11194
|
+
};
|
|
11195
|
+
readonly limit_total_swap_inputs: {
|
|
11196
|
+
readonly base: "0x0";
|
|
11197
|
+
readonly quote: "0x0";
|
|
11198
|
+
};
|
|
11199
|
+
readonly quote_asset: {
|
|
11200
|
+
readonly chain: "Ethereum";
|
|
11201
|
+
readonly asset: "USDC";
|
|
11202
|
+
};
|
|
11203
|
+
}, {
|
|
11204
|
+
limit_order_fee_hundredth_pips: number;
|
|
11205
|
+
range_order_fee_hundredth_pips: number;
|
|
11206
|
+
range_order_total_fees_earned: {
|
|
11207
|
+
base: string;
|
|
11208
|
+
quote: string;
|
|
11209
|
+
};
|
|
11210
|
+
limit_order_total_fees_earned: {
|
|
11211
|
+
base: string;
|
|
11212
|
+
quote: string;
|
|
11213
|
+
};
|
|
11214
|
+
range_total_swap_inputs: {
|
|
11215
|
+
base: string;
|
|
11216
|
+
quote: string;
|
|
11217
|
+
};
|
|
11218
|
+
limit_total_swap_inputs: {
|
|
11219
|
+
base: string;
|
|
11220
|
+
quote: string;
|
|
11221
|
+
};
|
|
11222
|
+
quote_asset: {
|
|
11223
|
+
chain: "Ethereum";
|
|
11224
|
+
asset: "USDC";
|
|
11225
|
+
};
|
|
11226
|
+
} | null>;
|
|
11227
|
+
FLIP: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
10533
11228
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
10534
11229
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
10535
11230
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -10698,7 +11393,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10698
11393
|
asset: "USDC";
|
|
10699
11394
|
};
|
|
10700
11395
|
} | null>;
|
|
10701
|
-
|
|
11396
|
+
USDT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
10702
11397
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
10703
11398
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
10704
11399
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -10867,7 +11562,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10867
11562
|
asset: "USDC";
|
|
10868
11563
|
};
|
|
10869
11564
|
} | null>;
|
|
10870
|
-
|
|
11565
|
+
WBTC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
10871
11566
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
10872
11567
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
10873
11568
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -11178,6 +11873,53 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11178
11873
|
readonly asset: "USDC";
|
|
11179
11874
|
};
|
|
11180
11875
|
};
|
|
11876
|
+
WBTC: {
|
|
11877
|
+
limit_order_fee_hundredth_pips: number;
|
|
11878
|
+
range_order_fee_hundredth_pips: number;
|
|
11879
|
+
range_order_total_fees_earned: {
|
|
11880
|
+
base: bigint;
|
|
11881
|
+
quote: bigint;
|
|
11882
|
+
};
|
|
11883
|
+
limit_order_total_fees_earned: {
|
|
11884
|
+
base: bigint;
|
|
11885
|
+
quote: bigint;
|
|
11886
|
+
};
|
|
11887
|
+
range_total_swap_inputs: {
|
|
11888
|
+
base: bigint;
|
|
11889
|
+
quote: bigint;
|
|
11890
|
+
};
|
|
11891
|
+
limit_total_swap_inputs: {
|
|
11892
|
+
base: bigint;
|
|
11893
|
+
quote: bigint;
|
|
11894
|
+
};
|
|
11895
|
+
quote_asset: {
|
|
11896
|
+
chain: "Ethereum";
|
|
11897
|
+
asset: "USDC";
|
|
11898
|
+
};
|
|
11899
|
+
} | {
|
|
11900
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
11901
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
11902
|
+
readonly range_order_total_fees_earned: {
|
|
11903
|
+
readonly base: "0x0";
|
|
11904
|
+
readonly quote: "0x0";
|
|
11905
|
+
};
|
|
11906
|
+
readonly limit_order_total_fees_earned: {
|
|
11907
|
+
readonly base: "0x0";
|
|
11908
|
+
readonly quote: "0x0";
|
|
11909
|
+
};
|
|
11910
|
+
readonly range_total_swap_inputs: {
|
|
11911
|
+
readonly base: "0x0";
|
|
11912
|
+
readonly quote: "0x0";
|
|
11913
|
+
};
|
|
11914
|
+
readonly limit_total_swap_inputs: {
|
|
11915
|
+
readonly base: "0x0";
|
|
11916
|
+
readonly quote: "0x0";
|
|
11917
|
+
};
|
|
11918
|
+
readonly quote_asset: {
|
|
11919
|
+
readonly chain: "Ethereum";
|
|
11920
|
+
readonly asset: "USDC";
|
|
11921
|
+
};
|
|
11922
|
+
};
|
|
11181
11923
|
}, {
|
|
11182
11924
|
ETH: {
|
|
11183
11925
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -11251,6 +11993,30 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11251
11993
|
asset: "USDC";
|
|
11252
11994
|
};
|
|
11253
11995
|
} | null;
|
|
11996
|
+
WBTC: {
|
|
11997
|
+
limit_order_fee_hundredth_pips: number;
|
|
11998
|
+
range_order_fee_hundredth_pips: number;
|
|
11999
|
+
range_order_total_fees_earned: {
|
|
12000
|
+
base: string;
|
|
12001
|
+
quote: string;
|
|
12002
|
+
};
|
|
12003
|
+
limit_order_total_fees_earned: {
|
|
12004
|
+
base: string;
|
|
12005
|
+
quote: string;
|
|
12006
|
+
};
|
|
12007
|
+
range_total_swap_inputs: {
|
|
12008
|
+
base: string;
|
|
12009
|
+
quote: string;
|
|
12010
|
+
};
|
|
12011
|
+
limit_total_swap_inputs: {
|
|
12012
|
+
base: string;
|
|
12013
|
+
quote: string;
|
|
12014
|
+
};
|
|
12015
|
+
quote_asset: {
|
|
12016
|
+
chain: "Ethereum";
|
|
12017
|
+
asset: "USDC";
|
|
12018
|
+
};
|
|
12019
|
+
} | null;
|
|
11254
12020
|
}>;
|
|
11255
12021
|
Polkadot: z.ZodObject<{
|
|
11256
12022
|
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
@@ -13380,6 +14146,53 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
13380
14146
|
readonly asset: "USDC";
|
|
13381
14147
|
};
|
|
13382
14148
|
};
|
|
14149
|
+
WBTC: {
|
|
14150
|
+
limit_order_fee_hundredth_pips: number;
|
|
14151
|
+
range_order_fee_hundredth_pips: number;
|
|
14152
|
+
range_order_total_fees_earned: {
|
|
14153
|
+
base: bigint;
|
|
14154
|
+
quote: bigint;
|
|
14155
|
+
};
|
|
14156
|
+
limit_order_total_fees_earned: {
|
|
14157
|
+
base: bigint;
|
|
14158
|
+
quote: bigint;
|
|
14159
|
+
};
|
|
14160
|
+
range_total_swap_inputs: {
|
|
14161
|
+
base: bigint;
|
|
14162
|
+
quote: bigint;
|
|
14163
|
+
};
|
|
14164
|
+
limit_total_swap_inputs: {
|
|
14165
|
+
base: bigint;
|
|
14166
|
+
quote: bigint;
|
|
14167
|
+
};
|
|
14168
|
+
quote_asset: {
|
|
14169
|
+
chain: "Ethereum";
|
|
14170
|
+
asset: "USDC";
|
|
14171
|
+
};
|
|
14172
|
+
} | {
|
|
14173
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
14174
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
14175
|
+
readonly range_order_total_fees_earned: {
|
|
14176
|
+
readonly base: "0x0";
|
|
14177
|
+
readonly quote: "0x0";
|
|
14178
|
+
};
|
|
14179
|
+
readonly limit_order_total_fees_earned: {
|
|
14180
|
+
readonly base: "0x0";
|
|
14181
|
+
readonly quote: "0x0";
|
|
14182
|
+
};
|
|
14183
|
+
readonly range_total_swap_inputs: {
|
|
14184
|
+
readonly base: "0x0";
|
|
14185
|
+
readonly quote: "0x0";
|
|
14186
|
+
};
|
|
14187
|
+
readonly limit_total_swap_inputs: {
|
|
14188
|
+
readonly base: "0x0";
|
|
14189
|
+
readonly quote: "0x0";
|
|
14190
|
+
};
|
|
14191
|
+
readonly quote_asset: {
|
|
14192
|
+
readonly chain: "Ethereum";
|
|
14193
|
+
readonly asset: "USDC";
|
|
14194
|
+
};
|
|
14195
|
+
};
|
|
13383
14196
|
};
|
|
13384
14197
|
Arbitrum: {
|
|
13385
14198
|
ETH: {
|
|
@@ -13816,6 +14629,30 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
13816
14629
|
asset: "USDC";
|
|
13817
14630
|
};
|
|
13818
14631
|
} | null;
|
|
14632
|
+
WBTC: {
|
|
14633
|
+
limit_order_fee_hundredth_pips: number;
|
|
14634
|
+
range_order_fee_hundredth_pips: number;
|
|
14635
|
+
range_order_total_fees_earned: {
|
|
14636
|
+
base: string;
|
|
14637
|
+
quote: string;
|
|
14638
|
+
};
|
|
14639
|
+
limit_order_total_fees_earned: {
|
|
14640
|
+
base: string;
|
|
14641
|
+
quote: string;
|
|
14642
|
+
};
|
|
14643
|
+
range_total_swap_inputs: {
|
|
14644
|
+
base: string;
|
|
14645
|
+
quote: string;
|
|
14646
|
+
};
|
|
14647
|
+
limit_total_swap_inputs: {
|
|
14648
|
+
base: string;
|
|
14649
|
+
quote: string;
|
|
14650
|
+
};
|
|
14651
|
+
quote_asset: {
|
|
14652
|
+
chain: "Ethereum";
|
|
14653
|
+
asset: "USDC";
|
|
14654
|
+
};
|
|
14655
|
+
} | null;
|
|
13819
14656
|
};
|
|
13820
14657
|
Arbitrum: {
|
|
13821
14658
|
ETH: {
|
|
@@ -13982,20 +14819,69 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
13982
14819
|
quote: string;
|
|
13983
14820
|
};
|
|
13984
14821
|
limit_total_swap_inputs: {
|
|
13985
|
-
base: string;
|
|
13986
|
-
quote: string;
|
|
14822
|
+
base: string;
|
|
14823
|
+
quote: string;
|
|
14824
|
+
};
|
|
14825
|
+
quote_asset: {
|
|
14826
|
+
chain: "Ethereum";
|
|
14827
|
+
asset: "USDC";
|
|
14828
|
+
};
|
|
14829
|
+
} | null;
|
|
14830
|
+
};
|
|
14831
|
+
}>;
|
|
14832
|
+
}, "strip", z.ZodTypeAny, {
|
|
14833
|
+
fees: {
|
|
14834
|
+
Bitcoin: {
|
|
14835
|
+
BTC: {
|
|
14836
|
+
limit_order_fee_hundredth_pips: number;
|
|
14837
|
+
range_order_fee_hundredth_pips: number;
|
|
14838
|
+
range_order_total_fees_earned: {
|
|
14839
|
+
base: bigint;
|
|
14840
|
+
quote: bigint;
|
|
14841
|
+
};
|
|
14842
|
+
limit_order_total_fees_earned: {
|
|
14843
|
+
base: bigint;
|
|
14844
|
+
quote: bigint;
|
|
14845
|
+
};
|
|
14846
|
+
range_total_swap_inputs: {
|
|
14847
|
+
base: bigint;
|
|
14848
|
+
quote: bigint;
|
|
14849
|
+
};
|
|
14850
|
+
limit_total_swap_inputs: {
|
|
14851
|
+
base: bigint;
|
|
14852
|
+
quote: bigint;
|
|
13987
14853
|
};
|
|
13988
14854
|
quote_asset: {
|
|
13989
14855
|
chain: "Ethereum";
|
|
13990
14856
|
asset: "USDC";
|
|
13991
14857
|
};
|
|
13992
|
-
} |
|
|
14858
|
+
} | {
|
|
14859
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
14860
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
14861
|
+
readonly range_order_total_fees_earned: {
|
|
14862
|
+
readonly base: "0x0";
|
|
14863
|
+
readonly quote: "0x0";
|
|
14864
|
+
};
|
|
14865
|
+
readonly limit_order_total_fees_earned: {
|
|
14866
|
+
readonly base: "0x0";
|
|
14867
|
+
readonly quote: "0x0";
|
|
14868
|
+
};
|
|
14869
|
+
readonly range_total_swap_inputs: {
|
|
14870
|
+
readonly base: "0x0";
|
|
14871
|
+
readonly quote: "0x0";
|
|
14872
|
+
};
|
|
14873
|
+
readonly limit_total_swap_inputs: {
|
|
14874
|
+
readonly base: "0x0";
|
|
14875
|
+
readonly quote: "0x0";
|
|
14876
|
+
};
|
|
14877
|
+
readonly quote_asset: {
|
|
14878
|
+
readonly chain: "Ethereum";
|
|
14879
|
+
readonly asset: "USDC";
|
|
14880
|
+
};
|
|
14881
|
+
};
|
|
13993
14882
|
};
|
|
13994
|
-
|
|
13995
|
-
|
|
13996
|
-
fees: {
|
|
13997
|
-
Bitcoin: {
|
|
13998
|
-
BTC: {
|
|
14883
|
+
Ethereum: {
|
|
14884
|
+
ETH: {
|
|
13999
14885
|
limit_order_fee_hundredth_pips: number;
|
|
14000
14886
|
range_order_fee_hundredth_pips: number;
|
|
14001
14887
|
range_order_total_fees_earned: {
|
|
@@ -14042,9 +14928,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14042
14928
|
readonly asset: "USDC";
|
|
14043
14929
|
};
|
|
14044
14930
|
};
|
|
14045
|
-
|
|
14046
|
-
Ethereum: {
|
|
14047
|
-
ETH: {
|
|
14931
|
+
FLIP: {
|
|
14048
14932
|
limit_order_fee_hundredth_pips: number;
|
|
14049
14933
|
range_order_fee_hundredth_pips: number;
|
|
14050
14934
|
range_order_total_fees_earned: {
|
|
@@ -14091,7 +14975,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14091
14975
|
readonly asset: "USDC";
|
|
14092
14976
|
};
|
|
14093
14977
|
};
|
|
14094
|
-
|
|
14978
|
+
USDT: {
|
|
14095
14979
|
limit_order_fee_hundredth_pips: number;
|
|
14096
14980
|
range_order_fee_hundredth_pips: number;
|
|
14097
14981
|
range_order_total_fees_earned: {
|
|
@@ -14138,7 +15022,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14138
15022
|
readonly asset: "USDC";
|
|
14139
15023
|
};
|
|
14140
15024
|
};
|
|
14141
|
-
|
|
15025
|
+
WBTC: {
|
|
14142
15026
|
limit_order_fee_hundredth_pips: number;
|
|
14143
15027
|
range_order_fee_hundredth_pips: number;
|
|
14144
15028
|
range_order_total_fees_earned: {
|
|
@@ -14623,6 +15507,30 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14623
15507
|
asset: "USDC";
|
|
14624
15508
|
};
|
|
14625
15509
|
} | null;
|
|
15510
|
+
WBTC: {
|
|
15511
|
+
limit_order_fee_hundredth_pips: number;
|
|
15512
|
+
range_order_fee_hundredth_pips: number;
|
|
15513
|
+
range_order_total_fees_earned: {
|
|
15514
|
+
base: string;
|
|
15515
|
+
quote: string;
|
|
15516
|
+
};
|
|
15517
|
+
limit_order_total_fees_earned: {
|
|
15518
|
+
base: string;
|
|
15519
|
+
quote: string;
|
|
15520
|
+
};
|
|
15521
|
+
range_total_swap_inputs: {
|
|
15522
|
+
base: string;
|
|
15523
|
+
quote: string;
|
|
15524
|
+
};
|
|
15525
|
+
limit_total_swap_inputs: {
|
|
15526
|
+
base: string;
|
|
15527
|
+
quote: string;
|
|
15528
|
+
};
|
|
15529
|
+
quote_asset: {
|
|
15530
|
+
chain: "Ethereum";
|
|
15531
|
+
asset: "USDC";
|
|
15532
|
+
};
|
|
15533
|
+
} | null;
|
|
14626
15534
|
};
|
|
14627
15535
|
Arbitrum: {
|
|
14628
15536
|
ETH: {
|
|
@@ -14811,6 +15719,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14811
15719
|
USDC: bigint;
|
|
14812
15720
|
FLIP: bigint;
|
|
14813
15721
|
USDT: bigint;
|
|
15722
|
+
WBTC: bigint;
|
|
14814
15723
|
};
|
|
14815
15724
|
Arbitrum: {
|
|
14816
15725
|
ETH: bigint;
|
|
@@ -14835,6 +15744,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14835
15744
|
USDC: bigint | null;
|
|
14836
15745
|
FLIP: bigint | null;
|
|
14837
15746
|
USDT: bigint | null;
|
|
15747
|
+
WBTC: bigint | null;
|
|
14838
15748
|
};
|
|
14839
15749
|
Arbitrum: {
|
|
14840
15750
|
ETH: bigint | null;
|
|
@@ -14859,6 +15769,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14859
15769
|
USDC: bigint | null;
|
|
14860
15770
|
FLIP: bigint | null;
|
|
14861
15771
|
USDT: bigint | null;
|
|
15772
|
+
WBTC: bigint | null;
|
|
14862
15773
|
};
|
|
14863
15774
|
Arbitrum: {
|
|
14864
15775
|
ETH: bigint | null;
|
|
@@ -14890,6 +15801,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14890
15801
|
USDC: bigint;
|
|
14891
15802
|
FLIP: bigint;
|
|
14892
15803
|
USDT: bigint;
|
|
15804
|
+
WBTC: bigint;
|
|
14893
15805
|
};
|
|
14894
15806
|
Arbitrum: {
|
|
14895
15807
|
ETH: bigint;
|
|
@@ -14936,6 +15848,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14936
15848
|
USDC: bigint;
|
|
14937
15849
|
FLIP: bigint;
|
|
14938
15850
|
USDT: bigint;
|
|
15851
|
+
WBTC: bigint;
|
|
14939
15852
|
};
|
|
14940
15853
|
Arbitrum: {
|
|
14941
15854
|
ETH: bigint;
|
|
@@ -14962,6 +15875,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14962
15875
|
USDC: bigint | null;
|
|
14963
15876
|
FLIP: bigint | null;
|
|
14964
15877
|
USDT: bigint | null;
|
|
15878
|
+
WBTC: bigint | null;
|
|
14965
15879
|
};
|
|
14966
15880
|
Arbitrum: {
|
|
14967
15881
|
ETH: bigint | null;
|
|
@@ -14993,6 +15907,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14993
15907
|
USDC: bigint;
|
|
14994
15908
|
FLIP: bigint;
|
|
14995
15909
|
USDT: bigint;
|
|
15910
|
+
WBTC: bigint;
|
|
14996
15911
|
};
|
|
14997
15912
|
Arbitrum: {
|
|
14998
15913
|
ETH: bigint;
|
|
@@ -15023,6 +15938,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15023
15938
|
USDC: bigint;
|
|
15024
15939
|
FLIP: bigint;
|
|
15025
15940
|
USDT: bigint;
|
|
15941
|
+
WBTC: bigint;
|
|
15026
15942
|
};
|
|
15027
15943
|
Arbitrum: {
|
|
15028
15944
|
ETH: bigint;
|
|
@@ -15052,6 +15968,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15052
15968
|
USDC: bigint | null;
|
|
15053
15969
|
FLIP: bigint | null;
|
|
15054
15970
|
USDT: bigint | null;
|
|
15971
|
+
WBTC: bigint | null;
|
|
15055
15972
|
};
|
|
15056
15973
|
Arbitrum: {
|
|
15057
15974
|
ETH: bigint | null;
|
|
@@ -15265,6 +16182,53 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15265
16182
|
readonly asset: "USDC";
|
|
15266
16183
|
};
|
|
15267
16184
|
};
|
|
16185
|
+
WBTC: {
|
|
16186
|
+
limit_order_fee_hundredth_pips: number;
|
|
16187
|
+
range_order_fee_hundredth_pips: number;
|
|
16188
|
+
range_order_total_fees_earned: {
|
|
16189
|
+
base: bigint;
|
|
16190
|
+
quote: bigint;
|
|
16191
|
+
};
|
|
16192
|
+
limit_order_total_fees_earned: {
|
|
16193
|
+
base: bigint;
|
|
16194
|
+
quote: bigint;
|
|
16195
|
+
};
|
|
16196
|
+
range_total_swap_inputs: {
|
|
16197
|
+
base: bigint;
|
|
16198
|
+
quote: bigint;
|
|
16199
|
+
};
|
|
16200
|
+
limit_total_swap_inputs: {
|
|
16201
|
+
base: bigint;
|
|
16202
|
+
quote: bigint;
|
|
16203
|
+
};
|
|
16204
|
+
quote_asset: {
|
|
16205
|
+
chain: "Ethereum";
|
|
16206
|
+
asset: "USDC";
|
|
16207
|
+
};
|
|
16208
|
+
} | {
|
|
16209
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
16210
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
16211
|
+
readonly range_order_total_fees_earned: {
|
|
16212
|
+
readonly base: "0x0";
|
|
16213
|
+
readonly quote: "0x0";
|
|
16214
|
+
};
|
|
16215
|
+
readonly limit_order_total_fees_earned: {
|
|
16216
|
+
readonly base: "0x0";
|
|
16217
|
+
readonly quote: "0x0";
|
|
16218
|
+
};
|
|
16219
|
+
readonly range_total_swap_inputs: {
|
|
16220
|
+
readonly base: "0x0";
|
|
16221
|
+
readonly quote: "0x0";
|
|
16222
|
+
};
|
|
16223
|
+
readonly limit_total_swap_inputs: {
|
|
16224
|
+
readonly base: "0x0";
|
|
16225
|
+
readonly quote: "0x0";
|
|
16226
|
+
};
|
|
16227
|
+
readonly quote_asset: {
|
|
16228
|
+
readonly chain: "Ethereum";
|
|
16229
|
+
readonly asset: "USDC";
|
|
16230
|
+
};
|
|
16231
|
+
};
|
|
15268
16232
|
};
|
|
15269
16233
|
Arbitrum: {
|
|
15270
16234
|
ETH: {
|
|
@@ -15614,6 +16578,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15614
16578
|
USDC: string | number;
|
|
15615
16579
|
FLIP: string | number;
|
|
15616
16580
|
USDT: string | number;
|
|
16581
|
+
WBTC: string | number;
|
|
15617
16582
|
};
|
|
15618
16583
|
Arbitrum: {
|
|
15619
16584
|
ETH: string | number;
|
|
@@ -15638,6 +16603,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15638
16603
|
USDC: string | number | null;
|
|
15639
16604
|
FLIP: string | number | null;
|
|
15640
16605
|
USDT: string | number | null;
|
|
16606
|
+
WBTC: string | number | null;
|
|
15641
16607
|
};
|
|
15642
16608
|
Arbitrum: {
|
|
15643
16609
|
ETH: string | number | null;
|
|
@@ -15662,6 +16628,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15662
16628
|
USDC: string | number | null;
|
|
15663
16629
|
FLIP: string | number | null;
|
|
15664
16630
|
USDT: string | number | null;
|
|
16631
|
+
WBTC: string | number | null;
|
|
15665
16632
|
};
|
|
15666
16633
|
Arbitrum: {
|
|
15667
16634
|
ETH: string | number | null;
|
|
@@ -15693,6 +16660,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15693
16660
|
USDC: string | number;
|
|
15694
16661
|
FLIP: string | number;
|
|
15695
16662
|
USDT: string | number;
|
|
16663
|
+
WBTC: string | number;
|
|
15696
16664
|
};
|
|
15697
16665
|
Arbitrum: {
|
|
15698
16666
|
ETH: string | number;
|
|
@@ -15740,6 +16708,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15740
16708
|
USDC: string | number | null;
|
|
15741
16709
|
FLIP: string | number | null;
|
|
15742
16710
|
USDT: string | number | null;
|
|
16711
|
+
WBTC: string | number | null;
|
|
15743
16712
|
};
|
|
15744
16713
|
Arbitrum: {
|
|
15745
16714
|
ETH: string | number | null;
|
|
@@ -15771,6 +16740,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15771
16740
|
USDC: string | number;
|
|
15772
16741
|
FLIP: string | number;
|
|
15773
16742
|
USDT: string | number;
|
|
16743
|
+
WBTC: string | number;
|
|
15774
16744
|
};
|
|
15775
16745
|
Arbitrum: {
|
|
15776
16746
|
ETH: string | number;
|
|
@@ -15801,6 +16771,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15801
16771
|
USDC: string | number;
|
|
15802
16772
|
FLIP: string | number;
|
|
15803
16773
|
USDT: string | number;
|
|
16774
|
+
WBTC: string | number;
|
|
15804
16775
|
};
|
|
15805
16776
|
Arbitrum: {
|
|
15806
16777
|
ETH: string | number;
|
|
@@ -15830,6 +16801,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15830
16801
|
USDC: string | number | null;
|
|
15831
16802
|
FLIP: string | number | null;
|
|
15832
16803
|
USDT: string | number | null;
|
|
16804
|
+
WBTC: string | number | null;
|
|
15833
16805
|
};
|
|
15834
16806
|
Arbitrum: {
|
|
15835
16807
|
ETH: string | number | null;
|
|
@@ -15951,6 +16923,30 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
15951
16923
|
asset: "USDC";
|
|
15952
16924
|
};
|
|
15953
16925
|
} | null;
|
|
16926
|
+
WBTC: {
|
|
16927
|
+
limit_order_fee_hundredth_pips: number;
|
|
16928
|
+
range_order_fee_hundredth_pips: number;
|
|
16929
|
+
range_order_total_fees_earned: {
|
|
16930
|
+
base: string;
|
|
16931
|
+
quote: string;
|
|
16932
|
+
};
|
|
16933
|
+
limit_order_total_fees_earned: {
|
|
16934
|
+
base: string;
|
|
16935
|
+
quote: string;
|
|
16936
|
+
};
|
|
16937
|
+
range_total_swap_inputs: {
|
|
16938
|
+
base: string;
|
|
16939
|
+
quote: string;
|
|
16940
|
+
};
|
|
16941
|
+
limit_total_swap_inputs: {
|
|
16942
|
+
base: string;
|
|
16943
|
+
quote: string;
|
|
16944
|
+
};
|
|
16945
|
+
quote_asset: {
|
|
16946
|
+
chain: "Ethereum";
|
|
16947
|
+
asset: "USDC";
|
|
16948
|
+
};
|
|
16949
|
+
} | null;
|
|
15954
16950
|
};
|
|
15955
16951
|
Arbitrum: {
|
|
15956
16952
|
ETH: {
|
|
@@ -16590,16 +17586,19 @@ declare const accountInfoCommon: {
|
|
|
16590
17586
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
16591
17587
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
16592
17588
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17589
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
16593
17590
|
}, "strip", z.ZodTypeAny, {
|
|
16594
17591
|
ETH: bigint;
|
|
16595
17592
|
USDC: bigint;
|
|
16596
17593
|
FLIP: bigint;
|
|
16597
17594
|
USDT: bigint;
|
|
17595
|
+
WBTC: bigint;
|
|
16598
17596
|
}, {
|
|
16599
17597
|
ETH: string | number;
|
|
16600
17598
|
USDC: string | number;
|
|
16601
17599
|
FLIP: string | number;
|
|
16602
17600
|
USDT: string | number;
|
|
17601
|
+
WBTC: string | number;
|
|
16603
17602
|
}>;
|
|
16604
17603
|
Polkadot: z.ZodObject<{
|
|
16605
17604
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -16650,6 +17649,7 @@ declare const accountInfoCommon: {
|
|
|
16650
17649
|
USDC: bigint;
|
|
16651
17650
|
FLIP: bigint;
|
|
16652
17651
|
USDT: bigint;
|
|
17652
|
+
WBTC: bigint;
|
|
16653
17653
|
};
|
|
16654
17654
|
Arbitrum: {
|
|
16655
17655
|
ETH: bigint;
|
|
@@ -16673,6 +17673,7 @@ declare const accountInfoCommon: {
|
|
|
16673
17673
|
USDC: string | number;
|
|
16674
17674
|
FLIP: string | number;
|
|
16675
17675
|
USDT: string | number;
|
|
17676
|
+
WBTC: string | number;
|
|
16676
17677
|
};
|
|
16677
17678
|
Arbitrum: {
|
|
16678
17679
|
ETH: string | number;
|
|
@@ -16729,16 +17730,19 @@ declare const unregistered: z.ZodObject<{
|
|
|
16729
17730
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
16730
17731
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
16731
17732
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17733
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
16732
17734
|
}, "strip", z.ZodTypeAny, {
|
|
16733
17735
|
ETH: bigint;
|
|
16734
17736
|
USDC: bigint;
|
|
16735
17737
|
FLIP: bigint;
|
|
16736
17738
|
USDT: bigint;
|
|
17739
|
+
WBTC: bigint;
|
|
16737
17740
|
}, {
|
|
16738
17741
|
ETH: string | number;
|
|
16739
17742
|
USDC: string | number;
|
|
16740
17743
|
FLIP: string | number;
|
|
16741
17744
|
USDT: string | number;
|
|
17745
|
+
WBTC: string | number;
|
|
16742
17746
|
}>;
|
|
16743
17747
|
Polkadot: z.ZodObject<{
|
|
16744
17748
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -16789,6 +17793,7 @@ declare const unregistered: z.ZodObject<{
|
|
|
16789
17793
|
USDC: bigint;
|
|
16790
17794
|
FLIP: bigint;
|
|
16791
17795
|
USDT: bigint;
|
|
17796
|
+
WBTC: bigint;
|
|
16792
17797
|
};
|
|
16793
17798
|
Arbitrum: {
|
|
16794
17799
|
ETH: bigint;
|
|
@@ -16812,6 +17817,7 @@ declare const unregistered: z.ZodObject<{
|
|
|
16812
17817
|
USDC: string | number;
|
|
16813
17818
|
FLIP: string | number;
|
|
16814
17819
|
USDT: string | number;
|
|
17820
|
+
WBTC: string | number;
|
|
16815
17821
|
};
|
|
16816
17822
|
Arbitrum: {
|
|
16817
17823
|
ETH: string | number;
|
|
@@ -16864,6 +17870,7 @@ declare const unregistered: z.ZodObject<{
|
|
|
16864
17870
|
USDC: bigint;
|
|
16865
17871
|
FLIP: bigint;
|
|
16866
17872
|
USDT: bigint;
|
|
17873
|
+
WBTC: bigint;
|
|
16867
17874
|
};
|
|
16868
17875
|
Arbitrum: {
|
|
16869
17876
|
ETH: bigint;
|
|
@@ -16904,6 +17911,7 @@ declare const unregistered: z.ZodObject<{
|
|
|
16904
17911
|
USDC: string | number;
|
|
16905
17912
|
FLIP: string | number;
|
|
16906
17913
|
USDT: string | number;
|
|
17914
|
+
WBTC: string | number;
|
|
16907
17915
|
};
|
|
16908
17916
|
Arbitrum: {
|
|
16909
17917
|
ETH: string | number;
|
|
@@ -16947,16 +17955,19 @@ declare const broker: z.ZodObject<{
|
|
|
16947
17955
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
16948
17956
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
16949
17957
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17958
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
16950
17959
|
}, "strip", z.ZodTypeAny, {
|
|
16951
17960
|
ETH: bigint;
|
|
16952
17961
|
USDC: bigint;
|
|
16953
17962
|
FLIP: bigint;
|
|
16954
17963
|
USDT: bigint;
|
|
17964
|
+
WBTC: bigint;
|
|
16955
17965
|
}, {
|
|
16956
17966
|
ETH: string | number;
|
|
16957
17967
|
USDC: string | number;
|
|
16958
17968
|
FLIP: string | number;
|
|
16959
17969
|
USDT: string | number;
|
|
17970
|
+
WBTC: string | number;
|
|
16960
17971
|
}>;
|
|
16961
17972
|
Polkadot: z.ZodObject<{
|
|
16962
17973
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -17007,6 +18018,7 @@ declare const broker: z.ZodObject<{
|
|
|
17007
18018
|
USDC: bigint;
|
|
17008
18019
|
FLIP: bigint;
|
|
17009
18020
|
USDT: bigint;
|
|
18021
|
+
WBTC: bigint;
|
|
17010
18022
|
};
|
|
17011
18023
|
Arbitrum: {
|
|
17012
18024
|
ETH: bigint;
|
|
@@ -17030,6 +18042,7 @@ declare const broker: z.ZodObject<{
|
|
|
17030
18042
|
USDC: string | number;
|
|
17031
18043
|
FLIP: string | number;
|
|
17032
18044
|
USDT: string | number;
|
|
18045
|
+
WBTC: string | number;
|
|
17033
18046
|
};
|
|
17034
18047
|
Arbitrum: {
|
|
17035
18048
|
ETH: string | number;
|
|
@@ -17074,16 +18087,19 @@ declare const broker: z.ZodObject<{
|
|
|
17074
18087
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17075
18088
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17076
18089
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
18090
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17077
18091
|
}, "strip", z.ZodTypeAny, {
|
|
17078
18092
|
ETH: bigint;
|
|
17079
18093
|
USDC: bigint;
|
|
17080
18094
|
FLIP: bigint;
|
|
17081
18095
|
USDT: bigint;
|
|
18096
|
+
WBTC: bigint;
|
|
17082
18097
|
}, {
|
|
17083
18098
|
ETH: string | number;
|
|
17084
18099
|
USDC: string | number;
|
|
17085
18100
|
FLIP: string | number;
|
|
17086
18101
|
USDT: string | number;
|
|
18102
|
+
WBTC: string | number;
|
|
17087
18103
|
}>;
|
|
17088
18104
|
Polkadot: z.ZodObject<{
|
|
17089
18105
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -17134,6 +18150,7 @@ declare const broker: z.ZodObject<{
|
|
|
17134
18150
|
USDC: bigint;
|
|
17135
18151
|
FLIP: bigint;
|
|
17136
18152
|
USDT: bigint;
|
|
18153
|
+
WBTC: bigint;
|
|
17137
18154
|
};
|
|
17138
18155
|
Arbitrum: {
|
|
17139
18156
|
ETH: bigint;
|
|
@@ -17157,6 +18174,7 @@ declare const broker: z.ZodObject<{
|
|
|
17157
18174
|
USDC: string | number;
|
|
17158
18175
|
FLIP: string | number;
|
|
17159
18176
|
USDT: string | number;
|
|
18177
|
+
WBTC: string | number;
|
|
17160
18178
|
};
|
|
17161
18179
|
Arbitrum: {
|
|
17162
18180
|
ETH: string | number;
|
|
@@ -17209,6 +18227,7 @@ declare const broker: z.ZodObject<{
|
|
|
17209
18227
|
USDC: bigint;
|
|
17210
18228
|
FLIP: bigint;
|
|
17211
18229
|
USDT: bigint;
|
|
18230
|
+
WBTC: bigint;
|
|
17212
18231
|
};
|
|
17213
18232
|
Arbitrum: {
|
|
17214
18233
|
ETH: bigint;
|
|
@@ -17235,6 +18254,7 @@ declare const broker: z.ZodObject<{
|
|
|
17235
18254
|
USDC: bigint;
|
|
17236
18255
|
FLIP: bigint;
|
|
17237
18256
|
USDT: bigint;
|
|
18257
|
+
WBTC: bigint;
|
|
17238
18258
|
};
|
|
17239
18259
|
Arbitrum: {
|
|
17240
18260
|
ETH: bigint;
|
|
@@ -17279,6 +18299,7 @@ declare const broker: z.ZodObject<{
|
|
|
17279
18299
|
USDC: string | number;
|
|
17280
18300
|
FLIP: string | number;
|
|
17281
18301
|
USDT: string | number;
|
|
18302
|
+
WBTC: string | number;
|
|
17282
18303
|
};
|
|
17283
18304
|
Arbitrum: {
|
|
17284
18305
|
ETH: string | number;
|
|
@@ -17305,6 +18326,7 @@ declare const broker: z.ZodObject<{
|
|
|
17305
18326
|
USDC: string | number;
|
|
17306
18327
|
FLIP: string | number;
|
|
17307
18328
|
USDT: string | number;
|
|
18329
|
+
WBTC: string | number;
|
|
17308
18330
|
};
|
|
17309
18331
|
Arbitrum: {
|
|
17310
18332
|
ETH: string | number;
|
|
@@ -17384,16 +18406,19 @@ declare const operator: z.ZodObject<{
|
|
|
17384
18406
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17385
18407
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17386
18408
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
18409
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17387
18410
|
}, "strip", z.ZodTypeAny, {
|
|
17388
18411
|
ETH: bigint;
|
|
17389
18412
|
USDC: bigint;
|
|
17390
18413
|
FLIP: bigint;
|
|
17391
18414
|
USDT: bigint;
|
|
18415
|
+
WBTC: bigint;
|
|
17392
18416
|
}, {
|
|
17393
18417
|
ETH: string | number;
|
|
17394
18418
|
USDC: string | number;
|
|
17395
18419
|
FLIP: string | number;
|
|
17396
18420
|
USDT: string | number;
|
|
18421
|
+
WBTC: string | number;
|
|
17397
18422
|
}>;
|
|
17398
18423
|
Polkadot: z.ZodObject<{
|
|
17399
18424
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -17444,6 +18469,7 @@ declare const operator: z.ZodObject<{
|
|
|
17444
18469
|
USDC: bigint;
|
|
17445
18470
|
FLIP: bigint;
|
|
17446
18471
|
USDT: bigint;
|
|
18472
|
+
WBTC: bigint;
|
|
17447
18473
|
};
|
|
17448
18474
|
Arbitrum: {
|
|
17449
18475
|
ETH: bigint;
|
|
@@ -17467,6 +18493,7 @@ declare const operator: z.ZodObject<{
|
|
|
17467
18493
|
USDC: string | number;
|
|
17468
18494
|
FLIP: string | number;
|
|
17469
18495
|
USDT: string | number;
|
|
18496
|
+
WBTC: string | number;
|
|
17470
18497
|
};
|
|
17471
18498
|
Arbitrum: {
|
|
17472
18499
|
ETH: string | number;
|
|
@@ -17519,6 +18546,7 @@ declare const operator: z.ZodObject<{
|
|
|
17519
18546
|
USDC: bigint;
|
|
17520
18547
|
FLIP: bigint;
|
|
17521
18548
|
USDT: bigint;
|
|
18549
|
+
WBTC: bigint;
|
|
17522
18550
|
};
|
|
17523
18551
|
Arbitrum: {
|
|
17524
18552
|
ETH: bigint;
|
|
@@ -17573,6 +18601,7 @@ declare const operator: z.ZodObject<{
|
|
|
17573
18601
|
USDC: string | number;
|
|
17574
18602
|
FLIP: string | number;
|
|
17575
18603
|
USDT: string | number;
|
|
18604
|
+
WBTC: string | number;
|
|
17576
18605
|
};
|
|
17577
18606
|
Arbitrum: {
|
|
17578
18607
|
ETH: string | number;
|
|
@@ -17650,16 +18679,19 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
17650
18679
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17651
18680
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17652
18681
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
18682
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
17653
18683
|
}, "strip", z.ZodTypeAny, {
|
|
17654
18684
|
ETH: bigint;
|
|
17655
18685
|
USDC: bigint;
|
|
17656
18686
|
FLIP: bigint;
|
|
17657
18687
|
USDT: bigint;
|
|
18688
|
+
WBTC: bigint;
|
|
17658
18689
|
}, {
|
|
17659
18690
|
ETH: string | number;
|
|
17660
18691
|
USDC: string | number;
|
|
17661
18692
|
FLIP: string | number;
|
|
17662
18693
|
USDT: string | number;
|
|
18694
|
+
WBTC: string | number;
|
|
17663
18695
|
}>;
|
|
17664
18696
|
Polkadot: z.ZodObject<{
|
|
17665
18697
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -17710,6 +18742,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
17710
18742
|
USDC: bigint;
|
|
17711
18743
|
FLIP: bigint;
|
|
17712
18744
|
USDT: bigint;
|
|
18745
|
+
WBTC: bigint;
|
|
17713
18746
|
};
|
|
17714
18747
|
Arbitrum: {
|
|
17715
18748
|
ETH: bigint;
|
|
@@ -17733,6 +18766,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
17733
18766
|
USDC: string | number;
|
|
17734
18767
|
FLIP: string | number;
|
|
17735
18768
|
USDT: string | number;
|
|
18769
|
+
WBTC: string | number;
|
|
17736
18770
|
};
|
|
17737
18771
|
Arbitrum: {
|
|
17738
18772
|
ETH: string | number;
|
|
@@ -17863,6 +18897,25 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
17863
18897
|
in_use_balance: string;
|
|
17864
18898
|
is_withdrawing: boolean;
|
|
17865
18899
|
}>, "many">;
|
|
18900
|
+
WBTC: z.ZodArray<z.ZodObject<{
|
|
18901
|
+
fee_tier: z.ZodNumber;
|
|
18902
|
+
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
18903
|
+
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
18904
|
+
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
18905
|
+
is_withdrawing: z.ZodBoolean;
|
|
18906
|
+
}, "strip", z.ZodTypeAny, {
|
|
18907
|
+
fee_tier: number;
|
|
18908
|
+
total_balance: bigint;
|
|
18909
|
+
available_balance: bigint;
|
|
18910
|
+
in_use_balance: bigint;
|
|
18911
|
+
is_withdrawing: boolean;
|
|
18912
|
+
}, {
|
|
18913
|
+
fee_tier: number;
|
|
18914
|
+
total_balance: string;
|
|
18915
|
+
available_balance: string;
|
|
18916
|
+
in_use_balance: string;
|
|
18917
|
+
is_withdrawing: boolean;
|
|
18918
|
+
}>, "many">;
|
|
17866
18919
|
}, "strip", z.ZodTypeAny, {
|
|
17867
18920
|
ETH: {
|
|
17868
18921
|
fee_tier: number;
|
|
@@ -17892,6 +18945,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
17892
18945
|
in_use_balance: bigint;
|
|
17893
18946
|
is_withdrawing: boolean;
|
|
17894
18947
|
}[];
|
|
18948
|
+
WBTC: {
|
|
18949
|
+
fee_tier: number;
|
|
18950
|
+
total_balance: bigint;
|
|
18951
|
+
available_balance: bigint;
|
|
18952
|
+
in_use_balance: bigint;
|
|
18953
|
+
is_withdrawing: boolean;
|
|
18954
|
+
}[];
|
|
17895
18955
|
}, {
|
|
17896
18956
|
ETH: {
|
|
17897
18957
|
fee_tier: number;
|
|
@@ -17921,6 +18981,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
17921
18981
|
in_use_balance: string;
|
|
17922
18982
|
is_withdrawing: boolean;
|
|
17923
18983
|
}[];
|
|
18984
|
+
WBTC: {
|
|
18985
|
+
fee_tier: number;
|
|
18986
|
+
total_balance: string;
|
|
18987
|
+
available_balance: string;
|
|
18988
|
+
in_use_balance: string;
|
|
18989
|
+
is_withdrawing: boolean;
|
|
18990
|
+
}[];
|
|
17924
18991
|
}>;
|
|
17925
18992
|
Polkadot: z.ZodObject<{
|
|
17926
18993
|
DOT: z.ZodArray<z.ZodObject<{
|
|
@@ -18241,6 +19308,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
18241
19308
|
in_use_balance: bigint;
|
|
18242
19309
|
is_withdrawing: boolean;
|
|
18243
19310
|
}[];
|
|
19311
|
+
WBTC: {
|
|
19312
|
+
fee_tier: number;
|
|
19313
|
+
total_balance: bigint;
|
|
19314
|
+
available_balance: bigint;
|
|
19315
|
+
in_use_balance: bigint;
|
|
19316
|
+
is_withdrawing: boolean;
|
|
19317
|
+
}[];
|
|
18244
19318
|
};
|
|
18245
19319
|
Arbitrum: {
|
|
18246
19320
|
ETH: {
|
|
@@ -18336,6 +19410,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
18336
19410
|
in_use_balance: string;
|
|
18337
19411
|
is_withdrawing: boolean;
|
|
18338
19412
|
}[];
|
|
19413
|
+
WBTC: {
|
|
19414
|
+
fee_tier: number;
|
|
19415
|
+
total_balance: string;
|
|
19416
|
+
available_balance: string;
|
|
19417
|
+
in_use_balance: string;
|
|
19418
|
+
is_withdrawing: boolean;
|
|
19419
|
+
}[];
|
|
18339
19420
|
};
|
|
18340
19421
|
Arbitrum: {
|
|
18341
19422
|
ETH: {
|
|
@@ -18677,16 +19758,19 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
18677
19758
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
18678
19759
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
18679
19760
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19761
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
18680
19762
|
}, "strip", z.ZodTypeAny, {
|
|
18681
19763
|
ETH: bigint;
|
|
18682
19764
|
USDC: bigint;
|
|
18683
19765
|
FLIP: bigint;
|
|
18684
19766
|
USDT: bigint;
|
|
19767
|
+
WBTC: bigint;
|
|
18685
19768
|
}, {
|
|
18686
19769
|
ETH: string | number;
|
|
18687
19770
|
USDC: string | number;
|
|
18688
19771
|
FLIP: string | number;
|
|
18689
19772
|
USDT: string | number;
|
|
19773
|
+
WBTC: string | number;
|
|
18690
19774
|
}>;
|
|
18691
19775
|
Polkadot: z.ZodObject<{
|
|
18692
19776
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -18737,6 +19821,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
18737
19821
|
USDC: bigint;
|
|
18738
19822
|
FLIP: bigint;
|
|
18739
19823
|
USDT: bigint;
|
|
19824
|
+
WBTC: bigint;
|
|
18740
19825
|
};
|
|
18741
19826
|
Arbitrum: {
|
|
18742
19827
|
ETH: bigint;
|
|
@@ -18760,6 +19845,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
18760
19845
|
USDC: string | number;
|
|
18761
19846
|
FLIP: string | number;
|
|
18762
19847
|
USDT: string | number;
|
|
19848
|
+
WBTC: string | number;
|
|
18763
19849
|
};
|
|
18764
19850
|
Arbitrum: {
|
|
18765
19851
|
ETH: string | number;
|
|
@@ -18812,6 +19898,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
18812
19898
|
USDC: bigint;
|
|
18813
19899
|
FLIP: bigint;
|
|
18814
19900
|
USDT: bigint;
|
|
19901
|
+
WBTC: bigint;
|
|
18815
19902
|
};
|
|
18816
19903
|
Arbitrum: {
|
|
18817
19904
|
ETH: bigint;
|
|
@@ -18838,6 +19925,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
18838
19925
|
USDC: bigint;
|
|
18839
19926
|
FLIP: bigint;
|
|
18840
19927
|
USDT: bigint;
|
|
19928
|
+
WBTC: bigint;
|
|
18841
19929
|
};
|
|
18842
19930
|
Arbitrum: {
|
|
18843
19931
|
ETH: bigint;
|
|
@@ -18899,6 +19987,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
18899
19987
|
in_use_balance: bigint;
|
|
18900
19988
|
is_withdrawing: boolean;
|
|
18901
19989
|
}[];
|
|
19990
|
+
WBTC: {
|
|
19991
|
+
fee_tier: number;
|
|
19992
|
+
total_balance: bigint;
|
|
19993
|
+
available_balance: bigint;
|
|
19994
|
+
in_use_balance: bigint;
|
|
19995
|
+
is_withdrawing: boolean;
|
|
19996
|
+
}[];
|
|
18902
19997
|
};
|
|
18903
19998
|
Arbitrum: {
|
|
18904
19999
|
ETH: {
|
|
@@ -19070,6 +20165,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
19070
20165
|
USDC: string | number;
|
|
19071
20166
|
FLIP: string | number;
|
|
19072
20167
|
USDT: string | number;
|
|
20168
|
+
WBTC: string | number;
|
|
19073
20169
|
};
|
|
19074
20170
|
Arbitrum: {
|
|
19075
20171
|
ETH: string | number;
|
|
@@ -19096,6 +20192,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
19096
20192
|
USDC: string | number;
|
|
19097
20193
|
FLIP: string | number;
|
|
19098
20194
|
USDT: string | number;
|
|
20195
|
+
WBTC: string | number;
|
|
19099
20196
|
};
|
|
19100
20197
|
Arbitrum: {
|
|
19101
20198
|
ETH: string | number;
|
|
@@ -19157,6 +20254,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
19157
20254
|
in_use_balance: string;
|
|
19158
20255
|
is_withdrawing: boolean;
|
|
19159
20256
|
}[];
|
|
20257
|
+
WBTC: {
|
|
20258
|
+
fee_tier: number;
|
|
20259
|
+
total_balance: string;
|
|
20260
|
+
available_balance: string;
|
|
20261
|
+
in_use_balance: string;
|
|
20262
|
+
is_withdrawing: boolean;
|
|
20263
|
+
}[];
|
|
19160
20264
|
};
|
|
19161
20265
|
Arbitrum: {
|
|
19162
20266
|
ETH: {
|
|
@@ -19343,16 +20447,19 @@ declare const validator: z.ZodObject<{
|
|
|
19343
20447
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19344
20448
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19345
20449
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20450
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19346
20451
|
}, "strip", z.ZodTypeAny, {
|
|
19347
20452
|
ETH: bigint;
|
|
19348
20453
|
USDC: bigint;
|
|
19349
20454
|
FLIP: bigint;
|
|
19350
20455
|
USDT: bigint;
|
|
20456
|
+
WBTC: bigint;
|
|
19351
20457
|
}, {
|
|
19352
20458
|
ETH: string | number;
|
|
19353
20459
|
USDC: string | number;
|
|
19354
20460
|
FLIP: string | number;
|
|
19355
20461
|
USDT: string | number;
|
|
20462
|
+
WBTC: string | number;
|
|
19356
20463
|
}>;
|
|
19357
20464
|
Polkadot: z.ZodObject<{
|
|
19358
20465
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -19403,6 +20510,7 @@ declare const validator: z.ZodObject<{
|
|
|
19403
20510
|
USDC: bigint;
|
|
19404
20511
|
FLIP: bigint;
|
|
19405
20512
|
USDT: bigint;
|
|
20513
|
+
WBTC: bigint;
|
|
19406
20514
|
};
|
|
19407
20515
|
Arbitrum: {
|
|
19408
20516
|
ETH: bigint;
|
|
@@ -19426,6 +20534,7 @@ declare const validator: z.ZodObject<{
|
|
|
19426
20534
|
USDC: string | number;
|
|
19427
20535
|
FLIP: string | number;
|
|
19428
20536
|
USDT: string | number;
|
|
20537
|
+
WBTC: string | number;
|
|
19429
20538
|
};
|
|
19430
20539
|
Arbitrum: {
|
|
19431
20540
|
ETH: string | number;
|
|
@@ -19478,6 +20587,7 @@ declare const validator: z.ZodObject<{
|
|
|
19478
20587
|
USDC: bigint;
|
|
19479
20588
|
FLIP: bigint;
|
|
19480
20589
|
USDT: bigint;
|
|
20590
|
+
WBTC: bigint;
|
|
19481
20591
|
};
|
|
19482
20592
|
Arbitrum: {
|
|
19483
20593
|
ETH: bigint;
|
|
@@ -19528,6 +20638,7 @@ declare const validator: z.ZodObject<{
|
|
|
19528
20638
|
USDC: string | number;
|
|
19529
20639
|
FLIP: string | number;
|
|
19530
20640
|
USDT: string | number;
|
|
20641
|
+
WBTC: string | number;
|
|
19531
20642
|
};
|
|
19532
20643
|
Arbitrum: {
|
|
19533
20644
|
ETH: string | number;
|
|
@@ -19583,16 +20694,19 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19583
20694
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19584
20695
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19585
20696
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20697
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19586
20698
|
}, "strip", z.ZodTypeAny, {
|
|
19587
20699
|
ETH: bigint;
|
|
19588
20700
|
USDC: bigint;
|
|
19589
20701
|
FLIP: bigint;
|
|
19590
20702
|
USDT: bigint;
|
|
20703
|
+
WBTC: bigint;
|
|
19591
20704
|
}, {
|
|
19592
20705
|
ETH: string | number;
|
|
19593
20706
|
USDC: string | number;
|
|
19594
20707
|
FLIP: string | number;
|
|
19595
20708
|
USDT: string | number;
|
|
20709
|
+
WBTC: string | number;
|
|
19596
20710
|
}>;
|
|
19597
20711
|
Polkadot: z.ZodObject<{
|
|
19598
20712
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -19643,6 +20757,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19643
20757
|
USDC: bigint;
|
|
19644
20758
|
FLIP: bigint;
|
|
19645
20759
|
USDT: bigint;
|
|
20760
|
+
WBTC: bigint;
|
|
19646
20761
|
};
|
|
19647
20762
|
Arbitrum: {
|
|
19648
20763
|
ETH: bigint;
|
|
@@ -19666,6 +20781,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19666
20781
|
USDC: string | number;
|
|
19667
20782
|
FLIP: string | number;
|
|
19668
20783
|
USDT: string | number;
|
|
20784
|
+
WBTC: string | number;
|
|
19669
20785
|
};
|
|
19670
20786
|
Arbitrum: {
|
|
19671
20787
|
ETH: string | number;
|
|
@@ -19718,6 +20834,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19718
20834
|
USDC: bigint;
|
|
19719
20835
|
FLIP: bigint;
|
|
19720
20836
|
USDT: bigint;
|
|
20837
|
+
WBTC: bigint;
|
|
19721
20838
|
};
|
|
19722
20839
|
Arbitrum: {
|
|
19723
20840
|
ETH: bigint;
|
|
@@ -19758,6 +20875,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19758
20875
|
USDC: string | number;
|
|
19759
20876
|
FLIP: string | number;
|
|
19760
20877
|
USDT: string | number;
|
|
20878
|
+
WBTC: string | number;
|
|
19761
20879
|
};
|
|
19762
20880
|
Arbitrum: {
|
|
19763
20881
|
ETH: string | number;
|
|
@@ -19800,16 +20918,19 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19800
20918
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19801
20919
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19802
20920
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20921
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19803
20922
|
}, "strip", z.ZodTypeAny, {
|
|
19804
20923
|
ETH: bigint;
|
|
19805
20924
|
USDC: bigint;
|
|
19806
20925
|
FLIP: bigint;
|
|
19807
20926
|
USDT: bigint;
|
|
20927
|
+
WBTC: bigint;
|
|
19808
20928
|
}, {
|
|
19809
20929
|
ETH: string | number;
|
|
19810
20930
|
USDC: string | number;
|
|
19811
20931
|
FLIP: string | number;
|
|
19812
20932
|
USDT: string | number;
|
|
20933
|
+
WBTC: string | number;
|
|
19813
20934
|
}>;
|
|
19814
20935
|
Polkadot: z.ZodObject<{
|
|
19815
20936
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -19860,6 +20981,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19860
20981
|
USDC: bigint;
|
|
19861
20982
|
FLIP: bigint;
|
|
19862
20983
|
USDT: bigint;
|
|
20984
|
+
WBTC: bigint;
|
|
19863
20985
|
};
|
|
19864
20986
|
Arbitrum: {
|
|
19865
20987
|
ETH: bigint;
|
|
@@ -19883,6 +21005,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19883
21005
|
USDC: string | number;
|
|
19884
21006
|
FLIP: string | number;
|
|
19885
21007
|
USDT: string | number;
|
|
21008
|
+
WBTC: string | number;
|
|
19886
21009
|
};
|
|
19887
21010
|
Arbitrum: {
|
|
19888
21011
|
ETH: string | number;
|
|
@@ -19927,16 +21050,19 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19927
21050
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19928
21051
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19929
21052
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21053
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19930
21054
|
}, "strip", z.ZodTypeAny, {
|
|
19931
21055
|
ETH: bigint;
|
|
19932
21056
|
USDC: bigint;
|
|
19933
21057
|
FLIP: bigint;
|
|
19934
21058
|
USDT: bigint;
|
|
21059
|
+
WBTC: bigint;
|
|
19935
21060
|
}, {
|
|
19936
21061
|
ETH: string | number;
|
|
19937
21062
|
USDC: string | number;
|
|
19938
21063
|
FLIP: string | number;
|
|
19939
21064
|
USDT: string | number;
|
|
21065
|
+
WBTC: string | number;
|
|
19940
21066
|
}>;
|
|
19941
21067
|
Polkadot: z.ZodObject<{
|
|
19942
21068
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -19987,6 +21113,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
19987
21113
|
USDC: bigint;
|
|
19988
21114
|
FLIP: bigint;
|
|
19989
21115
|
USDT: bigint;
|
|
21116
|
+
WBTC: bigint;
|
|
19990
21117
|
};
|
|
19991
21118
|
Arbitrum: {
|
|
19992
21119
|
ETH: bigint;
|
|
@@ -20010,6 +21137,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20010
21137
|
USDC: string | number;
|
|
20011
21138
|
FLIP: string | number;
|
|
20012
21139
|
USDT: string | number;
|
|
21140
|
+
WBTC: string | number;
|
|
20013
21141
|
};
|
|
20014
21142
|
Arbitrum: {
|
|
20015
21143
|
ETH: string | number;
|
|
@@ -20062,6 +21190,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20062
21190
|
USDC: bigint;
|
|
20063
21191
|
FLIP: bigint;
|
|
20064
21192
|
USDT: bigint;
|
|
21193
|
+
WBTC: bigint;
|
|
20065
21194
|
};
|
|
20066
21195
|
Arbitrum: {
|
|
20067
21196
|
ETH: bigint;
|
|
@@ -20088,6 +21217,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20088
21217
|
USDC: bigint;
|
|
20089
21218
|
FLIP: bigint;
|
|
20090
21219
|
USDT: bigint;
|
|
21220
|
+
WBTC: bigint;
|
|
20091
21221
|
};
|
|
20092
21222
|
Arbitrum: {
|
|
20093
21223
|
ETH: bigint;
|
|
@@ -20132,6 +21262,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20132
21262
|
USDC: string | number;
|
|
20133
21263
|
FLIP: string | number;
|
|
20134
21264
|
USDT: string | number;
|
|
21265
|
+
WBTC: string | number;
|
|
20135
21266
|
};
|
|
20136
21267
|
Arbitrum: {
|
|
20137
21268
|
ETH: string | number;
|
|
@@ -20158,6 +21289,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20158
21289
|
USDC: string | number;
|
|
20159
21290
|
FLIP: string | number;
|
|
20160
21291
|
USDT: string | number;
|
|
21292
|
+
WBTC: string | number;
|
|
20161
21293
|
};
|
|
20162
21294
|
Arbitrum: {
|
|
20163
21295
|
ETH: string | number;
|
|
@@ -20236,16 +21368,19 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20236
21368
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20237
21369
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20238
21370
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21371
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20239
21372
|
}, "strip", z.ZodTypeAny, {
|
|
20240
21373
|
ETH: bigint;
|
|
20241
21374
|
USDC: bigint;
|
|
20242
21375
|
FLIP: bigint;
|
|
20243
21376
|
USDT: bigint;
|
|
21377
|
+
WBTC: bigint;
|
|
20244
21378
|
}, {
|
|
20245
21379
|
ETH: string | number;
|
|
20246
21380
|
USDC: string | number;
|
|
20247
21381
|
FLIP: string | number;
|
|
20248
21382
|
USDT: string | number;
|
|
21383
|
+
WBTC: string | number;
|
|
20249
21384
|
}>;
|
|
20250
21385
|
Polkadot: z.ZodObject<{
|
|
20251
21386
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -20296,6 +21431,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20296
21431
|
USDC: bigint;
|
|
20297
21432
|
FLIP: bigint;
|
|
20298
21433
|
USDT: bigint;
|
|
21434
|
+
WBTC: bigint;
|
|
20299
21435
|
};
|
|
20300
21436
|
Arbitrum: {
|
|
20301
21437
|
ETH: bigint;
|
|
@@ -20319,6 +21455,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20319
21455
|
USDC: string | number;
|
|
20320
21456
|
FLIP: string | number;
|
|
20321
21457
|
USDT: string | number;
|
|
21458
|
+
WBTC: string | number;
|
|
20322
21459
|
};
|
|
20323
21460
|
Arbitrum: {
|
|
20324
21461
|
ETH: string | number;
|
|
@@ -20371,6 +21508,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20371
21508
|
USDC: bigint;
|
|
20372
21509
|
FLIP: bigint;
|
|
20373
21510
|
USDT: bigint;
|
|
21511
|
+
WBTC: bigint;
|
|
20374
21512
|
};
|
|
20375
21513
|
Arbitrum: {
|
|
20376
21514
|
ETH: bigint;
|
|
@@ -20425,6 +21563,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20425
21563
|
USDC: string | number;
|
|
20426
21564
|
FLIP: string | number;
|
|
20427
21565
|
USDT: string | number;
|
|
21566
|
+
WBTC: string | number;
|
|
20428
21567
|
};
|
|
20429
21568
|
Arbitrum: {
|
|
20430
21569
|
ETH: string | number;
|
|
@@ -20501,16 +21640,19 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20501
21640
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20502
21641
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20503
21642
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21643
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20504
21644
|
}, "strip", z.ZodTypeAny, {
|
|
20505
21645
|
ETH: bigint;
|
|
20506
21646
|
USDC: bigint;
|
|
20507
21647
|
FLIP: bigint;
|
|
20508
21648
|
USDT: bigint;
|
|
21649
|
+
WBTC: bigint;
|
|
20509
21650
|
}, {
|
|
20510
21651
|
ETH: string | number;
|
|
20511
21652
|
USDC: string | number;
|
|
20512
21653
|
FLIP: string | number;
|
|
20513
21654
|
USDT: string | number;
|
|
21655
|
+
WBTC: string | number;
|
|
20514
21656
|
}>;
|
|
20515
21657
|
Polkadot: z.ZodObject<{
|
|
20516
21658
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -20561,6 +21703,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20561
21703
|
USDC: bigint;
|
|
20562
21704
|
FLIP: bigint;
|
|
20563
21705
|
USDT: bigint;
|
|
21706
|
+
WBTC: bigint;
|
|
20564
21707
|
};
|
|
20565
21708
|
Arbitrum: {
|
|
20566
21709
|
ETH: bigint;
|
|
@@ -20584,6 +21727,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20584
21727
|
USDC: string | number;
|
|
20585
21728
|
FLIP: string | number;
|
|
20586
21729
|
USDT: string | number;
|
|
21730
|
+
WBTC: string | number;
|
|
20587
21731
|
};
|
|
20588
21732
|
Arbitrum: {
|
|
20589
21733
|
ETH: string | number;
|
|
@@ -20714,6 +21858,25 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20714
21858
|
in_use_balance: string;
|
|
20715
21859
|
is_withdrawing: boolean;
|
|
20716
21860
|
}>, "many">;
|
|
21861
|
+
WBTC: z.ZodArray<z.ZodObject<{
|
|
21862
|
+
fee_tier: z.ZodNumber;
|
|
21863
|
+
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
21864
|
+
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
21865
|
+
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
21866
|
+
is_withdrawing: z.ZodBoolean;
|
|
21867
|
+
}, "strip", z.ZodTypeAny, {
|
|
21868
|
+
fee_tier: number;
|
|
21869
|
+
total_balance: bigint;
|
|
21870
|
+
available_balance: bigint;
|
|
21871
|
+
in_use_balance: bigint;
|
|
21872
|
+
is_withdrawing: boolean;
|
|
21873
|
+
}, {
|
|
21874
|
+
fee_tier: number;
|
|
21875
|
+
total_balance: string;
|
|
21876
|
+
available_balance: string;
|
|
21877
|
+
in_use_balance: string;
|
|
21878
|
+
is_withdrawing: boolean;
|
|
21879
|
+
}>, "many">;
|
|
20717
21880
|
}, "strip", z.ZodTypeAny, {
|
|
20718
21881
|
ETH: {
|
|
20719
21882
|
fee_tier: number;
|
|
@@ -20743,6 +21906,13 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20743
21906
|
in_use_balance: bigint;
|
|
20744
21907
|
is_withdrawing: boolean;
|
|
20745
21908
|
}[];
|
|
21909
|
+
WBTC: {
|
|
21910
|
+
fee_tier: number;
|
|
21911
|
+
total_balance: bigint;
|
|
21912
|
+
available_balance: bigint;
|
|
21913
|
+
in_use_balance: bigint;
|
|
21914
|
+
is_withdrawing: boolean;
|
|
21915
|
+
}[];
|
|
20746
21916
|
}, {
|
|
20747
21917
|
ETH: {
|
|
20748
21918
|
fee_tier: number;
|
|
@@ -20772,6 +21942,13 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
20772
21942
|
in_use_balance: string;
|
|
20773
21943
|
is_withdrawing: boolean;
|
|
20774
21944
|
}[];
|
|
21945
|
+
WBTC: {
|
|
21946
|
+
fee_tier: number;
|
|
21947
|
+
total_balance: string;
|
|
21948
|
+
available_balance: string;
|
|
21949
|
+
in_use_balance: string;
|
|
21950
|
+
is_withdrawing: boolean;
|
|
21951
|
+
}[];
|
|
20775
21952
|
}>;
|
|
20776
21953
|
Polkadot: z.ZodObject<{
|
|
20777
21954
|
DOT: z.ZodArray<z.ZodObject<{
|
|
@@ -21092,6 +22269,13 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21092
22269
|
in_use_balance: bigint;
|
|
21093
22270
|
is_withdrawing: boolean;
|
|
21094
22271
|
}[];
|
|
22272
|
+
WBTC: {
|
|
22273
|
+
fee_tier: number;
|
|
22274
|
+
total_balance: bigint;
|
|
22275
|
+
available_balance: bigint;
|
|
22276
|
+
in_use_balance: bigint;
|
|
22277
|
+
is_withdrawing: boolean;
|
|
22278
|
+
}[];
|
|
21095
22279
|
};
|
|
21096
22280
|
Arbitrum: {
|
|
21097
22281
|
ETH: {
|
|
@@ -21187,6 +22371,13 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21187
22371
|
in_use_balance: string;
|
|
21188
22372
|
is_withdrawing: boolean;
|
|
21189
22373
|
}[];
|
|
22374
|
+
WBTC: {
|
|
22375
|
+
fee_tier: number;
|
|
22376
|
+
total_balance: string;
|
|
22377
|
+
available_balance: string;
|
|
22378
|
+
in_use_balance: string;
|
|
22379
|
+
is_withdrawing: boolean;
|
|
22380
|
+
}[];
|
|
21190
22381
|
};
|
|
21191
22382
|
Arbitrum: {
|
|
21192
22383
|
ETH: {
|
|
@@ -21528,16 +22719,19 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21528
22719
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21529
22720
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21530
22721
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22722
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21531
22723
|
}, "strip", z.ZodTypeAny, {
|
|
21532
22724
|
ETH: bigint;
|
|
21533
22725
|
USDC: bigint;
|
|
21534
22726
|
FLIP: bigint;
|
|
21535
22727
|
USDT: bigint;
|
|
22728
|
+
WBTC: bigint;
|
|
21536
22729
|
}, {
|
|
21537
22730
|
ETH: string | number;
|
|
21538
22731
|
USDC: string | number;
|
|
21539
22732
|
FLIP: string | number;
|
|
21540
22733
|
USDT: string | number;
|
|
22734
|
+
WBTC: string | number;
|
|
21541
22735
|
}>;
|
|
21542
22736
|
Polkadot: z.ZodObject<{
|
|
21543
22737
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -21588,6 +22782,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21588
22782
|
USDC: bigint;
|
|
21589
22783
|
FLIP: bigint;
|
|
21590
22784
|
USDT: bigint;
|
|
22785
|
+
WBTC: bigint;
|
|
21591
22786
|
};
|
|
21592
22787
|
Arbitrum: {
|
|
21593
22788
|
ETH: bigint;
|
|
@@ -21611,6 +22806,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21611
22806
|
USDC: string | number;
|
|
21612
22807
|
FLIP: string | number;
|
|
21613
22808
|
USDT: string | number;
|
|
22809
|
+
WBTC: string | number;
|
|
21614
22810
|
};
|
|
21615
22811
|
Arbitrum: {
|
|
21616
22812
|
ETH: string | number;
|
|
@@ -21663,6 +22859,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21663
22859
|
USDC: bigint;
|
|
21664
22860
|
FLIP: bigint;
|
|
21665
22861
|
USDT: bigint;
|
|
22862
|
+
WBTC: bigint;
|
|
21666
22863
|
};
|
|
21667
22864
|
Arbitrum: {
|
|
21668
22865
|
ETH: bigint;
|
|
@@ -21689,6 +22886,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21689
22886
|
USDC: bigint;
|
|
21690
22887
|
FLIP: bigint;
|
|
21691
22888
|
USDT: bigint;
|
|
22889
|
+
WBTC: bigint;
|
|
21692
22890
|
};
|
|
21693
22891
|
Arbitrum: {
|
|
21694
22892
|
ETH: bigint;
|
|
@@ -21750,6 +22948,13 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21750
22948
|
in_use_balance: bigint;
|
|
21751
22949
|
is_withdrawing: boolean;
|
|
21752
22950
|
}[];
|
|
22951
|
+
WBTC: {
|
|
22952
|
+
fee_tier: number;
|
|
22953
|
+
total_balance: bigint;
|
|
22954
|
+
available_balance: bigint;
|
|
22955
|
+
in_use_balance: bigint;
|
|
22956
|
+
is_withdrawing: boolean;
|
|
22957
|
+
}[];
|
|
21753
22958
|
};
|
|
21754
22959
|
Arbitrum: {
|
|
21755
22960
|
ETH: {
|
|
@@ -21921,6 +23126,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21921
23126
|
USDC: string | number;
|
|
21922
23127
|
FLIP: string | number;
|
|
21923
23128
|
USDT: string | number;
|
|
23129
|
+
WBTC: string | number;
|
|
21924
23130
|
};
|
|
21925
23131
|
Arbitrum: {
|
|
21926
23132
|
ETH: string | number;
|
|
@@ -21947,6 +23153,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
21947
23153
|
USDC: string | number;
|
|
21948
23154
|
FLIP: string | number;
|
|
21949
23155
|
USDT: string | number;
|
|
23156
|
+
WBTC: string | number;
|
|
21950
23157
|
};
|
|
21951
23158
|
Arbitrum: {
|
|
21952
23159
|
ETH: string | number;
|
|
@@ -22008,6 +23215,13 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22008
23215
|
in_use_balance: string;
|
|
22009
23216
|
is_withdrawing: boolean;
|
|
22010
23217
|
}[];
|
|
23218
|
+
WBTC: {
|
|
23219
|
+
fee_tier: number;
|
|
23220
|
+
total_balance: string;
|
|
23221
|
+
available_balance: string;
|
|
23222
|
+
in_use_balance: string;
|
|
23223
|
+
is_withdrawing: boolean;
|
|
23224
|
+
}[];
|
|
22011
23225
|
};
|
|
22012
23226
|
Arbitrum: {
|
|
22013
23227
|
ETH: {
|
|
@@ -22193,16 +23407,19 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22193
23407
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22194
23408
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22195
23409
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
23410
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22196
23411
|
}, "strip", z.ZodTypeAny, {
|
|
22197
23412
|
ETH: bigint;
|
|
22198
23413
|
USDC: bigint;
|
|
22199
23414
|
FLIP: bigint;
|
|
22200
23415
|
USDT: bigint;
|
|
23416
|
+
WBTC: bigint;
|
|
22201
23417
|
}, {
|
|
22202
23418
|
ETH: string | number;
|
|
22203
23419
|
USDC: string | number;
|
|
22204
23420
|
FLIP: string | number;
|
|
22205
23421
|
USDT: string | number;
|
|
23422
|
+
WBTC: string | number;
|
|
22206
23423
|
}>;
|
|
22207
23424
|
Polkadot: z.ZodObject<{
|
|
22208
23425
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -22253,6 +23470,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22253
23470
|
USDC: bigint;
|
|
22254
23471
|
FLIP: bigint;
|
|
22255
23472
|
USDT: bigint;
|
|
23473
|
+
WBTC: bigint;
|
|
22256
23474
|
};
|
|
22257
23475
|
Arbitrum: {
|
|
22258
23476
|
ETH: bigint;
|
|
@@ -22276,6 +23494,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22276
23494
|
USDC: string | number;
|
|
22277
23495
|
FLIP: string | number;
|
|
22278
23496
|
USDT: string | number;
|
|
23497
|
+
WBTC: string | number;
|
|
22279
23498
|
};
|
|
22280
23499
|
Arbitrum: {
|
|
22281
23500
|
ETH: string | number;
|
|
@@ -22328,6 +23547,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22328
23547
|
USDC: bigint;
|
|
22329
23548
|
FLIP: bigint;
|
|
22330
23549
|
USDT: bigint;
|
|
23550
|
+
WBTC: bigint;
|
|
22331
23551
|
};
|
|
22332
23552
|
Arbitrum: {
|
|
22333
23553
|
ETH: bigint;
|
|
@@ -22378,6 +23598,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22378
23598
|
USDC: string | number;
|
|
22379
23599
|
FLIP: string | number;
|
|
22380
23600
|
USDT: string | number;
|
|
23601
|
+
WBTC: string | number;
|
|
22381
23602
|
};
|
|
22382
23603
|
Arbitrum: {
|
|
22383
23604
|
ETH: string | number;
|
|
@@ -22428,6 +23649,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22428
23649
|
USDC: bigint;
|
|
22429
23650
|
FLIP: bigint;
|
|
22430
23651
|
USDT: bigint;
|
|
23652
|
+
WBTC: bigint;
|
|
22431
23653
|
};
|
|
22432
23654
|
Arbitrum: {
|
|
22433
23655
|
ETH: bigint;
|
|
@@ -22468,6 +23690,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22468
23690
|
USDC: bigint;
|
|
22469
23691
|
FLIP: bigint;
|
|
22470
23692
|
USDT: bigint;
|
|
23693
|
+
WBTC: bigint;
|
|
22471
23694
|
};
|
|
22472
23695
|
Arbitrum: {
|
|
22473
23696
|
ETH: bigint;
|
|
@@ -22494,6 +23717,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22494
23717
|
USDC: bigint;
|
|
22495
23718
|
FLIP: bigint;
|
|
22496
23719
|
USDT: bigint;
|
|
23720
|
+
WBTC: bigint;
|
|
22497
23721
|
};
|
|
22498
23722
|
Arbitrum: {
|
|
22499
23723
|
ETH: bigint;
|
|
@@ -22538,6 +23762,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22538
23762
|
USDC: bigint;
|
|
22539
23763
|
FLIP: bigint;
|
|
22540
23764
|
USDT: bigint;
|
|
23765
|
+
WBTC: bigint;
|
|
22541
23766
|
};
|
|
22542
23767
|
Arbitrum: {
|
|
22543
23768
|
ETH: bigint;
|
|
@@ -22564,6 +23789,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22564
23789
|
USDC: bigint;
|
|
22565
23790
|
FLIP: bigint;
|
|
22566
23791
|
USDT: bigint;
|
|
23792
|
+
WBTC: bigint;
|
|
22567
23793
|
};
|
|
22568
23794
|
Arbitrum: {
|
|
22569
23795
|
ETH: bigint;
|
|
@@ -22625,6 +23851,13 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22625
23851
|
in_use_balance: bigint;
|
|
22626
23852
|
is_withdrawing: boolean;
|
|
22627
23853
|
}[];
|
|
23854
|
+
WBTC: {
|
|
23855
|
+
fee_tier: number;
|
|
23856
|
+
total_balance: bigint;
|
|
23857
|
+
available_balance: bigint;
|
|
23858
|
+
in_use_balance: bigint;
|
|
23859
|
+
is_withdrawing: boolean;
|
|
23860
|
+
}[];
|
|
22628
23861
|
};
|
|
22629
23862
|
Arbitrum: {
|
|
22630
23863
|
ETH: {
|
|
@@ -22796,6 +24029,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22796
24029
|
USDC: bigint;
|
|
22797
24030
|
FLIP: bigint;
|
|
22798
24031
|
USDT: bigint;
|
|
24032
|
+
WBTC: bigint;
|
|
22799
24033
|
};
|
|
22800
24034
|
Arbitrum: {
|
|
22801
24035
|
ETH: bigint;
|
|
@@ -22852,6 +24086,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22852
24086
|
USDC: bigint;
|
|
22853
24087
|
FLIP: bigint;
|
|
22854
24088
|
USDT: bigint;
|
|
24089
|
+
WBTC: bigint;
|
|
22855
24090
|
};
|
|
22856
24091
|
Arbitrum: {
|
|
22857
24092
|
ETH: bigint;
|
|
@@ -22900,6 +24135,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22900
24135
|
USDC: string | number;
|
|
22901
24136
|
FLIP: string | number;
|
|
22902
24137
|
USDT: string | number;
|
|
24138
|
+
WBTC: string | number;
|
|
22903
24139
|
};
|
|
22904
24140
|
Arbitrum: {
|
|
22905
24141
|
ETH: string | number;
|
|
@@ -22940,6 +24176,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22940
24176
|
USDC: string | number;
|
|
22941
24177
|
FLIP: string | number;
|
|
22942
24178
|
USDT: string | number;
|
|
24179
|
+
WBTC: string | number;
|
|
22943
24180
|
};
|
|
22944
24181
|
Arbitrum: {
|
|
22945
24182
|
ETH: string | number;
|
|
@@ -22966,6 +24203,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
22966
24203
|
USDC: string | number;
|
|
22967
24204
|
FLIP: string | number;
|
|
22968
24205
|
USDT: string | number;
|
|
24206
|
+
WBTC: string | number;
|
|
22969
24207
|
};
|
|
22970
24208
|
Arbitrum: {
|
|
22971
24209
|
ETH: string | number;
|
|
@@ -23010,6 +24248,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23010
24248
|
USDC: string | number;
|
|
23011
24249
|
FLIP: string | number;
|
|
23012
24250
|
USDT: string | number;
|
|
24251
|
+
WBTC: string | number;
|
|
23013
24252
|
};
|
|
23014
24253
|
Arbitrum: {
|
|
23015
24254
|
ETH: string | number;
|
|
@@ -23064,6 +24303,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23064
24303
|
USDC: string | number;
|
|
23065
24304
|
FLIP: string | number;
|
|
23066
24305
|
USDT: string | number;
|
|
24306
|
+
WBTC: string | number;
|
|
23067
24307
|
};
|
|
23068
24308
|
Arbitrum: {
|
|
23069
24309
|
ETH: string | number;
|
|
@@ -23090,6 +24330,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23090
24330
|
USDC: string | number;
|
|
23091
24331
|
FLIP: string | number;
|
|
23092
24332
|
USDT: string | number;
|
|
24333
|
+
WBTC: string | number;
|
|
23093
24334
|
};
|
|
23094
24335
|
Arbitrum: {
|
|
23095
24336
|
ETH: string | number;
|
|
@@ -23151,6 +24392,13 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23151
24392
|
in_use_balance: string;
|
|
23152
24393
|
is_withdrawing: boolean;
|
|
23153
24394
|
}[];
|
|
24395
|
+
WBTC: {
|
|
24396
|
+
fee_tier: number;
|
|
24397
|
+
total_balance: string;
|
|
24398
|
+
available_balance: string;
|
|
24399
|
+
in_use_balance: string;
|
|
24400
|
+
is_withdrawing: boolean;
|
|
24401
|
+
}[];
|
|
23154
24402
|
};
|
|
23155
24403
|
Arbitrum: {
|
|
23156
24404
|
ETH: {
|
|
@@ -23322,6 +24570,7 @@ declare const cfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.Zod
|
|
|
23322
24570
|
USDC: string | number;
|
|
23323
24571
|
FLIP: string | number;
|
|
23324
24572
|
USDT: string | number;
|
|
24573
|
+
WBTC: string | number;
|
|
23325
24574
|
};
|
|
23326
24575
|
Arbitrum: {
|
|
23327
24576
|
ETH: string | number;
|
|
@@ -24602,16 +25851,19 @@ declare const lpTotalBalances: z.ZodObject<Omit<{
|
|
|
24602
25851
|
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
24603
25852
|
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
24604
25853
|
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
25854
|
+
WBTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
24605
25855
|
}, "strip", z.ZodTypeAny, {
|
|
24606
25856
|
ETH: bigint;
|
|
24607
25857
|
USDC: bigint;
|
|
24608
25858
|
FLIP: bigint;
|
|
24609
25859
|
USDT: bigint;
|
|
25860
|
+
WBTC: bigint;
|
|
24610
25861
|
}, {
|
|
24611
25862
|
ETH: string | number;
|
|
24612
25863
|
USDC: string | number;
|
|
24613
25864
|
FLIP: string | number;
|
|
24614
25865
|
USDT: string | number;
|
|
25866
|
+
WBTC: string | number;
|
|
24615
25867
|
}>;
|
|
24616
25868
|
Polkadot: z.ZodObject<{
|
|
24617
25869
|
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -24662,6 +25914,7 @@ declare const lpTotalBalances: z.ZodObject<Omit<{
|
|
|
24662
25914
|
USDC: bigint;
|
|
24663
25915
|
FLIP: bigint;
|
|
24664
25916
|
USDT: bigint;
|
|
25917
|
+
WBTC: bigint;
|
|
24665
25918
|
};
|
|
24666
25919
|
Arbitrum: {
|
|
24667
25920
|
ETH: bigint;
|
|
@@ -24685,6 +25938,7 @@ declare const lpTotalBalances: z.ZodObject<Omit<{
|
|
|
24685
25938
|
USDC: string | number;
|
|
24686
25939
|
FLIP: string | number;
|
|
24687
25940
|
USDT: string | number;
|
|
25941
|
+
WBTC: string | number;
|
|
24688
25942
|
};
|
|
24689
25943
|
Arbitrum: {
|
|
24690
25944
|
ETH: string | number;
|
|
@@ -27830,16 +29084,19 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
27830
29084
|
USDC: z.ZodNullable<z.ZodNumber>;
|
|
27831
29085
|
FLIP: z.ZodNullable<z.ZodNumber>;
|
|
27832
29086
|
USDT: z.ZodNullable<z.ZodNumber>;
|
|
29087
|
+
WBTC: z.ZodNullable<z.ZodNumber>;
|
|
27833
29088
|
}, "strip", z.ZodTypeAny, {
|
|
27834
29089
|
ETH: number | null;
|
|
27835
29090
|
USDC: number | null;
|
|
27836
29091
|
FLIP: number | null;
|
|
27837
29092
|
USDT: number | null;
|
|
29093
|
+
WBTC: number | null;
|
|
27838
29094
|
}, {
|
|
27839
29095
|
ETH: number | null;
|
|
27840
29096
|
USDC: number | null;
|
|
27841
29097
|
FLIP: number | null;
|
|
27842
29098
|
USDT: number | null;
|
|
29099
|
+
WBTC: number | null;
|
|
27843
29100
|
}>;
|
|
27844
29101
|
Polkadot: z.ZodObject<{
|
|
27845
29102
|
DOT: z.ZodNullable<z.ZodNumber>;
|
|
@@ -27890,6 +29147,7 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
27890
29147
|
USDC: number | null;
|
|
27891
29148
|
FLIP: number | null;
|
|
27892
29149
|
USDT: number | null;
|
|
29150
|
+
WBTC: number | null;
|
|
27893
29151
|
};
|
|
27894
29152
|
Arbitrum: {
|
|
27895
29153
|
ETH: number | null;
|
|
@@ -27913,6 +29171,7 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
27913
29171
|
USDC: number | null;
|
|
27914
29172
|
FLIP: number | null;
|
|
27915
29173
|
USDT: number | null;
|
|
29174
|
+
WBTC: number | null;
|
|
27916
29175
|
};
|
|
27917
29176
|
Arbitrum: {
|
|
27918
29177
|
ETH: number | null;
|
|
@@ -27941,16 +29200,19 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
27941
29200
|
USDC: z.ZodNullable<z.ZodNumber>;
|
|
27942
29201
|
FLIP: z.ZodNullable<z.ZodNumber>;
|
|
27943
29202
|
USDT: z.ZodNullable<z.ZodNumber>;
|
|
29203
|
+
WBTC: z.ZodNullable<z.ZodNumber>;
|
|
27944
29204
|
}, "strip", z.ZodTypeAny, {
|
|
27945
29205
|
ETH: number | null;
|
|
27946
29206
|
USDC: number | null;
|
|
27947
29207
|
FLIP: number | null;
|
|
27948
29208
|
USDT: number | null;
|
|
29209
|
+
WBTC: number | null;
|
|
27949
29210
|
}, {
|
|
27950
29211
|
ETH: number | null;
|
|
27951
29212
|
USDC: number | null;
|
|
27952
29213
|
FLIP: number | null;
|
|
27953
29214
|
USDT: number | null;
|
|
29215
|
+
WBTC: number | null;
|
|
27954
29216
|
}>;
|
|
27955
29217
|
Polkadot: z.ZodObject<{
|
|
27956
29218
|
DOT: z.ZodNullable<z.ZodNumber>;
|
|
@@ -28001,6 +29263,7 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
28001
29263
|
USDC: number | null;
|
|
28002
29264
|
FLIP: number | null;
|
|
28003
29265
|
USDT: number | null;
|
|
29266
|
+
WBTC: number | null;
|
|
28004
29267
|
};
|
|
28005
29268
|
Arbitrum: {
|
|
28006
29269
|
ETH: number | null;
|
|
@@ -28024,6 +29287,7 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
28024
29287
|
USDC: number | null;
|
|
28025
29288
|
FLIP: number | null;
|
|
28026
29289
|
USDT: number | null;
|
|
29290
|
+
WBTC: number | null;
|
|
28027
29291
|
};
|
|
28028
29292
|
Arbitrum: {
|
|
28029
29293
|
ETH: number | null;
|
|
@@ -28049,6 +29313,7 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
28049
29313
|
USDC: number | null;
|
|
28050
29314
|
FLIP: number | null;
|
|
28051
29315
|
USDT: number | null;
|
|
29316
|
+
WBTC: number | null;
|
|
28052
29317
|
};
|
|
28053
29318
|
Arbitrum: {
|
|
28054
29319
|
ETH: number | null;
|
|
@@ -28073,6 +29338,7 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
28073
29338
|
USDC: number | null;
|
|
28074
29339
|
FLIP: number | null;
|
|
28075
29340
|
USDT: number | null;
|
|
29341
|
+
WBTC: number | null;
|
|
28076
29342
|
};
|
|
28077
29343
|
Arbitrum: {
|
|
28078
29344
|
ETH: number | null;
|
|
@@ -28098,6 +29364,7 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
28098
29364
|
USDC: number | null;
|
|
28099
29365
|
FLIP: number | null;
|
|
28100
29366
|
USDT: number | null;
|
|
29367
|
+
WBTC: number | null;
|
|
28101
29368
|
};
|
|
28102
29369
|
Arbitrum: {
|
|
28103
29370
|
ETH: number | null;
|
|
@@ -28122,6 +29389,7 @@ declare const cfGetTradingStrategyLimits: z.ZodObject<{
|
|
|
28122
29389
|
USDC: number | null;
|
|
28123
29390
|
FLIP: number | null;
|
|
28124
29391
|
USDT: number | null;
|
|
29392
|
+
WBTC: number | null;
|
|
28125
29393
|
};
|
|
28126
29394
|
Arbitrum: {
|
|
28127
29395
|
ETH: number | null;
|
|
@@ -28449,18 +29717,18 @@ declare const cfOraclePrices: z.ZodArray<z.ZodObject<{
|
|
|
28449
29717
|
price: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
28450
29718
|
updated_at_oracle_timestamp: z.ZodNumber;
|
|
28451
29719
|
updated_at_statechain_block: z.ZodNumber;
|
|
28452
|
-
base_asset: z.ZodEnum<["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd"]>;
|
|
28453
|
-
quote_asset: z.ZodEnum<["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd"]>;
|
|
29720
|
+
base_asset: z.ZodEnum<["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd", "Fine"]>;
|
|
29721
|
+
quote_asset: z.ZodEnum<["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd", "Fine"]>;
|
|
28454
29722
|
}, "strip", z.ZodTypeAny, {
|
|
28455
29723
|
price: bigint;
|
|
28456
|
-
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
28457
|
-
base_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
29724
|
+
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd" | "Fine";
|
|
29725
|
+
base_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd" | "Fine";
|
|
28458
29726
|
updated_at_oracle_timestamp: number;
|
|
28459
29727
|
updated_at_statechain_block: number;
|
|
28460
29728
|
}, {
|
|
28461
29729
|
price: string | number;
|
|
28462
|
-
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
28463
|
-
base_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
29730
|
+
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd" | "Fine";
|
|
29731
|
+
base_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd" | "Fine";
|
|
28464
29732
|
updated_at_oracle_timestamp: number;
|
|
28465
29733
|
updated_at_statechain_block: number;
|
|
28466
29734
|
}>, "many">;
|