@chainflip/rpc 1.5.2 → 1.5.3
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 +2878 -187
- package/dist/common.d.ts +2878 -187
- package/dist/parsers.cjs +12 -11
- package/dist/parsers.d.cts +2935 -244
- package/dist/parsers.d.ts +2935 -244
- package/dist/parsers.mjs +11 -10
- package/package.json +1 -1
package/dist/parsers.d.ts
CHANGED
|
@@ -1714,7 +1714,7 @@ declare const cfFundingEnvironment: z.ZodObject<{
|
|
|
1714
1714
|
declare const cfPoolsEnvironment: z.ZodObject<{
|
|
1715
1715
|
fees: z.ZodObject<{
|
|
1716
1716
|
Bitcoin: z.ZodObject<{
|
|
1717
|
-
BTC: z.ZodObject<{
|
|
1717
|
+
BTC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
1718
1718
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
1719
1719
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
1720
1720
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -1813,7 +1813,76 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
1813
1813
|
chain: "Ethereum";
|
|
1814
1814
|
asset: "USDC";
|
|
1815
1815
|
};
|
|
1816
|
-
}
|
|
1816
|
+
}>>, {
|
|
1817
|
+
limit_order_fee_hundredth_pips: number;
|
|
1818
|
+
range_order_fee_hundredth_pips: number;
|
|
1819
|
+
range_order_total_fees_earned: {
|
|
1820
|
+
base: bigint;
|
|
1821
|
+
quote: bigint;
|
|
1822
|
+
};
|
|
1823
|
+
limit_order_total_fees_earned: {
|
|
1824
|
+
base: bigint;
|
|
1825
|
+
quote: bigint;
|
|
1826
|
+
};
|
|
1827
|
+
range_total_swap_inputs: {
|
|
1828
|
+
base: bigint;
|
|
1829
|
+
quote: bigint;
|
|
1830
|
+
};
|
|
1831
|
+
limit_total_swap_inputs: {
|
|
1832
|
+
base: bigint;
|
|
1833
|
+
quote: bigint;
|
|
1834
|
+
};
|
|
1835
|
+
quote_asset: {
|
|
1836
|
+
chain: "Ethereum";
|
|
1837
|
+
asset: "USDC";
|
|
1838
|
+
};
|
|
1839
|
+
} | {
|
|
1840
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
1841
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
1842
|
+
readonly range_order_total_fees_earned: {
|
|
1843
|
+
readonly base: "0x0";
|
|
1844
|
+
readonly quote: "0x0";
|
|
1845
|
+
};
|
|
1846
|
+
readonly limit_order_total_fees_earned: {
|
|
1847
|
+
readonly base: "0x0";
|
|
1848
|
+
readonly quote: "0x0";
|
|
1849
|
+
};
|
|
1850
|
+
readonly range_total_swap_inputs: {
|
|
1851
|
+
readonly base: "0x0";
|
|
1852
|
+
readonly quote: "0x0";
|
|
1853
|
+
};
|
|
1854
|
+
readonly limit_total_swap_inputs: {
|
|
1855
|
+
readonly base: "0x0";
|
|
1856
|
+
readonly quote: "0x0";
|
|
1857
|
+
};
|
|
1858
|
+
readonly quote_asset: {
|
|
1859
|
+
readonly chain: "Ethereum";
|
|
1860
|
+
readonly asset: "USDC";
|
|
1861
|
+
};
|
|
1862
|
+
}, {
|
|
1863
|
+
limit_order_fee_hundredth_pips: number;
|
|
1864
|
+
range_order_fee_hundredth_pips: number;
|
|
1865
|
+
range_order_total_fees_earned: {
|
|
1866
|
+
base: string;
|
|
1867
|
+
quote: string;
|
|
1868
|
+
};
|
|
1869
|
+
limit_order_total_fees_earned: {
|
|
1870
|
+
base: string;
|
|
1871
|
+
quote: string;
|
|
1872
|
+
};
|
|
1873
|
+
range_total_swap_inputs: {
|
|
1874
|
+
base: string;
|
|
1875
|
+
quote: string;
|
|
1876
|
+
};
|
|
1877
|
+
limit_total_swap_inputs: {
|
|
1878
|
+
base: string;
|
|
1879
|
+
quote: string;
|
|
1880
|
+
};
|
|
1881
|
+
quote_asset: {
|
|
1882
|
+
chain: "Ethereum";
|
|
1883
|
+
asset: "USDC";
|
|
1884
|
+
};
|
|
1885
|
+
} | null>;
|
|
1817
1886
|
}, "strip", z.ZodTypeAny, {
|
|
1818
1887
|
BTC: {
|
|
1819
1888
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -1838,6 +1907,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
1838
1907
|
chain: "Ethereum";
|
|
1839
1908
|
asset: "USDC";
|
|
1840
1909
|
};
|
|
1910
|
+
} | {
|
|
1911
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
1912
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
1913
|
+
readonly range_order_total_fees_earned: {
|
|
1914
|
+
readonly base: "0x0";
|
|
1915
|
+
readonly quote: "0x0";
|
|
1916
|
+
};
|
|
1917
|
+
readonly limit_order_total_fees_earned: {
|
|
1918
|
+
readonly base: "0x0";
|
|
1919
|
+
readonly quote: "0x0";
|
|
1920
|
+
};
|
|
1921
|
+
readonly range_total_swap_inputs: {
|
|
1922
|
+
readonly base: "0x0";
|
|
1923
|
+
readonly quote: "0x0";
|
|
1924
|
+
};
|
|
1925
|
+
readonly limit_total_swap_inputs: {
|
|
1926
|
+
readonly base: "0x0";
|
|
1927
|
+
readonly quote: "0x0";
|
|
1928
|
+
};
|
|
1929
|
+
readonly quote_asset: {
|
|
1930
|
+
readonly chain: "Ethereum";
|
|
1931
|
+
readonly asset: "USDC";
|
|
1932
|
+
};
|
|
1841
1933
|
};
|
|
1842
1934
|
}, {
|
|
1843
1935
|
BTC: {
|
|
@@ -1863,10 +1955,10 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
1863
1955
|
chain: "Ethereum";
|
|
1864
1956
|
asset: "USDC";
|
|
1865
1957
|
};
|
|
1866
|
-
};
|
|
1958
|
+
} | null;
|
|
1867
1959
|
}>;
|
|
1868
1960
|
Ethereum: z.ZodObject<{
|
|
1869
|
-
ETH: z.ZodObject<{
|
|
1961
|
+
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
1870
1962
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
1871
1963
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
1872
1964
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -1965,8 +2057,77 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
1965
2057
|
chain: "Ethereum";
|
|
1966
2058
|
asset: "USDC";
|
|
1967
2059
|
};
|
|
1968
|
-
}
|
|
1969
|
-
|
|
2060
|
+
}>>, {
|
|
2061
|
+
limit_order_fee_hundredth_pips: number;
|
|
2062
|
+
range_order_fee_hundredth_pips: number;
|
|
2063
|
+
range_order_total_fees_earned: {
|
|
2064
|
+
base: bigint;
|
|
2065
|
+
quote: bigint;
|
|
2066
|
+
};
|
|
2067
|
+
limit_order_total_fees_earned: {
|
|
2068
|
+
base: bigint;
|
|
2069
|
+
quote: bigint;
|
|
2070
|
+
};
|
|
2071
|
+
range_total_swap_inputs: {
|
|
2072
|
+
base: bigint;
|
|
2073
|
+
quote: bigint;
|
|
2074
|
+
};
|
|
2075
|
+
limit_total_swap_inputs: {
|
|
2076
|
+
base: bigint;
|
|
2077
|
+
quote: bigint;
|
|
2078
|
+
};
|
|
2079
|
+
quote_asset: {
|
|
2080
|
+
chain: "Ethereum";
|
|
2081
|
+
asset: "USDC";
|
|
2082
|
+
};
|
|
2083
|
+
} | {
|
|
2084
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2085
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2086
|
+
readonly range_order_total_fees_earned: {
|
|
2087
|
+
readonly base: "0x0";
|
|
2088
|
+
readonly quote: "0x0";
|
|
2089
|
+
};
|
|
2090
|
+
readonly limit_order_total_fees_earned: {
|
|
2091
|
+
readonly base: "0x0";
|
|
2092
|
+
readonly quote: "0x0";
|
|
2093
|
+
};
|
|
2094
|
+
readonly range_total_swap_inputs: {
|
|
2095
|
+
readonly base: "0x0";
|
|
2096
|
+
readonly quote: "0x0";
|
|
2097
|
+
};
|
|
2098
|
+
readonly limit_total_swap_inputs: {
|
|
2099
|
+
readonly base: "0x0";
|
|
2100
|
+
readonly quote: "0x0";
|
|
2101
|
+
};
|
|
2102
|
+
readonly quote_asset: {
|
|
2103
|
+
readonly chain: "Ethereum";
|
|
2104
|
+
readonly asset: "USDC";
|
|
2105
|
+
};
|
|
2106
|
+
}, {
|
|
2107
|
+
limit_order_fee_hundredth_pips: number;
|
|
2108
|
+
range_order_fee_hundredth_pips: number;
|
|
2109
|
+
range_order_total_fees_earned: {
|
|
2110
|
+
base: string;
|
|
2111
|
+
quote: string;
|
|
2112
|
+
};
|
|
2113
|
+
limit_order_total_fees_earned: {
|
|
2114
|
+
base: string;
|
|
2115
|
+
quote: string;
|
|
2116
|
+
};
|
|
2117
|
+
range_total_swap_inputs: {
|
|
2118
|
+
base: string;
|
|
2119
|
+
quote: string;
|
|
2120
|
+
};
|
|
2121
|
+
limit_total_swap_inputs: {
|
|
2122
|
+
base: string;
|
|
2123
|
+
quote: string;
|
|
2124
|
+
};
|
|
2125
|
+
quote_asset: {
|
|
2126
|
+
chain: "Ethereum";
|
|
2127
|
+
asset: "USDC";
|
|
2128
|
+
};
|
|
2129
|
+
} | null>;
|
|
2130
|
+
FLIP: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
1970
2131
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
1971
2132
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
1972
2133
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2065,8 +2226,77 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2065
2226
|
chain: "Ethereum";
|
|
2066
2227
|
asset: "USDC";
|
|
2067
2228
|
};
|
|
2068
|
-
}
|
|
2069
|
-
|
|
2229
|
+
}>>, {
|
|
2230
|
+
limit_order_fee_hundredth_pips: number;
|
|
2231
|
+
range_order_fee_hundredth_pips: number;
|
|
2232
|
+
range_order_total_fees_earned: {
|
|
2233
|
+
base: bigint;
|
|
2234
|
+
quote: bigint;
|
|
2235
|
+
};
|
|
2236
|
+
limit_order_total_fees_earned: {
|
|
2237
|
+
base: bigint;
|
|
2238
|
+
quote: bigint;
|
|
2239
|
+
};
|
|
2240
|
+
range_total_swap_inputs: {
|
|
2241
|
+
base: bigint;
|
|
2242
|
+
quote: bigint;
|
|
2243
|
+
};
|
|
2244
|
+
limit_total_swap_inputs: {
|
|
2245
|
+
base: bigint;
|
|
2246
|
+
quote: bigint;
|
|
2247
|
+
};
|
|
2248
|
+
quote_asset: {
|
|
2249
|
+
chain: "Ethereum";
|
|
2250
|
+
asset: "USDC";
|
|
2251
|
+
};
|
|
2252
|
+
} | {
|
|
2253
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2254
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2255
|
+
readonly range_order_total_fees_earned: {
|
|
2256
|
+
readonly base: "0x0";
|
|
2257
|
+
readonly quote: "0x0";
|
|
2258
|
+
};
|
|
2259
|
+
readonly limit_order_total_fees_earned: {
|
|
2260
|
+
readonly base: "0x0";
|
|
2261
|
+
readonly quote: "0x0";
|
|
2262
|
+
};
|
|
2263
|
+
readonly range_total_swap_inputs: {
|
|
2264
|
+
readonly base: "0x0";
|
|
2265
|
+
readonly quote: "0x0";
|
|
2266
|
+
};
|
|
2267
|
+
readonly limit_total_swap_inputs: {
|
|
2268
|
+
readonly base: "0x0";
|
|
2269
|
+
readonly quote: "0x0";
|
|
2270
|
+
};
|
|
2271
|
+
readonly quote_asset: {
|
|
2272
|
+
readonly chain: "Ethereum";
|
|
2273
|
+
readonly asset: "USDC";
|
|
2274
|
+
};
|
|
2275
|
+
}, {
|
|
2276
|
+
limit_order_fee_hundredth_pips: number;
|
|
2277
|
+
range_order_fee_hundredth_pips: number;
|
|
2278
|
+
range_order_total_fees_earned: {
|
|
2279
|
+
base: string;
|
|
2280
|
+
quote: string;
|
|
2281
|
+
};
|
|
2282
|
+
limit_order_total_fees_earned: {
|
|
2283
|
+
base: string;
|
|
2284
|
+
quote: string;
|
|
2285
|
+
};
|
|
2286
|
+
range_total_swap_inputs: {
|
|
2287
|
+
base: string;
|
|
2288
|
+
quote: string;
|
|
2289
|
+
};
|
|
2290
|
+
limit_total_swap_inputs: {
|
|
2291
|
+
base: string;
|
|
2292
|
+
quote: string;
|
|
2293
|
+
};
|
|
2294
|
+
quote_asset: {
|
|
2295
|
+
chain: "Ethereum";
|
|
2296
|
+
asset: "USDC";
|
|
2297
|
+
};
|
|
2298
|
+
} | null>;
|
|
2299
|
+
USDT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2070
2300
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2071
2301
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2072
2302
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2165,7 +2395,76 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2165
2395
|
chain: "Ethereum";
|
|
2166
2396
|
asset: "USDC";
|
|
2167
2397
|
};
|
|
2168
|
-
}
|
|
2398
|
+
}>>, {
|
|
2399
|
+
limit_order_fee_hundredth_pips: number;
|
|
2400
|
+
range_order_fee_hundredth_pips: number;
|
|
2401
|
+
range_order_total_fees_earned: {
|
|
2402
|
+
base: bigint;
|
|
2403
|
+
quote: bigint;
|
|
2404
|
+
};
|
|
2405
|
+
limit_order_total_fees_earned: {
|
|
2406
|
+
base: bigint;
|
|
2407
|
+
quote: bigint;
|
|
2408
|
+
};
|
|
2409
|
+
range_total_swap_inputs: {
|
|
2410
|
+
base: bigint;
|
|
2411
|
+
quote: bigint;
|
|
2412
|
+
};
|
|
2413
|
+
limit_total_swap_inputs: {
|
|
2414
|
+
base: bigint;
|
|
2415
|
+
quote: bigint;
|
|
2416
|
+
};
|
|
2417
|
+
quote_asset: {
|
|
2418
|
+
chain: "Ethereum";
|
|
2419
|
+
asset: "USDC";
|
|
2420
|
+
};
|
|
2421
|
+
} | {
|
|
2422
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2423
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2424
|
+
readonly range_order_total_fees_earned: {
|
|
2425
|
+
readonly base: "0x0";
|
|
2426
|
+
readonly quote: "0x0";
|
|
2427
|
+
};
|
|
2428
|
+
readonly limit_order_total_fees_earned: {
|
|
2429
|
+
readonly base: "0x0";
|
|
2430
|
+
readonly quote: "0x0";
|
|
2431
|
+
};
|
|
2432
|
+
readonly range_total_swap_inputs: {
|
|
2433
|
+
readonly base: "0x0";
|
|
2434
|
+
readonly quote: "0x0";
|
|
2435
|
+
};
|
|
2436
|
+
readonly limit_total_swap_inputs: {
|
|
2437
|
+
readonly base: "0x0";
|
|
2438
|
+
readonly quote: "0x0";
|
|
2439
|
+
};
|
|
2440
|
+
readonly quote_asset: {
|
|
2441
|
+
readonly chain: "Ethereum";
|
|
2442
|
+
readonly asset: "USDC";
|
|
2443
|
+
};
|
|
2444
|
+
}, {
|
|
2445
|
+
limit_order_fee_hundredth_pips: number;
|
|
2446
|
+
range_order_fee_hundredth_pips: number;
|
|
2447
|
+
range_order_total_fees_earned: {
|
|
2448
|
+
base: string;
|
|
2449
|
+
quote: string;
|
|
2450
|
+
};
|
|
2451
|
+
limit_order_total_fees_earned: {
|
|
2452
|
+
base: string;
|
|
2453
|
+
quote: string;
|
|
2454
|
+
};
|
|
2455
|
+
range_total_swap_inputs: {
|
|
2456
|
+
base: string;
|
|
2457
|
+
quote: string;
|
|
2458
|
+
};
|
|
2459
|
+
limit_total_swap_inputs: {
|
|
2460
|
+
base: string;
|
|
2461
|
+
quote: string;
|
|
2462
|
+
};
|
|
2463
|
+
quote_asset: {
|
|
2464
|
+
chain: "Ethereum";
|
|
2465
|
+
asset: "USDC";
|
|
2466
|
+
};
|
|
2467
|
+
} | null>;
|
|
2169
2468
|
}, "strip", z.ZodTypeAny, {
|
|
2170
2469
|
ETH: {
|
|
2171
2470
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2190,6 +2489,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2190
2489
|
chain: "Ethereum";
|
|
2191
2490
|
asset: "USDC";
|
|
2192
2491
|
};
|
|
2492
|
+
} | {
|
|
2493
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2494
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2495
|
+
readonly range_order_total_fees_earned: {
|
|
2496
|
+
readonly base: "0x0";
|
|
2497
|
+
readonly quote: "0x0";
|
|
2498
|
+
};
|
|
2499
|
+
readonly limit_order_total_fees_earned: {
|
|
2500
|
+
readonly base: "0x0";
|
|
2501
|
+
readonly quote: "0x0";
|
|
2502
|
+
};
|
|
2503
|
+
readonly range_total_swap_inputs: {
|
|
2504
|
+
readonly base: "0x0";
|
|
2505
|
+
readonly quote: "0x0";
|
|
2506
|
+
};
|
|
2507
|
+
readonly limit_total_swap_inputs: {
|
|
2508
|
+
readonly base: "0x0";
|
|
2509
|
+
readonly quote: "0x0";
|
|
2510
|
+
};
|
|
2511
|
+
readonly quote_asset: {
|
|
2512
|
+
readonly chain: "Ethereum";
|
|
2513
|
+
readonly asset: "USDC";
|
|
2514
|
+
};
|
|
2193
2515
|
};
|
|
2194
2516
|
FLIP: {
|
|
2195
2517
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2214,6 +2536,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2214
2536
|
chain: "Ethereum";
|
|
2215
2537
|
asset: "USDC";
|
|
2216
2538
|
};
|
|
2539
|
+
} | {
|
|
2540
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2541
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2542
|
+
readonly range_order_total_fees_earned: {
|
|
2543
|
+
readonly base: "0x0";
|
|
2544
|
+
readonly quote: "0x0";
|
|
2545
|
+
};
|
|
2546
|
+
readonly limit_order_total_fees_earned: {
|
|
2547
|
+
readonly base: "0x0";
|
|
2548
|
+
readonly quote: "0x0";
|
|
2549
|
+
};
|
|
2550
|
+
readonly range_total_swap_inputs: {
|
|
2551
|
+
readonly base: "0x0";
|
|
2552
|
+
readonly quote: "0x0";
|
|
2553
|
+
};
|
|
2554
|
+
readonly limit_total_swap_inputs: {
|
|
2555
|
+
readonly base: "0x0";
|
|
2556
|
+
readonly quote: "0x0";
|
|
2557
|
+
};
|
|
2558
|
+
readonly quote_asset: {
|
|
2559
|
+
readonly chain: "Ethereum";
|
|
2560
|
+
readonly asset: "USDC";
|
|
2561
|
+
};
|
|
2217
2562
|
};
|
|
2218
2563
|
USDT: {
|
|
2219
2564
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2238,6 +2583,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2238
2583
|
chain: "Ethereum";
|
|
2239
2584
|
asset: "USDC";
|
|
2240
2585
|
};
|
|
2586
|
+
} | {
|
|
2587
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2588
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2589
|
+
readonly range_order_total_fees_earned: {
|
|
2590
|
+
readonly base: "0x0";
|
|
2591
|
+
readonly quote: "0x0";
|
|
2592
|
+
};
|
|
2593
|
+
readonly limit_order_total_fees_earned: {
|
|
2594
|
+
readonly base: "0x0";
|
|
2595
|
+
readonly quote: "0x0";
|
|
2596
|
+
};
|
|
2597
|
+
readonly range_total_swap_inputs: {
|
|
2598
|
+
readonly base: "0x0";
|
|
2599
|
+
readonly quote: "0x0";
|
|
2600
|
+
};
|
|
2601
|
+
readonly limit_total_swap_inputs: {
|
|
2602
|
+
readonly base: "0x0";
|
|
2603
|
+
readonly quote: "0x0";
|
|
2604
|
+
};
|
|
2605
|
+
readonly quote_asset: {
|
|
2606
|
+
readonly chain: "Ethereum";
|
|
2607
|
+
readonly asset: "USDC";
|
|
2608
|
+
};
|
|
2241
2609
|
};
|
|
2242
2610
|
}, {
|
|
2243
2611
|
ETH: {
|
|
@@ -2263,7 +2631,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2263
2631
|
chain: "Ethereum";
|
|
2264
2632
|
asset: "USDC";
|
|
2265
2633
|
};
|
|
2266
|
-
};
|
|
2634
|
+
} | null;
|
|
2267
2635
|
FLIP: {
|
|
2268
2636
|
limit_order_fee_hundredth_pips: number;
|
|
2269
2637
|
range_order_fee_hundredth_pips: number;
|
|
@@ -2287,7 +2655,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2287
2655
|
chain: "Ethereum";
|
|
2288
2656
|
asset: "USDC";
|
|
2289
2657
|
};
|
|
2290
|
-
};
|
|
2658
|
+
} | null;
|
|
2291
2659
|
USDT: {
|
|
2292
2660
|
limit_order_fee_hundredth_pips: number;
|
|
2293
2661
|
range_order_fee_hundredth_pips: number;
|
|
@@ -2311,10 +2679,10 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2311
2679
|
chain: "Ethereum";
|
|
2312
2680
|
asset: "USDC";
|
|
2313
2681
|
};
|
|
2314
|
-
};
|
|
2682
|
+
} | null;
|
|
2315
2683
|
}>;
|
|
2316
2684
|
Polkadot: z.ZodObject<{
|
|
2317
|
-
DOT: z.ZodObject<{
|
|
2685
|
+
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2318
2686
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2319
2687
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2320
2688
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2413,9 +2781,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2413
2781
|
chain: "Ethereum";
|
|
2414
2782
|
asset: "USDC";
|
|
2415
2783
|
};
|
|
2416
|
-
}
|
|
2417
|
-
}, "strip", z.ZodTypeAny, {
|
|
2418
|
-
DOT: {
|
|
2784
|
+
}>>, {
|
|
2419
2785
|
limit_order_fee_hundredth_pips: number;
|
|
2420
2786
|
range_order_fee_hundredth_pips: number;
|
|
2421
2787
|
range_order_total_fees_earned: {
|
|
@@ -2438,9 +2804,30 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2438
2804
|
chain: "Ethereum";
|
|
2439
2805
|
asset: "USDC";
|
|
2440
2806
|
};
|
|
2441
|
-
}
|
|
2442
|
-
|
|
2443
|
-
|
|
2807
|
+
} | {
|
|
2808
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2809
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2810
|
+
readonly range_order_total_fees_earned: {
|
|
2811
|
+
readonly base: "0x0";
|
|
2812
|
+
readonly quote: "0x0";
|
|
2813
|
+
};
|
|
2814
|
+
readonly limit_order_total_fees_earned: {
|
|
2815
|
+
readonly base: "0x0";
|
|
2816
|
+
readonly quote: "0x0";
|
|
2817
|
+
};
|
|
2818
|
+
readonly range_total_swap_inputs: {
|
|
2819
|
+
readonly base: "0x0";
|
|
2820
|
+
readonly quote: "0x0";
|
|
2821
|
+
};
|
|
2822
|
+
readonly limit_total_swap_inputs: {
|
|
2823
|
+
readonly base: "0x0";
|
|
2824
|
+
readonly quote: "0x0";
|
|
2825
|
+
};
|
|
2826
|
+
readonly quote_asset: {
|
|
2827
|
+
readonly chain: "Ethereum";
|
|
2828
|
+
readonly asset: "USDC";
|
|
2829
|
+
};
|
|
2830
|
+
}, {
|
|
2444
2831
|
limit_order_fee_hundredth_pips: number;
|
|
2445
2832
|
range_order_fee_hundredth_pips: number;
|
|
2446
2833
|
range_order_total_fees_earned: {
|
|
@@ -2463,20 +2850,93 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2463
2850
|
chain: "Ethereum";
|
|
2464
2851
|
asset: "USDC";
|
|
2465
2852
|
};
|
|
2466
|
-
}
|
|
2467
|
-
}
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
range_order_total_fees_earned: z.ZodObject<{
|
|
2473
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2474
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2475
|
-
}, "strip", z.ZodTypeAny, {
|
|
2853
|
+
} | null>;
|
|
2854
|
+
}, "strip", z.ZodTypeAny, {
|
|
2855
|
+
DOT: {
|
|
2856
|
+
limit_order_fee_hundredth_pips: number;
|
|
2857
|
+
range_order_fee_hundredth_pips: number;
|
|
2858
|
+
range_order_total_fees_earned: {
|
|
2476
2859
|
base: bigint;
|
|
2477
2860
|
quote: bigint;
|
|
2478
|
-
}
|
|
2479
|
-
|
|
2861
|
+
};
|
|
2862
|
+
limit_order_total_fees_earned: {
|
|
2863
|
+
base: bigint;
|
|
2864
|
+
quote: bigint;
|
|
2865
|
+
};
|
|
2866
|
+
range_total_swap_inputs: {
|
|
2867
|
+
base: bigint;
|
|
2868
|
+
quote: bigint;
|
|
2869
|
+
};
|
|
2870
|
+
limit_total_swap_inputs: {
|
|
2871
|
+
base: bigint;
|
|
2872
|
+
quote: bigint;
|
|
2873
|
+
};
|
|
2874
|
+
quote_asset: {
|
|
2875
|
+
chain: "Ethereum";
|
|
2876
|
+
asset: "USDC";
|
|
2877
|
+
};
|
|
2878
|
+
} | {
|
|
2879
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2880
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2881
|
+
readonly range_order_total_fees_earned: {
|
|
2882
|
+
readonly base: "0x0";
|
|
2883
|
+
readonly quote: "0x0";
|
|
2884
|
+
};
|
|
2885
|
+
readonly limit_order_total_fees_earned: {
|
|
2886
|
+
readonly base: "0x0";
|
|
2887
|
+
readonly quote: "0x0";
|
|
2888
|
+
};
|
|
2889
|
+
readonly range_total_swap_inputs: {
|
|
2890
|
+
readonly base: "0x0";
|
|
2891
|
+
readonly quote: "0x0";
|
|
2892
|
+
};
|
|
2893
|
+
readonly limit_total_swap_inputs: {
|
|
2894
|
+
readonly base: "0x0";
|
|
2895
|
+
readonly quote: "0x0";
|
|
2896
|
+
};
|
|
2897
|
+
readonly quote_asset: {
|
|
2898
|
+
readonly chain: "Ethereum";
|
|
2899
|
+
readonly asset: "USDC";
|
|
2900
|
+
};
|
|
2901
|
+
};
|
|
2902
|
+
}, {
|
|
2903
|
+
DOT: {
|
|
2904
|
+
limit_order_fee_hundredth_pips: number;
|
|
2905
|
+
range_order_fee_hundredth_pips: number;
|
|
2906
|
+
range_order_total_fees_earned: {
|
|
2907
|
+
base: string;
|
|
2908
|
+
quote: string;
|
|
2909
|
+
};
|
|
2910
|
+
limit_order_total_fees_earned: {
|
|
2911
|
+
base: string;
|
|
2912
|
+
quote: string;
|
|
2913
|
+
};
|
|
2914
|
+
range_total_swap_inputs: {
|
|
2915
|
+
base: string;
|
|
2916
|
+
quote: string;
|
|
2917
|
+
};
|
|
2918
|
+
limit_total_swap_inputs: {
|
|
2919
|
+
base: string;
|
|
2920
|
+
quote: string;
|
|
2921
|
+
};
|
|
2922
|
+
quote_asset: {
|
|
2923
|
+
chain: "Ethereum";
|
|
2924
|
+
asset: "USDC";
|
|
2925
|
+
};
|
|
2926
|
+
} | null;
|
|
2927
|
+
}>;
|
|
2928
|
+
Arbitrum: z.ZodObject<{
|
|
2929
|
+
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2930
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2931
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2932
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
2933
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2934
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2935
|
+
}, "strip", z.ZodTypeAny, {
|
|
2936
|
+
base: bigint;
|
|
2937
|
+
quote: bigint;
|
|
2938
|
+
}, {
|
|
2939
|
+
base: string;
|
|
2480
2940
|
quote: string;
|
|
2481
2941
|
}>;
|
|
2482
2942
|
limit_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2565,8 +3025,77 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2565
3025
|
chain: "Ethereum";
|
|
2566
3026
|
asset: "USDC";
|
|
2567
3027
|
};
|
|
2568
|
-
}
|
|
2569
|
-
|
|
3028
|
+
}>>, {
|
|
3029
|
+
limit_order_fee_hundredth_pips: number;
|
|
3030
|
+
range_order_fee_hundredth_pips: number;
|
|
3031
|
+
range_order_total_fees_earned: {
|
|
3032
|
+
base: bigint;
|
|
3033
|
+
quote: bigint;
|
|
3034
|
+
};
|
|
3035
|
+
limit_order_total_fees_earned: {
|
|
3036
|
+
base: bigint;
|
|
3037
|
+
quote: bigint;
|
|
3038
|
+
};
|
|
3039
|
+
range_total_swap_inputs: {
|
|
3040
|
+
base: bigint;
|
|
3041
|
+
quote: bigint;
|
|
3042
|
+
};
|
|
3043
|
+
limit_total_swap_inputs: {
|
|
3044
|
+
base: bigint;
|
|
3045
|
+
quote: bigint;
|
|
3046
|
+
};
|
|
3047
|
+
quote_asset: {
|
|
3048
|
+
chain: "Ethereum";
|
|
3049
|
+
asset: "USDC";
|
|
3050
|
+
};
|
|
3051
|
+
} | {
|
|
3052
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3053
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3054
|
+
readonly range_order_total_fees_earned: {
|
|
3055
|
+
readonly base: "0x0";
|
|
3056
|
+
readonly quote: "0x0";
|
|
3057
|
+
};
|
|
3058
|
+
readonly limit_order_total_fees_earned: {
|
|
3059
|
+
readonly base: "0x0";
|
|
3060
|
+
readonly quote: "0x0";
|
|
3061
|
+
};
|
|
3062
|
+
readonly range_total_swap_inputs: {
|
|
3063
|
+
readonly base: "0x0";
|
|
3064
|
+
readonly quote: "0x0";
|
|
3065
|
+
};
|
|
3066
|
+
readonly limit_total_swap_inputs: {
|
|
3067
|
+
readonly base: "0x0";
|
|
3068
|
+
readonly quote: "0x0";
|
|
3069
|
+
};
|
|
3070
|
+
readonly quote_asset: {
|
|
3071
|
+
readonly chain: "Ethereum";
|
|
3072
|
+
readonly asset: "USDC";
|
|
3073
|
+
};
|
|
3074
|
+
}, {
|
|
3075
|
+
limit_order_fee_hundredth_pips: number;
|
|
3076
|
+
range_order_fee_hundredth_pips: number;
|
|
3077
|
+
range_order_total_fees_earned: {
|
|
3078
|
+
base: string;
|
|
3079
|
+
quote: string;
|
|
3080
|
+
};
|
|
3081
|
+
limit_order_total_fees_earned: {
|
|
3082
|
+
base: string;
|
|
3083
|
+
quote: string;
|
|
3084
|
+
};
|
|
3085
|
+
range_total_swap_inputs: {
|
|
3086
|
+
base: string;
|
|
3087
|
+
quote: string;
|
|
3088
|
+
};
|
|
3089
|
+
limit_total_swap_inputs: {
|
|
3090
|
+
base: string;
|
|
3091
|
+
quote: string;
|
|
3092
|
+
};
|
|
3093
|
+
quote_asset: {
|
|
3094
|
+
chain: "Ethereum";
|
|
3095
|
+
asset: "USDC";
|
|
3096
|
+
};
|
|
3097
|
+
} | null>;
|
|
3098
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2570
3099
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2571
3100
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2572
3101
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2665,7 +3194,76 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2665
3194
|
chain: "Ethereum";
|
|
2666
3195
|
asset: "USDC";
|
|
2667
3196
|
};
|
|
2668
|
-
}
|
|
3197
|
+
}>>, {
|
|
3198
|
+
limit_order_fee_hundredth_pips: number;
|
|
3199
|
+
range_order_fee_hundredth_pips: number;
|
|
3200
|
+
range_order_total_fees_earned: {
|
|
3201
|
+
base: bigint;
|
|
3202
|
+
quote: bigint;
|
|
3203
|
+
};
|
|
3204
|
+
limit_order_total_fees_earned: {
|
|
3205
|
+
base: bigint;
|
|
3206
|
+
quote: bigint;
|
|
3207
|
+
};
|
|
3208
|
+
range_total_swap_inputs: {
|
|
3209
|
+
base: bigint;
|
|
3210
|
+
quote: bigint;
|
|
3211
|
+
};
|
|
3212
|
+
limit_total_swap_inputs: {
|
|
3213
|
+
base: bigint;
|
|
3214
|
+
quote: bigint;
|
|
3215
|
+
};
|
|
3216
|
+
quote_asset: {
|
|
3217
|
+
chain: "Ethereum";
|
|
3218
|
+
asset: "USDC";
|
|
3219
|
+
};
|
|
3220
|
+
} | {
|
|
3221
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3222
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3223
|
+
readonly range_order_total_fees_earned: {
|
|
3224
|
+
readonly base: "0x0";
|
|
3225
|
+
readonly quote: "0x0";
|
|
3226
|
+
};
|
|
3227
|
+
readonly limit_order_total_fees_earned: {
|
|
3228
|
+
readonly base: "0x0";
|
|
3229
|
+
readonly quote: "0x0";
|
|
3230
|
+
};
|
|
3231
|
+
readonly range_total_swap_inputs: {
|
|
3232
|
+
readonly base: "0x0";
|
|
3233
|
+
readonly quote: "0x0";
|
|
3234
|
+
};
|
|
3235
|
+
readonly limit_total_swap_inputs: {
|
|
3236
|
+
readonly base: "0x0";
|
|
3237
|
+
readonly quote: "0x0";
|
|
3238
|
+
};
|
|
3239
|
+
readonly quote_asset: {
|
|
3240
|
+
readonly chain: "Ethereum";
|
|
3241
|
+
readonly asset: "USDC";
|
|
3242
|
+
};
|
|
3243
|
+
}, {
|
|
3244
|
+
limit_order_fee_hundredth_pips: number;
|
|
3245
|
+
range_order_fee_hundredth_pips: number;
|
|
3246
|
+
range_order_total_fees_earned: {
|
|
3247
|
+
base: string;
|
|
3248
|
+
quote: string;
|
|
3249
|
+
};
|
|
3250
|
+
limit_order_total_fees_earned: {
|
|
3251
|
+
base: string;
|
|
3252
|
+
quote: string;
|
|
3253
|
+
};
|
|
3254
|
+
range_total_swap_inputs: {
|
|
3255
|
+
base: string;
|
|
3256
|
+
quote: string;
|
|
3257
|
+
};
|
|
3258
|
+
limit_total_swap_inputs: {
|
|
3259
|
+
base: string;
|
|
3260
|
+
quote: string;
|
|
3261
|
+
};
|
|
3262
|
+
quote_asset: {
|
|
3263
|
+
chain: "Ethereum";
|
|
3264
|
+
asset: "USDC";
|
|
3265
|
+
};
|
|
3266
|
+
} | null>;
|
|
2669
3267
|
}, "strip", z.ZodTypeAny, {
|
|
2670
3268
|
ETH: {
|
|
2671
3269
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2690,6 +3288,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2690
3288
|
chain: "Ethereum";
|
|
2691
3289
|
asset: "USDC";
|
|
2692
3290
|
};
|
|
3291
|
+
} | {
|
|
3292
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3293
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3294
|
+
readonly range_order_total_fees_earned: {
|
|
3295
|
+
readonly base: "0x0";
|
|
3296
|
+
readonly quote: "0x0";
|
|
3297
|
+
};
|
|
3298
|
+
readonly limit_order_total_fees_earned: {
|
|
3299
|
+
readonly base: "0x0";
|
|
3300
|
+
readonly quote: "0x0";
|
|
3301
|
+
};
|
|
3302
|
+
readonly range_total_swap_inputs: {
|
|
3303
|
+
readonly base: "0x0";
|
|
3304
|
+
readonly quote: "0x0";
|
|
3305
|
+
};
|
|
3306
|
+
readonly limit_total_swap_inputs: {
|
|
3307
|
+
readonly base: "0x0";
|
|
3308
|
+
readonly quote: "0x0";
|
|
3309
|
+
};
|
|
3310
|
+
readonly quote_asset: {
|
|
3311
|
+
readonly chain: "Ethereum";
|
|
3312
|
+
readonly asset: "USDC";
|
|
3313
|
+
};
|
|
2693
3314
|
};
|
|
2694
3315
|
USDC: {
|
|
2695
3316
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2714,6 +3335,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2714
3335
|
chain: "Ethereum";
|
|
2715
3336
|
asset: "USDC";
|
|
2716
3337
|
};
|
|
3338
|
+
} | {
|
|
3339
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3340
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3341
|
+
readonly range_order_total_fees_earned: {
|
|
3342
|
+
readonly base: "0x0";
|
|
3343
|
+
readonly quote: "0x0";
|
|
3344
|
+
};
|
|
3345
|
+
readonly limit_order_total_fees_earned: {
|
|
3346
|
+
readonly base: "0x0";
|
|
3347
|
+
readonly quote: "0x0";
|
|
3348
|
+
};
|
|
3349
|
+
readonly range_total_swap_inputs: {
|
|
3350
|
+
readonly base: "0x0";
|
|
3351
|
+
readonly quote: "0x0";
|
|
3352
|
+
};
|
|
3353
|
+
readonly limit_total_swap_inputs: {
|
|
3354
|
+
readonly base: "0x0";
|
|
3355
|
+
readonly quote: "0x0";
|
|
3356
|
+
};
|
|
3357
|
+
readonly quote_asset: {
|
|
3358
|
+
readonly chain: "Ethereum";
|
|
3359
|
+
readonly asset: "USDC";
|
|
3360
|
+
};
|
|
2717
3361
|
};
|
|
2718
3362
|
}, {
|
|
2719
3363
|
ETH: {
|
|
@@ -2739,7 +3383,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2739
3383
|
chain: "Ethereum";
|
|
2740
3384
|
asset: "USDC";
|
|
2741
3385
|
};
|
|
2742
|
-
};
|
|
3386
|
+
} | null;
|
|
2743
3387
|
USDC: {
|
|
2744
3388
|
limit_order_fee_hundredth_pips: number;
|
|
2745
3389
|
range_order_fee_hundredth_pips: number;
|
|
@@ -2763,10 +3407,10 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2763
3407
|
chain: "Ethereum";
|
|
2764
3408
|
asset: "USDC";
|
|
2765
3409
|
};
|
|
2766
|
-
};
|
|
3410
|
+
} | null;
|
|
2767
3411
|
}>;
|
|
2768
3412
|
Solana: z.ZodDefault<z.ZodObject<{
|
|
2769
|
-
SOL: z.ZodDefault<z.ZodObject<{
|
|
3413
|
+
SOL: z.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2770
3414
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2771
3415
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2772
3416
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2865,8 +3509,77 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2865
3509
|
chain: "Ethereum";
|
|
2866
3510
|
asset: "USDC";
|
|
2867
3511
|
};
|
|
2868
|
-
}
|
|
2869
|
-
|
|
3512
|
+
}>>, {
|
|
3513
|
+
limit_order_fee_hundredth_pips: number;
|
|
3514
|
+
range_order_fee_hundredth_pips: number;
|
|
3515
|
+
range_order_total_fees_earned: {
|
|
3516
|
+
base: bigint;
|
|
3517
|
+
quote: bigint;
|
|
3518
|
+
};
|
|
3519
|
+
limit_order_total_fees_earned: {
|
|
3520
|
+
base: bigint;
|
|
3521
|
+
quote: bigint;
|
|
3522
|
+
};
|
|
3523
|
+
range_total_swap_inputs: {
|
|
3524
|
+
base: bigint;
|
|
3525
|
+
quote: bigint;
|
|
3526
|
+
};
|
|
3527
|
+
limit_total_swap_inputs: {
|
|
3528
|
+
base: bigint;
|
|
3529
|
+
quote: bigint;
|
|
3530
|
+
};
|
|
3531
|
+
quote_asset: {
|
|
3532
|
+
chain: "Ethereum";
|
|
3533
|
+
asset: "USDC";
|
|
3534
|
+
};
|
|
3535
|
+
} | {
|
|
3536
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3537
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3538
|
+
readonly range_order_total_fees_earned: {
|
|
3539
|
+
readonly base: "0x0";
|
|
3540
|
+
readonly quote: "0x0";
|
|
3541
|
+
};
|
|
3542
|
+
readonly limit_order_total_fees_earned: {
|
|
3543
|
+
readonly base: "0x0";
|
|
3544
|
+
readonly quote: "0x0";
|
|
3545
|
+
};
|
|
3546
|
+
readonly range_total_swap_inputs: {
|
|
3547
|
+
readonly base: "0x0";
|
|
3548
|
+
readonly quote: "0x0";
|
|
3549
|
+
};
|
|
3550
|
+
readonly limit_total_swap_inputs: {
|
|
3551
|
+
readonly base: "0x0";
|
|
3552
|
+
readonly quote: "0x0";
|
|
3553
|
+
};
|
|
3554
|
+
readonly quote_asset: {
|
|
3555
|
+
readonly chain: "Ethereum";
|
|
3556
|
+
readonly asset: "USDC";
|
|
3557
|
+
};
|
|
3558
|
+
}, {
|
|
3559
|
+
limit_order_fee_hundredth_pips: number;
|
|
3560
|
+
range_order_fee_hundredth_pips: number;
|
|
3561
|
+
range_order_total_fees_earned: {
|
|
3562
|
+
base: string;
|
|
3563
|
+
quote: string;
|
|
3564
|
+
};
|
|
3565
|
+
limit_order_total_fees_earned: {
|
|
3566
|
+
base: string;
|
|
3567
|
+
quote: string;
|
|
3568
|
+
};
|
|
3569
|
+
range_total_swap_inputs: {
|
|
3570
|
+
base: string;
|
|
3571
|
+
quote: string;
|
|
3572
|
+
};
|
|
3573
|
+
limit_total_swap_inputs: {
|
|
3574
|
+
base: string;
|
|
3575
|
+
quote: string;
|
|
3576
|
+
};
|
|
3577
|
+
quote_asset: {
|
|
3578
|
+
chain: "Ethereum";
|
|
3579
|
+
asset: "USDC";
|
|
3580
|
+
};
|
|
3581
|
+
} | null>>;
|
|
3582
|
+
USDC: z.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2870
3583
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2871
3584
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2872
3585
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2965,9 +3678,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2965
3678
|
chain: "Ethereum";
|
|
2966
3679
|
asset: "USDC";
|
|
2967
3680
|
};
|
|
2968
|
-
}
|
|
2969
|
-
}, "strip", z.ZodTypeAny, {
|
|
2970
|
-
USDC: {
|
|
3681
|
+
}>>, {
|
|
2971
3682
|
limit_order_fee_hundredth_pips: number;
|
|
2972
3683
|
range_order_fee_hundredth_pips: number;
|
|
2973
3684
|
range_order_total_fees_earned: {
|
|
@@ -2990,33 +3701,30 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
2990
3701
|
chain: "Ethereum";
|
|
2991
3702
|
asset: "USDC";
|
|
2992
3703
|
};
|
|
2993
|
-
}
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
quote: bigint;
|
|
3704
|
+
} | {
|
|
3705
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3706
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3707
|
+
readonly range_order_total_fees_earned: {
|
|
3708
|
+
readonly base: "0x0";
|
|
3709
|
+
readonly quote: "0x0";
|
|
3000
3710
|
};
|
|
3001
|
-
limit_order_total_fees_earned: {
|
|
3002
|
-
base:
|
|
3003
|
-
quote:
|
|
3711
|
+
readonly limit_order_total_fees_earned: {
|
|
3712
|
+
readonly base: "0x0";
|
|
3713
|
+
readonly quote: "0x0";
|
|
3004
3714
|
};
|
|
3005
|
-
range_total_swap_inputs: {
|
|
3006
|
-
base:
|
|
3007
|
-
quote:
|
|
3715
|
+
readonly range_total_swap_inputs: {
|
|
3716
|
+
readonly base: "0x0";
|
|
3717
|
+
readonly quote: "0x0";
|
|
3008
3718
|
};
|
|
3009
|
-
limit_total_swap_inputs: {
|
|
3010
|
-
base:
|
|
3011
|
-
quote:
|
|
3719
|
+
readonly limit_total_swap_inputs: {
|
|
3720
|
+
readonly base: "0x0";
|
|
3721
|
+
readonly quote: "0x0";
|
|
3012
3722
|
};
|
|
3013
|
-
quote_asset: {
|
|
3014
|
-
chain: "Ethereum";
|
|
3015
|
-
asset: "USDC";
|
|
3723
|
+
readonly quote_asset: {
|
|
3724
|
+
readonly chain: "Ethereum";
|
|
3725
|
+
readonly asset: "USDC";
|
|
3016
3726
|
};
|
|
3017
|
-
}
|
|
3018
|
-
}, {
|
|
3019
|
-
USDC?: {
|
|
3727
|
+
}, {
|
|
3020
3728
|
limit_order_fee_hundredth_pips: number;
|
|
3021
3729
|
range_order_fee_hundredth_pips: number;
|
|
3022
3730
|
range_order_total_fees_earned: {
|
|
@@ -3039,13 +3747,109 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3039
3747
|
chain: "Ethereum";
|
|
3040
3748
|
asset: "USDC";
|
|
3041
3749
|
};
|
|
3042
|
-
} |
|
|
3043
|
-
|
|
3750
|
+
} | null>>;
|
|
3751
|
+
}, "strip", z.ZodTypeAny, {
|
|
3752
|
+
USDC: {
|
|
3044
3753
|
limit_order_fee_hundredth_pips: number;
|
|
3045
3754
|
range_order_fee_hundredth_pips: number;
|
|
3046
3755
|
range_order_total_fees_earned: {
|
|
3047
|
-
base:
|
|
3048
|
-
quote:
|
|
3756
|
+
base: bigint;
|
|
3757
|
+
quote: bigint;
|
|
3758
|
+
};
|
|
3759
|
+
limit_order_total_fees_earned: {
|
|
3760
|
+
base: bigint;
|
|
3761
|
+
quote: bigint;
|
|
3762
|
+
};
|
|
3763
|
+
range_total_swap_inputs: {
|
|
3764
|
+
base: bigint;
|
|
3765
|
+
quote: bigint;
|
|
3766
|
+
};
|
|
3767
|
+
limit_total_swap_inputs: {
|
|
3768
|
+
base: bigint;
|
|
3769
|
+
quote: bigint;
|
|
3770
|
+
};
|
|
3771
|
+
quote_asset: {
|
|
3772
|
+
chain: "Ethereum";
|
|
3773
|
+
asset: "USDC";
|
|
3774
|
+
};
|
|
3775
|
+
} | {
|
|
3776
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3777
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3778
|
+
readonly range_order_total_fees_earned: {
|
|
3779
|
+
readonly base: "0x0";
|
|
3780
|
+
readonly quote: "0x0";
|
|
3781
|
+
};
|
|
3782
|
+
readonly limit_order_total_fees_earned: {
|
|
3783
|
+
readonly base: "0x0";
|
|
3784
|
+
readonly quote: "0x0";
|
|
3785
|
+
};
|
|
3786
|
+
readonly range_total_swap_inputs: {
|
|
3787
|
+
readonly base: "0x0";
|
|
3788
|
+
readonly quote: "0x0";
|
|
3789
|
+
};
|
|
3790
|
+
readonly limit_total_swap_inputs: {
|
|
3791
|
+
readonly base: "0x0";
|
|
3792
|
+
readonly quote: "0x0";
|
|
3793
|
+
};
|
|
3794
|
+
readonly quote_asset: {
|
|
3795
|
+
readonly chain: "Ethereum";
|
|
3796
|
+
readonly asset: "USDC";
|
|
3797
|
+
};
|
|
3798
|
+
};
|
|
3799
|
+
SOL: {
|
|
3800
|
+
limit_order_fee_hundredth_pips: number;
|
|
3801
|
+
range_order_fee_hundredth_pips: number;
|
|
3802
|
+
range_order_total_fees_earned: {
|
|
3803
|
+
base: bigint;
|
|
3804
|
+
quote: bigint;
|
|
3805
|
+
};
|
|
3806
|
+
limit_order_total_fees_earned: {
|
|
3807
|
+
base: bigint;
|
|
3808
|
+
quote: bigint;
|
|
3809
|
+
};
|
|
3810
|
+
range_total_swap_inputs: {
|
|
3811
|
+
base: bigint;
|
|
3812
|
+
quote: bigint;
|
|
3813
|
+
};
|
|
3814
|
+
limit_total_swap_inputs: {
|
|
3815
|
+
base: bigint;
|
|
3816
|
+
quote: bigint;
|
|
3817
|
+
};
|
|
3818
|
+
quote_asset: {
|
|
3819
|
+
chain: "Ethereum";
|
|
3820
|
+
asset: "USDC";
|
|
3821
|
+
};
|
|
3822
|
+
} | {
|
|
3823
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3824
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3825
|
+
readonly range_order_total_fees_earned: {
|
|
3826
|
+
readonly base: "0x0";
|
|
3827
|
+
readonly quote: "0x0";
|
|
3828
|
+
};
|
|
3829
|
+
readonly limit_order_total_fees_earned: {
|
|
3830
|
+
readonly base: "0x0";
|
|
3831
|
+
readonly quote: "0x0";
|
|
3832
|
+
};
|
|
3833
|
+
readonly range_total_swap_inputs: {
|
|
3834
|
+
readonly base: "0x0";
|
|
3835
|
+
readonly quote: "0x0";
|
|
3836
|
+
};
|
|
3837
|
+
readonly limit_total_swap_inputs: {
|
|
3838
|
+
readonly base: "0x0";
|
|
3839
|
+
readonly quote: "0x0";
|
|
3840
|
+
};
|
|
3841
|
+
readonly quote_asset: {
|
|
3842
|
+
readonly chain: "Ethereum";
|
|
3843
|
+
readonly asset: "USDC";
|
|
3844
|
+
};
|
|
3845
|
+
};
|
|
3846
|
+
}, {
|
|
3847
|
+
USDC?: {
|
|
3848
|
+
limit_order_fee_hundredth_pips: number;
|
|
3849
|
+
range_order_fee_hundredth_pips: number;
|
|
3850
|
+
range_order_total_fees_earned: {
|
|
3851
|
+
base: string;
|
|
3852
|
+
quote: string;
|
|
3049
3853
|
};
|
|
3050
3854
|
limit_order_total_fees_earned: {
|
|
3051
3855
|
base: string;
|
|
@@ -3063,7 +3867,31 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3063
3867
|
chain: "Ethereum";
|
|
3064
3868
|
asset: "USDC";
|
|
3065
3869
|
};
|
|
3066
|
-
} | undefined;
|
|
3870
|
+
} | null | undefined;
|
|
3871
|
+
SOL?: {
|
|
3872
|
+
limit_order_fee_hundredth_pips: number;
|
|
3873
|
+
range_order_fee_hundredth_pips: number;
|
|
3874
|
+
range_order_total_fees_earned: {
|
|
3875
|
+
base: string;
|
|
3876
|
+
quote: string;
|
|
3877
|
+
};
|
|
3878
|
+
limit_order_total_fees_earned: {
|
|
3879
|
+
base: string;
|
|
3880
|
+
quote: string;
|
|
3881
|
+
};
|
|
3882
|
+
range_total_swap_inputs: {
|
|
3883
|
+
base: string;
|
|
3884
|
+
quote: string;
|
|
3885
|
+
};
|
|
3886
|
+
limit_total_swap_inputs: {
|
|
3887
|
+
base: string;
|
|
3888
|
+
quote: string;
|
|
3889
|
+
};
|
|
3890
|
+
quote_asset: {
|
|
3891
|
+
chain: "Ethereum";
|
|
3892
|
+
asset: "USDC";
|
|
3893
|
+
};
|
|
3894
|
+
} | null | undefined;
|
|
3067
3895
|
}>>;
|
|
3068
3896
|
}, "strip", z.ZodTypeAny, {
|
|
3069
3897
|
Bitcoin: {
|
|
@@ -3090,6 +3918,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3090
3918
|
chain: "Ethereum";
|
|
3091
3919
|
asset: "USDC";
|
|
3092
3920
|
};
|
|
3921
|
+
} | {
|
|
3922
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3923
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3924
|
+
readonly range_order_total_fees_earned: {
|
|
3925
|
+
readonly base: "0x0";
|
|
3926
|
+
readonly quote: "0x0";
|
|
3927
|
+
};
|
|
3928
|
+
readonly limit_order_total_fees_earned: {
|
|
3929
|
+
readonly base: "0x0";
|
|
3930
|
+
readonly quote: "0x0";
|
|
3931
|
+
};
|
|
3932
|
+
readonly range_total_swap_inputs: {
|
|
3933
|
+
readonly base: "0x0";
|
|
3934
|
+
readonly quote: "0x0";
|
|
3935
|
+
};
|
|
3936
|
+
readonly limit_total_swap_inputs: {
|
|
3937
|
+
readonly base: "0x0";
|
|
3938
|
+
readonly quote: "0x0";
|
|
3939
|
+
};
|
|
3940
|
+
readonly quote_asset: {
|
|
3941
|
+
readonly chain: "Ethereum";
|
|
3942
|
+
readonly asset: "USDC";
|
|
3943
|
+
};
|
|
3093
3944
|
};
|
|
3094
3945
|
};
|
|
3095
3946
|
Ethereum: {
|
|
@@ -3116,6 +3967,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3116
3967
|
chain: "Ethereum";
|
|
3117
3968
|
asset: "USDC";
|
|
3118
3969
|
};
|
|
3970
|
+
} | {
|
|
3971
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3972
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3973
|
+
readonly range_order_total_fees_earned: {
|
|
3974
|
+
readonly base: "0x0";
|
|
3975
|
+
readonly quote: "0x0";
|
|
3976
|
+
};
|
|
3977
|
+
readonly limit_order_total_fees_earned: {
|
|
3978
|
+
readonly base: "0x0";
|
|
3979
|
+
readonly quote: "0x0";
|
|
3980
|
+
};
|
|
3981
|
+
readonly range_total_swap_inputs: {
|
|
3982
|
+
readonly base: "0x0";
|
|
3983
|
+
readonly quote: "0x0";
|
|
3984
|
+
};
|
|
3985
|
+
readonly limit_total_swap_inputs: {
|
|
3986
|
+
readonly base: "0x0";
|
|
3987
|
+
readonly quote: "0x0";
|
|
3988
|
+
};
|
|
3989
|
+
readonly quote_asset: {
|
|
3990
|
+
readonly chain: "Ethereum";
|
|
3991
|
+
readonly asset: "USDC";
|
|
3992
|
+
};
|
|
3119
3993
|
};
|
|
3120
3994
|
FLIP: {
|
|
3121
3995
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3140,6 +4014,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3140
4014
|
chain: "Ethereum";
|
|
3141
4015
|
asset: "USDC";
|
|
3142
4016
|
};
|
|
4017
|
+
} | {
|
|
4018
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4019
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4020
|
+
readonly range_order_total_fees_earned: {
|
|
4021
|
+
readonly base: "0x0";
|
|
4022
|
+
readonly quote: "0x0";
|
|
4023
|
+
};
|
|
4024
|
+
readonly limit_order_total_fees_earned: {
|
|
4025
|
+
readonly base: "0x0";
|
|
4026
|
+
readonly quote: "0x0";
|
|
4027
|
+
};
|
|
4028
|
+
readonly range_total_swap_inputs: {
|
|
4029
|
+
readonly base: "0x0";
|
|
4030
|
+
readonly quote: "0x0";
|
|
4031
|
+
};
|
|
4032
|
+
readonly limit_total_swap_inputs: {
|
|
4033
|
+
readonly base: "0x0";
|
|
4034
|
+
readonly quote: "0x0";
|
|
4035
|
+
};
|
|
4036
|
+
readonly quote_asset: {
|
|
4037
|
+
readonly chain: "Ethereum";
|
|
4038
|
+
readonly asset: "USDC";
|
|
4039
|
+
};
|
|
3143
4040
|
};
|
|
3144
4041
|
USDT: {
|
|
3145
4042
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3164,6 +4061,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3164
4061
|
chain: "Ethereum";
|
|
3165
4062
|
asset: "USDC";
|
|
3166
4063
|
};
|
|
4064
|
+
} | {
|
|
4065
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4066
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4067
|
+
readonly range_order_total_fees_earned: {
|
|
4068
|
+
readonly base: "0x0";
|
|
4069
|
+
readonly quote: "0x0";
|
|
4070
|
+
};
|
|
4071
|
+
readonly limit_order_total_fees_earned: {
|
|
4072
|
+
readonly base: "0x0";
|
|
4073
|
+
readonly quote: "0x0";
|
|
4074
|
+
};
|
|
4075
|
+
readonly range_total_swap_inputs: {
|
|
4076
|
+
readonly base: "0x0";
|
|
4077
|
+
readonly quote: "0x0";
|
|
4078
|
+
};
|
|
4079
|
+
readonly limit_total_swap_inputs: {
|
|
4080
|
+
readonly base: "0x0";
|
|
4081
|
+
readonly quote: "0x0";
|
|
4082
|
+
};
|
|
4083
|
+
readonly quote_asset: {
|
|
4084
|
+
readonly chain: "Ethereum";
|
|
4085
|
+
readonly asset: "USDC";
|
|
4086
|
+
};
|
|
3167
4087
|
};
|
|
3168
4088
|
};
|
|
3169
4089
|
Polkadot: {
|
|
@@ -3190,6 +4110,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3190
4110
|
chain: "Ethereum";
|
|
3191
4111
|
asset: "USDC";
|
|
3192
4112
|
};
|
|
4113
|
+
} | {
|
|
4114
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4115
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4116
|
+
readonly range_order_total_fees_earned: {
|
|
4117
|
+
readonly base: "0x0";
|
|
4118
|
+
readonly quote: "0x0";
|
|
4119
|
+
};
|
|
4120
|
+
readonly limit_order_total_fees_earned: {
|
|
4121
|
+
readonly base: "0x0";
|
|
4122
|
+
readonly quote: "0x0";
|
|
4123
|
+
};
|
|
4124
|
+
readonly range_total_swap_inputs: {
|
|
4125
|
+
readonly base: "0x0";
|
|
4126
|
+
readonly quote: "0x0";
|
|
4127
|
+
};
|
|
4128
|
+
readonly limit_total_swap_inputs: {
|
|
4129
|
+
readonly base: "0x0";
|
|
4130
|
+
readonly quote: "0x0";
|
|
4131
|
+
};
|
|
4132
|
+
readonly quote_asset: {
|
|
4133
|
+
readonly chain: "Ethereum";
|
|
4134
|
+
readonly asset: "USDC";
|
|
4135
|
+
};
|
|
3193
4136
|
};
|
|
3194
4137
|
};
|
|
3195
4138
|
Arbitrum: {
|
|
@@ -3216,6 +4159,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3216
4159
|
chain: "Ethereum";
|
|
3217
4160
|
asset: "USDC";
|
|
3218
4161
|
};
|
|
4162
|
+
} | {
|
|
4163
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4164
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4165
|
+
readonly range_order_total_fees_earned: {
|
|
4166
|
+
readonly base: "0x0";
|
|
4167
|
+
readonly quote: "0x0";
|
|
4168
|
+
};
|
|
4169
|
+
readonly limit_order_total_fees_earned: {
|
|
4170
|
+
readonly base: "0x0";
|
|
4171
|
+
readonly quote: "0x0";
|
|
4172
|
+
};
|
|
4173
|
+
readonly range_total_swap_inputs: {
|
|
4174
|
+
readonly base: "0x0";
|
|
4175
|
+
readonly quote: "0x0";
|
|
4176
|
+
};
|
|
4177
|
+
readonly limit_total_swap_inputs: {
|
|
4178
|
+
readonly base: "0x0";
|
|
4179
|
+
readonly quote: "0x0";
|
|
4180
|
+
};
|
|
4181
|
+
readonly quote_asset: {
|
|
4182
|
+
readonly chain: "Ethereum";
|
|
4183
|
+
readonly asset: "USDC";
|
|
4184
|
+
};
|
|
3219
4185
|
};
|
|
3220
4186
|
USDC: {
|
|
3221
4187
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3240,6 +4206,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3240
4206
|
chain: "Ethereum";
|
|
3241
4207
|
asset: "USDC";
|
|
3242
4208
|
};
|
|
4209
|
+
} | {
|
|
4210
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4211
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4212
|
+
readonly range_order_total_fees_earned: {
|
|
4213
|
+
readonly base: "0x0";
|
|
4214
|
+
readonly quote: "0x0";
|
|
4215
|
+
};
|
|
4216
|
+
readonly limit_order_total_fees_earned: {
|
|
4217
|
+
readonly base: "0x0";
|
|
4218
|
+
readonly quote: "0x0";
|
|
4219
|
+
};
|
|
4220
|
+
readonly range_total_swap_inputs: {
|
|
4221
|
+
readonly base: "0x0";
|
|
4222
|
+
readonly quote: "0x0";
|
|
4223
|
+
};
|
|
4224
|
+
readonly limit_total_swap_inputs: {
|
|
4225
|
+
readonly base: "0x0";
|
|
4226
|
+
readonly quote: "0x0";
|
|
4227
|
+
};
|
|
4228
|
+
readonly quote_asset: {
|
|
4229
|
+
readonly chain: "Ethereum";
|
|
4230
|
+
readonly asset: "USDC";
|
|
4231
|
+
};
|
|
3243
4232
|
};
|
|
3244
4233
|
};
|
|
3245
4234
|
Solana: {
|
|
@@ -3266,6 +4255,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3266
4255
|
chain: "Ethereum";
|
|
3267
4256
|
asset: "USDC";
|
|
3268
4257
|
};
|
|
4258
|
+
} | {
|
|
4259
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4260
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4261
|
+
readonly range_order_total_fees_earned: {
|
|
4262
|
+
readonly base: "0x0";
|
|
4263
|
+
readonly quote: "0x0";
|
|
4264
|
+
};
|
|
4265
|
+
readonly limit_order_total_fees_earned: {
|
|
4266
|
+
readonly base: "0x0";
|
|
4267
|
+
readonly quote: "0x0";
|
|
4268
|
+
};
|
|
4269
|
+
readonly range_total_swap_inputs: {
|
|
4270
|
+
readonly base: "0x0";
|
|
4271
|
+
readonly quote: "0x0";
|
|
4272
|
+
};
|
|
4273
|
+
readonly limit_total_swap_inputs: {
|
|
4274
|
+
readonly base: "0x0";
|
|
4275
|
+
readonly quote: "0x0";
|
|
4276
|
+
};
|
|
4277
|
+
readonly quote_asset: {
|
|
4278
|
+
readonly chain: "Ethereum";
|
|
4279
|
+
readonly asset: "USDC";
|
|
4280
|
+
};
|
|
3269
4281
|
};
|
|
3270
4282
|
SOL: {
|
|
3271
4283
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3290,6 +4302,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3290
4302
|
chain: "Ethereum";
|
|
3291
4303
|
asset: "USDC";
|
|
3292
4304
|
};
|
|
4305
|
+
} | {
|
|
4306
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4307
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4308
|
+
readonly range_order_total_fees_earned: {
|
|
4309
|
+
readonly base: "0x0";
|
|
4310
|
+
readonly quote: "0x0";
|
|
4311
|
+
};
|
|
4312
|
+
readonly limit_order_total_fees_earned: {
|
|
4313
|
+
readonly base: "0x0";
|
|
4314
|
+
readonly quote: "0x0";
|
|
4315
|
+
};
|
|
4316
|
+
readonly range_total_swap_inputs: {
|
|
4317
|
+
readonly base: "0x0";
|
|
4318
|
+
readonly quote: "0x0";
|
|
4319
|
+
};
|
|
4320
|
+
readonly limit_total_swap_inputs: {
|
|
4321
|
+
readonly base: "0x0";
|
|
4322
|
+
readonly quote: "0x0";
|
|
4323
|
+
};
|
|
4324
|
+
readonly quote_asset: {
|
|
4325
|
+
readonly chain: "Ethereum";
|
|
4326
|
+
readonly asset: "USDC";
|
|
4327
|
+
};
|
|
3293
4328
|
};
|
|
3294
4329
|
};
|
|
3295
4330
|
}, {
|
|
@@ -3317,7 +4352,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3317
4352
|
chain: "Ethereum";
|
|
3318
4353
|
asset: "USDC";
|
|
3319
4354
|
};
|
|
3320
|
-
};
|
|
4355
|
+
} | null;
|
|
3321
4356
|
};
|
|
3322
4357
|
Ethereum: {
|
|
3323
4358
|
ETH: {
|
|
@@ -3343,7 +4378,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3343
4378
|
chain: "Ethereum";
|
|
3344
4379
|
asset: "USDC";
|
|
3345
4380
|
};
|
|
3346
|
-
};
|
|
4381
|
+
} | null;
|
|
3347
4382
|
FLIP: {
|
|
3348
4383
|
limit_order_fee_hundredth_pips: number;
|
|
3349
4384
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3367,7 +4402,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3367
4402
|
chain: "Ethereum";
|
|
3368
4403
|
asset: "USDC";
|
|
3369
4404
|
};
|
|
3370
|
-
};
|
|
4405
|
+
} | null;
|
|
3371
4406
|
USDT: {
|
|
3372
4407
|
limit_order_fee_hundredth_pips: number;
|
|
3373
4408
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3391,7 +4426,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3391
4426
|
chain: "Ethereum";
|
|
3392
4427
|
asset: "USDC";
|
|
3393
4428
|
};
|
|
3394
|
-
};
|
|
4429
|
+
} | null;
|
|
3395
4430
|
};
|
|
3396
4431
|
Polkadot: {
|
|
3397
4432
|
DOT: {
|
|
@@ -3417,7 +4452,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3417
4452
|
chain: "Ethereum";
|
|
3418
4453
|
asset: "USDC";
|
|
3419
4454
|
};
|
|
3420
|
-
};
|
|
4455
|
+
} | null;
|
|
3421
4456
|
};
|
|
3422
4457
|
Arbitrum: {
|
|
3423
4458
|
ETH: {
|
|
@@ -3443,7 +4478,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3443
4478
|
chain: "Ethereum";
|
|
3444
4479
|
asset: "USDC";
|
|
3445
4480
|
};
|
|
3446
|
-
};
|
|
4481
|
+
} | null;
|
|
3447
4482
|
USDC: {
|
|
3448
4483
|
limit_order_fee_hundredth_pips: number;
|
|
3449
4484
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3467,7 +4502,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3467
4502
|
chain: "Ethereum";
|
|
3468
4503
|
asset: "USDC";
|
|
3469
4504
|
};
|
|
3470
|
-
};
|
|
4505
|
+
} | null;
|
|
3471
4506
|
};
|
|
3472
4507
|
Solana?: {
|
|
3473
4508
|
USDC?: {
|
|
@@ -3493,7 +4528,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3493
4528
|
chain: "Ethereum";
|
|
3494
4529
|
asset: "USDC";
|
|
3495
4530
|
};
|
|
3496
|
-
} | undefined;
|
|
4531
|
+
} | null | undefined;
|
|
3497
4532
|
SOL?: {
|
|
3498
4533
|
limit_order_fee_hundredth_pips: number;
|
|
3499
4534
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3517,7 +4552,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3517
4552
|
chain: "Ethereum";
|
|
3518
4553
|
asset: "USDC";
|
|
3519
4554
|
};
|
|
3520
|
-
} | undefined;
|
|
4555
|
+
} | null | undefined;
|
|
3521
4556
|
} | undefined;
|
|
3522
4557
|
}>;
|
|
3523
4558
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3546,6 +4581,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3546
4581
|
chain: "Ethereum";
|
|
3547
4582
|
asset: "USDC";
|
|
3548
4583
|
};
|
|
4584
|
+
} | {
|
|
4585
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4586
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4587
|
+
readonly range_order_total_fees_earned: {
|
|
4588
|
+
readonly base: "0x0";
|
|
4589
|
+
readonly quote: "0x0";
|
|
4590
|
+
};
|
|
4591
|
+
readonly limit_order_total_fees_earned: {
|
|
4592
|
+
readonly base: "0x0";
|
|
4593
|
+
readonly quote: "0x0";
|
|
4594
|
+
};
|
|
4595
|
+
readonly range_total_swap_inputs: {
|
|
4596
|
+
readonly base: "0x0";
|
|
4597
|
+
readonly quote: "0x0";
|
|
4598
|
+
};
|
|
4599
|
+
readonly limit_total_swap_inputs: {
|
|
4600
|
+
readonly base: "0x0";
|
|
4601
|
+
readonly quote: "0x0";
|
|
4602
|
+
};
|
|
4603
|
+
readonly quote_asset: {
|
|
4604
|
+
readonly chain: "Ethereum";
|
|
4605
|
+
readonly asset: "USDC";
|
|
4606
|
+
};
|
|
3549
4607
|
};
|
|
3550
4608
|
};
|
|
3551
4609
|
Ethereum: {
|
|
@@ -3572,6 +4630,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3572
4630
|
chain: "Ethereum";
|
|
3573
4631
|
asset: "USDC";
|
|
3574
4632
|
};
|
|
4633
|
+
} | {
|
|
4634
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4635
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4636
|
+
readonly range_order_total_fees_earned: {
|
|
4637
|
+
readonly base: "0x0";
|
|
4638
|
+
readonly quote: "0x0";
|
|
4639
|
+
};
|
|
4640
|
+
readonly limit_order_total_fees_earned: {
|
|
4641
|
+
readonly base: "0x0";
|
|
4642
|
+
readonly quote: "0x0";
|
|
4643
|
+
};
|
|
4644
|
+
readonly range_total_swap_inputs: {
|
|
4645
|
+
readonly base: "0x0";
|
|
4646
|
+
readonly quote: "0x0";
|
|
4647
|
+
};
|
|
4648
|
+
readonly limit_total_swap_inputs: {
|
|
4649
|
+
readonly base: "0x0";
|
|
4650
|
+
readonly quote: "0x0";
|
|
4651
|
+
};
|
|
4652
|
+
readonly quote_asset: {
|
|
4653
|
+
readonly chain: "Ethereum";
|
|
4654
|
+
readonly asset: "USDC";
|
|
4655
|
+
};
|
|
3575
4656
|
};
|
|
3576
4657
|
FLIP: {
|
|
3577
4658
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3596,6 +4677,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3596
4677
|
chain: "Ethereum";
|
|
3597
4678
|
asset: "USDC";
|
|
3598
4679
|
};
|
|
4680
|
+
} | {
|
|
4681
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4682
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4683
|
+
readonly range_order_total_fees_earned: {
|
|
4684
|
+
readonly base: "0x0";
|
|
4685
|
+
readonly quote: "0x0";
|
|
4686
|
+
};
|
|
4687
|
+
readonly limit_order_total_fees_earned: {
|
|
4688
|
+
readonly base: "0x0";
|
|
4689
|
+
readonly quote: "0x0";
|
|
4690
|
+
};
|
|
4691
|
+
readonly range_total_swap_inputs: {
|
|
4692
|
+
readonly base: "0x0";
|
|
4693
|
+
readonly quote: "0x0";
|
|
4694
|
+
};
|
|
4695
|
+
readonly limit_total_swap_inputs: {
|
|
4696
|
+
readonly base: "0x0";
|
|
4697
|
+
readonly quote: "0x0";
|
|
4698
|
+
};
|
|
4699
|
+
readonly quote_asset: {
|
|
4700
|
+
readonly chain: "Ethereum";
|
|
4701
|
+
readonly asset: "USDC";
|
|
4702
|
+
};
|
|
3599
4703
|
};
|
|
3600
4704
|
USDT: {
|
|
3601
4705
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3620,6 +4724,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3620
4724
|
chain: "Ethereum";
|
|
3621
4725
|
asset: "USDC";
|
|
3622
4726
|
};
|
|
4727
|
+
} | {
|
|
4728
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4729
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4730
|
+
readonly range_order_total_fees_earned: {
|
|
4731
|
+
readonly base: "0x0";
|
|
4732
|
+
readonly quote: "0x0";
|
|
4733
|
+
};
|
|
4734
|
+
readonly limit_order_total_fees_earned: {
|
|
4735
|
+
readonly base: "0x0";
|
|
4736
|
+
readonly quote: "0x0";
|
|
4737
|
+
};
|
|
4738
|
+
readonly range_total_swap_inputs: {
|
|
4739
|
+
readonly base: "0x0";
|
|
4740
|
+
readonly quote: "0x0";
|
|
4741
|
+
};
|
|
4742
|
+
readonly limit_total_swap_inputs: {
|
|
4743
|
+
readonly base: "0x0";
|
|
4744
|
+
readonly quote: "0x0";
|
|
4745
|
+
};
|
|
4746
|
+
readonly quote_asset: {
|
|
4747
|
+
readonly chain: "Ethereum";
|
|
4748
|
+
readonly asset: "USDC";
|
|
4749
|
+
};
|
|
3623
4750
|
};
|
|
3624
4751
|
};
|
|
3625
4752
|
Polkadot: {
|
|
@@ -3646,6 +4773,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3646
4773
|
chain: "Ethereum";
|
|
3647
4774
|
asset: "USDC";
|
|
3648
4775
|
};
|
|
4776
|
+
} | {
|
|
4777
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4778
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4779
|
+
readonly range_order_total_fees_earned: {
|
|
4780
|
+
readonly base: "0x0";
|
|
4781
|
+
readonly quote: "0x0";
|
|
4782
|
+
};
|
|
4783
|
+
readonly limit_order_total_fees_earned: {
|
|
4784
|
+
readonly base: "0x0";
|
|
4785
|
+
readonly quote: "0x0";
|
|
4786
|
+
};
|
|
4787
|
+
readonly range_total_swap_inputs: {
|
|
4788
|
+
readonly base: "0x0";
|
|
4789
|
+
readonly quote: "0x0";
|
|
4790
|
+
};
|
|
4791
|
+
readonly limit_total_swap_inputs: {
|
|
4792
|
+
readonly base: "0x0";
|
|
4793
|
+
readonly quote: "0x0";
|
|
4794
|
+
};
|
|
4795
|
+
readonly quote_asset: {
|
|
4796
|
+
readonly chain: "Ethereum";
|
|
4797
|
+
readonly asset: "USDC";
|
|
4798
|
+
};
|
|
3649
4799
|
};
|
|
3650
4800
|
};
|
|
3651
4801
|
Arbitrum: {
|
|
@@ -3672,6 +4822,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3672
4822
|
chain: "Ethereum";
|
|
3673
4823
|
asset: "USDC";
|
|
3674
4824
|
};
|
|
4825
|
+
} | {
|
|
4826
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4827
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4828
|
+
readonly range_order_total_fees_earned: {
|
|
4829
|
+
readonly base: "0x0";
|
|
4830
|
+
readonly quote: "0x0";
|
|
4831
|
+
};
|
|
4832
|
+
readonly limit_order_total_fees_earned: {
|
|
4833
|
+
readonly base: "0x0";
|
|
4834
|
+
readonly quote: "0x0";
|
|
4835
|
+
};
|
|
4836
|
+
readonly range_total_swap_inputs: {
|
|
4837
|
+
readonly base: "0x0";
|
|
4838
|
+
readonly quote: "0x0";
|
|
4839
|
+
};
|
|
4840
|
+
readonly limit_total_swap_inputs: {
|
|
4841
|
+
readonly base: "0x0";
|
|
4842
|
+
readonly quote: "0x0";
|
|
4843
|
+
};
|
|
4844
|
+
readonly quote_asset: {
|
|
4845
|
+
readonly chain: "Ethereum";
|
|
4846
|
+
readonly asset: "USDC";
|
|
4847
|
+
};
|
|
3675
4848
|
};
|
|
3676
4849
|
USDC: {
|
|
3677
4850
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3696,6 +4869,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3696
4869
|
chain: "Ethereum";
|
|
3697
4870
|
asset: "USDC";
|
|
3698
4871
|
};
|
|
4872
|
+
} | {
|
|
4873
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4874
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4875
|
+
readonly range_order_total_fees_earned: {
|
|
4876
|
+
readonly base: "0x0";
|
|
4877
|
+
readonly quote: "0x0";
|
|
4878
|
+
};
|
|
4879
|
+
readonly limit_order_total_fees_earned: {
|
|
4880
|
+
readonly base: "0x0";
|
|
4881
|
+
readonly quote: "0x0";
|
|
4882
|
+
};
|
|
4883
|
+
readonly range_total_swap_inputs: {
|
|
4884
|
+
readonly base: "0x0";
|
|
4885
|
+
readonly quote: "0x0";
|
|
4886
|
+
};
|
|
4887
|
+
readonly limit_total_swap_inputs: {
|
|
4888
|
+
readonly base: "0x0";
|
|
4889
|
+
readonly quote: "0x0";
|
|
4890
|
+
};
|
|
4891
|
+
readonly quote_asset: {
|
|
4892
|
+
readonly chain: "Ethereum";
|
|
4893
|
+
readonly asset: "USDC";
|
|
4894
|
+
};
|
|
3699
4895
|
};
|
|
3700
4896
|
};
|
|
3701
4897
|
Solana: {
|
|
@@ -3722,6 +4918,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3722
4918
|
chain: "Ethereum";
|
|
3723
4919
|
asset: "USDC";
|
|
3724
4920
|
};
|
|
4921
|
+
} | {
|
|
4922
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4923
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4924
|
+
readonly range_order_total_fees_earned: {
|
|
4925
|
+
readonly base: "0x0";
|
|
4926
|
+
readonly quote: "0x0";
|
|
4927
|
+
};
|
|
4928
|
+
readonly limit_order_total_fees_earned: {
|
|
4929
|
+
readonly base: "0x0";
|
|
4930
|
+
readonly quote: "0x0";
|
|
4931
|
+
};
|
|
4932
|
+
readonly range_total_swap_inputs: {
|
|
4933
|
+
readonly base: "0x0";
|
|
4934
|
+
readonly quote: "0x0";
|
|
4935
|
+
};
|
|
4936
|
+
readonly limit_total_swap_inputs: {
|
|
4937
|
+
readonly base: "0x0";
|
|
4938
|
+
readonly quote: "0x0";
|
|
4939
|
+
};
|
|
4940
|
+
readonly quote_asset: {
|
|
4941
|
+
readonly chain: "Ethereum";
|
|
4942
|
+
readonly asset: "USDC";
|
|
4943
|
+
};
|
|
3725
4944
|
};
|
|
3726
4945
|
SOL: {
|
|
3727
4946
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3746,6 +4965,29 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3746
4965
|
chain: "Ethereum";
|
|
3747
4966
|
asset: "USDC";
|
|
3748
4967
|
};
|
|
4968
|
+
} | {
|
|
4969
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4970
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4971
|
+
readonly range_order_total_fees_earned: {
|
|
4972
|
+
readonly base: "0x0";
|
|
4973
|
+
readonly quote: "0x0";
|
|
4974
|
+
};
|
|
4975
|
+
readonly limit_order_total_fees_earned: {
|
|
4976
|
+
readonly base: "0x0";
|
|
4977
|
+
readonly quote: "0x0";
|
|
4978
|
+
};
|
|
4979
|
+
readonly range_total_swap_inputs: {
|
|
4980
|
+
readonly base: "0x0";
|
|
4981
|
+
readonly quote: "0x0";
|
|
4982
|
+
};
|
|
4983
|
+
readonly limit_total_swap_inputs: {
|
|
4984
|
+
readonly base: "0x0";
|
|
4985
|
+
readonly quote: "0x0";
|
|
4986
|
+
};
|
|
4987
|
+
readonly quote_asset: {
|
|
4988
|
+
readonly chain: "Ethereum";
|
|
4989
|
+
readonly asset: "USDC";
|
|
4990
|
+
};
|
|
3749
4991
|
};
|
|
3750
4992
|
};
|
|
3751
4993
|
};
|
|
@@ -3775,7 +5017,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3775
5017
|
chain: "Ethereum";
|
|
3776
5018
|
asset: "USDC";
|
|
3777
5019
|
};
|
|
3778
|
-
};
|
|
5020
|
+
} | null;
|
|
3779
5021
|
};
|
|
3780
5022
|
Ethereum: {
|
|
3781
5023
|
ETH: {
|
|
@@ -3801,7 +5043,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3801
5043
|
chain: "Ethereum";
|
|
3802
5044
|
asset: "USDC";
|
|
3803
5045
|
};
|
|
3804
|
-
};
|
|
5046
|
+
} | null;
|
|
3805
5047
|
FLIP: {
|
|
3806
5048
|
limit_order_fee_hundredth_pips: number;
|
|
3807
5049
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3825,7 +5067,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3825
5067
|
chain: "Ethereum";
|
|
3826
5068
|
asset: "USDC";
|
|
3827
5069
|
};
|
|
3828
|
-
};
|
|
5070
|
+
} | null;
|
|
3829
5071
|
USDT: {
|
|
3830
5072
|
limit_order_fee_hundredth_pips: number;
|
|
3831
5073
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3849,7 +5091,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3849
5091
|
chain: "Ethereum";
|
|
3850
5092
|
asset: "USDC";
|
|
3851
5093
|
};
|
|
3852
|
-
};
|
|
5094
|
+
} | null;
|
|
3853
5095
|
};
|
|
3854
5096
|
Polkadot: {
|
|
3855
5097
|
DOT: {
|
|
@@ -3875,7 +5117,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3875
5117
|
chain: "Ethereum";
|
|
3876
5118
|
asset: "USDC";
|
|
3877
5119
|
};
|
|
3878
|
-
};
|
|
5120
|
+
} | null;
|
|
3879
5121
|
};
|
|
3880
5122
|
Arbitrum: {
|
|
3881
5123
|
ETH: {
|
|
@@ -3901,7 +5143,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3901
5143
|
chain: "Ethereum";
|
|
3902
5144
|
asset: "USDC";
|
|
3903
5145
|
};
|
|
3904
|
-
};
|
|
5146
|
+
} | null;
|
|
3905
5147
|
USDC: {
|
|
3906
5148
|
limit_order_fee_hundredth_pips: number;
|
|
3907
5149
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3925,7 +5167,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3925
5167
|
chain: "Ethereum";
|
|
3926
5168
|
asset: "USDC";
|
|
3927
5169
|
};
|
|
3928
|
-
};
|
|
5170
|
+
} | null;
|
|
3929
5171
|
};
|
|
3930
5172
|
Solana?: {
|
|
3931
5173
|
USDC?: {
|
|
@@ -3951,7 +5193,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3951
5193
|
chain: "Ethereum";
|
|
3952
5194
|
asset: "USDC";
|
|
3953
5195
|
};
|
|
3954
|
-
} | undefined;
|
|
5196
|
+
} | null | undefined;
|
|
3955
5197
|
SOL?: {
|
|
3956
5198
|
limit_order_fee_hundredth_pips: number;
|
|
3957
5199
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3975,7 +5217,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
3975
5217
|
chain: "Ethereum";
|
|
3976
5218
|
asset: "USDC";
|
|
3977
5219
|
};
|
|
3978
|
-
} | undefined;
|
|
5220
|
+
} | null | undefined;
|
|
3979
5221
|
} | undefined;
|
|
3980
5222
|
};
|
|
3981
5223
|
}>;
|
|
@@ -5015,7 +6257,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5015
6257
|
pools: z.ZodObject<{
|
|
5016
6258
|
fees: z.ZodObject<{
|
|
5017
6259
|
Bitcoin: z.ZodObject<{
|
|
5018
|
-
BTC: z.ZodObject<{
|
|
6260
|
+
BTC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5019
6261
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5020
6262
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5021
6263
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5114,7 +6356,76 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5114
6356
|
chain: "Ethereum";
|
|
5115
6357
|
asset: "USDC";
|
|
5116
6358
|
};
|
|
5117
|
-
}
|
|
6359
|
+
}>>, {
|
|
6360
|
+
limit_order_fee_hundredth_pips: number;
|
|
6361
|
+
range_order_fee_hundredth_pips: number;
|
|
6362
|
+
range_order_total_fees_earned: {
|
|
6363
|
+
base: bigint;
|
|
6364
|
+
quote: bigint;
|
|
6365
|
+
};
|
|
6366
|
+
limit_order_total_fees_earned: {
|
|
6367
|
+
base: bigint;
|
|
6368
|
+
quote: bigint;
|
|
6369
|
+
};
|
|
6370
|
+
range_total_swap_inputs: {
|
|
6371
|
+
base: bigint;
|
|
6372
|
+
quote: bigint;
|
|
6373
|
+
};
|
|
6374
|
+
limit_total_swap_inputs: {
|
|
6375
|
+
base: bigint;
|
|
6376
|
+
quote: bigint;
|
|
6377
|
+
};
|
|
6378
|
+
quote_asset: {
|
|
6379
|
+
chain: "Ethereum";
|
|
6380
|
+
asset: "USDC";
|
|
6381
|
+
};
|
|
6382
|
+
} | {
|
|
6383
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
6384
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
6385
|
+
readonly range_order_total_fees_earned: {
|
|
6386
|
+
readonly base: "0x0";
|
|
6387
|
+
readonly quote: "0x0";
|
|
6388
|
+
};
|
|
6389
|
+
readonly limit_order_total_fees_earned: {
|
|
6390
|
+
readonly base: "0x0";
|
|
6391
|
+
readonly quote: "0x0";
|
|
6392
|
+
};
|
|
6393
|
+
readonly range_total_swap_inputs: {
|
|
6394
|
+
readonly base: "0x0";
|
|
6395
|
+
readonly quote: "0x0";
|
|
6396
|
+
};
|
|
6397
|
+
readonly limit_total_swap_inputs: {
|
|
6398
|
+
readonly base: "0x0";
|
|
6399
|
+
readonly quote: "0x0";
|
|
6400
|
+
};
|
|
6401
|
+
readonly quote_asset: {
|
|
6402
|
+
readonly chain: "Ethereum";
|
|
6403
|
+
readonly asset: "USDC";
|
|
6404
|
+
};
|
|
6405
|
+
}, {
|
|
6406
|
+
limit_order_fee_hundredth_pips: number;
|
|
6407
|
+
range_order_fee_hundredth_pips: number;
|
|
6408
|
+
range_order_total_fees_earned: {
|
|
6409
|
+
base: string;
|
|
6410
|
+
quote: string;
|
|
6411
|
+
};
|
|
6412
|
+
limit_order_total_fees_earned: {
|
|
6413
|
+
base: string;
|
|
6414
|
+
quote: string;
|
|
6415
|
+
};
|
|
6416
|
+
range_total_swap_inputs: {
|
|
6417
|
+
base: string;
|
|
6418
|
+
quote: string;
|
|
6419
|
+
};
|
|
6420
|
+
limit_total_swap_inputs: {
|
|
6421
|
+
base: string;
|
|
6422
|
+
quote: string;
|
|
6423
|
+
};
|
|
6424
|
+
quote_asset: {
|
|
6425
|
+
chain: "Ethereum";
|
|
6426
|
+
asset: "USDC";
|
|
6427
|
+
};
|
|
6428
|
+
} | null>;
|
|
5118
6429
|
}, "strip", z.ZodTypeAny, {
|
|
5119
6430
|
BTC: {
|
|
5120
6431
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -5139,6 +6450,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5139
6450
|
chain: "Ethereum";
|
|
5140
6451
|
asset: "USDC";
|
|
5141
6452
|
};
|
|
6453
|
+
} | {
|
|
6454
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
6455
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
6456
|
+
readonly range_order_total_fees_earned: {
|
|
6457
|
+
readonly base: "0x0";
|
|
6458
|
+
readonly quote: "0x0";
|
|
6459
|
+
};
|
|
6460
|
+
readonly limit_order_total_fees_earned: {
|
|
6461
|
+
readonly base: "0x0";
|
|
6462
|
+
readonly quote: "0x0";
|
|
6463
|
+
};
|
|
6464
|
+
readonly range_total_swap_inputs: {
|
|
6465
|
+
readonly base: "0x0";
|
|
6466
|
+
readonly quote: "0x0";
|
|
6467
|
+
};
|
|
6468
|
+
readonly limit_total_swap_inputs: {
|
|
6469
|
+
readonly base: "0x0";
|
|
6470
|
+
readonly quote: "0x0";
|
|
6471
|
+
};
|
|
6472
|
+
readonly quote_asset: {
|
|
6473
|
+
readonly chain: "Ethereum";
|
|
6474
|
+
readonly asset: "USDC";
|
|
6475
|
+
};
|
|
5142
6476
|
};
|
|
5143
6477
|
}, {
|
|
5144
6478
|
BTC: {
|
|
@@ -5164,10 +6498,10 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5164
6498
|
chain: "Ethereum";
|
|
5165
6499
|
asset: "USDC";
|
|
5166
6500
|
};
|
|
5167
|
-
};
|
|
6501
|
+
} | null;
|
|
5168
6502
|
}>;
|
|
5169
6503
|
Ethereum: z.ZodObject<{
|
|
5170
|
-
ETH: z.ZodObject<{
|
|
6504
|
+
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5171
6505
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5172
6506
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5173
6507
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5266,13 +6600,82 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5266
6600
|
chain: "Ethereum";
|
|
5267
6601
|
asset: "USDC";
|
|
5268
6602
|
};
|
|
5269
|
-
}
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
6603
|
+
}>>, {
|
|
6604
|
+
limit_order_fee_hundredth_pips: number;
|
|
6605
|
+
range_order_fee_hundredth_pips: number;
|
|
6606
|
+
range_order_total_fees_earned: {
|
|
6607
|
+
base: bigint;
|
|
6608
|
+
quote: bigint;
|
|
6609
|
+
};
|
|
6610
|
+
limit_order_total_fees_earned: {
|
|
6611
|
+
base: bigint;
|
|
6612
|
+
quote: bigint;
|
|
6613
|
+
};
|
|
6614
|
+
range_total_swap_inputs: {
|
|
6615
|
+
base: bigint;
|
|
6616
|
+
quote: bigint;
|
|
6617
|
+
};
|
|
6618
|
+
limit_total_swap_inputs: {
|
|
6619
|
+
base: bigint;
|
|
6620
|
+
quote: bigint;
|
|
6621
|
+
};
|
|
6622
|
+
quote_asset: {
|
|
6623
|
+
chain: "Ethereum";
|
|
6624
|
+
asset: "USDC";
|
|
6625
|
+
};
|
|
6626
|
+
} | {
|
|
6627
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
6628
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
6629
|
+
readonly range_order_total_fees_earned: {
|
|
6630
|
+
readonly base: "0x0";
|
|
6631
|
+
readonly quote: "0x0";
|
|
6632
|
+
};
|
|
6633
|
+
readonly limit_order_total_fees_earned: {
|
|
6634
|
+
readonly base: "0x0";
|
|
6635
|
+
readonly quote: "0x0";
|
|
6636
|
+
};
|
|
6637
|
+
readonly range_total_swap_inputs: {
|
|
6638
|
+
readonly base: "0x0";
|
|
6639
|
+
readonly quote: "0x0";
|
|
6640
|
+
};
|
|
6641
|
+
readonly limit_total_swap_inputs: {
|
|
6642
|
+
readonly base: "0x0";
|
|
6643
|
+
readonly quote: "0x0";
|
|
6644
|
+
};
|
|
6645
|
+
readonly quote_asset: {
|
|
6646
|
+
readonly chain: "Ethereum";
|
|
6647
|
+
readonly asset: "USDC";
|
|
6648
|
+
};
|
|
6649
|
+
}, {
|
|
6650
|
+
limit_order_fee_hundredth_pips: number;
|
|
6651
|
+
range_order_fee_hundredth_pips: number;
|
|
6652
|
+
range_order_total_fees_earned: {
|
|
6653
|
+
base: string;
|
|
6654
|
+
quote: string;
|
|
6655
|
+
};
|
|
6656
|
+
limit_order_total_fees_earned: {
|
|
6657
|
+
base: string;
|
|
6658
|
+
quote: string;
|
|
6659
|
+
};
|
|
6660
|
+
range_total_swap_inputs: {
|
|
6661
|
+
base: string;
|
|
6662
|
+
quote: string;
|
|
6663
|
+
};
|
|
6664
|
+
limit_total_swap_inputs: {
|
|
6665
|
+
base: string;
|
|
6666
|
+
quote: string;
|
|
6667
|
+
};
|
|
6668
|
+
quote_asset: {
|
|
6669
|
+
chain: "Ethereum";
|
|
6670
|
+
asset: "USDC";
|
|
6671
|
+
};
|
|
6672
|
+
} | null>;
|
|
6673
|
+
FLIP: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
6674
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
6675
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
6676
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
6677
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6678
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5276
6679
|
}, "strip", z.ZodTypeAny, {
|
|
5277
6680
|
base: bigint;
|
|
5278
6681
|
quote: bigint;
|
|
@@ -5366,8 +6769,77 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5366
6769
|
chain: "Ethereum";
|
|
5367
6770
|
asset: "USDC";
|
|
5368
6771
|
};
|
|
5369
|
-
}
|
|
5370
|
-
|
|
6772
|
+
}>>, {
|
|
6773
|
+
limit_order_fee_hundredth_pips: number;
|
|
6774
|
+
range_order_fee_hundredth_pips: number;
|
|
6775
|
+
range_order_total_fees_earned: {
|
|
6776
|
+
base: bigint;
|
|
6777
|
+
quote: bigint;
|
|
6778
|
+
};
|
|
6779
|
+
limit_order_total_fees_earned: {
|
|
6780
|
+
base: bigint;
|
|
6781
|
+
quote: bigint;
|
|
6782
|
+
};
|
|
6783
|
+
range_total_swap_inputs: {
|
|
6784
|
+
base: bigint;
|
|
6785
|
+
quote: bigint;
|
|
6786
|
+
};
|
|
6787
|
+
limit_total_swap_inputs: {
|
|
6788
|
+
base: bigint;
|
|
6789
|
+
quote: bigint;
|
|
6790
|
+
};
|
|
6791
|
+
quote_asset: {
|
|
6792
|
+
chain: "Ethereum";
|
|
6793
|
+
asset: "USDC";
|
|
6794
|
+
};
|
|
6795
|
+
} | {
|
|
6796
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
6797
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
6798
|
+
readonly range_order_total_fees_earned: {
|
|
6799
|
+
readonly base: "0x0";
|
|
6800
|
+
readonly quote: "0x0";
|
|
6801
|
+
};
|
|
6802
|
+
readonly limit_order_total_fees_earned: {
|
|
6803
|
+
readonly base: "0x0";
|
|
6804
|
+
readonly quote: "0x0";
|
|
6805
|
+
};
|
|
6806
|
+
readonly range_total_swap_inputs: {
|
|
6807
|
+
readonly base: "0x0";
|
|
6808
|
+
readonly quote: "0x0";
|
|
6809
|
+
};
|
|
6810
|
+
readonly limit_total_swap_inputs: {
|
|
6811
|
+
readonly base: "0x0";
|
|
6812
|
+
readonly quote: "0x0";
|
|
6813
|
+
};
|
|
6814
|
+
readonly quote_asset: {
|
|
6815
|
+
readonly chain: "Ethereum";
|
|
6816
|
+
readonly asset: "USDC";
|
|
6817
|
+
};
|
|
6818
|
+
}, {
|
|
6819
|
+
limit_order_fee_hundredth_pips: number;
|
|
6820
|
+
range_order_fee_hundredth_pips: number;
|
|
6821
|
+
range_order_total_fees_earned: {
|
|
6822
|
+
base: string;
|
|
6823
|
+
quote: string;
|
|
6824
|
+
};
|
|
6825
|
+
limit_order_total_fees_earned: {
|
|
6826
|
+
base: string;
|
|
6827
|
+
quote: string;
|
|
6828
|
+
};
|
|
6829
|
+
range_total_swap_inputs: {
|
|
6830
|
+
base: string;
|
|
6831
|
+
quote: string;
|
|
6832
|
+
};
|
|
6833
|
+
limit_total_swap_inputs: {
|
|
6834
|
+
base: string;
|
|
6835
|
+
quote: string;
|
|
6836
|
+
};
|
|
6837
|
+
quote_asset: {
|
|
6838
|
+
chain: "Ethereum";
|
|
6839
|
+
asset: "USDC";
|
|
6840
|
+
};
|
|
6841
|
+
} | null>;
|
|
6842
|
+
USDT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5371
6843
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5372
6844
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5373
6845
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5466,7 +6938,76 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5466
6938
|
chain: "Ethereum";
|
|
5467
6939
|
asset: "USDC";
|
|
5468
6940
|
};
|
|
5469
|
-
}
|
|
6941
|
+
}>>, {
|
|
6942
|
+
limit_order_fee_hundredth_pips: number;
|
|
6943
|
+
range_order_fee_hundredth_pips: number;
|
|
6944
|
+
range_order_total_fees_earned: {
|
|
6945
|
+
base: bigint;
|
|
6946
|
+
quote: bigint;
|
|
6947
|
+
};
|
|
6948
|
+
limit_order_total_fees_earned: {
|
|
6949
|
+
base: bigint;
|
|
6950
|
+
quote: bigint;
|
|
6951
|
+
};
|
|
6952
|
+
range_total_swap_inputs: {
|
|
6953
|
+
base: bigint;
|
|
6954
|
+
quote: bigint;
|
|
6955
|
+
};
|
|
6956
|
+
limit_total_swap_inputs: {
|
|
6957
|
+
base: bigint;
|
|
6958
|
+
quote: bigint;
|
|
6959
|
+
};
|
|
6960
|
+
quote_asset: {
|
|
6961
|
+
chain: "Ethereum";
|
|
6962
|
+
asset: "USDC";
|
|
6963
|
+
};
|
|
6964
|
+
} | {
|
|
6965
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
6966
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
6967
|
+
readonly range_order_total_fees_earned: {
|
|
6968
|
+
readonly base: "0x0";
|
|
6969
|
+
readonly quote: "0x0";
|
|
6970
|
+
};
|
|
6971
|
+
readonly limit_order_total_fees_earned: {
|
|
6972
|
+
readonly base: "0x0";
|
|
6973
|
+
readonly quote: "0x0";
|
|
6974
|
+
};
|
|
6975
|
+
readonly range_total_swap_inputs: {
|
|
6976
|
+
readonly base: "0x0";
|
|
6977
|
+
readonly quote: "0x0";
|
|
6978
|
+
};
|
|
6979
|
+
readonly limit_total_swap_inputs: {
|
|
6980
|
+
readonly base: "0x0";
|
|
6981
|
+
readonly quote: "0x0";
|
|
6982
|
+
};
|
|
6983
|
+
readonly quote_asset: {
|
|
6984
|
+
readonly chain: "Ethereum";
|
|
6985
|
+
readonly asset: "USDC";
|
|
6986
|
+
};
|
|
6987
|
+
}, {
|
|
6988
|
+
limit_order_fee_hundredth_pips: number;
|
|
6989
|
+
range_order_fee_hundredth_pips: number;
|
|
6990
|
+
range_order_total_fees_earned: {
|
|
6991
|
+
base: string;
|
|
6992
|
+
quote: string;
|
|
6993
|
+
};
|
|
6994
|
+
limit_order_total_fees_earned: {
|
|
6995
|
+
base: string;
|
|
6996
|
+
quote: string;
|
|
6997
|
+
};
|
|
6998
|
+
range_total_swap_inputs: {
|
|
6999
|
+
base: string;
|
|
7000
|
+
quote: string;
|
|
7001
|
+
};
|
|
7002
|
+
limit_total_swap_inputs: {
|
|
7003
|
+
base: string;
|
|
7004
|
+
quote: string;
|
|
7005
|
+
};
|
|
7006
|
+
quote_asset: {
|
|
7007
|
+
chain: "Ethereum";
|
|
7008
|
+
asset: "USDC";
|
|
7009
|
+
};
|
|
7010
|
+
} | null>;
|
|
5470
7011
|
}, "strip", z.ZodTypeAny, {
|
|
5471
7012
|
ETH: {
|
|
5472
7013
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -5491,6 +7032,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5491
7032
|
chain: "Ethereum";
|
|
5492
7033
|
asset: "USDC";
|
|
5493
7034
|
};
|
|
7035
|
+
} | {
|
|
7036
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7037
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7038
|
+
readonly range_order_total_fees_earned: {
|
|
7039
|
+
readonly base: "0x0";
|
|
7040
|
+
readonly quote: "0x0";
|
|
7041
|
+
};
|
|
7042
|
+
readonly limit_order_total_fees_earned: {
|
|
7043
|
+
readonly base: "0x0";
|
|
7044
|
+
readonly quote: "0x0";
|
|
7045
|
+
};
|
|
7046
|
+
readonly range_total_swap_inputs: {
|
|
7047
|
+
readonly base: "0x0";
|
|
7048
|
+
readonly quote: "0x0";
|
|
7049
|
+
};
|
|
7050
|
+
readonly limit_total_swap_inputs: {
|
|
7051
|
+
readonly base: "0x0";
|
|
7052
|
+
readonly quote: "0x0";
|
|
7053
|
+
};
|
|
7054
|
+
readonly quote_asset: {
|
|
7055
|
+
readonly chain: "Ethereum";
|
|
7056
|
+
readonly asset: "USDC";
|
|
7057
|
+
};
|
|
5494
7058
|
};
|
|
5495
7059
|
FLIP: {
|
|
5496
7060
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -5515,6 +7079,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5515
7079
|
chain: "Ethereum";
|
|
5516
7080
|
asset: "USDC";
|
|
5517
7081
|
};
|
|
7082
|
+
} | {
|
|
7083
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7084
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7085
|
+
readonly range_order_total_fees_earned: {
|
|
7086
|
+
readonly base: "0x0";
|
|
7087
|
+
readonly quote: "0x0";
|
|
7088
|
+
};
|
|
7089
|
+
readonly limit_order_total_fees_earned: {
|
|
7090
|
+
readonly base: "0x0";
|
|
7091
|
+
readonly quote: "0x0";
|
|
7092
|
+
};
|
|
7093
|
+
readonly range_total_swap_inputs: {
|
|
7094
|
+
readonly base: "0x0";
|
|
7095
|
+
readonly quote: "0x0";
|
|
7096
|
+
};
|
|
7097
|
+
readonly limit_total_swap_inputs: {
|
|
7098
|
+
readonly base: "0x0";
|
|
7099
|
+
readonly quote: "0x0";
|
|
7100
|
+
};
|
|
7101
|
+
readonly quote_asset: {
|
|
7102
|
+
readonly chain: "Ethereum";
|
|
7103
|
+
readonly asset: "USDC";
|
|
7104
|
+
};
|
|
5518
7105
|
};
|
|
5519
7106
|
USDT: {
|
|
5520
7107
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -5539,6 +7126,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5539
7126
|
chain: "Ethereum";
|
|
5540
7127
|
asset: "USDC";
|
|
5541
7128
|
};
|
|
7129
|
+
} | {
|
|
7130
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7131
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7132
|
+
readonly range_order_total_fees_earned: {
|
|
7133
|
+
readonly base: "0x0";
|
|
7134
|
+
readonly quote: "0x0";
|
|
7135
|
+
};
|
|
7136
|
+
readonly limit_order_total_fees_earned: {
|
|
7137
|
+
readonly base: "0x0";
|
|
7138
|
+
readonly quote: "0x0";
|
|
7139
|
+
};
|
|
7140
|
+
readonly range_total_swap_inputs: {
|
|
7141
|
+
readonly base: "0x0";
|
|
7142
|
+
readonly quote: "0x0";
|
|
7143
|
+
};
|
|
7144
|
+
readonly limit_total_swap_inputs: {
|
|
7145
|
+
readonly base: "0x0";
|
|
7146
|
+
readonly quote: "0x0";
|
|
7147
|
+
};
|
|
7148
|
+
readonly quote_asset: {
|
|
7149
|
+
readonly chain: "Ethereum";
|
|
7150
|
+
readonly asset: "USDC";
|
|
7151
|
+
};
|
|
5542
7152
|
};
|
|
5543
7153
|
}, {
|
|
5544
7154
|
ETH: {
|
|
@@ -5564,7 +7174,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5564
7174
|
chain: "Ethereum";
|
|
5565
7175
|
asset: "USDC";
|
|
5566
7176
|
};
|
|
5567
|
-
};
|
|
7177
|
+
} | null;
|
|
5568
7178
|
FLIP: {
|
|
5569
7179
|
limit_order_fee_hundredth_pips: number;
|
|
5570
7180
|
range_order_fee_hundredth_pips: number;
|
|
@@ -5588,7 +7198,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5588
7198
|
chain: "Ethereum";
|
|
5589
7199
|
asset: "USDC";
|
|
5590
7200
|
};
|
|
5591
|
-
};
|
|
7201
|
+
} | null;
|
|
5592
7202
|
USDT: {
|
|
5593
7203
|
limit_order_fee_hundredth_pips: number;
|
|
5594
7204
|
range_order_fee_hundredth_pips: number;
|
|
@@ -5612,10 +7222,10 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5612
7222
|
chain: "Ethereum";
|
|
5613
7223
|
asset: "USDC";
|
|
5614
7224
|
};
|
|
5615
|
-
};
|
|
7225
|
+
} | null;
|
|
5616
7226
|
}>;
|
|
5617
7227
|
Polkadot: z.ZodObject<{
|
|
5618
|
-
DOT: z.ZodObject<{
|
|
7228
|
+
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5619
7229
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5620
7230
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5621
7231
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5714,7 +7324,76 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5714
7324
|
chain: "Ethereum";
|
|
5715
7325
|
asset: "USDC";
|
|
5716
7326
|
};
|
|
5717
|
-
}
|
|
7327
|
+
}>>, {
|
|
7328
|
+
limit_order_fee_hundredth_pips: number;
|
|
7329
|
+
range_order_fee_hundredth_pips: number;
|
|
7330
|
+
range_order_total_fees_earned: {
|
|
7331
|
+
base: bigint;
|
|
7332
|
+
quote: bigint;
|
|
7333
|
+
};
|
|
7334
|
+
limit_order_total_fees_earned: {
|
|
7335
|
+
base: bigint;
|
|
7336
|
+
quote: bigint;
|
|
7337
|
+
};
|
|
7338
|
+
range_total_swap_inputs: {
|
|
7339
|
+
base: bigint;
|
|
7340
|
+
quote: bigint;
|
|
7341
|
+
};
|
|
7342
|
+
limit_total_swap_inputs: {
|
|
7343
|
+
base: bigint;
|
|
7344
|
+
quote: bigint;
|
|
7345
|
+
};
|
|
7346
|
+
quote_asset: {
|
|
7347
|
+
chain: "Ethereum";
|
|
7348
|
+
asset: "USDC";
|
|
7349
|
+
};
|
|
7350
|
+
} | {
|
|
7351
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7352
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7353
|
+
readonly range_order_total_fees_earned: {
|
|
7354
|
+
readonly base: "0x0";
|
|
7355
|
+
readonly quote: "0x0";
|
|
7356
|
+
};
|
|
7357
|
+
readonly limit_order_total_fees_earned: {
|
|
7358
|
+
readonly base: "0x0";
|
|
7359
|
+
readonly quote: "0x0";
|
|
7360
|
+
};
|
|
7361
|
+
readonly range_total_swap_inputs: {
|
|
7362
|
+
readonly base: "0x0";
|
|
7363
|
+
readonly quote: "0x0";
|
|
7364
|
+
};
|
|
7365
|
+
readonly limit_total_swap_inputs: {
|
|
7366
|
+
readonly base: "0x0";
|
|
7367
|
+
readonly quote: "0x0";
|
|
7368
|
+
};
|
|
7369
|
+
readonly quote_asset: {
|
|
7370
|
+
readonly chain: "Ethereum";
|
|
7371
|
+
readonly asset: "USDC";
|
|
7372
|
+
};
|
|
7373
|
+
}, {
|
|
7374
|
+
limit_order_fee_hundredth_pips: number;
|
|
7375
|
+
range_order_fee_hundredth_pips: number;
|
|
7376
|
+
range_order_total_fees_earned: {
|
|
7377
|
+
base: string;
|
|
7378
|
+
quote: string;
|
|
7379
|
+
};
|
|
7380
|
+
limit_order_total_fees_earned: {
|
|
7381
|
+
base: string;
|
|
7382
|
+
quote: string;
|
|
7383
|
+
};
|
|
7384
|
+
range_total_swap_inputs: {
|
|
7385
|
+
base: string;
|
|
7386
|
+
quote: string;
|
|
7387
|
+
};
|
|
7388
|
+
limit_total_swap_inputs: {
|
|
7389
|
+
base: string;
|
|
7390
|
+
quote: string;
|
|
7391
|
+
};
|
|
7392
|
+
quote_asset: {
|
|
7393
|
+
chain: "Ethereum";
|
|
7394
|
+
asset: "USDC";
|
|
7395
|
+
};
|
|
7396
|
+
} | null>;
|
|
5718
7397
|
}, "strip", z.ZodTypeAny, {
|
|
5719
7398
|
DOT: {
|
|
5720
7399
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -5739,6 +7418,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5739
7418
|
chain: "Ethereum";
|
|
5740
7419
|
asset: "USDC";
|
|
5741
7420
|
};
|
|
7421
|
+
} | {
|
|
7422
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7423
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7424
|
+
readonly range_order_total_fees_earned: {
|
|
7425
|
+
readonly base: "0x0";
|
|
7426
|
+
readonly quote: "0x0";
|
|
7427
|
+
};
|
|
7428
|
+
readonly limit_order_total_fees_earned: {
|
|
7429
|
+
readonly base: "0x0";
|
|
7430
|
+
readonly quote: "0x0";
|
|
7431
|
+
};
|
|
7432
|
+
readonly range_total_swap_inputs: {
|
|
7433
|
+
readonly base: "0x0";
|
|
7434
|
+
readonly quote: "0x0";
|
|
7435
|
+
};
|
|
7436
|
+
readonly limit_total_swap_inputs: {
|
|
7437
|
+
readonly base: "0x0";
|
|
7438
|
+
readonly quote: "0x0";
|
|
7439
|
+
};
|
|
7440
|
+
readonly quote_asset: {
|
|
7441
|
+
readonly chain: "Ethereum";
|
|
7442
|
+
readonly asset: "USDC";
|
|
7443
|
+
};
|
|
5742
7444
|
};
|
|
5743
7445
|
}, {
|
|
5744
7446
|
DOT: {
|
|
@@ -5764,10 +7466,10 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5764
7466
|
chain: "Ethereum";
|
|
5765
7467
|
asset: "USDC";
|
|
5766
7468
|
};
|
|
5767
|
-
};
|
|
7469
|
+
} | null;
|
|
5768
7470
|
}>;
|
|
5769
7471
|
Arbitrum: z.ZodObject<{
|
|
5770
|
-
ETH: z.ZodObject<{
|
|
7472
|
+
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5771
7473
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5772
7474
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5773
7475
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5866,30 +7568,99 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5866
7568
|
chain: "Ethereum";
|
|
5867
7569
|
asset: "USDC";
|
|
5868
7570
|
};
|
|
5869
|
-
}
|
|
5870
|
-
|
|
5871
|
-
|
|
5872
|
-
|
|
5873
|
-
range_order_total_fees_earned: z.ZodObject<{
|
|
5874
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5875
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5876
|
-
}, "strip", z.ZodTypeAny, {
|
|
7571
|
+
}>>, {
|
|
7572
|
+
limit_order_fee_hundredth_pips: number;
|
|
7573
|
+
range_order_fee_hundredth_pips: number;
|
|
7574
|
+
range_order_total_fees_earned: {
|
|
5877
7575
|
base: bigint;
|
|
5878
7576
|
quote: bigint;
|
|
5879
|
-
}
|
|
5880
|
-
|
|
5881
|
-
quote: string;
|
|
5882
|
-
}>;
|
|
5883
|
-
limit_order_total_fees_earned: z.ZodObject<{
|
|
5884
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5885
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5886
|
-
}, "strip", z.ZodTypeAny, {
|
|
7577
|
+
};
|
|
7578
|
+
limit_order_total_fees_earned: {
|
|
5887
7579
|
base: bigint;
|
|
5888
7580
|
quote: bigint;
|
|
5889
|
-
}
|
|
5890
|
-
|
|
5891
|
-
|
|
5892
|
-
|
|
7581
|
+
};
|
|
7582
|
+
range_total_swap_inputs: {
|
|
7583
|
+
base: bigint;
|
|
7584
|
+
quote: bigint;
|
|
7585
|
+
};
|
|
7586
|
+
limit_total_swap_inputs: {
|
|
7587
|
+
base: bigint;
|
|
7588
|
+
quote: bigint;
|
|
7589
|
+
};
|
|
7590
|
+
quote_asset: {
|
|
7591
|
+
chain: "Ethereum";
|
|
7592
|
+
asset: "USDC";
|
|
7593
|
+
};
|
|
7594
|
+
} | {
|
|
7595
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7596
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7597
|
+
readonly range_order_total_fees_earned: {
|
|
7598
|
+
readonly base: "0x0";
|
|
7599
|
+
readonly quote: "0x0";
|
|
7600
|
+
};
|
|
7601
|
+
readonly limit_order_total_fees_earned: {
|
|
7602
|
+
readonly base: "0x0";
|
|
7603
|
+
readonly quote: "0x0";
|
|
7604
|
+
};
|
|
7605
|
+
readonly range_total_swap_inputs: {
|
|
7606
|
+
readonly base: "0x0";
|
|
7607
|
+
readonly quote: "0x0";
|
|
7608
|
+
};
|
|
7609
|
+
readonly limit_total_swap_inputs: {
|
|
7610
|
+
readonly base: "0x0";
|
|
7611
|
+
readonly quote: "0x0";
|
|
7612
|
+
};
|
|
7613
|
+
readonly quote_asset: {
|
|
7614
|
+
readonly chain: "Ethereum";
|
|
7615
|
+
readonly asset: "USDC";
|
|
7616
|
+
};
|
|
7617
|
+
}, {
|
|
7618
|
+
limit_order_fee_hundredth_pips: number;
|
|
7619
|
+
range_order_fee_hundredth_pips: number;
|
|
7620
|
+
range_order_total_fees_earned: {
|
|
7621
|
+
base: string;
|
|
7622
|
+
quote: string;
|
|
7623
|
+
};
|
|
7624
|
+
limit_order_total_fees_earned: {
|
|
7625
|
+
base: string;
|
|
7626
|
+
quote: string;
|
|
7627
|
+
};
|
|
7628
|
+
range_total_swap_inputs: {
|
|
7629
|
+
base: string;
|
|
7630
|
+
quote: string;
|
|
7631
|
+
};
|
|
7632
|
+
limit_total_swap_inputs: {
|
|
7633
|
+
base: string;
|
|
7634
|
+
quote: string;
|
|
7635
|
+
};
|
|
7636
|
+
quote_asset: {
|
|
7637
|
+
chain: "Ethereum";
|
|
7638
|
+
asset: "USDC";
|
|
7639
|
+
};
|
|
7640
|
+
} | null>;
|
|
7641
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
7642
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
7643
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
7644
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
7645
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7646
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7647
|
+
}, "strip", z.ZodTypeAny, {
|
|
7648
|
+
base: bigint;
|
|
7649
|
+
quote: bigint;
|
|
7650
|
+
}, {
|
|
7651
|
+
base: string;
|
|
7652
|
+
quote: string;
|
|
7653
|
+
}>;
|
|
7654
|
+
limit_order_total_fees_earned: z.ZodObject<{
|
|
7655
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7656
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7657
|
+
}, "strip", z.ZodTypeAny, {
|
|
7658
|
+
base: bigint;
|
|
7659
|
+
quote: bigint;
|
|
7660
|
+
}, {
|
|
7661
|
+
base: string;
|
|
7662
|
+
quote: string;
|
|
7663
|
+
}>;
|
|
5893
7664
|
range_total_swap_inputs: z.ZodObject<{
|
|
5894
7665
|
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5895
7666
|
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -5966,7 +7737,76 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5966
7737
|
chain: "Ethereum";
|
|
5967
7738
|
asset: "USDC";
|
|
5968
7739
|
};
|
|
5969
|
-
}
|
|
7740
|
+
}>>, {
|
|
7741
|
+
limit_order_fee_hundredth_pips: number;
|
|
7742
|
+
range_order_fee_hundredth_pips: number;
|
|
7743
|
+
range_order_total_fees_earned: {
|
|
7744
|
+
base: bigint;
|
|
7745
|
+
quote: bigint;
|
|
7746
|
+
};
|
|
7747
|
+
limit_order_total_fees_earned: {
|
|
7748
|
+
base: bigint;
|
|
7749
|
+
quote: bigint;
|
|
7750
|
+
};
|
|
7751
|
+
range_total_swap_inputs: {
|
|
7752
|
+
base: bigint;
|
|
7753
|
+
quote: bigint;
|
|
7754
|
+
};
|
|
7755
|
+
limit_total_swap_inputs: {
|
|
7756
|
+
base: bigint;
|
|
7757
|
+
quote: bigint;
|
|
7758
|
+
};
|
|
7759
|
+
quote_asset: {
|
|
7760
|
+
chain: "Ethereum";
|
|
7761
|
+
asset: "USDC";
|
|
7762
|
+
};
|
|
7763
|
+
} | {
|
|
7764
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7765
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7766
|
+
readonly range_order_total_fees_earned: {
|
|
7767
|
+
readonly base: "0x0";
|
|
7768
|
+
readonly quote: "0x0";
|
|
7769
|
+
};
|
|
7770
|
+
readonly limit_order_total_fees_earned: {
|
|
7771
|
+
readonly base: "0x0";
|
|
7772
|
+
readonly quote: "0x0";
|
|
7773
|
+
};
|
|
7774
|
+
readonly range_total_swap_inputs: {
|
|
7775
|
+
readonly base: "0x0";
|
|
7776
|
+
readonly quote: "0x0";
|
|
7777
|
+
};
|
|
7778
|
+
readonly limit_total_swap_inputs: {
|
|
7779
|
+
readonly base: "0x0";
|
|
7780
|
+
readonly quote: "0x0";
|
|
7781
|
+
};
|
|
7782
|
+
readonly quote_asset: {
|
|
7783
|
+
readonly chain: "Ethereum";
|
|
7784
|
+
readonly asset: "USDC";
|
|
7785
|
+
};
|
|
7786
|
+
}, {
|
|
7787
|
+
limit_order_fee_hundredth_pips: number;
|
|
7788
|
+
range_order_fee_hundredth_pips: number;
|
|
7789
|
+
range_order_total_fees_earned: {
|
|
7790
|
+
base: string;
|
|
7791
|
+
quote: string;
|
|
7792
|
+
};
|
|
7793
|
+
limit_order_total_fees_earned: {
|
|
7794
|
+
base: string;
|
|
7795
|
+
quote: string;
|
|
7796
|
+
};
|
|
7797
|
+
range_total_swap_inputs: {
|
|
7798
|
+
base: string;
|
|
7799
|
+
quote: string;
|
|
7800
|
+
};
|
|
7801
|
+
limit_total_swap_inputs: {
|
|
7802
|
+
base: string;
|
|
7803
|
+
quote: string;
|
|
7804
|
+
};
|
|
7805
|
+
quote_asset: {
|
|
7806
|
+
chain: "Ethereum";
|
|
7807
|
+
asset: "USDC";
|
|
7808
|
+
};
|
|
7809
|
+
} | null>;
|
|
5970
7810
|
}, "strip", z.ZodTypeAny, {
|
|
5971
7811
|
ETH: {
|
|
5972
7812
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -5984,15 +7824,235 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5984
7824
|
quote: bigint;
|
|
5985
7825
|
};
|
|
5986
7826
|
limit_total_swap_inputs: {
|
|
5987
|
-
base: bigint;
|
|
5988
|
-
quote: bigint;
|
|
7827
|
+
base: bigint;
|
|
7828
|
+
quote: bigint;
|
|
7829
|
+
};
|
|
7830
|
+
quote_asset: {
|
|
7831
|
+
chain: "Ethereum";
|
|
7832
|
+
asset: "USDC";
|
|
7833
|
+
};
|
|
7834
|
+
} | {
|
|
7835
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7836
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7837
|
+
readonly range_order_total_fees_earned: {
|
|
7838
|
+
readonly base: "0x0";
|
|
7839
|
+
readonly quote: "0x0";
|
|
7840
|
+
};
|
|
7841
|
+
readonly limit_order_total_fees_earned: {
|
|
7842
|
+
readonly base: "0x0";
|
|
7843
|
+
readonly quote: "0x0";
|
|
7844
|
+
};
|
|
7845
|
+
readonly range_total_swap_inputs: {
|
|
7846
|
+
readonly base: "0x0";
|
|
7847
|
+
readonly quote: "0x0";
|
|
7848
|
+
};
|
|
7849
|
+
readonly limit_total_swap_inputs: {
|
|
7850
|
+
readonly base: "0x0";
|
|
7851
|
+
readonly quote: "0x0";
|
|
7852
|
+
};
|
|
7853
|
+
readonly quote_asset: {
|
|
7854
|
+
readonly chain: "Ethereum";
|
|
7855
|
+
readonly asset: "USDC";
|
|
7856
|
+
};
|
|
7857
|
+
};
|
|
7858
|
+
USDC: {
|
|
7859
|
+
limit_order_fee_hundredth_pips: number;
|
|
7860
|
+
range_order_fee_hundredth_pips: number;
|
|
7861
|
+
range_order_total_fees_earned: {
|
|
7862
|
+
base: bigint;
|
|
7863
|
+
quote: bigint;
|
|
7864
|
+
};
|
|
7865
|
+
limit_order_total_fees_earned: {
|
|
7866
|
+
base: bigint;
|
|
7867
|
+
quote: bigint;
|
|
7868
|
+
};
|
|
7869
|
+
range_total_swap_inputs: {
|
|
7870
|
+
base: bigint;
|
|
7871
|
+
quote: bigint;
|
|
7872
|
+
};
|
|
7873
|
+
limit_total_swap_inputs: {
|
|
7874
|
+
base: bigint;
|
|
7875
|
+
quote: bigint;
|
|
7876
|
+
};
|
|
7877
|
+
quote_asset: {
|
|
7878
|
+
chain: "Ethereum";
|
|
7879
|
+
asset: "USDC";
|
|
7880
|
+
};
|
|
7881
|
+
} | {
|
|
7882
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7883
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7884
|
+
readonly range_order_total_fees_earned: {
|
|
7885
|
+
readonly base: "0x0";
|
|
7886
|
+
readonly quote: "0x0";
|
|
7887
|
+
};
|
|
7888
|
+
readonly limit_order_total_fees_earned: {
|
|
7889
|
+
readonly base: "0x0";
|
|
7890
|
+
readonly quote: "0x0";
|
|
7891
|
+
};
|
|
7892
|
+
readonly range_total_swap_inputs: {
|
|
7893
|
+
readonly base: "0x0";
|
|
7894
|
+
readonly quote: "0x0";
|
|
7895
|
+
};
|
|
7896
|
+
readonly limit_total_swap_inputs: {
|
|
7897
|
+
readonly base: "0x0";
|
|
7898
|
+
readonly quote: "0x0";
|
|
7899
|
+
};
|
|
7900
|
+
readonly quote_asset: {
|
|
7901
|
+
readonly chain: "Ethereum";
|
|
7902
|
+
readonly asset: "USDC";
|
|
7903
|
+
};
|
|
7904
|
+
};
|
|
7905
|
+
}, {
|
|
7906
|
+
ETH: {
|
|
7907
|
+
limit_order_fee_hundredth_pips: number;
|
|
7908
|
+
range_order_fee_hundredth_pips: number;
|
|
7909
|
+
range_order_total_fees_earned: {
|
|
7910
|
+
base: string;
|
|
7911
|
+
quote: string;
|
|
7912
|
+
};
|
|
7913
|
+
limit_order_total_fees_earned: {
|
|
7914
|
+
base: string;
|
|
7915
|
+
quote: string;
|
|
7916
|
+
};
|
|
7917
|
+
range_total_swap_inputs: {
|
|
7918
|
+
base: string;
|
|
7919
|
+
quote: string;
|
|
7920
|
+
};
|
|
7921
|
+
limit_total_swap_inputs: {
|
|
7922
|
+
base: string;
|
|
7923
|
+
quote: string;
|
|
7924
|
+
};
|
|
7925
|
+
quote_asset: {
|
|
7926
|
+
chain: "Ethereum";
|
|
7927
|
+
asset: "USDC";
|
|
7928
|
+
};
|
|
7929
|
+
} | null;
|
|
7930
|
+
USDC: {
|
|
7931
|
+
limit_order_fee_hundredth_pips: number;
|
|
7932
|
+
range_order_fee_hundredth_pips: number;
|
|
7933
|
+
range_order_total_fees_earned: {
|
|
7934
|
+
base: string;
|
|
7935
|
+
quote: string;
|
|
7936
|
+
};
|
|
7937
|
+
limit_order_total_fees_earned: {
|
|
7938
|
+
base: string;
|
|
7939
|
+
quote: string;
|
|
7940
|
+
};
|
|
7941
|
+
range_total_swap_inputs: {
|
|
7942
|
+
base: string;
|
|
7943
|
+
quote: string;
|
|
7944
|
+
};
|
|
7945
|
+
limit_total_swap_inputs: {
|
|
7946
|
+
base: string;
|
|
7947
|
+
quote: string;
|
|
7948
|
+
};
|
|
7949
|
+
quote_asset: {
|
|
7950
|
+
chain: "Ethereum";
|
|
7951
|
+
asset: "USDC";
|
|
7952
|
+
};
|
|
7953
|
+
} | null;
|
|
7954
|
+
}>;
|
|
7955
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
7956
|
+
SOL: z.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
7957
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
7958
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
7959
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
7960
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7961
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7962
|
+
}, "strip", z.ZodTypeAny, {
|
|
7963
|
+
base: bigint;
|
|
7964
|
+
quote: bigint;
|
|
7965
|
+
}, {
|
|
7966
|
+
base: string;
|
|
7967
|
+
quote: string;
|
|
7968
|
+
}>;
|
|
7969
|
+
limit_order_total_fees_earned: z.ZodObject<{
|
|
7970
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7971
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7972
|
+
}, "strip", z.ZodTypeAny, {
|
|
7973
|
+
base: bigint;
|
|
7974
|
+
quote: bigint;
|
|
7975
|
+
}, {
|
|
7976
|
+
base: string;
|
|
7977
|
+
quote: string;
|
|
7978
|
+
}>;
|
|
7979
|
+
range_total_swap_inputs: z.ZodObject<{
|
|
7980
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7981
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7982
|
+
}, "strip", z.ZodTypeAny, {
|
|
7983
|
+
base: bigint;
|
|
7984
|
+
quote: bigint;
|
|
7985
|
+
}, {
|
|
7986
|
+
base: string;
|
|
7987
|
+
quote: string;
|
|
7988
|
+
}>;
|
|
7989
|
+
limit_total_swap_inputs: z.ZodObject<{
|
|
7990
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7991
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7992
|
+
}, "strip", z.ZodTypeAny, {
|
|
7993
|
+
base: bigint;
|
|
7994
|
+
quote: bigint;
|
|
7995
|
+
}, {
|
|
7996
|
+
base: string;
|
|
7997
|
+
quote: string;
|
|
7998
|
+
}>;
|
|
7999
|
+
quote_asset: z.ZodObject<{
|
|
8000
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
8001
|
+
asset: z.ZodLiteral<"USDC">;
|
|
8002
|
+
}, "strip", z.ZodTypeAny, {
|
|
8003
|
+
chain: "Ethereum";
|
|
8004
|
+
asset: "USDC";
|
|
8005
|
+
}, {
|
|
8006
|
+
chain: "Ethereum";
|
|
8007
|
+
asset: "USDC";
|
|
8008
|
+
}>;
|
|
8009
|
+
}, "strip", z.ZodTypeAny, {
|
|
8010
|
+
limit_order_fee_hundredth_pips: number;
|
|
8011
|
+
range_order_fee_hundredth_pips: number;
|
|
8012
|
+
range_order_total_fees_earned: {
|
|
8013
|
+
base: bigint;
|
|
8014
|
+
quote: bigint;
|
|
8015
|
+
};
|
|
8016
|
+
limit_order_total_fees_earned: {
|
|
8017
|
+
base: bigint;
|
|
8018
|
+
quote: bigint;
|
|
8019
|
+
};
|
|
8020
|
+
range_total_swap_inputs: {
|
|
8021
|
+
base: bigint;
|
|
8022
|
+
quote: bigint;
|
|
8023
|
+
};
|
|
8024
|
+
limit_total_swap_inputs: {
|
|
8025
|
+
base: bigint;
|
|
8026
|
+
quote: bigint;
|
|
8027
|
+
};
|
|
8028
|
+
quote_asset: {
|
|
8029
|
+
chain: "Ethereum";
|
|
8030
|
+
asset: "USDC";
|
|
8031
|
+
};
|
|
8032
|
+
}, {
|
|
8033
|
+
limit_order_fee_hundredth_pips: number;
|
|
8034
|
+
range_order_fee_hundredth_pips: number;
|
|
8035
|
+
range_order_total_fees_earned: {
|
|
8036
|
+
base: string;
|
|
8037
|
+
quote: string;
|
|
8038
|
+
};
|
|
8039
|
+
limit_order_total_fees_earned: {
|
|
8040
|
+
base: string;
|
|
8041
|
+
quote: string;
|
|
8042
|
+
};
|
|
8043
|
+
range_total_swap_inputs: {
|
|
8044
|
+
base: string;
|
|
8045
|
+
quote: string;
|
|
8046
|
+
};
|
|
8047
|
+
limit_total_swap_inputs: {
|
|
8048
|
+
base: string;
|
|
8049
|
+
quote: string;
|
|
5989
8050
|
};
|
|
5990
8051
|
quote_asset: {
|
|
5991
8052
|
chain: "Ethereum";
|
|
5992
8053
|
asset: "USDC";
|
|
5993
8054
|
};
|
|
5994
|
-
}
|
|
5995
|
-
USDC: {
|
|
8055
|
+
}>>, {
|
|
5996
8056
|
limit_order_fee_hundredth_pips: number;
|
|
5997
8057
|
range_order_fee_hundredth_pips: number;
|
|
5998
8058
|
range_order_total_fees_earned: {
|
|
@@ -6015,33 +8075,30 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6015
8075
|
chain: "Ethereum";
|
|
6016
8076
|
asset: "USDC";
|
|
6017
8077
|
};
|
|
6018
|
-
}
|
|
6019
|
-
|
|
6020
|
-
|
|
6021
|
-
|
|
6022
|
-
|
|
6023
|
-
|
|
6024
|
-
base: string;
|
|
6025
|
-
quote: string;
|
|
8078
|
+
} | {
|
|
8079
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8080
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8081
|
+
readonly range_order_total_fees_earned: {
|
|
8082
|
+
readonly base: "0x0";
|
|
8083
|
+
readonly quote: "0x0";
|
|
6026
8084
|
};
|
|
6027
|
-
limit_order_total_fees_earned: {
|
|
6028
|
-
base:
|
|
6029
|
-
quote:
|
|
8085
|
+
readonly limit_order_total_fees_earned: {
|
|
8086
|
+
readonly base: "0x0";
|
|
8087
|
+
readonly quote: "0x0";
|
|
6030
8088
|
};
|
|
6031
|
-
range_total_swap_inputs: {
|
|
6032
|
-
base:
|
|
6033
|
-
quote:
|
|
8089
|
+
readonly range_total_swap_inputs: {
|
|
8090
|
+
readonly base: "0x0";
|
|
8091
|
+
readonly quote: "0x0";
|
|
6034
8092
|
};
|
|
6035
|
-
limit_total_swap_inputs: {
|
|
6036
|
-
base:
|
|
6037
|
-
quote:
|
|
8093
|
+
readonly limit_total_swap_inputs: {
|
|
8094
|
+
readonly base: "0x0";
|
|
8095
|
+
readonly quote: "0x0";
|
|
6038
8096
|
};
|
|
6039
|
-
quote_asset: {
|
|
6040
|
-
chain: "Ethereum";
|
|
6041
|
-
asset: "USDC";
|
|
8097
|
+
readonly quote_asset: {
|
|
8098
|
+
readonly chain: "Ethereum";
|
|
8099
|
+
readonly asset: "USDC";
|
|
6042
8100
|
};
|
|
6043
|
-
}
|
|
6044
|
-
USDC: {
|
|
8101
|
+
}, {
|
|
6045
8102
|
limit_order_fee_hundredth_pips: number;
|
|
6046
8103
|
range_order_fee_hundredth_pips: number;
|
|
6047
8104
|
range_order_total_fees_earned: {
|
|
@@ -6064,10 +8121,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6064
8121
|
chain: "Ethereum";
|
|
6065
8122
|
asset: "USDC";
|
|
6066
8123
|
};
|
|
6067
|
-
}
|
|
6068
|
-
|
|
6069
|
-
Solana: z.ZodDefault<z.ZodObject<{
|
|
6070
|
-
SOL: z.ZodDefault<z.ZodObject<{
|
|
8124
|
+
} | null>>;
|
|
8125
|
+
USDC: z.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
6071
8126
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
6072
8127
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
6073
8128
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -6166,61 +8221,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6166
8221
|
chain: "Ethereum";
|
|
6167
8222
|
asset: "USDC";
|
|
6168
8223
|
};
|
|
6169
|
-
}
|
|
6170
|
-
USDC: z.ZodDefault<z.ZodObject<{
|
|
6171
|
-
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
6172
|
-
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
6173
|
-
range_order_total_fees_earned: z.ZodObject<{
|
|
6174
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6175
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6176
|
-
}, "strip", z.ZodTypeAny, {
|
|
6177
|
-
base: bigint;
|
|
6178
|
-
quote: bigint;
|
|
6179
|
-
}, {
|
|
6180
|
-
base: string;
|
|
6181
|
-
quote: string;
|
|
6182
|
-
}>;
|
|
6183
|
-
limit_order_total_fees_earned: z.ZodObject<{
|
|
6184
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6185
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6186
|
-
}, "strip", z.ZodTypeAny, {
|
|
6187
|
-
base: bigint;
|
|
6188
|
-
quote: bigint;
|
|
6189
|
-
}, {
|
|
6190
|
-
base: string;
|
|
6191
|
-
quote: string;
|
|
6192
|
-
}>;
|
|
6193
|
-
range_total_swap_inputs: z.ZodObject<{
|
|
6194
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6195
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6196
|
-
}, "strip", z.ZodTypeAny, {
|
|
6197
|
-
base: bigint;
|
|
6198
|
-
quote: bigint;
|
|
6199
|
-
}, {
|
|
6200
|
-
base: string;
|
|
6201
|
-
quote: string;
|
|
6202
|
-
}>;
|
|
6203
|
-
limit_total_swap_inputs: z.ZodObject<{
|
|
6204
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6205
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6206
|
-
}, "strip", z.ZodTypeAny, {
|
|
6207
|
-
base: bigint;
|
|
6208
|
-
quote: bigint;
|
|
6209
|
-
}, {
|
|
6210
|
-
base: string;
|
|
6211
|
-
quote: string;
|
|
6212
|
-
}>;
|
|
6213
|
-
quote_asset: z.ZodObject<{
|
|
6214
|
-
chain: z.ZodLiteral<"Ethereum">;
|
|
6215
|
-
asset: z.ZodLiteral<"USDC">;
|
|
6216
|
-
}, "strip", z.ZodTypeAny, {
|
|
6217
|
-
chain: "Ethereum";
|
|
6218
|
-
asset: "USDC";
|
|
6219
|
-
}, {
|
|
6220
|
-
chain: "Ethereum";
|
|
6221
|
-
asset: "USDC";
|
|
6222
|
-
}>;
|
|
6223
|
-
}, "strip", z.ZodTypeAny, {
|
|
8224
|
+
}>>, {
|
|
6224
8225
|
limit_order_fee_hundredth_pips: number;
|
|
6225
8226
|
range_order_fee_hundredth_pips: number;
|
|
6226
8227
|
range_order_total_fees_earned: {
|
|
@@ -6243,6 +8244,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6243
8244
|
chain: "Ethereum";
|
|
6244
8245
|
asset: "USDC";
|
|
6245
8246
|
};
|
|
8247
|
+
} | {
|
|
8248
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8249
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8250
|
+
readonly range_order_total_fees_earned: {
|
|
8251
|
+
readonly base: "0x0";
|
|
8252
|
+
readonly quote: "0x0";
|
|
8253
|
+
};
|
|
8254
|
+
readonly limit_order_total_fees_earned: {
|
|
8255
|
+
readonly base: "0x0";
|
|
8256
|
+
readonly quote: "0x0";
|
|
8257
|
+
};
|
|
8258
|
+
readonly range_total_swap_inputs: {
|
|
8259
|
+
readonly base: "0x0";
|
|
8260
|
+
readonly quote: "0x0";
|
|
8261
|
+
};
|
|
8262
|
+
readonly limit_total_swap_inputs: {
|
|
8263
|
+
readonly base: "0x0";
|
|
8264
|
+
readonly quote: "0x0";
|
|
8265
|
+
};
|
|
8266
|
+
readonly quote_asset: {
|
|
8267
|
+
readonly chain: "Ethereum";
|
|
8268
|
+
readonly asset: "USDC";
|
|
8269
|
+
};
|
|
6246
8270
|
}, {
|
|
6247
8271
|
limit_order_fee_hundredth_pips: number;
|
|
6248
8272
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6266,7 +8290,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6266
8290
|
chain: "Ethereum";
|
|
6267
8291
|
asset: "USDC";
|
|
6268
8292
|
};
|
|
6269
|
-
}>>;
|
|
8293
|
+
} | null>>;
|
|
6270
8294
|
}, "strip", z.ZodTypeAny, {
|
|
6271
8295
|
USDC: {
|
|
6272
8296
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6291,6 +8315,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6291
8315
|
chain: "Ethereum";
|
|
6292
8316
|
asset: "USDC";
|
|
6293
8317
|
};
|
|
8318
|
+
} | {
|
|
8319
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8320
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8321
|
+
readonly range_order_total_fees_earned: {
|
|
8322
|
+
readonly base: "0x0";
|
|
8323
|
+
readonly quote: "0x0";
|
|
8324
|
+
};
|
|
8325
|
+
readonly limit_order_total_fees_earned: {
|
|
8326
|
+
readonly base: "0x0";
|
|
8327
|
+
readonly quote: "0x0";
|
|
8328
|
+
};
|
|
8329
|
+
readonly range_total_swap_inputs: {
|
|
8330
|
+
readonly base: "0x0";
|
|
8331
|
+
readonly quote: "0x0";
|
|
8332
|
+
};
|
|
8333
|
+
readonly limit_total_swap_inputs: {
|
|
8334
|
+
readonly base: "0x0";
|
|
8335
|
+
readonly quote: "0x0";
|
|
8336
|
+
};
|
|
8337
|
+
readonly quote_asset: {
|
|
8338
|
+
readonly chain: "Ethereum";
|
|
8339
|
+
readonly asset: "USDC";
|
|
8340
|
+
};
|
|
6294
8341
|
};
|
|
6295
8342
|
SOL: {
|
|
6296
8343
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6315,6 +8362,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6315
8362
|
chain: "Ethereum";
|
|
6316
8363
|
asset: "USDC";
|
|
6317
8364
|
};
|
|
8365
|
+
} | {
|
|
8366
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8367
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8368
|
+
readonly range_order_total_fees_earned: {
|
|
8369
|
+
readonly base: "0x0";
|
|
8370
|
+
readonly quote: "0x0";
|
|
8371
|
+
};
|
|
8372
|
+
readonly limit_order_total_fees_earned: {
|
|
8373
|
+
readonly base: "0x0";
|
|
8374
|
+
readonly quote: "0x0";
|
|
8375
|
+
};
|
|
8376
|
+
readonly range_total_swap_inputs: {
|
|
8377
|
+
readonly base: "0x0";
|
|
8378
|
+
readonly quote: "0x0";
|
|
8379
|
+
};
|
|
8380
|
+
readonly limit_total_swap_inputs: {
|
|
8381
|
+
readonly base: "0x0";
|
|
8382
|
+
readonly quote: "0x0";
|
|
8383
|
+
};
|
|
8384
|
+
readonly quote_asset: {
|
|
8385
|
+
readonly chain: "Ethereum";
|
|
8386
|
+
readonly asset: "USDC";
|
|
8387
|
+
};
|
|
6318
8388
|
};
|
|
6319
8389
|
}, {
|
|
6320
8390
|
USDC?: {
|
|
@@ -6340,7 +8410,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6340
8410
|
chain: "Ethereum";
|
|
6341
8411
|
asset: "USDC";
|
|
6342
8412
|
};
|
|
6343
|
-
} | undefined;
|
|
8413
|
+
} | null | undefined;
|
|
6344
8414
|
SOL?: {
|
|
6345
8415
|
limit_order_fee_hundredth_pips: number;
|
|
6346
8416
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6364,7 +8434,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6364
8434
|
chain: "Ethereum";
|
|
6365
8435
|
asset: "USDC";
|
|
6366
8436
|
};
|
|
6367
|
-
} | undefined;
|
|
8437
|
+
} | null | undefined;
|
|
6368
8438
|
}>>;
|
|
6369
8439
|
}, "strip", z.ZodTypeAny, {
|
|
6370
8440
|
Bitcoin: {
|
|
@@ -6391,6 +8461,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6391
8461
|
chain: "Ethereum";
|
|
6392
8462
|
asset: "USDC";
|
|
6393
8463
|
};
|
|
8464
|
+
} | {
|
|
8465
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8466
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8467
|
+
readonly range_order_total_fees_earned: {
|
|
8468
|
+
readonly base: "0x0";
|
|
8469
|
+
readonly quote: "0x0";
|
|
8470
|
+
};
|
|
8471
|
+
readonly limit_order_total_fees_earned: {
|
|
8472
|
+
readonly base: "0x0";
|
|
8473
|
+
readonly quote: "0x0";
|
|
8474
|
+
};
|
|
8475
|
+
readonly range_total_swap_inputs: {
|
|
8476
|
+
readonly base: "0x0";
|
|
8477
|
+
readonly quote: "0x0";
|
|
8478
|
+
};
|
|
8479
|
+
readonly limit_total_swap_inputs: {
|
|
8480
|
+
readonly base: "0x0";
|
|
8481
|
+
readonly quote: "0x0";
|
|
8482
|
+
};
|
|
8483
|
+
readonly quote_asset: {
|
|
8484
|
+
readonly chain: "Ethereum";
|
|
8485
|
+
readonly asset: "USDC";
|
|
8486
|
+
};
|
|
6394
8487
|
};
|
|
6395
8488
|
};
|
|
6396
8489
|
Ethereum: {
|
|
@@ -6417,6 +8510,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6417
8510
|
chain: "Ethereum";
|
|
6418
8511
|
asset: "USDC";
|
|
6419
8512
|
};
|
|
8513
|
+
} | {
|
|
8514
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8515
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8516
|
+
readonly range_order_total_fees_earned: {
|
|
8517
|
+
readonly base: "0x0";
|
|
8518
|
+
readonly quote: "0x0";
|
|
8519
|
+
};
|
|
8520
|
+
readonly limit_order_total_fees_earned: {
|
|
8521
|
+
readonly base: "0x0";
|
|
8522
|
+
readonly quote: "0x0";
|
|
8523
|
+
};
|
|
8524
|
+
readonly range_total_swap_inputs: {
|
|
8525
|
+
readonly base: "0x0";
|
|
8526
|
+
readonly quote: "0x0";
|
|
8527
|
+
};
|
|
8528
|
+
readonly limit_total_swap_inputs: {
|
|
8529
|
+
readonly base: "0x0";
|
|
8530
|
+
readonly quote: "0x0";
|
|
8531
|
+
};
|
|
8532
|
+
readonly quote_asset: {
|
|
8533
|
+
readonly chain: "Ethereum";
|
|
8534
|
+
readonly asset: "USDC";
|
|
8535
|
+
};
|
|
6420
8536
|
};
|
|
6421
8537
|
FLIP: {
|
|
6422
8538
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6441,6 +8557,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6441
8557
|
chain: "Ethereum";
|
|
6442
8558
|
asset: "USDC";
|
|
6443
8559
|
};
|
|
8560
|
+
} | {
|
|
8561
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8562
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8563
|
+
readonly range_order_total_fees_earned: {
|
|
8564
|
+
readonly base: "0x0";
|
|
8565
|
+
readonly quote: "0x0";
|
|
8566
|
+
};
|
|
8567
|
+
readonly limit_order_total_fees_earned: {
|
|
8568
|
+
readonly base: "0x0";
|
|
8569
|
+
readonly quote: "0x0";
|
|
8570
|
+
};
|
|
8571
|
+
readonly range_total_swap_inputs: {
|
|
8572
|
+
readonly base: "0x0";
|
|
8573
|
+
readonly quote: "0x0";
|
|
8574
|
+
};
|
|
8575
|
+
readonly limit_total_swap_inputs: {
|
|
8576
|
+
readonly base: "0x0";
|
|
8577
|
+
readonly quote: "0x0";
|
|
8578
|
+
};
|
|
8579
|
+
readonly quote_asset: {
|
|
8580
|
+
readonly chain: "Ethereum";
|
|
8581
|
+
readonly asset: "USDC";
|
|
8582
|
+
};
|
|
6444
8583
|
};
|
|
6445
8584
|
USDT: {
|
|
6446
8585
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6465,6 +8604,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6465
8604
|
chain: "Ethereum";
|
|
6466
8605
|
asset: "USDC";
|
|
6467
8606
|
};
|
|
8607
|
+
} | {
|
|
8608
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8609
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8610
|
+
readonly range_order_total_fees_earned: {
|
|
8611
|
+
readonly base: "0x0";
|
|
8612
|
+
readonly quote: "0x0";
|
|
8613
|
+
};
|
|
8614
|
+
readonly limit_order_total_fees_earned: {
|
|
8615
|
+
readonly base: "0x0";
|
|
8616
|
+
readonly quote: "0x0";
|
|
8617
|
+
};
|
|
8618
|
+
readonly range_total_swap_inputs: {
|
|
8619
|
+
readonly base: "0x0";
|
|
8620
|
+
readonly quote: "0x0";
|
|
8621
|
+
};
|
|
8622
|
+
readonly limit_total_swap_inputs: {
|
|
8623
|
+
readonly base: "0x0";
|
|
8624
|
+
readonly quote: "0x0";
|
|
8625
|
+
};
|
|
8626
|
+
readonly quote_asset: {
|
|
8627
|
+
readonly chain: "Ethereum";
|
|
8628
|
+
readonly asset: "USDC";
|
|
8629
|
+
};
|
|
6468
8630
|
};
|
|
6469
8631
|
};
|
|
6470
8632
|
Polkadot: {
|
|
@@ -6491,6 +8653,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6491
8653
|
chain: "Ethereum";
|
|
6492
8654
|
asset: "USDC";
|
|
6493
8655
|
};
|
|
8656
|
+
} | {
|
|
8657
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8658
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8659
|
+
readonly range_order_total_fees_earned: {
|
|
8660
|
+
readonly base: "0x0";
|
|
8661
|
+
readonly quote: "0x0";
|
|
8662
|
+
};
|
|
8663
|
+
readonly limit_order_total_fees_earned: {
|
|
8664
|
+
readonly base: "0x0";
|
|
8665
|
+
readonly quote: "0x0";
|
|
8666
|
+
};
|
|
8667
|
+
readonly range_total_swap_inputs: {
|
|
8668
|
+
readonly base: "0x0";
|
|
8669
|
+
readonly quote: "0x0";
|
|
8670
|
+
};
|
|
8671
|
+
readonly limit_total_swap_inputs: {
|
|
8672
|
+
readonly base: "0x0";
|
|
8673
|
+
readonly quote: "0x0";
|
|
8674
|
+
};
|
|
8675
|
+
readonly quote_asset: {
|
|
8676
|
+
readonly chain: "Ethereum";
|
|
8677
|
+
readonly asset: "USDC";
|
|
8678
|
+
};
|
|
6494
8679
|
};
|
|
6495
8680
|
};
|
|
6496
8681
|
Arbitrum: {
|
|
@@ -6517,6 +8702,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6517
8702
|
chain: "Ethereum";
|
|
6518
8703
|
asset: "USDC";
|
|
6519
8704
|
};
|
|
8705
|
+
} | {
|
|
8706
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8707
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8708
|
+
readonly range_order_total_fees_earned: {
|
|
8709
|
+
readonly base: "0x0";
|
|
8710
|
+
readonly quote: "0x0";
|
|
8711
|
+
};
|
|
8712
|
+
readonly limit_order_total_fees_earned: {
|
|
8713
|
+
readonly base: "0x0";
|
|
8714
|
+
readonly quote: "0x0";
|
|
8715
|
+
};
|
|
8716
|
+
readonly range_total_swap_inputs: {
|
|
8717
|
+
readonly base: "0x0";
|
|
8718
|
+
readonly quote: "0x0";
|
|
8719
|
+
};
|
|
8720
|
+
readonly limit_total_swap_inputs: {
|
|
8721
|
+
readonly base: "0x0";
|
|
8722
|
+
readonly quote: "0x0";
|
|
8723
|
+
};
|
|
8724
|
+
readonly quote_asset: {
|
|
8725
|
+
readonly chain: "Ethereum";
|
|
8726
|
+
readonly asset: "USDC";
|
|
8727
|
+
};
|
|
6520
8728
|
};
|
|
6521
8729
|
USDC: {
|
|
6522
8730
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6541,6 +8749,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6541
8749
|
chain: "Ethereum";
|
|
6542
8750
|
asset: "USDC";
|
|
6543
8751
|
};
|
|
8752
|
+
} | {
|
|
8753
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8754
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8755
|
+
readonly range_order_total_fees_earned: {
|
|
8756
|
+
readonly base: "0x0";
|
|
8757
|
+
readonly quote: "0x0";
|
|
8758
|
+
};
|
|
8759
|
+
readonly limit_order_total_fees_earned: {
|
|
8760
|
+
readonly base: "0x0";
|
|
8761
|
+
readonly quote: "0x0";
|
|
8762
|
+
};
|
|
8763
|
+
readonly range_total_swap_inputs: {
|
|
8764
|
+
readonly base: "0x0";
|
|
8765
|
+
readonly quote: "0x0";
|
|
8766
|
+
};
|
|
8767
|
+
readonly limit_total_swap_inputs: {
|
|
8768
|
+
readonly base: "0x0";
|
|
8769
|
+
readonly quote: "0x0";
|
|
8770
|
+
};
|
|
8771
|
+
readonly quote_asset: {
|
|
8772
|
+
readonly chain: "Ethereum";
|
|
8773
|
+
readonly asset: "USDC";
|
|
8774
|
+
};
|
|
6544
8775
|
};
|
|
6545
8776
|
};
|
|
6546
8777
|
Solana: {
|
|
@@ -6567,6 +8798,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6567
8798
|
chain: "Ethereum";
|
|
6568
8799
|
asset: "USDC";
|
|
6569
8800
|
};
|
|
8801
|
+
} | {
|
|
8802
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8803
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8804
|
+
readonly range_order_total_fees_earned: {
|
|
8805
|
+
readonly base: "0x0";
|
|
8806
|
+
readonly quote: "0x0";
|
|
8807
|
+
};
|
|
8808
|
+
readonly limit_order_total_fees_earned: {
|
|
8809
|
+
readonly base: "0x0";
|
|
8810
|
+
readonly quote: "0x0";
|
|
8811
|
+
};
|
|
8812
|
+
readonly range_total_swap_inputs: {
|
|
8813
|
+
readonly base: "0x0";
|
|
8814
|
+
readonly quote: "0x0";
|
|
8815
|
+
};
|
|
8816
|
+
readonly limit_total_swap_inputs: {
|
|
8817
|
+
readonly base: "0x0";
|
|
8818
|
+
readonly quote: "0x0";
|
|
8819
|
+
};
|
|
8820
|
+
readonly quote_asset: {
|
|
8821
|
+
readonly chain: "Ethereum";
|
|
8822
|
+
readonly asset: "USDC";
|
|
8823
|
+
};
|
|
6570
8824
|
};
|
|
6571
8825
|
SOL: {
|
|
6572
8826
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6591,6 +8845,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6591
8845
|
chain: "Ethereum";
|
|
6592
8846
|
asset: "USDC";
|
|
6593
8847
|
};
|
|
8848
|
+
} | {
|
|
8849
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8850
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8851
|
+
readonly range_order_total_fees_earned: {
|
|
8852
|
+
readonly base: "0x0";
|
|
8853
|
+
readonly quote: "0x0";
|
|
8854
|
+
};
|
|
8855
|
+
readonly limit_order_total_fees_earned: {
|
|
8856
|
+
readonly base: "0x0";
|
|
8857
|
+
readonly quote: "0x0";
|
|
8858
|
+
};
|
|
8859
|
+
readonly range_total_swap_inputs: {
|
|
8860
|
+
readonly base: "0x0";
|
|
8861
|
+
readonly quote: "0x0";
|
|
8862
|
+
};
|
|
8863
|
+
readonly limit_total_swap_inputs: {
|
|
8864
|
+
readonly base: "0x0";
|
|
8865
|
+
readonly quote: "0x0";
|
|
8866
|
+
};
|
|
8867
|
+
readonly quote_asset: {
|
|
8868
|
+
readonly chain: "Ethereum";
|
|
8869
|
+
readonly asset: "USDC";
|
|
8870
|
+
};
|
|
6594
8871
|
};
|
|
6595
8872
|
};
|
|
6596
8873
|
}, {
|
|
@@ -6618,7 +8895,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6618
8895
|
chain: "Ethereum";
|
|
6619
8896
|
asset: "USDC";
|
|
6620
8897
|
};
|
|
6621
|
-
};
|
|
8898
|
+
} | null;
|
|
6622
8899
|
};
|
|
6623
8900
|
Ethereum: {
|
|
6624
8901
|
ETH: {
|
|
@@ -6644,7 +8921,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6644
8921
|
chain: "Ethereum";
|
|
6645
8922
|
asset: "USDC";
|
|
6646
8923
|
};
|
|
6647
|
-
};
|
|
8924
|
+
} | null;
|
|
6648
8925
|
FLIP: {
|
|
6649
8926
|
limit_order_fee_hundredth_pips: number;
|
|
6650
8927
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6668,7 +8945,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6668
8945
|
chain: "Ethereum";
|
|
6669
8946
|
asset: "USDC";
|
|
6670
8947
|
};
|
|
6671
|
-
};
|
|
8948
|
+
} | null;
|
|
6672
8949
|
USDT: {
|
|
6673
8950
|
limit_order_fee_hundredth_pips: number;
|
|
6674
8951
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6692,7 +8969,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6692
8969
|
chain: "Ethereum";
|
|
6693
8970
|
asset: "USDC";
|
|
6694
8971
|
};
|
|
6695
|
-
};
|
|
8972
|
+
} | null;
|
|
6696
8973
|
};
|
|
6697
8974
|
Polkadot: {
|
|
6698
8975
|
DOT: {
|
|
@@ -6718,7 +8995,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6718
8995
|
chain: "Ethereum";
|
|
6719
8996
|
asset: "USDC";
|
|
6720
8997
|
};
|
|
6721
|
-
};
|
|
8998
|
+
} | null;
|
|
6722
8999
|
};
|
|
6723
9000
|
Arbitrum: {
|
|
6724
9001
|
ETH: {
|
|
@@ -6744,7 +9021,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6744
9021
|
chain: "Ethereum";
|
|
6745
9022
|
asset: "USDC";
|
|
6746
9023
|
};
|
|
6747
|
-
};
|
|
9024
|
+
} | null;
|
|
6748
9025
|
USDC: {
|
|
6749
9026
|
limit_order_fee_hundredth_pips: number;
|
|
6750
9027
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6768,7 +9045,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6768
9045
|
chain: "Ethereum";
|
|
6769
9046
|
asset: "USDC";
|
|
6770
9047
|
};
|
|
6771
|
-
};
|
|
9048
|
+
} | null;
|
|
6772
9049
|
};
|
|
6773
9050
|
Solana?: {
|
|
6774
9051
|
USDC?: {
|
|
@@ -6794,7 +9071,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6794
9071
|
chain: "Ethereum";
|
|
6795
9072
|
asset: "USDC";
|
|
6796
9073
|
};
|
|
6797
|
-
} | undefined;
|
|
9074
|
+
} | null | undefined;
|
|
6798
9075
|
SOL?: {
|
|
6799
9076
|
limit_order_fee_hundredth_pips: number;
|
|
6800
9077
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6818,7 +9095,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6818
9095
|
chain: "Ethereum";
|
|
6819
9096
|
asset: "USDC";
|
|
6820
9097
|
};
|
|
6821
|
-
} | undefined;
|
|
9098
|
+
} | null | undefined;
|
|
6822
9099
|
} | undefined;
|
|
6823
9100
|
}>;
|
|
6824
9101
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6847,6 +9124,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6847
9124
|
chain: "Ethereum";
|
|
6848
9125
|
asset: "USDC";
|
|
6849
9126
|
};
|
|
9127
|
+
} | {
|
|
9128
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9129
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9130
|
+
readonly range_order_total_fees_earned: {
|
|
9131
|
+
readonly base: "0x0";
|
|
9132
|
+
readonly quote: "0x0";
|
|
9133
|
+
};
|
|
9134
|
+
readonly limit_order_total_fees_earned: {
|
|
9135
|
+
readonly base: "0x0";
|
|
9136
|
+
readonly quote: "0x0";
|
|
9137
|
+
};
|
|
9138
|
+
readonly range_total_swap_inputs: {
|
|
9139
|
+
readonly base: "0x0";
|
|
9140
|
+
readonly quote: "0x0";
|
|
9141
|
+
};
|
|
9142
|
+
readonly limit_total_swap_inputs: {
|
|
9143
|
+
readonly base: "0x0";
|
|
9144
|
+
readonly quote: "0x0";
|
|
9145
|
+
};
|
|
9146
|
+
readonly quote_asset: {
|
|
9147
|
+
readonly chain: "Ethereum";
|
|
9148
|
+
readonly asset: "USDC";
|
|
9149
|
+
};
|
|
6850
9150
|
};
|
|
6851
9151
|
};
|
|
6852
9152
|
Ethereum: {
|
|
@@ -6873,6 +9173,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6873
9173
|
chain: "Ethereum";
|
|
6874
9174
|
asset: "USDC";
|
|
6875
9175
|
};
|
|
9176
|
+
} | {
|
|
9177
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9178
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9179
|
+
readonly range_order_total_fees_earned: {
|
|
9180
|
+
readonly base: "0x0";
|
|
9181
|
+
readonly quote: "0x0";
|
|
9182
|
+
};
|
|
9183
|
+
readonly limit_order_total_fees_earned: {
|
|
9184
|
+
readonly base: "0x0";
|
|
9185
|
+
readonly quote: "0x0";
|
|
9186
|
+
};
|
|
9187
|
+
readonly range_total_swap_inputs: {
|
|
9188
|
+
readonly base: "0x0";
|
|
9189
|
+
readonly quote: "0x0";
|
|
9190
|
+
};
|
|
9191
|
+
readonly limit_total_swap_inputs: {
|
|
9192
|
+
readonly base: "0x0";
|
|
9193
|
+
readonly quote: "0x0";
|
|
9194
|
+
};
|
|
9195
|
+
readonly quote_asset: {
|
|
9196
|
+
readonly chain: "Ethereum";
|
|
9197
|
+
readonly asset: "USDC";
|
|
9198
|
+
};
|
|
6876
9199
|
};
|
|
6877
9200
|
FLIP: {
|
|
6878
9201
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6897,6 +9220,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6897
9220
|
chain: "Ethereum";
|
|
6898
9221
|
asset: "USDC";
|
|
6899
9222
|
};
|
|
9223
|
+
} | {
|
|
9224
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9225
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9226
|
+
readonly range_order_total_fees_earned: {
|
|
9227
|
+
readonly base: "0x0";
|
|
9228
|
+
readonly quote: "0x0";
|
|
9229
|
+
};
|
|
9230
|
+
readonly limit_order_total_fees_earned: {
|
|
9231
|
+
readonly base: "0x0";
|
|
9232
|
+
readonly quote: "0x0";
|
|
9233
|
+
};
|
|
9234
|
+
readonly range_total_swap_inputs: {
|
|
9235
|
+
readonly base: "0x0";
|
|
9236
|
+
readonly quote: "0x0";
|
|
9237
|
+
};
|
|
9238
|
+
readonly limit_total_swap_inputs: {
|
|
9239
|
+
readonly base: "0x0";
|
|
9240
|
+
readonly quote: "0x0";
|
|
9241
|
+
};
|
|
9242
|
+
readonly quote_asset: {
|
|
9243
|
+
readonly chain: "Ethereum";
|
|
9244
|
+
readonly asset: "USDC";
|
|
9245
|
+
};
|
|
6900
9246
|
};
|
|
6901
9247
|
USDT: {
|
|
6902
9248
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6921,6 +9267,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6921
9267
|
chain: "Ethereum";
|
|
6922
9268
|
asset: "USDC";
|
|
6923
9269
|
};
|
|
9270
|
+
} | {
|
|
9271
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9272
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9273
|
+
readonly range_order_total_fees_earned: {
|
|
9274
|
+
readonly base: "0x0";
|
|
9275
|
+
readonly quote: "0x0";
|
|
9276
|
+
};
|
|
9277
|
+
readonly limit_order_total_fees_earned: {
|
|
9278
|
+
readonly base: "0x0";
|
|
9279
|
+
readonly quote: "0x0";
|
|
9280
|
+
};
|
|
9281
|
+
readonly range_total_swap_inputs: {
|
|
9282
|
+
readonly base: "0x0";
|
|
9283
|
+
readonly quote: "0x0";
|
|
9284
|
+
};
|
|
9285
|
+
readonly limit_total_swap_inputs: {
|
|
9286
|
+
readonly base: "0x0";
|
|
9287
|
+
readonly quote: "0x0";
|
|
9288
|
+
};
|
|
9289
|
+
readonly quote_asset: {
|
|
9290
|
+
readonly chain: "Ethereum";
|
|
9291
|
+
readonly asset: "USDC";
|
|
9292
|
+
};
|
|
6924
9293
|
};
|
|
6925
9294
|
};
|
|
6926
9295
|
Polkadot: {
|
|
@@ -6947,6 +9316,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6947
9316
|
chain: "Ethereum";
|
|
6948
9317
|
asset: "USDC";
|
|
6949
9318
|
};
|
|
9319
|
+
} | {
|
|
9320
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9321
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9322
|
+
readonly range_order_total_fees_earned: {
|
|
9323
|
+
readonly base: "0x0";
|
|
9324
|
+
readonly quote: "0x0";
|
|
9325
|
+
};
|
|
9326
|
+
readonly limit_order_total_fees_earned: {
|
|
9327
|
+
readonly base: "0x0";
|
|
9328
|
+
readonly quote: "0x0";
|
|
9329
|
+
};
|
|
9330
|
+
readonly range_total_swap_inputs: {
|
|
9331
|
+
readonly base: "0x0";
|
|
9332
|
+
readonly quote: "0x0";
|
|
9333
|
+
};
|
|
9334
|
+
readonly limit_total_swap_inputs: {
|
|
9335
|
+
readonly base: "0x0";
|
|
9336
|
+
readonly quote: "0x0";
|
|
9337
|
+
};
|
|
9338
|
+
readonly quote_asset: {
|
|
9339
|
+
readonly chain: "Ethereum";
|
|
9340
|
+
readonly asset: "USDC";
|
|
9341
|
+
};
|
|
6950
9342
|
};
|
|
6951
9343
|
};
|
|
6952
9344
|
Arbitrum: {
|
|
@@ -6973,6 +9365,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6973
9365
|
chain: "Ethereum";
|
|
6974
9366
|
asset: "USDC";
|
|
6975
9367
|
};
|
|
9368
|
+
} | {
|
|
9369
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9370
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9371
|
+
readonly range_order_total_fees_earned: {
|
|
9372
|
+
readonly base: "0x0";
|
|
9373
|
+
readonly quote: "0x0";
|
|
9374
|
+
};
|
|
9375
|
+
readonly limit_order_total_fees_earned: {
|
|
9376
|
+
readonly base: "0x0";
|
|
9377
|
+
readonly quote: "0x0";
|
|
9378
|
+
};
|
|
9379
|
+
readonly range_total_swap_inputs: {
|
|
9380
|
+
readonly base: "0x0";
|
|
9381
|
+
readonly quote: "0x0";
|
|
9382
|
+
};
|
|
9383
|
+
readonly limit_total_swap_inputs: {
|
|
9384
|
+
readonly base: "0x0";
|
|
9385
|
+
readonly quote: "0x0";
|
|
9386
|
+
};
|
|
9387
|
+
readonly quote_asset: {
|
|
9388
|
+
readonly chain: "Ethereum";
|
|
9389
|
+
readonly asset: "USDC";
|
|
9390
|
+
};
|
|
6976
9391
|
};
|
|
6977
9392
|
USDC: {
|
|
6978
9393
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6997,6 +9412,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6997
9412
|
chain: "Ethereum";
|
|
6998
9413
|
asset: "USDC";
|
|
6999
9414
|
};
|
|
9415
|
+
} | {
|
|
9416
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9417
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9418
|
+
readonly range_order_total_fees_earned: {
|
|
9419
|
+
readonly base: "0x0";
|
|
9420
|
+
readonly quote: "0x0";
|
|
9421
|
+
};
|
|
9422
|
+
readonly limit_order_total_fees_earned: {
|
|
9423
|
+
readonly base: "0x0";
|
|
9424
|
+
readonly quote: "0x0";
|
|
9425
|
+
};
|
|
9426
|
+
readonly range_total_swap_inputs: {
|
|
9427
|
+
readonly base: "0x0";
|
|
9428
|
+
readonly quote: "0x0";
|
|
9429
|
+
};
|
|
9430
|
+
readonly limit_total_swap_inputs: {
|
|
9431
|
+
readonly base: "0x0";
|
|
9432
|
+
readonly quote: "0x0";
|
|
9433
|
+
};
|
|
9434
|
+
readonly quote_asset: {
|
|
9435
|
+
readonly chain: "Ethereum";
|
|
9436
|
+
readonly asset: "USDC";
|
|
9437
|
+
};
|
|
7000
9438
|
};
|
|
7001
9439
|
};
|
|
7002
9440
|
Solana: {
|
|
@@ -7023,6 +9461,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7023
9461
|
chain: "Ethereum";
|
|
7024
9462
|
asset: "USDC";
|
|
7025
9463
|
};
|
|
9464
|
+
} | {
|
|
9465
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9466
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9467
|
+
readonly range_order_total_fees_earned: {
|
|
9468
|
+
readonly base: "0x0";
|
|
9469
|
+
readonly quote: "0x0";
|
|
9470
|
+
};
|
|
9471
|
+
readonly limit_order_total_fees_earned: {
|
|
9472
|
+
readonly base: "0x0";
|
|
9473
|
+
readonly quote: "0x0";
|
|
9474
|
+
};
|
|
9475
|
+
readonly range_total_swap_inputs: {
|
|
9476
|
+
readonly base: "0x0";
|
|
9477
|
+
readonly quote: "0x0";
|
|
9478
|
+
};
|
|
9479
|
+
readonly limit_total_swap_inputs: {
|
|
9480
|
+
readonly base: "0x0";
|
|
9481
|
+
readonly quote: "0x0";
|
|
9482
|
+
};
|
|
9483
|
+
readonly quote_asset: {
|
|
9484
|
+
readonly chain: "Ethereum";
|
|
9485
|
+
readonly asset: "USDC";
|
|
9486
|
+
};
|
|
7026
9487
|
};
|
|
7027
9488
|
SOL: {
|
|
7028
9489
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7047,6 +9508,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7047
9508
|
chain: "Ethereum";
|
|
7048
9509
|
asset: "USDC";
|
|
7049
9510
|
};
|
|
9511
|
+
} | {
|
|
9512
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9513
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9514
|
+
readonly range_order_total_fees_earned: {
|
|
9515
|
+
readonly base: "0x0";
|
|
9516
|
+
readonly quote: "0x0";
|
|
9517
|
+
};
|
|
9518
|
+
readonly limit_order_total_fees_earned: {
|
|
9519
|
+
readonly base: "0x0";
|
|
9520
|
+
readonly quote: "0x0";
|
|
9521
|
+
};
|
|
9522
|
+
readonly range_total_swap_inputs: {
|
|
9523
|
+
readonly base: "0x0";
|
|
9524
|
+
readonly quote: "0x0";
|
|
9525
|
+
};
|
|
9526
|
+
readonly limit_total_swap_inputs: {
|
|
9527
|
+
readonly base: "0x0";
|
|
9528
|
+
readonly quote: "0x0";
|
|
9529
|
+
};
|
|
9530
|
+
readonly quote_asset: {
|
|
9531
|
+
readonly chain: "Ethereum";
|
|
9532
|
+
readonly asset: "USDC";
|
|
9533
|
+
};
|
|
7050
9534
|
};
|
|
7051
9535
|
};
|
|
7052
9536
|
};
|
|
@@ -7076,7 +9560,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7076
9560
|
chain: "Ethereum";
|
|
7077
9561
|
asset: "USDC";
|
|
7078
9562
|
};
|
|
7079
|
-
};
|
|
9563
|
+
} | null;
|
|
7080
9564
|
};
|
|
7081
9565
|
Ethereum: {
|
|
7082
9566
|
ETH: {
|
|
@@ -7102,7 +9586,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7102
9586
|
chain: "Ethereum";
|
|
7103
9587
|
asset: "USDC";
|
|
7104
9588
|
};
|
|
7105
|
-
};
|
|
9589
|
+
} | null;
|
|
7106
9590
|
FLIP: {
|
|
7107
9591
|
limit_order_fee_hundredth_pips: number;
|
|
7108
9592
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7126,7 +9610,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7126
9610
|
chain: "Ethereum";
|
|
7127
9611
|
asset: "USDC";
|
|
7128
9612
|
};
|
|
7129
|
-
};
|
|
9613
|
+
} | null;
|
|
7130
9614
|
USDT: {
|
|
7131
9615
|
limit_order_fee_hundredth_pips: number;
|
|
7132
9616
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7150,7 +9634,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7150
9634
|
chain: "Ethereum";
|
|
7151
9635
|
asset: "USDC";
|
|
7152
9636
|
};
|
|
7153
|
-
};
|
|
9637
|
+
} | null;
|
|
7154
9638
|
};
|
|
7155
9639
|
Polkadot: {
|
|
7156
9640
|
DOT: {
|
|
@@ -7176,7 +9660,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7176
9660
|
chain: "Ethereum";
|
|
7177
9661
|
asset: "USDC";
|
|
7178
9662
|
};
|
|
7179
|
-
};
|
|
9663
|
+
} | null;
|
|
7180
9664
|
};
|
|
7181
9665
|
Arbitrum: {
|
|
7182
9666
|
ETH: {
|
|
@@ -7202,7 +9686,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7202
9686
|
chain: "Ethereum";
|
|
7203
9687
|
asset: "USDC";
|
|
7204
9688
|
};
|
|
7205
|
-
};
|
|
9689
|
+
} | null;
|
|
7206
9690
|
USDC: {
|
|
7207
9691
|
limit_order_fee_hundredth_pips: number;
|
|
7208
9692
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7226,7 +9710,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7226
9710
|
chain: "Ethereum";
|
|
7227
9711
|
asset: "USDC";
|
|
7228
9712
|
};
|
|
7229
|
-
};
|
|
9713
|
+
} | null;
|
|
7230
9714
|
};
|
|
7231
9715
|
Solana?: {
|
|
7232
9716
|
USDC?: {
|
|
@@ -7252,7 +9736,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7252
9736
|
chain: "Ethereum";
|
|
7253
9737
|
asset: "USDC";
|
|
7254
9738
|
};
|
|
7255
|
-
} | undefined;
|
|
9739
|
+
} | null | undefined;
|
|
7256
9740
|
SOL?: {
|
|
7257
9741
|
limit_order_fee_hundredth_pips: number;
|
|
7258
9742
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7276,7 +9760,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7276
9760
|
chain: "Ethereum";
|
|
7277
9761
|
asset: "USDC";
|
|
7278
9762
|
};
|
|
7279
|
-
} | undefined;
|
|
9763
|
+
} | null | undefined;
|
|
7280
9764
|
} | undefined;
|
|
7281
9765
|
};
|
|
7282
9766
|
}>;
|
|
@@ -7470,6 +9954,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7470
9954
|
chain: "Ethereum";
|
|
7471
9955
|
asset: "USDC";
|
|
7472
9956
|
};
|
|
9957
|
+
} | {
|
|
9958
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9959
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9960
|
+
readonly range_order_total_fees_earned: {
|
|
9961
|
+
readonly base: "0x0";
|
|
9962
|
+
readonly quote: "0x0";
|
|
9963
|
+
};
|
|
9964
|
+
readonly limit_order_total_fees_earned: {
|
|
9965
|
+
readonly base: "0x0";
|
|
9966
|
+
readonly quote: "0x0";
|
|
9967
|
+
};
|
|
9968
|
+
readonly range_total_swap_inputs: {
|
|
9969
|
+
readonly base: "0x0";
|
|
9970
|
+
readonly quote: "0x0";
|
|
9971
|
+
};
|
|
9972
|
+
readonly limit_total_swap_inputs: {
|
|
9973
|
+
readonly base: "0x0";
|
|
9974
|
+
readonly quote: "0x0";
|
|
9975
|
+
};
|
|
9976
|
+
readonly quote_asset: {
|
|
9977
|
+
readonly chain: "Ethereum";
|
|
9978
|
+
readonly asset: "USDC";
|
|
9979
|
+
};
|
|
7473
9980
|
};
|
|
7474
9981
|
};
|
|
7475
9982
|
Ethereum: {
|
|
@@ -7496,6 +10003,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7496
10003
|
chain: "Ethereum";
|
|
7497
10004
|
asset: "USDC";
|
|
7498
10005
|
};
|
|
10006
|
+
} | {
|
|
10007
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10008
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10009
|
+
readonly range_order_total_fees_earned: {
|
|
10010
|
+
readonly base: "0x0";
|
|
10011
|
+
readonly quote: "0x0";
|
|
10012
|
+
};
|
|
10013
|
+
readonly limit_order_total_fees_earned: {
|
|
10014
|
+
readonly base: "0x0";
|
|
10015
|
+
readonly quote: "0x0";
|
|
10016
|
+
};
|
|
10017
|
+
readonly range_total_swap_inputs: {
|
|
10018
|
+
readonly base: "0x0";
|
|
10019
|
+
readonly quote: "0x0";
|
|
10020
|
+
};
|
|
10021
|
+
readonly limit_total_swap_inputs: {
|
|
10022
|
+
readonly base: "0x0";
|
|
10023
|
+
readonly quote: "0x0";
|
|
10024
|
+
};
|
|
10025
|
+
readonly quote_asset: {
|
|
10026
|
+
readonly chain: "Ethereum";
|
|
10027
|
+
readonly asset: "USDC";
|
|
10028
|
+
};
|
|
7499
10029
|
};
|
|
7500
10030
|
FLIP: {
|
|
7501
10031
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7520,6 +10050,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7520
10050
|
chain: "Ethereum";
|
|
7521
10051
|
asset: "USDC";
|
|
7522
10052
|
};
|
|
10053
|
+
} | {
|
|
10054
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10055
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10056
|
+
readonly range_order_total_fees_earned: {
|
|
10057
|
+
readonly base: "0x0";
|
|
10058
|
+
readonly quote: "0x0";
|
|
10059
|
+
};
|
|
10060
|
+
readonly limit_order_total_fees_earned: {
|
|
10061
|
+
readonly base: "0x0";
|
|
10062
|
+
readonly quote: "0x0";
|
|
10063
|
+
};
|
|
10064
|
+
readonly range_total_swap_inputs: {
|
|
10065
|
+
readonly base: "0x0";
|
|
10066
|
+
readonly quote: "0x0";
|
|
10067
|
+
};
|
|
10068
|
+
readonly limit_total_swap_inputs: {
|
|
10069
|
+
readonly base: "0x0";
|
|
10070
|
+
readonly quote: "0x0";
|
|
10071
|
+
};
|
|
10072
|
+
readonly quote_asset: {
|
|
10073
|
+
readonly chain: "Ethereum";
|
|
10074
|
+
readonly asset: "USDC";
|
|
10075
|
+
};
|
|
7523
10076
|
};
|
|
7524
10077
|
USDT: {
|
|
7525
10078
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7544,6 +10097,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7544
10097
|
chain: "Ethereum";
|
|
7545
10098
|
asset: "USDC";
|
|
7546
10099
|
};
|
|
10100
|
+
} | {
|
|
10101
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10102
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10103
|
+
readonly range_order_total_fees_earned: {
|
|
10104
|
+
readonly base: "0x0";
|
|
10105
|
+
readonly quote: "0x0";
|
|
10106
|
+
};
|
|
10107
|
+
readonly limit_order_total_fees_earned: {
|
|
10108
|
+
readonly base: "0x0";
|
|
10109
|
+
readonly quote: "0x0";
|
|
10110
|
+
};
|
|
10111
|
+
readonly range_total_swap_inputs: {
|
|
10112
|
+
readonly base: "0x0";
|
|
10113
|
+
readonly quote: "0x0";
|
|
10114
|
+
};
|
|
10115
|
+
readonly limit_total_swap_inputs: {
|
|
10116
|
+
readonly base: "0x0";
|
|
10117
|
+
readonly quote: "0x0";
|
|
10118
|
+
};
|
|
10119
|
+
readonly quote_asset: {
|
|
10120
|
+
readonly chain: "Ethereum";
|
|
10121
|
+
readonly asset: "USDC";
|
|
10122
|
+
};
|
|
7547
10123
|
};
|
|
7548
10124
|
};
|
|
7549
10125
|
Polkadot: {
|
|
@@ -7570,6 +10146,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7570
10146
|
chain: "Ethereum";
|
|
7571
10147
|
asset: "USDC";
|
|
7572
10148
|
};
|
|
10149
|
+
} | {
|
|
10150
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10151
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10152
|
+
readonly range_order_total_fees_earned: {
|
|
10153
|
+
readonly base: "0x0";
|
|
10154
|
+
readonly quote: "0x0";
|
|
10155
|
+
};
|
|
10156
|
+
readonly limit_order_total_fees_earned: {
|
|
10157
|
+
readonly base: "0x0";
|
|
10158
|
+
readonly quote: "0x0";
|
|
10159
|
+
};
|
|
10160
|
+
readonly range_total_swap_inputs: {
|
|
10161
|
+
readonly base: "0x0";
|
|
10162
|
+
readonly quote: "0x0";
|
|
10163
|
+
};
|
|
10164
|
+
readonly limit_total_swap_inputs: {
|
|
10165
|
+
readonly base: "0x0";
|
|
10166
|
+
readonly quote: "0x0";
|
|
10167
|
+
};
|
|
10168
|
+
readonly quote_asset: {
|
|
10169
|
+
readonly chain: "Ethereum";
|
|
10170
|
+
readonly asset: "USDC";
|
|
10171
|
+
};
|
|
7573
10172
|
};
|
|
7574
10173
|
};
|
|
7575
10174
|
Arbitrum: {
|
|
@@ -7596,6 +10195,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7596
10195
|
chain: "Ethereum";
|
|
7597
10196
|
asset: "USDC";
|
|
7598
10197
|
};
|
|
10198
|
+
} | {
|
|
10199
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10200
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10201
|
+
readonly range_order_total_fees_earned: {
|
|
10202
|
+
readonly base: "0x0";
|
|
10203
|
+
readonly quote: "0x0";
|
|
10204
|
+
};
|
|
10205
|
+
readonly limit_order_total_fees_earned: {
|
|
10206
|
+
readonly base: "0x0";
|
|
10207
|
+
readonly quote: "0x0";
|
|
10208
|
+
};
|
|
10209
|
+
readonly range_total_swap_inputs: {
|
|
10210
|
+
readonly base: "0x0";
|
|
10211
|
+
readonly quote: "0x0";
|
|
10212
|
+
};
|
|
10213
|
+
readonly limit_total_swap_inputs: {
|
|
10214
|
+
readonly base: "0x0";
|
|
10215
|
+
readonly quote: "0x0";
|
|
10216
|
+
};
|
|
10217
|
+
readonly quote_asset: {
|
|
10218
|
+
readonly chain: "Ethereum";
|
|
10219
|
+
readonly asset: "USDC";
|
|
10220
|
+
};
|
|
7599
10221
|
};
|
|
7600
10222
|
USDC: {
|
|
7601
10223
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7620,6 +10242,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7620
10242
|
chain: "Ethereum";
|
|
7621
10243
|
asset: "USDC";
|
|
7622
10244
|
};
|
|
10245
|
+
} | {
|
|
10246
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10247
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10248
|
+
readonly range_order_total_fees_earned: {
|
|
10249
|
+
readonly base: "0x0";
|
|
10250
|
+
readonly quote: "0x0";
|
|
10251
|
+
};
|
|
10252
|
+
readonly limit_order_total_fees_earned: {
|
|
10253
|
+
readonly base: "0x0";
|
|
10254
|
+
readonly quote: "0x0";
|
|
10255
|
+
};
|
|
10256
|
+
readonly range_total_swap_inputs: {
|
|
10257
|
+
readonly base: "0x0";
|
|
10258
|
+
readonly quote: "0x0";
|
|
10259
|
+
};
|
|
10260
|
+
readonly limit_total_swap_inputs: {
|
|
10261
|
+
readonly base: "0x0";
|
|
10262
|
+
readonly quote: "0x0";
|
|
10263
|
+
};
|
|
10264
|
+
readonly quote_asset: {
|
|
10265
|
+
readonly chain: "Ethereum";
|
|
10266
|
+
readonly asset: "USDC";
|
|
10267
|
+
};
|
|
7623
10268
|
};
|
|
7624
10269
|
};
|
|
7625
10270
|
Solana: {
|
|
@@ -7646,6 +10291,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7646
10291
|
chain: "Ethereum";
|
|
7647
10292
|
asset: "USDC";
|
|
7648
10293
|
};
|
|
10294
|
+
} | {
|
|
10295
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10296
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10297
|
+
readonly range_order_total_fees_earned: {
|
|
10298
|
+
readonly base: "0x0";
|
|
10299
|
+
readonly quote: "0x0";
|
|
10300
|
+
};
|
|
10301
|
+
readonly limit_order_total_fees_earned: {
|
|
10302
|
+
readonly base: "0x0";
|
|
10303
|
+
readonly quote: "0x0";
|
|
10304
|
+
};
|
|
10305
|
+
readonly range_total_swap_inputs: {
|
|
10306
|
+
readonly base: "0x0";
|
|
10307
|
+
readonly quote: "0x0";
|
|
10308
|
+
};
|
|
10309
|
+
readonly limit_total_swap_inputs: {
|
|
10310
|
+
readonly base: "0x0";
|
|
10311
|
+
readonly quote: "0x0";
|
|
10312
|
+
};
|
|
10313
|
+
readonly quote_asset: {
|
|
10314
|
+
readonly chain: "Ethereum";
|
|
10315
|
+
readonly asset: "USDC";
|
|
10316
|
+
};
|
|
7649
10317
|
};
|
|
7650
10318
|
SOL: {
|
|
7651
10319
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7670,6 +10338,29 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7670
10338
|
chain: "Ethereum";
|
|
7671
10339
|
asset: "USDC";
|
|
7672
10340
|
};
|
|
10341
|
+
} | {
|
|
10342
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10343
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10344
|
+
readonly range_order_total_fees_earned: {
|
|
10345
|
+
readonly base: "0x0";
|
|
10346
|
+
readonly quote: "0x0";
|
|
10347
|
+
};
|
|
10348
|
+
readonly limit_order_total_fees_earned: {
|
|
10349
|
+
readonly base: "0x0";
|
|
10350
|
+
readonly quote: "0x0";
|
|
10351
|
+
};
|
|
10352
|
+
readonly range_total_swap_inputs: {
|
|
10353
|
+
readonly base: "0x0";
|
|
10354
|
+
readonly quote: "0x0";
|
|
10355
|
+
};
|
|
10356
|
+
readonly limit_total_swap_inputs: {
|
|
10357
|
+
readonly base: "0x0";
|
|
10358
|
+
readonly quote: "0x0";
|
|
10359
|
+
};
|
|
10360
|
+
readonly quote_asset: {
|
|
10361
|
+
readonly chain: "Ethereum";
|
|
10362
|
+
readonly asset: "USDC";
|
|
10363
|
+
};
|
|
7673
10364
|
};
|
|
7674
10365
|
};
|
|
7675
10366
|
};
|
|
@@ -7841,7 +10532,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7841
10532
|
chain: "Ethereum";
|
|
7842
10533
|
asset: "USDC";
|
|
7843
10534
|
};
|
|
7844
|
-
};
|
|
10535
|
+
} | null;
|
|
7845
10536
|
};
|
|
7846
10537
|
Ethereum: {
|
|
7847
10538
|
ETH: {
|
|
@@ -7867,7 +10558,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7867
10558
|
chain: "Ethereum";
|
|
7868
10559
|
asset: "USDC";
|
|
7869
10560
|
};
|
|
7870
|
-
};
|
|
10561
|
+
} | null;
|
|
7871
10562
|
FLIP: {
|
|
7872
10563
|
limit_order_fee_hundredth_pips: number;
|
|
7873
10564
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7891,7 +10582,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7891
10582
|
chain: "Ethereum";
|
|
7892
10583
|
asset: "USDC";
|
|
7893
10584
|
};
|
|
7894
|
-
};
|
|
10585
|
+
} | null;
|
|
7895
10586
|
USDT: {
|
|
7896
10587
|
limit_order_fee_hundredth_pips: number;
|
|
7897
10588
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7915,7 +10606,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7915
10606
|
chain: "Ethereum";
|
|
7916
10607
|
asset: "USDC";
|
|
7917
10608
|
};
|
|
7918
|
-
};
|
|
10609
|
+
} | null;
|
|
7919
10610
|
};
|
|
7920
10611
|
Polkadot: {
|
|
7921
10612
|
DOT: {
|
|
@@ -7941,7 +10632,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7941
10632
|
chain: "Ethereum";
|
|
7942
10633
|
asset: "USDC";
|
|
7943
10634
|
};
|
|
7944
|
-
};
|
|
10635
|
+
} | null;
|
|
7945
10636
|
};
|
|
7946
10637
|
Arbitrum: {
|
|
7947
10638
|
ETH: {
|
|
@@ -7967,7 +10658,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7967
10658
|
chain: "Ethereum";
|
|
7968
10659
|
asset: "USDC";
|
|
7969
10660
|
};
|
|
7970
|
-
};
|
|
10661
|
+
} | null;
|
|
7971
10662
|
USDC: {
|
|
7972
10663
|
limit_order_fee_hundredth_pips: number;
|
|
7973
10664
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7991,7 +10682,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7991
10682
|
chain: "Ethereum";
|
|
7992
10683
|
asset: "USDC";
|
|
7993
10684
|
};
|
|
7994
|
-
};
|
|
10685
|
+
} | null;
|
|
7995
10686
|
};
|
|
7996
10687
|
Solana?: {
|
|
7997
10688
|
USDC?: {
|
|
@@ -8017,7 +10708,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8017
10708
|
chain: "Ethereum";
|
|
8018
10709
|
asset: "USDC";
|
|
8019
10710
|
};
|
|
8020
|
-
} | undefined;
|
|
10711
|
+
} | null | undefined;
|
|
8021
10712
|
SOL?: {
|
|
8022
10713
|
limit_order_fee_hundredth_pips: number;
|
|
8023
10714
|
range_order_fee_hundredth_pips: number;
|
|
@@ -8041,7 +10732,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8041
10732
|
chain: "Ethereum";
|
|
8042
10733
|
asset: "USDC";
|
|
8043
10734
|
};
|
|
8044
|
-
} | undefined;
|
|
10735
|
+
} | null | undefined;
|
|
8045
10736
|
} | undefined;
|
|
8046
10737
|
};
|
|
8047
10738
|
};
|