@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/common.d.cts
CHANGED
|
@@ -1766,7 +1766,7 @@ declare const rpcResult: {
|
|
|
1766
1766
|
pools: z.ZodObject<{
|
|
1767
1767
|
fees: z.ZodObject<{
|
|
1768
1768
|
Bitcoin: z.ZodObject<{
|
|
1769
|
-
BTC: z.ZodObject<{
|
|
1769
|
+
BTC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
1770
1770
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
1771
1771
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
1772
1772
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -1865,7 +1865,76 @@ declare const rpcResult: {
|
|
|
1865
1865
|
chain: "Ethereum";
|
|
1866
1866
|
asset: "USDC";
|
|
1867
1867
|
};
|
|
1868
|
-
}
|
|
1868
|
+
}>>, {
|
|
1869
|
+
limit_order_fee_hundredth_pips: number;
|
|
1870
|
+
range_order_fee_hundredth_pips: number;
|
|
1871
|
+
range_order_total_fees_earned: {
|
|
1872
|
+
base: bigint;
|
|
1873
|
+
quote: bigint;
|
|
1874
|
+
};
|
|
1875
|
+
limit_order_total_fees_earned: {
|
|
1876
|
+
base: bigint;
|
|
1877
|
+
quote: bigint;
|
|
1878
|
+
};
|
|
1879
|
+
range_total_swap_inputs: {
|
|
1880
|
+
base: bigint;
|
|
1881
|
+
quote: bigint;
|
|
1882
|
+
};
|
|
1883
|
+
limit_total_swap_inputs: {
|
|
1884
|
+
base: bigint;
|
|
1885
|
+
quote: bigint;
|
|
1886
|
+
};
|
|
1887
|
+
quote_asset: {
|
|
1888
|
+
chain: "Ethereum";
|
|
1889
|
+
asset: "USDC";
|
|
1890
|
+
};
|
|
1891
|
+
} | {
|
|
1892
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
1893
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
1894
|
+
readonly range_order_total_fees_earned: {
|
|
1895
|
+
readonly base: "0x0";
|
|
1896
|
+
readonly quote: "0x0";
|
|
1897
|
+
};
|
|
1898
|
+
readonly limit_order_total_fees_earned: {
|
|
1899
|
+
readonly base: "0x0";
|
|
1900
|
+
readonly quote: "0x0";
|
|
1901
|
+
};
|
|
1902
|
+
readonly range_total_swap_inputs: {
|
|
1903
|
+
readonly base: "0x0";
|
|
1904
|
+
readonly quote: "0x0";
|
|
1905
|
+
};
|
|
1906
|
+
readonly limit_total_swap_inputs: {
|
|
1907
|
+
readonly base: "0x0";
|
|
1908
|
+
readonly quote: "0x0";
|
|
1909
|
+
};
|
|
1910
|
+
readonly quote_asset: {
|
|
1911
|
+
readonly chain: "Ethereum";
|
|
1912
|
+
readonly asset: "USDC";
|
|
1913
|
+
};
|
|
1914
|
+
}, {
|
|
1915
|
+
limit_order_fee_hundredth_pips: number;
|
|
1916
|
+
range_order_fee_hundredth_pips: number;
|
|
1917
|
+
range_order_total_fees_earned: {
|
|
1918
|
+
base: string;
|
|
1919
|
+
quote: string;
|
|
1920
|
+
};
|
|
1921
|
+
limit_order_total_fees_earned: {
|
|
1922
|
+
base: string;
|
|
1923
|
+
quote: string;
|
|
1924
|
+
};
|
|
1925
|
+
range_total_swap_inputs: {
|
|
1926
|
+
base: string;
|
|
1927
|
+
quote: string;
|
|
1928
|
+
};
|
|
1929
|
+
limit_total_swap_inputs: {
|
|
1930
|
+
base: string;
|
|
1931
|
+
quote: string;
|
|
1932
|
+
};
|
|
1933
|
+
quote_asset: {
|
|
1934
|
+
chain: "Ethereum";
|
|
1935
|
+
asset: "USDC";
|
|
1936
|
+
};
|
|
1937
|
+
} | null>;
|
|
1869
1938
|
}, "strip", z.ZodTypeAny, {
|
|
1870
1939
|
BTC: {
|
|
1871
1940
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -1890,6 +1959,29 @@ declare const rpcResult: {
|
|
|
1890
1959
|
chain: "Ethereum";
|
|
1891
1960
|
asset: "USDC";
|
|
1892
1961
|
};
|
|
1962
|
+
} | {
|
|
1963
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
1964
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
1965
|
+
readonly range_order_total_fees_earned: {
|
|
1966
|
+
readonly base: "0x0";
|
|
1967
|
+
readonly quote: "0x0";
|
|
1968
|
+
};
|
|
1969
|
+
readonly limit_order_total_fees_earned: {
|
|
1970
|
+
readonly base: "0x0";
|
|
1971
|
+
readonly quote: "0x0";
|
|
1972
|
+
};
|
|
1973
|
+
readonly range_total_swap_inputs: {
|
|
1974
|
+
readonly base: "0x0";
|
|
1975
|
+
readonly quote: "0x0";
|
|
1976
|
+
};
|
|
1977
|
+
readonly limit_total_swap_inputs: {
|
|
1978
|
+
readonly base: "0x0";
|
|
1979
|
+
readonly quote: "0x0";
|
|
1980
|
+
};
|
|
1981
|
+
readonly quote_asset: {
|
|
1982
|
+
readonly chain: "Ethereum";
|
|
1983
|
+
readonly asset: "USDC";
|
|
1984
|
+
};
|
|
1893
1985
|
};
|
|
1894
1986
|
}, {
|
|
1895
1987
|
BTC: {
|
|
@@ -1915,10 +2007,10 @@ declare const rpcResult: {
|
|
|
1915
2007
|
chain: "Ethereum";
|
|
1916
2008
|
asset: "USDC";
|
|
1917
2009
|
};
|
|
1918
|
-
};
|
|
2010
|
+
} | null;
|
|
1919
2011
|
}>;
|
|
1920
2012
|
Ethereum: z.ZodObject<{
|
|
1921
|
-
ETH: z.ZodObject<{
|
|
2013
|
+
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
1922
2014
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
1923
2015
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
1924
2016
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2017,8 +2109,77 @@ declare const rpcResult: {
|
|
|
2017
2109
|
chain: "Ethereum";
|
|
2018
2110
|
asset: "USDC";
|
|
2019
2111
|
};
|
|
2020
|
-
}
|
|
2021
|
-
|
|
2112
|
+
}>>, {
|
|
2113
|
+
limit_order_fee_hundredth_pips: number;
|
|
2114
|
+
range_order_fee_hundredth_pips: number;
|
|
2115
|
+
range_order_total_fees_earned: {
|
|
2116
|
+
base: bigint;
|
|
2117
|
+
quote: bigint;
|
|
2118
|
+
};
|
|
2119
|
+
limit_order_total_fees_earned: {
|
|
2120
|
+
base: bigint;
|
|
2121
|
+
quote: bigint;
|
|
2122
|
+
};
|
|
2123
|
+
range_total_swap_inputs: {
|
|
2124
|
+
base: bigint;
|
|
2125
|
+
quote: bigint;
|
|
2126
|
+
};
|
|
2127
|
+
limit_total_swap_inputs: {
|
|
2128
|
+
base: bigint;
|
|
2129
|
+
quote: bigint;
|
|
2130
|
+
};
|
|
2131
|
+
quote_asset: {
|
|
2132
|
+
chain: "Ethereum";
|
|
2133
|
+
asset: "USDC";
|
|
2134
|
+
};
|
|
2135
|
+
} | {
|
|
2136
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2137
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2138
|
+
readonly range_order_total_fees_earned: {
|
|
2139
|
+
readonly base: "0x0";
|
|
2140
|
+
readonly quote: "0x0";
|
|
2141
|
+
};
|
|
2142
|
+
readonly limit_order_total_fees_earned: {
|
|
2143
|
+
readonly base: "0x0";
|
|
2144
|
+
readonly quote: "0x0";
|
|
2145
|
+
};
|
|
2146
|
+
readonly range_total_swap_inputs: {
|
|
2147
|
+
readonly base: "0x0";
|
|
2148
|
+
readonly quote: "0x0";
|
|
2149
|
+
};
|
|
2150
|
+
readonly limit_total_swap_inputs: {
|
|
2151
|
+
readonly base: "0x0";
|
|
2152
|
+
readonly quote: "0x0";
|
|
2153
|
+
};
|
|
2154
|
+
readonly quote_asset: {
|
|
2155
|
+
readonly chain: "Ethereum";
|
|
2156
|
+
readonly asset: "USDC";
|
|
2157
|
+
};
|
|
2158
|
+
}, {
|
|
2159
|
+
limit_order_fee_hundredth_pips: number;
|
|
2160
|
+
range_order_fee_hundredth_pips: number;
|
|
2161
|
+
range_order_total_fees_earned: {
|
|
2162
|
+
base: string;
|
|
2163
|
+
quote: string;
|
|
2164
|
+
};
|
|
2165
|
+
limit_order_total_fees_earned: {
|
|
2166
|
+
base: string;
|
|
2167
|
+
quote: string;
|
|
2168
|
+
};
|
|
2169
|
+
range_total_swap_inputs: {
|
|
2170
|
+
base: string;
|
|
2171
|
+
quote: string;
|
|
2172
|
+
};
|
|
2173
|
+
limit_total_swap_inputs: {
|
|
2174
|
+
base: string;
|
|
2175
|
+
quote: string;
|
|
2176
|
+
};
|
|
2177
|
+
quote_asset: {
|
|
2178
|
+
chain: "Ethereum";
|
|
2179
|
+
asset: "USDC";
|
|
2180
|
+
};
|
|
2181
|
+
} | null>;
|
|
2182
|
+
FLIP: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2022
2183
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2023
2184
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2024
2185
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2117,8 +2278,77 @@ declare const rpcResult: {
|
|
|
2117
2278
|
chain: "Ethereum";
|
|
2118
2279
|
asset: "USDC";
|
|
2119
2280
|
};
|
|
2120
|
-
}
|
|
2121
|
-
|
|
2281
|
+
}>>, {
|
|
2282
|
+
limit_order_fee_hundredth_pips: number;
|
|
2283
|
+
range_order_fee_hundredth_pips: number;
|
|
2284
|
+
range_order_total_fees_earned: {
|
|
2285
|
+
base: bigint;
|
|
2286
|
+
quote: bigint;
|
|
2287
|
+
};
|
|
2288
|
+
limit_order_total_fees_earned: {
|
|
2289
|
+
base: bigint;
|
|
2290
|
+
quote: bigint;
|
|
2291
|
+
};
|
|
2292
|
+
range_total_swap_inputs: {
|
|
2293
|
+
base: bigint;
|
|
2294
|
+
quote: bigint;
|
|
2295
|
+
};
|
|
2296
|
+
limit_total_swap_inputs: {
|
|
2297
|
+
base: bigint;
|
|
2298
|
+
quote: bigint;
|
|
2299
|
+
};
|
|
2300
|
+
quote_asset: {
|
|
2301
|
+
chain: "Ethereum";
|
|
2302
|
+
asset: "USDC";
|
|
2303
|
+
};
|
|
2304
|
+
} | {
|
|
2305
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2306
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2307
|
+
readonly range_order_total_fees_earned: {
|
|
2308
|
+
readonly base: "0x0";
|
|
2309
|
+
readonly quote: "0x0";
|
|
2310
|
+
};
|
|
2311
|
+
readonly limit_order_total_fees_earned: {
|
|
2312
|
+
readonly base: "0x0";
|
|
2313
|
+
readonly quote: "0x0";
|
|
2314
|
+
};
|
|
2315
|
+
readonly range_total_swap_inputs: {
|
|
2316
|
+
readonly base: "0x0";
|
|
2317
|
+
readonly quote: "0x0";
|
|
2318
|
+
};
|
|
2319
|
+
readonly limit_total_swap_inputs: {
|
|
2320
|
+
readonly base: "0x0";
|
|
2321
|
+
readonly quote: "0x0";
|
|
2322
|
+
};
|
|
2323
|
+
readonly quote_asset: {
|
|
2324
|
+
readonly chain: "Ethereum";
|
|
2325
|
+
readonly asset: "USDC";
|
|
2326
|
+
};
|
|
2327
|
+
}, {
|
|
2328
|
+
limit_order_fee_hundredth_pips: number;
|
|
2329
|
+
range_order_fee_hundredth_pips: number;
|
|
2330
|
+
range_order_total_fees_earned: {
|
|
2331
|
+
base: string;
|
|
2332
|
+
quote: string;
|
|
2333
|
+
};
|
|
2334
|
+
limit_order_total_fees_earned: {
|
|
2335
|
+
base: string;
|
|
2336
|
+
quote: string;
|
|
2337
|
+
};
|
|
2338
|
+
range_total_swap_inputs: {
|
|
2339
|
+
base: string;
|
|
2340
|
+
quote: string;
|
|
2341
|
+
};
|
|
2342
|
+
limit_total_swap_inputs: {
|
|
2343
|
+
base: string;
|
|
2344
|
+
quote: string;
|
|
2345
|
+
};
|
|
2346
|
+
quote_asset: {
|
|
2347
|
+
chain: "Ethereum";
|
|
2348
|
+
asset: "USDC";
|
|
2349
|
+
};
|
|
2350
|
+
} | null>;
|
|
2351
|
+
USDT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2122
2352
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2123
2353
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2124
2354
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2217,7 +2447,76 @@ declare const rpcResult: {
|
|
|
2217
2447
|
chain: "Ethereum";
|
|
2218
2448
|
asset: "USDC";
|
|
2219
2449
|
};
|
|
2220
|
-
}
|
|
2450
|
+
}>>, {
|
|
2451
|
+
limit_order_fee_hundredth_pips: number;
|
|
2452
|
+
range_order_fee_hundredth_pips: number;
|
|
2453
|
+
range_order_total_fees_earned: {
|
|
2454
|
+
base: bigint;
|
|
2455
|
+
quote: bigint;
|
|
2456
|
+
};
|
|
2457
|
+
limit_order_total_fees_earned: {
|
|
2458
|
+
base: bigint;
|
|
2459
|
+
quote: bigint;
|
|
2460
|
+
};
|
|
2461
|
+
range_total_swap_inputs: {
|
|
2462
|
+
base: bigint;
|
|
2463
|
+
quote: bigint;
|
|
2464
|
+
};
|
|
2465
|
+
limit_total_swap_inputs: {
|
|
2466
|
+
base: bigint;
|
|
2467
|
+
quote: bigint;
|
|
2468
|
+
};
|
|
2469
|
+
quote_asset: {
|
|
2470
|
+
chain: "Ethereum";
|
|
2471
|
+
asset: "USDC";
|
|
2472
|
+
};
|
|
2473
|
+
} | {
|
|
2474
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2475
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2476
|
+
readonly range_order_total_fees_earned: {
|
|
2477
|
+
readonly base: "0x0";
|
|
2478
|
+
readonly quote: "0x0";
|
|
2479
|
+
};
|
|
2480
|
+
readonly limit_order_total_fees_earned: {
|
|
2481
|
+
readonly base: "0x0";
|
|
2482
|
+
readonly quote: "0x0";
|
|
2483
|
+
};
|
|
2484
|
+
readonly range_total_swap_inputs: {
|
|
2485
|
+
readonly base: "0x0";
|
|
2486
|
+
readonly quote: "0x0";
|
|
2487
|
+
};
|
|
2488
|
+
readonly limit_total_swap_inputs: {
|
|
2489
|
+
readonly base: "0x0";
|
|
2490
|
+
readonly quote: "0x0";
|
|
2491
|
+
};
|
|
2492
|
+
readonly quote_asset: {
|
|
2493
|
+
readonly chain: "Ethereum";
|
|
2494
|
+
readonly asset: "USDC";
|
|
2495
|
+
};
|
|
2496
|
+
}, {
|
|
2497
|
+
limit_order_fee_hundredth_pips: number;
|
|
2498
|
+
range_order_fee_hundredth_pips: number;
|
|
2499
|
+
range_order_total_fees_earned: {
|
|
2500
|
+
base: string;
|
|
2501
|
+
quote: string;
|
|
2502
|
+
};
|
|
2503
|
+
limit_order_total_fees_earned: {
|
|
2504
|
+
base: string;
|
|
2505
|
+
quote: string;
|
|
2506
|
+
};
|
|
2507
|
+
range_total_swap_inputs: {
|
|
2508
|
+
base: string;
|
|
2509
|
+
quote: string;
|
|
2510
|
+
};
|
|
2511
|
+
limit_total_swap_inputs: {
|
|
2512
|
+
base: string;
|
|
2513
|
+
quote: string;
|
|
2514
|
+
};
|
|
2515
|
+
quote_asset: {
|
|
2516
|
+
chain: "Ethereum";
|
|
2517
|
+
asset: "USDC";
|
|
2518
|
+
};
|
|
2519
|
+
} | null>;
|
|
2221
2520
|
}, "strip", z.ZodTypeAny, {
|
|
2222
2521
|
ETH: {
|
|
2223
2522
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2242,6 +2541,29 @@ declare const rpcResult: {
|
|
|
2242
2541
|
chain: "Ethereum";
|
|
2243
2542
|
asset: "USDC";
|
|
2244
2543
|
};
|
|
2544
|
+
} | {
|
|
2545
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2546
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2547
|
+
readonly range_order_total_fees_earned: {
|
|
2548
|
+
readonly base: "0x0";
|
|
2549
|
+
readonly quote: "0x0";
|
|
2550
|
+
};
|
|
2551
|
+
readonly limit_order_total_fees_earned: {
|
|
2552
|
+
readonly base: "0x0";
|
|
2553
|
+
readonly quote: "0x0";
|
|
2554
|
+
};
|
|
2555
|
+
readonly range_total_swap_inputs: {
|
|
2556
|
+
readonly base: "0x0";
|
|
2557
|
+
readonly quote: "0x0";
|
|
2558
|
+
};
|
|
2559
|
+
readonly limit_total_swap_inputs: {
|
|
2560
|
+
readonly base: "0x0";
|
|
2561
|
+
readonly quote: "0x0";
|
|
2562
|
+
};
|
|
2563
|
+
readonly quote_asset: {
|
|
2564
|
+
readonly chain: "Ethereum";
|
|
2565
|
+
readonly asset: "USDC";
|
|
2566
|
+
};
|
|
2245
2567
|
};
|
|
2246
2568
|
FLIP: {
|
|
2247
2569
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2266,6 +2588,29 @@ declare const rpcResult: {
|
|
|
2266
2588
|
chain: "Ethereum";
|
|
2267
2589
|
asset: "USDC";
|
|
2268
2590
|
};
|
|
2591
|
+
} | {
|
|
2592
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2593
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2594
|
+
readonly range_order_total_fees_earned: {
|
|
2595
|
+
readonly base: "0x0";
|
|
2596
|
+
readonly quote: "0x0";
|
|
2597
|
+
};
|
|
2598
|
+
readonly limit_order_total_fees_earned: {
|
|
2599
|
+
readonly base: "0x0";
|
|
2600
|
+
readonly quote: "0x0";
|
|
2601
|
+
};
|
|
2602
|
+
readonly range_total_swap_inputs: {
|
|
2603
|
+
readonly base: "0x0";
|
|
2604
|
+
readonly quote: "0x0";
|
|
2605
|
+
};
|
|
2606
|
+
readonly limit_total_swap_inputs: {
|
|
2607
|
+
readonly base: "0x0";
|
|
2608
|
+
readonly quote: "0x0";
|
|
2609
|
+
};
|
|
2610
|
+
readonly quote_asset: {
|
|
2611
|
+
readonly chain: "Ethereum";
|
|
2612
|
+
readonly asset: "USDC";
|
|
2613
|
+
};
|
|
2269
2614
|
};
|
|
2270
2615
|
USDT: {
|
|
2271
2616
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2290,6 +2635,29 @@ declare const rpcResult: {
|
|
|
2290
2635
|
chain: "Ethereum";
|
|
2291
2636
|
asset: "USDC";
|
|
2292
2637
|
};
|
|
2638
|
+
} | {
|
|
2639
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2640
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2641
|
+
readonly range_order_total_fees_earned: {
|
|
2642
|
+
readonly base: "0x0";
|
|
2643
|
+
readonly quote: "0x0";
|
|
2644
|
+
};
|
|
2645
|
+
readonly limit_order_total_fees_earned: {
|
|
2646
|
+
readonly base: "0x0";
|
|
2647
|
+
readonly quote: "0x0";
|
|
2648
|
+
};
|
|
2649
|
+
readonly range_total_swap_inputs: {
|
|
2650
|
+
readonly base: "0x0";
|
|
2651
|
+
readonly quote: "0x0";
|
|
2652
|
+
};
|
|
2653
|
+
readonly limit_total_swap_inputs: {
|
|
2654
|
+
readonly base: "0x0";
|
|
2655
|
+
readonly quote: "0x0";
|
|
2656
|
+
};
|
|
2657
|
+
readonly quote_asset: {
|
|
2658
|
+
readonly chain: "Ethereum";
|
|
2659
|
+
readonly asset: "USDC";
|
|
2660
|
+
};
|
|
2293
2661
|
};
|
|
2294
2662
|
}, {
|
|
2295
2663
|
ETH: {
|
|
@@ -2315,7 +2683,7 @@ declare const rpcResult: {
|
|
|
2315
2683
|
chain: "Ethereum";
|
|
2316
2684
|
asset: "USDC";
|
|
2317
2685
|
};
|
|
2318
|
-
};
|
|
2686
|
+
} | null;
|
|
2319
2687
|
FLIP: {
|
|
2320
2688
|
limit_order_fee_hundredth_pips: number;
|
|
2321
2689
|
range_order_fee_hundredth_pips: number;
|
|
@@ -2339,7 +2707,7 @@ declare const rpcResult: {
|
|
|
2339
2707
|
chain: "Ethereum";
|
|
2340
2708
|
asset: "USDC";
|
|
2341
2709
|
};
|
|
2342
|
-
};
|
|
2710
|
+
} | null;
|
|
2343
2711
|
USDT: {
|
|
2344
2712
|
limit_order_fee_hundredth_pips: number;
|
|
2345
2713
|
range_order_fee_hundredth_pips: number;
|
|
@@ -2363,10 +2731,10 @@ declare const rpcResult: {
|
|
|
2363
2731
|
chain: "Ethereum";
|
|
2364
2732
|
asset: "USDC";
|
|
2365
2733
|
};
|
|
2366
|
-
};
|
|
2734
|
+
} | null;
|
|
2367
2735
|
}>;
|
|
2368
2736
|
Polkadot: z.ZodObject<{
|
|
2369
|
-
DOT: z.ZodObject<{
|
|
2737
|
+
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2370
2738
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2371
2739
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2372
2740
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2465,9 +2833,7 @@ declare const rpcResult: {
|
|
|
2465
2833
|
chain: "Ethereum";
|
|
2466
2834
|
asset: "USDC";
|
|
2467
2835
|
};
|
|
2468
|
-
}
|
|
2469
|
-
}, "strip", z.ZodTypeAny, {
|
|
2470
|
-
DOT: {
|
|
2836
|
+
}>>, {
|
|
2471
2837
|
limit_order_fee_hundredth_pips: number;
|
|
2472
2838
|
range_order_fee_hundredth_pips: number;
|
|
2473
2839
|
range_order_total_fees_earned: {
|
|
@@ -2490,9 +2856,30 @@ declare const rpcResult: {
|
|
|
2490
2856
|
chain: "Ethereum";
|
|
2491
2857
|
asset: "USDC";
|
|
2492
2858
|
};
|
|
2493
|
-
}
|
|
2494
|
-
|
|
2495
|
-
|
|
2859
|
+
} | {
|
|
2860
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2861
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2862
|
+
readonly range_order_total_fees_earned: {
|
|
2863
|
+
readonly base: "0x0";
|
|
2864
|
+
readonly quote: "0x0";
|
|
2865
|
+
};
|
|
2866
|
+
readonly limit_order_total_fees_earned: {
|
|
2867
|
+
readonly base: "0x0";
|
|
2868
|
+
readonly quote: "0x0";
|
|
2869
|
+
};
|
|
2870
|
+
readonly range_total_swap_inputs: {
|
|
2871
|
+
readonly base: "0x0";
|
|
2872
|
+
readonly quote: "0x0";
|
|
2873
|
+
};
|
|
2874
|
+
readonly limit_total_swap_inputs: {
|
|
2875
|
+
readonly base: "0x0";
|
|
2876
|
+
readonly quote: "0x0";
|
|
2877
|
+
};
|
|
2878
|
+
readonly quote_asset: {
|
|
2879
|
+
readonly chain: "Ethereum";
|
|
2880
|
+
readonly asset: "USDC";
|
|
2881
|
+
};
|
|
2882
|
+
}, {
|
|
2496
2883
|
limit_order_fee_hundredth_pips: number;
|
|
2497
2884
|
range_order_fee_hundredth_pips: number;
|
|
2498
2885
|
range_order_total_fees_earned: {
|
|
@@ -2515,20 +2902,93 @@ declare const rpcResult: {
|
|
|
2515
2902
|
chain: "Ethereum";
|
|
2516
2903
|
asset: "USDC";
|
|
2517
2904
|
};
|
|
2518
|
-
}
|
|
2519
|
-
}
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
range_order_total_fees_earned: z.ZodObject<{
|
|
2525
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2526
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2527
|
-
}, "strip", z.ZodTypeAny, {
|
|
2905
|
+
} | null>;
|
|
2906
|
+
}, "strip", z.ZodTypeAny, {
|
|
2907
|
+
DOT: {
|
|
2908
|
+
limit_order_fee_hundredth_pips: number;
|
|
2909
|
+
range_order_fee_hundredth_pips: number;
|
|
2910
|
+
range_order_total_fees_earned: {
|
|
2528
2911
|
base: bigint;
|
|
2529
2912
|
quote: bigint;
|
|
2530
|
-
}
|
|
2531
|
-
|
|
2913
|
+
};
|
|
2914
|
+
limit_order_total_fees_earned: {
|
|
2915
|
+
base: bigint;
|
|
2916
|
+
quote: bigint;
|
|
2917
|
+
};
|
|
2918
|
+
range_total_swap_inputs: {
|
|
2919
|
+
base: bigint;
|
|
2920
|
+
quote: bigint;
|
|
2921
|
+
};
|
|
2922
|
+
limit_total_swap_inputs: {
|
|
2923
|
+
base: bigint;
|
|
2924
|
+
quote: bigint;
|
|
2925
|
+
};
|
|
2926
|
+
quote_asset: {
|
|
2927
|
+
chain: "Ethereum";
|
|
2928
|
+
asset: "USDC";
|
|
2929
|
+
};
|
|
2930
|
+
} | {
|
|
2931
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
2932
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
2933
|
+
readonly range_order_total_fees_earned: {
|
|
2934
|
+
readonly base: "0x0";
|
|
2935
|
+
readonly quote: "0x0";
|
|
2936
|
+
};
|
|
2937
|
+
readonly limit_order_total_fees_earned: {
|
|
2938
|
+
readonly base: "0x0";
|
|
2939
|
+
readonly quote: "0x0";
|
|
2940
|
+
};
|
|
2941
|
+
readonly range_total_swap_inputs: {
|
|
2942
|
+
readonly base: "0x0";
|
|
2943
|
+
readonly quote: "0x0";
|
|
2944
|
+
};
|
|
2945
|
+
readonly limit_total_swap_inputs: {
|
|
2946
|
+
readonly base: "0x0";
|
|
2947
|
+
readonly quote: "0x0";
|
|
2948
|
+
};
|
|
2949
|
+
readonly quote_asset: {
|
|
2950
|
+
readonly chain: "Ethereum";
|
|
2951
|
+
readonly asset: "USDC";
|
|
2952
|
+
};
|
|
2953
|
+
};
|
|
2954
|
+
}, {
|
|
2955
|
+
DOT: {
|
|
2956
|
+
limit_order_fee_hundredth_pips: number;
|
|
2957
|
+
range_order_fee_hundredth_pips: number;
|
|
2958
|
+
range_order_total_fees_earned: {
|
|
2959
|
+
base: string;
|
|
2960
|
+
quote: string;
|
|
2961
|
+
};
|
|
2962
|
+
limit_order_total_fees_earned: {
|
|
2963
|
+
base: string;
|
|
2964
|
+
quote: string;
|
|
2965
|
+
};
|
|
2966
|
+
range_total_swap_inputs: {
|
|
2967
|
+
base: string;
|
|
2968
|
+
quote: string;
|
|
2969
|
+
};
|
|
2970
|
+
limit_total_swap_inputs: {
|
|
2971
|
+
base: string;
|
|
2972
|
+
quote: string;
|
|
2973
|
+
};
|
|
2974
|
+
quote_asset: {
|
|
2975
|
+
chain: "Ethereum";
|
|
2976
|
+
asset: "USDC";
|
|
2977
|
+
};
|
|
2978
|
+
} | null;
|
|
2979
|
+
}>;
|
|
2980
|
+
Arbitrum: z.ZodObject<{
|
|
2981
|
+
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2982
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2983
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2984
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
2985
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2986
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2987
|
+
}, "strip", z.ZodTypeAny, {
|
|
2988
|
+
base: bigint;
|
|
2989
|
+
quote: bigint;
|
|
2990
|
+
}, {
|
|
2991
|
+
base: string;
|
|
2532
2992
|
quote: string;
|
|
2533
2993
|
}>;
|
|
2534
2994
|
limit_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2617,8 +3077,77 @@ declare const rpcResult: {
|
|
|
2617
3077
|
chain: "Ethereum";
|
|
2618
3078
|
asset: "USDC";
|
|
2619
3079
|
};
|
|
2620
|
-
}
|
|
2621
|
-
|
|
3080
|
+
}>>, {
|
|
3081
|
+
limit_order_fee_hundredth_pips: number;
|
|
3082
|
+
range_order_fee_hundredth_pips: number;
|
|
3083
|
+
range_order_total_fees_earned: {
|
|
3084
|
+
base: bigint;
|
|
3085
|
+
quote: bigint;
|
|
3086
|
+
};
|
|
3087
|
+
limit_order_total_fees_earned: {
|
|
3088
|
+
base: bigint;
|
|
3089
|
+
quote: bigint;
|
|
3090
|
+
};
|
|
3091
|
+
range_total_swap_inputs: {
|
|
3092
|
+
base: bigint;
|
|
3093
|
+
quote: bigint;
|
|
3094
|
+
};
|
|
3095
|
+
limit_total_swap_inputs: {
|
|
3096
|
+
base: bigint;
|
|
3097
|
+
quote: bigint;
|
|
3098
|
+
};
|
|
3099
|
+
quote_asset: {
|
|
3100
|
+
chain: "Ethereum";
|
|
3101
|
+
asset: "USDC";
|
|
3102
|
+
};
|
|
3103
|
+
} | {
|
|
3104
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3105
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3106
|
+
readonly range_order_total_fees_earned: {
|
|
3107
|
+
readonly base: "0x0";
|
|
3108
|
+
readonly quote: "0x0";
|
|
3109
|
+
};
|
|
3110
|
+
readonly limit_order_total_fees_earned: {
|
|
3111
|
+
readonly base: "0x0";
|
|
3112
|
+
readonly quote: "0x0";
|
|
3113
|
+
};
|
|
3114
|
+
readonly range_total_swap_inputs: {
|
|
3115
|
+
readonly base: "0x0";
|
|
3116
|
+
readonly quote: "0x0";
|
|
3117
|
+
};
|
|
3118
|
+
readonly limit_total_swap_inputs: {
|
|
3119
|
+
readonly base: "0x0";
|
|
3120
|
+
readonly quote: "0x0";
|
|
3121
|
+
};
|
|
3122
|
+
readonly quote_asset: {
|
|
3123
|
+
readonly chain: "Ethereum";
|
|
3124
|
+
readonly asset: "USDC";
|
|
3125
|
+
};
|
|
3126
|
+
}, {
|
|
3127
|
+
limit_order_fee_hundredth_pips: number;
|
|
3128
|
+
range_order_fee_hundredth_pips: number;
|
|
3129
|
+
range_order_total_fees_earned: {
|
|
3130
|
+
base: string;
|
|
3131
|
+
quote: string;
|
|
3132
|
+
};
|
|
3133
|
+
limit_order_total_fees_earned: {
|
|
3134
|
+
base: string;
|
|
3135
|
+
quote: string;
|
|
3136
|
+
};
|
|
3137
|
+
range_total_swap_inputs: {
|
|
3138
|
+
base: string;
|
|
3139
|
+
quote: string;
|
|
3140
|
+
};
|
|
3141
|
+
limit_total_swap_inputs: {
|
|
3142
|
+
base: string;
|
|
3143
|
+
quote: string;
|
|
3144
|
+
};
|
|
3145
|
+
quote_asset: {
|
|
3146
|
+
chain: "Ethereum";
|
|
3147
|
+
asset: "USDC";
|
|
3148
|
+
};
|
|
3149
|
+
} | null>;
|
|
3150
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2622
3151
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2623
3152
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2624
3153
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2717,7 +3246,76 @@ declare const rpcResult: {
|
|
|
2717
3246
|
chain: "Ethereum";
|
|
2718
3247
|
asset: "USDC";
|
|
2719
3248
|
};
|
|
2720
|
-
}
|
|
3249
|
+
}>>, {
|
|
3250
|
+
limit_order_fee_hundredth_pips: number;
|
|
3251
|
+
range_order_fee_hundredth_pips: number;
|
|
3252
|
+
range_order_total_fees_earned: {
|
|
3253
|
+
base: bigint;
|
|
3254
|
+
quote: bigint;
|
|
3255
|
+
};
|
|
3256
|
+
limit_order_total_fees_earned: {
|
|
3257
|
+
base: bigint;
|
|
3258
|
+
quote: bigint;
|
|
3259
|
+
};
|
|
3260
|
+
range_total_swap_inputs: {
|
|
3261
|
+
base: bigint;
|
|
3262
|
+
quote: bigint;
|
|
3263
|
+
};
|
|
3264
|
+
limit_total_swap_inputs: {
|
|
3265
|
+
base: bigint;
|
|
3266
|
+
quote: bigint;
|
|
3267
|
+
};
|
|
3268
|
+
quote_asset: {
|
|
3269
|
+
chain: "Ethereum";
|
|
3270
|
+
asset: "USDC";
|
|
3271
|
+
};
|
|
3272
|
+
} | {
|
|
3273
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3274
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3275
|
+
readonly range_order_total_fees_earned: {
|
|
3276
|
+
readonly base: "0x0";
|
|
3277
|
+
readonly quote: "0x0";
|
|
3278
|
+
};
|
|
3279
|
+
readonly limit_order_total_fees_earned: {
|
|
3280
|
+
readonly base: "0x0";
|
|
3281
|
+
readonly quote: "0x0";
|
|
3282
|
+
};
|
|
3283
|
+
readonly range_total_swap_inputs: {
|
|
3284
|
+
readonly base: "0x0";
|
|
3285
|
+
readonly quote: "0x0";
|
|
3286
|
+
};
|
|
3287
|
+
readonly limit_total_swap_inputs: {
|
|
3288
|
+
readonly base: "0x0";
|
|
3289
|
+
readonly quote: "0x0";
|
|
3290
|
+
};
|
|
3291
|
+
readonly quote_asset: {
|
|
3292
|
+
readonly chain: "Ethereum";
|
|
3293
|
+
readonly asset: "USDC";
|
|
3294
|
+
};
|
|
3295
|
+
}, {
|
|
3296
|
+
limit_order_fee_hundredth_pips: number;
|
|
3297
|
+
range_order_fee_hundredth_pips: number;
|
|
3298
|
+
range_order_total_fees_earned: {
|
|
3299
|
+
base: string;
|
|
3300
|
+
quote: string;
|
|
3301
|
+
};
|
|
3302
|
+
limit_order_total_fees_earned: {
|
|
3303
|
+
base: string;
|
|
3304
|
+
quote: string;
|
|
3305
|
+
};
|
|
3306
|
+
range_total_swap_inputs: {
|
|
3307
|
+
base: string;
|
|
3308
|
+
quote: string;
|
|
3309
|
+
};
|
|
3310
|
+
limit_total_swap_inputs: {
|
|
3311
|
+
base: string;
|
|
3312
|
+
quote: string;
|
|
3313
|
+
};
|
|
3314
|
+
quote_asset: {
|
|
3315
|
+
chain: "Ethereum";
|
|
3316
|
+
asset: "USDC";
|
|
3317
|
+
};
|
|
3318
|
+
} | null>;
|
|
2721
3319
|
}, "strip", z.ZodTypeAny, {
|
|
2722
3320
|
ETH: {
|
|
2723
3321
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2742,6 +3340,29 @@ declare const rpcResult: {
|
|
|
2742
3340
|
chain: "Ethereum";
|
|
2743
3341
|
asset: "USDC";
|
|
2744
3342
|
};
|
|
3343
|
+
} | {
|
|
3344
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3345
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3346
|
+
readonly range_order_total_fees_earned: {
|
|
3347
|
+
readonly base: "0x0";
|
|
3348
|
+
readonly quote: "0x0";
|
|
3349
|
+
};
|
|
3350
|
+
readonly limit_order_total_fees_earned: {
|
|
3351
|
+
readonly base: "0x0";
|
|
3352
|
+
readonly quote: "0x0";
|
|
3353
|
+
};
|
|
3354
|
+
readonly range_total_swap_inputs: {
|
|
3355
|
+
readonly base: "0x0";
|
|
3356
|
+
readonly quote: "0x0";
|
|
3357
|
+
};
|
|
3358
|
+
readonly limit_total_swap_inputs: {
|
|
3359
|
+
readonly base: "0x0";
|
|
3360
|
+
readonly quote: "0x0";
|
|
3361
|
+
};
|
|
3362
|
+
readonly quote_asset: {
|
|
3363
|
+
readonly chain: "Ethereum";
|
|
3364
|
+
readonly asset: "USDC";
|
|
3365
|
+
};
|
|
2745
3366
|
};
|
|
2746
3367
|
USDC: {
|
|
2747
3368
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2766,6 +3387,29 @@ declare const rpcResult: {
|
|
|
2766
3387
|
chain: "Ethereum";
|
|
2767
3388
|
asset: "USDC";
|
|
2768
3389
|
};
|
|
3390
|
+
} | {
|
|
3391
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3392
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3393
|
+
readonly range_order_total_fees_earned: {
|
|
3394
|
+
readonly base: "0x0";
|
|
3395
|
+
readonly quote: "0x0";
|
|
3396
|
+
};
|
|
3397
|
+
readonly limit_order_total_fees_earned: {
|
|
3398
|
+
readonly base: "0x0";
|
|
3399
|
+
readonly quote: "0x0";
|
|
3400
|
+
};
|
|
3401
|
+
readonly range_total_swap_inputs: {
|
|
3402
|
+
readonly base: "0x0";
|
|
3403
|
+
readonly quote: "0x0";
|
|
3404
|
+
};
|
|
3405
|
+
readonly limit_total_swap_inputs: {
|
|
3406
|
+
readonly base: "0x0";
|
|
3407
|
+
readonly quote: "0x0";
|
|
3408
|
+
};
|
|
3409
|
+
readonly quote_asset: {
|
|
3410
|
+
readonly chain: "Ethereum";
|
|
3411
|
+
readonly asset: "USDC";
|
|
3412
|
+
};
|
|
2769
3413
|
};
|
|
2770
3414
|
}, {
|
|
2771
3415
|
ETH: {
|
|
@@ -2791,7 +3435,7 @@ declare const rpcResult: {
|
|
|
2791
3435
|
chain: "Ethereum";
|
|
2792
3436
|
asset: "USDC";
|
|
2793
3437
|
};
|
|
2794
|
-
};
|
|
3438
|
+
} | null;
|
|
2795
3439
|
USDC: {
|
|
2796
3440
|
limit_order_fee_hundredth_pips: number;
|
|
2797
3441
|
range_order_fee_hundredth_pips: number;
|
|
@@ -2815,10 +3459,10 @@ declare const rpcResult: {
|
|
|
2815
3459
|
chain: "Ethereum";
|
|
2816
3460
|
asset: "USDC";
|
|
2817
3461
|
};
|
|
2818
|
-
};
|
|
3462
|
+
} | null;
|
|
2819
3463
|
}>;
|
|
2820
3464
|
Solana: z.ZodDefault<z.ZodObject<{
|
|
2821
|
-
SOL: z.ZodDefault<z.ZodObject<{
|
|
3465
|
+
SOL: z.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2822
3466
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2823
3467
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2824
3468
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2917,8 +3561,77 @@ declare const rpcResult: {
|
|
|
2917
3561
|
chain: "Ethereum";
|
|
2918
3562
|
asset: "USDC";
|
|
2919
3563
|
};
|
|
2920
|
-
}
|
|
2921
|
-
|
|
3564
|
+
}>>, {
|
|
3565
|
+
limit_order_fee_hundredth_pips: number;
|
|
3566
|
+
range_order_fee_hundredth_pips: number;
|
|
3567
|
+
range_order_total_fees_earned: {
|
|
3568
|
+
base: bigint;
|
|
3569
|
+
quote: bigint;
|
|
3570
|
+
};
|
|
3571
|
+
limit_order_total_fees_earned: {
|
|
3572
|
+
base: bigint;
|
|
3573
|
+
quote: bigint;
|
|
3574
|
+
};
|
|
3575
|
+
range_total_swap_inputs: {
|
|
3576
|
+
base: bigint;
|
|
3577
|
+
quote: bigint;
|
|
3578
|
+
};
|
|
3579
|
+
limit_total_swap_inputs: {
|
|
3580
|
+
base: bigint;
|
|
3581
|
+
quote: bigint;
|
|
3582
|
+
};
|
|
3583
|
+
quote_asset: {
|
|
3584
|
+
chain: "Ethereum";
|
|
3585
|
+
asset: "USDC";
|
|
3586
|
+
};
|
|
3587
|
+
} | {
|
|
3588
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3589
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3590
|
+
readonly range_order_total_fees_earned: {
|
|
3591
|
+
readonly base: "0x0";
|
|
3592
|
+
readonly quote: "0x0";
|
|
3593
|
+
};
|
|
3594
|
+
readonly limit_order_total_fees_earned: {
|
|
3595
|
+
readonly base: "0x0";
|
|
3596
|
+
readonly quote: "0x0";
|
|
3597
|
+
};
|
|
3598
|
+
readonly range_total_swap_inputs: {
|
|
3599
|
+
readonly base: "0x0";
|
|
3600
|
+
readonly quote: "0x0";
|
|
3601
|
+
};
|
|
3602
|
+
readonly limit_total_swap_inputs: {
|
|
3603
|
+
readonly base: "0x0";
|
|
3604
|
+
readonly quote: "0x0";
|
|
3605
|
+
};
|
|
3606
|
+
readonly quote_asset: {
|
|
3607
|
+
readonly chain: "Ethereum";
|
|
3608
|
+
readonly asset: "USDC";
|
|
3609
|
+
};
|
|
3610
|
+
}, {
|
|
3611
|
+
limit_order_fee_hundredth_pips: number;
|
|
3612
|
+
range_order_fee_hundredth_pips: number;
|
|
3613
|
+
range_order_total_fees_earned: {
|
|
3614
|
+
base: string;
|
|
3615
|
+
quote: string;
|
|
3616
|
+
};
|
|
3617
|
+
limit_order_total_fees_earned: {
|
|
3618
|
+
base: string;
|
|
3619
|
+
quote: string;
|
|
3620
|
+
};
|
|
3621
|
+
range_total_swap_inputs: {
|
|
3622
|
+
base: string;
|
|
3623
|
+
quote: string;
|
|
3624
|
+
};
|
|
3625
|
+
limit_total_swap_inputs: {
|
|
3626
|
+
base: string;
|
|
3627
|
+
quote: string;
|
|
3628
|
+
};
|
|
3629
|
+
quote_asset: {
|
|
3630
|
+
chain: "Ethereum";
|
|
3631
|
+
asset: "USDC";
|
|
3632
|
+
};
|
|
3633
|
+
} | null>>;
|
|
3634
|
+
USDC: z.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2922
3635
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2923
3636
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2924
3637
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -3017,7 +3730,76 @@ declare const rpcResult: {
|
|
|
3017
3730
|
chain: "Ethereum";
|
|
3018
3731
|
asset: "USDC";
|
|
3019
3732
|
};
|
|
3020
|
-
}
|
|
3733
|
+
}>>, {
|
|
3734
|
+
limit_order_fee_hundredth_pips: number;
|
|
3735
|
+
range_order_fee_hundredth_pips: number;
|
|
3736
|
+
range_order_total_fees_earned: {
|
|
3737
|
+
base: bigint;
|
|
3738
|
+
quote: bigint;
|
|
3739
|
+
};
|
|
3740
|
+
limit_order_total_fees_earned: {
|
|
3741
|
+
base: bigint;
|
|
3742
|
+
quote: bigint;
|
|
3743
|
+
};
|
|
3744
|
+
range_total_swap_inputs: {
|
|
3745
|
+
base: bigint;
|
|
3746
|
+
quote: bigint;
|
|
3747
|
+
};
|
|
3748
|
+
limit_total_swap_inputs: {
|
|
3749
|
+
base: bigint;
|
|
3750
|
+
quote: bigint;
|
|
3751
|
+
};
|
|
3752
|
+
quote_asset: {
|
|
3753
|
+
chain: "Ethereum";
|
|
3754
|
+
asset: "USDC";
|
|
3755
|
+
};
|
|
3756
|
+
} | {
|
|
3757
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3758
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3759
|
+
readonly range_order_total_fees_earned: {
|
|
3760
|
+
readonly base: "0x0";
|
|
3761
|
+
readonly quote: "0x0";
|
|
3762
|
+
};
|
|
3763
|
+
readonly limit_order_total_fees_earned: {
|
|
3764
|
+
readonly base: "0x0";
|
|
3765
|
+
readonly quote: "0x0";
|
|
3766
|
+
};
|
|
3767
|
+
readonly range_total_swap_inputs: {
|
|
3768
|
+
readonly base: "0x0";
|
|
3769
|
+
readonly quote: "0x0";
|
|
3770
|
+
};
|
|
3771
|
+
readonly limit_total_swap_inputs: {
|
|
3772
|
+
readonly base: "0x0";
|
|
3773
|
+
readonly quote: "0x0";
|
|
3774
|
+
};
|
|
3775
|
+
readonly quote_asset: {
|
|
3776
|
+
readonly chain: "Ethereum";
|
|
3777
|
+
readonly asset: "USDC";
|
|
3778
|
+
};
|
|
3779
|
+
}, {
|
|
3780
|
+
limit_order_fee_hundredth_pips: number;
|
|
3781
|
+
range_order_fee_hundredth_pips: number;
|
|
3782
|
+
range_order_total_fees_earned: {
|
|
3783
|
+
base: string;
|
|
3784
|
+
quote: string;
|
|
3785
|
+
};
|
|
3786
|
+
limit_order_total_fees_earned: {
|
|
3787
|
+
base: string;
|
|
3788
|
+
quote: string;
|
|
3789
|
+
};
|
|
3790
|
+
range_total_swap_inputs: {
|
|
3791
|
+
base: string;
|
|
3792
|
+
quote: string;
|
|
3793
|
+
};
|
|
3794
|
+
limit_total_swap_inputs: {
|
|
3795
|
+
base: string;
|
|
3796
|
+
quote: string;
|
|
3797
|
+
};
|
|
3798
|
+
quote_asset: {
|
|
3799
|
+
chain: "Ethereum";
|
|
3800
|
+
asset: "USDC";
|
|
3801
|
+
};
|
|
3802
|
+
} | null>>;
|
|
3021
3803
|
}, "strip", z.ZodTypeAny, {
|
|
3022
3804
|
USDC: {
|
|
3023
3805
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3042,6 +3824,29 @@ declare const rpcResult: {
|
|
|
3042
3824
|
chain: "Ethereum";
|
|
3043
3825
|
asset: "USDC";
|
|
3044
3826
|
};
|
|
3827
|
+
} | {
|
|
3828
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3829
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3830
|
+
readonly range_order_total_fees_earned: {
|
|
3831
|
+
readonly base: "0x0";
|
|
3832
|
+
readonly quote: "0x0";
|
|
3833
|
+
};
|
|
3834
|
+
readonly limit_order_total_fees_earned: {
|
|
3835
|
+
readonly base: "0x0";
|
|
3836
|
+
readonly quote: "0x0";
|
|
3837
|
+
};
|
|
3838
|
+
readonly range_total_swap_inputs: {
|
|
3839
|
+
readonly base: "0x0";
|
|
3840
|
+
readonly quote: "0x0";
|
|
3841
|
+
};
|
|
3842
|
+
readonly limit_total_swap_inputs: {
|
|
3843
|
+
readonly base: "0x0";
|
|
3844
|
+
readonly quote: "0x0";
|
|
3845
|
+
};
|
|
3846
|
+
readonly quote_asset: {
|
|
3847
|
+
readonly chain: "Ethereum";
|
|
3848
|
+
readonly asset: "USDC";
|
|
3849
|
+
};
|
|
3045
3850
|
};
|
|
3046
3851
|
SOL: {
|
|
3047
3852
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3066,6 +3871,29 @@ declare const rpcResult: {
|
|
|
3066
3871
|
chain: "Ethereum";
|
|
3067
3872
|
asset: "USDC";
|
|
3068
3873
|
};
|
|
3874
|
+
} | {
|
|
3875
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3876
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3877
|
+
readonly range_order_total_fees_earned: {
|
|
3878
|
+
readonly base: "0x0";
|
|
3879
|
+
readonly quote: "0x0";
|
|
3880
|
+
};
|
|
3881
|
+
readonly limit_order_total_fees_earned: {
|
|
3882
|
+
readonly base: "0x0";
|
|
3883
|
+
readonly quote: "0x0";
|
|
3884
|
+
};
|
|
3885
|
+
readonly range_total_swap_inputs: {
|
|
3886
|
+
readonly base: "0x0";
|
|
3887
|
+
readonly quote: "0x0";
|
|
3888
|
+
};
|
|
3889
|
+
readonly limit_total_swap_inputs: {
|
|
3890
|
+
readonly base: "0x0";
|
|
3891
|
+
readonly quote: "0x0";
|
|
3892
|
+
};
|
|
3893
|
+
readonly quote_asset: {
|
|
3894
|
+
readonly chain: "Ethereum";
|
|
3895
|
+
readonly asset: "USDC";
|
|
3896
|
+
};
|
|
3069
3897
|
};
|
|
3070
3898
|
}, {
|
|
3071
3899
|
USDC?: {
|
|
@@ -3091,7 +3919,7 @@ declare const rpcResult: {
|
|
|
3091
3919
|
chain: "Ethereum";
|
|
3092
3920
|
asset: "USDC";
|
|
3093
3921
|
};
|
|
3094
|
-
} | undefined;
|
|
3922
|
+
} | null | undefined;
|
|
3095
3923
|
SOL?: {
|
|
3096
3924
|
limit_order_fee_hundredth_pips: number;
|
|
3097
3925
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3115,7 +3943,7 @@ declare const rpcResult: {
|
|
|
3115
3943
|
chain: "Ethereum";
|
|
3116
3944
|
asset: "USDC";
|
|
3117
3945
|
};
|
|
3118
|
-
} | undefined;
|
|
3946
|
+
} | null | undefined;
|
|
3119
3947
|
}>>;
|
|
3120
3948
|
}, "strip", z.ZodTypeAny, {
|
|
3121
3949
|
Bitcoin: {
|
|
@@ -3142,6 +3970,29 @@ declare const rpcResult: {
|
|
|
3142
3970
|
chain: "Ethereum";
|
|
3143
3971
|
asset: "USDC";
|
|
3144
3972
|
};
|
|
3973
|
+
} | {
|
|
3974
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
3975
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
3976
|
+
readonly range_order_total_fees_earned: {
|
|
3977
|
+
readonly base: "0x0";
|
|
3978
|
+
readonly quote: "0x0";
|
|
3979
|
+
};
|
|
3980
|
+
readonly limit_order_total_fees_earned: {
|
|
3981
|
+
readonly base: "0x0";
|
|
3982
|
+
readonly quote: "0x0";
|
|
3983
|
+
};
|
|
3984
|
+
readonly range_total_swap_inputs: {
|
|
3985
|
+
readonly base: "0x0";
|
|
3986
|
+
readonly quote: "0x0";
|
|
3987
|
+
};
|
|
3988
|
+
readonly limit_total_swap_inputs: {
|
|
3989
|
+
readonly base: "0x0";
|
|
3990
|
+
readonly quote: "0x0";
|
|
3991
|
+
};
|
|
3992
|
+
readonly quote_asset: {
|
|
3993
|
+
readonly chain: "Ethereum";
|
|
3994
|
+
readonly asset: "USDC";
|
|
3995
|
+
};
|
|
3145
3996
|
};
|
|
3146
3997
|
};
|
|
3147
3998
|
Ethereum: {
|
|
@@ -3168,6 +4019,29 @@ declare const rpcResult: {
|
|
|
3168
4019
|
chain: "Ethereum";
|
|
3169
4020
|
asset: "USDC";
|
|
3170
4021
|
};
|
|
4022
|
+
} | {
|
|
4023
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4024
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4025
|
+
readonly range_order_total_fees_earned: {
|
|
4026
|
+
readonly base: "0x0";
|
|
4027
|
+
readonly quote: "0x0";
|
|
4028
|
+
};
|
|
4029
|
+
readonly limit_order_total_fees_earned: {
|
|
4030
|
+
readonly base: "0x0";
|
|
4031
|
+
readonly quote: "0x0";
|
|
4032
|
+
};
|
|
4033
|
+
readonly range_total_swap_inputs: {
|
|
4034
|
+
readonly base: "0x0";
|
|
4035
|
+
readonly quote: "0x0";
|
|
4036
|
+
};
|
|
4037
|
+
readonly limit_total_swap_inputs: {
|
|
4038
|
+
readonly base: "0x0";
|
|
4039
|
+
readonly quote: "0x0";
|
|
4040
|
+
};
|
|
4041
|
+
readonly quote_asset: {
|
|
4042
|
+
readonly chain: "Ethereum";
|
|
4043
|
+
readonly asset: "USDC";
|
|
4044
|
+
};
|
|
3171
4045
|
};
|
|
3172
4046
|
FLIP: {
|
|
3173
4047
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3192,6 +4066,29 @@ declare const rpcResult: {
|
|
|
3192
4066
|
chain: "Ethereum";
|
|
3193
4067
|
asset: "USDC";
|
|
3194
4068
|
};
|
|
4069
|
+
} | {
|
|
4070
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4071
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4072
|
+
readonly range_order_total_fees_earned: {
|
|
4073
|
+
readonly base: "0x0";
|
|
4074
|
+
readonly quote: "0x0";
|
|
4075
|
+
};
|
|
4076
|
+
readonly limit_order_total_fees_earned: {
|
|
4077
|
+
readonly base: "0x0";
|
|
4078
|
+
readonly quote: "0x0";
|
|
4079
|
+
};
|
|
4080
|
+
readonly range_total_swap_inputs: {
|
|
4081
|
+
readonly base: "0x0";
|
|
4082
|
+
readonly quote: "0x0";
|
|
4083
|
+
};
|
|
4084
|
+
readonly limit_total_swap_inputs: {
|
|
4085
|
+
readonly base: "0x0";
|
|
4086
|
+
readonly quote: "0x0";
|
|
4087
|
+
};
|
|
4088
|
+
readonly quote_asset: {
|
|
4089
|
+
readonly chain: "Ethereum";
|
|
4090
|
+
readonly asset: "USDC";
|
|
4091
|
+
};
|
|
3195
4092
|
};
|
|
3196
4093
|
USDT: {
|
|
3197
4094
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3216,6 +4113,29 @@ declare const rpcResult: {
|
|
|
3216
4113
|
chain: "Ethereum";
|
|
3217
4114
|
asset: "USDC";
|
|
3218
4115
|
};
|
|
4116
|
+
} | {
|
|
4117
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4118
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4119
|
+
readonly range_order_total_fees_earned: {
|
|
4120
|
+
readonly base: "0x0";
|
|
4121
|
+
readonly quote: "0x0";
|
|
4122
|
+
};
|
|
4123
|
+
readonly limit_order_total_fees_earned: {
|
|
4124
|
+
readonly base: "0x0";
|
|
4125
|
+
readonly quote: "0x0";
|
|
4126
|
+
};
|
|
4127
|
+
readonly range_total_swap_inputs: {
|
|
4128
|
+
readonly base: "0x0";
|
|
4129
|
+
readonly quote: "0x0";
|
|
4130
|
+
};
|
|
4131
|
+
readonly limit_total_swap_inputs: {
|
|
4132
|
+
readonly base: "0x0";
|
|
4133
|
+
readonly quote: "0x0";
|
|
4134
|
+
};
|
|
4135
|
+
readonly quote_asset: {
|
|
4136
|
+
readonly chain: "Ethereum";
|
|
4137
|
+
readonly asset: "USDC";
|
|
4138
|
+
};
|
|
3219
4139
|
};
|
|
3220
4140
|
};
|
|
3221
4141
|
Polkadot: {
|
|
@@ -3242,6 +4162,29 @@ declare const rpcResult: {
|
|
|
3242
4162
|
chain: "Ethereum";
|
|
3243
4163
|
asset: "USDC";
|
|
3244
4164
|
};
|
|
4165
|
+
} | {
|
|
4166
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4167
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4168
|
+
readonly range_order_total_fees_earned: {
|
|
4169
|
+
readonly base: "0x0";
|
|
4170
|
+
readonly quote: "0x0";
|
|
4171
|
+
};
|
|
4172
|
+
readonly limit_order_total_fees_earned: {
|
|
4173
|
+
readonly base: "0x0";
|
|
4174
|
+
readonly quote: "0x0";
|
|
4175
|
+
};
|
|
4176
|
+
readonly range_total_swap_inputs: {
|
|
4177
|
+
readonly base: "0x0";
|
|
4178
|
+
readonly quote: "0x0";
|
|
4179
|
+
};
|
|
4180
|
+
readonly limit_total_swap_inputs: {
|
|
4181
|
+
readonly base: "0x0";
|
|
4182
|
+
readonly quote: "0x0";
|
|
4183
|
+
};
|
|
4184
|
+
readonly quote_asset: {
|
|
4185
|
+
readonly chain: "Ethereum";
|
|
4186
|
+
readonly asset: "USDC";
|
|
4187
|
+
};
|
|
3245
4188
|
};
|
|
3246
4189
|
};
|
|
3247
4190
|
Arbitrum: {
|
|
@@ -3268,6 +4211,29 @@ declare const rpcResult: {
|
|
|
3268
4211
|
chain: "Ethereum";
|
|
3269
4212
|
asset: "USDC";
|
|
3270
4213
|
};
|
|
4214
|
+
} | {
|
|
4215
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4216
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4217
|
+
readonly range_order_total_fees_earned: {
|
|
4218
|
+
readonly base: "0x0";
|
|
4219
|
+
readonly quote: "0x0";
|
|
4220
|
+
};
|
|
4221
|
+
readonly limit_order_total_fees_earned: {
|
|
4222
|
+
readonly base: "0x0";
|
|
4223
|
+
readonly quote: "0x0";
|
|
4224
|
+
};
|
|
4225
|
+
readonly range_total_swap_inputs: {
|
|
4226
|
+
readonly base: "0x0";
|
|
4227
|
+
readonly quote: "0x0";
|
|
4228
|
+
};
|
|
4229
|
+
readonly limit_total_swap_inputs: {
|
|
4230
|
+
readonly base: "0x0";
|
|
4231
|
+
readonly quote: "0x0";
|
|
4232
|
+
};
|
|
4233
|
+
readonly quote_asset: {
|
|
4234
|
+
readonly chain: "Ethereum";
|
|
4235
|
+
readonly asset: "USDC";
|
|
4236
|
+
};
|
|
3271
4237
|
};
|
|
3272
4238
|
USDC: {
|
|
3273
4239
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3292,6 +4258,29 @@ declare const rpcResult: {
|
|
|
3292
4258
|
chain: "Ethereum";
|
|
3293
4259
|
asset: "USDC";
|
|
3294
4260
|
};
|
|
4261
|
+
} | {
|
|
4262
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4263
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4264
|
+
readonly range_order_total_fees_earned: {
|
|
4265
|
+
readonly base: "0x0";
|
|
4266
|
+
readonly quote: "0x0";
|
|
4267
|
+
};
|
|
4268
|
+
readonly limit_order_total_fees_earned: {
|
|
4269
|
+
readonly base: "0x0";
|
|
4270
|
+
readonly quote: "0x0";
|
|
4271
|
+
};
|
|
4272
|
+
readonly range_total_swap_inputs: {
|
|
4273
|
+
readonly base: "0x0";
|
|
4274
|
+
readonly quote: "0x0";
|
|
4275
|
+
};
|
|
4276
|
+
readonly limit_total_swap_inputs: {
|
|
4277
|
+
readonly base: "0x0";
|
|
4278
|
+
readonly quote: "0x0";
|
|
4279
|
+
};
|
|
4280
|
+
readonly quote_asset: {
|
|
4281
|
+
readonly chain: "Ethereum";
|
|
4282
|
+
readonly asset: "USDC";
|
|
4283
|
+
};
|
|
3295
4284
|
};
|
|
3296
4285
|
};
|
|
3297
4286
|
Solana: {
|
|
@@ -3318,6 +4307,29 @@ declare const rpcResult: {
|
|
|
3318
4307
|
chain: "Ethereum";
|
|
3319
4308
|
asset: "USDC";
|
|
3320
4309
|
};
|
|
4310
|
+
} | {
|
|
4311
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4312
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4313
|
+
readonly range_order_total_fees_earned: {
|
|
4314
|
+
readonly base: "0x0";
|
|
4315
|
+
readonly quote: "0x0";
|
|
4316
|
+
};
|
|
4317
|
+
readonly limit_order_total_fees_earned: {
|
|
4318
|
+
readonly base: "0x0";
|
|
4319
|
+
readonly quote: "0x0";
|
|
4320
|
+
};
|
|
4321
|
+
readonly range_total_swap_inputs: {
|
|
4322
|
+
readonly base: "0x0";
|
|
4323
|
+
readonly quote: "0x0";
|
|
4324
|
+
};
|
|
4325
|
+
readonly limit_total_swap_inputs: {
|
|
4326
|
+
readonly base: "0x0";
|
|
4327
|
+
readonly quote: "0x0";
|
|
4328
|
+
};
|
|
4329
|
+
readonly quote_asset: {
|
|
4330
|
+
readonly chain: "Ethereum";
|
|
4331
|
+
readonly asset: "USDC";
|
|
4332
|
+
};
|
|
3321
4333
|
};
|
|
3322
4334
|
SOL: {
|
|
3323
4335
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3342,6 +4354,29 @@ declare const rpcResult: {
|
|
|
3342
4354
|
chain: "Ethereum";
|
|
3343
4355
|
asset: "USDC";
|
|
3344
4356
|
};
|
|
4357
|
+
} | {
|
|
4358
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4359
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4360
|
+
readonly range_order_total_fees_earned: {
|
|
4361
|
+
readonly base: "0x0";
|
|
4362
|
+
readonly quote: "0x0";
|
|
4363
|
+
};
|
|
4364
|
+
readonly limit_order_total_fees_earned: {
|
|
4365
|
+
readonly base: "0x0";
|
|
4366
|
+
readonly quote: "0x0";
|
|
4367
|
+
};
|
|
4368
|
+
readonly range_total_swap_inputs: {
|
|
4369
|
+
readonly base: "0x0";
|
|
4370
|
+
readonly quote: "0x0";
|
|
4371
|
+
};
|
|
4372
|
+
readonly limit_total_swap_inputs: {
|
|
4373
|
+
readonly base: "0x0";
|
|
4374
|
+
readonly quote: "0x0";
|
|
4375
|
+
};
|
|
4376
|
+
readonly quote_asset: {
|
|
4377
|
+
readonly chain: "Ethereum";
|
|
4378
|
+
readonly asset: "USDC";
|
|
4379
|
+
};
|
|
3345
4380
|
};
|
|
3346
4381
|
};
|
|
3347
4382
|
}, {
|
|
@@ -3369,7 +4404,7 @@ declare const rpcResult: {
|
|
|
3369
4404
|
chain: "Ethereum";
|
|
3370
4405
|
asset: "USDC";
|
|
3371
4406
|
};
|
|
3372
|
-
};
|
|
4407
|
+
} | null;
|
|
3373
4408
|
};
|
|
3374
4409
|
Ethereum: {
|
|
3375
4410
|
ETH: {
|
|
@@ -3395,7 +4430,7 @@ declare const rpcResult: {
|
|
|
3395
4430
|
chain: "Ethereum";
|
|
3396
4431
|
asset: "USDC";
|
|
3397
4432
|
};
|
|
3398
|
-
};
|
|
4433
|
+
} | null;
|
|
3399
4434
|
FLIP: {
|
|
3400
4435
|
limit_order_fee_hundredth_pips: number;
|
|
3401
4436
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3419,7 +4454,7 @@ declare const rpcResult: {
|
|
|
3419
4454
|
chain: "Ethereum";
|
|
3420
4455
|
asset: "USDC";
|
|
3421
4456
|
};
|
|
3422
|
-
};
|
|
4457
|
+
} | null;
|
|
3423
4458
|
USDT: {
|
|
3424
4459
|
limit_order_fee_hundredth_pips: number;
|
|
3425
4460
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3443,7 +4478,7 @@ declare const rpcResult: {
|
|
|
3443
4478
|
chain: "Ethereum";
|
|
3444
4479
|
asset: "USDC";
|
|
3445
4480
|
};
|
|
3446
|
-
};
|
|
4481
|
+
} | null;
|
|
3447
4482
|
};
|
|
3448
4483
|
Polkadot: {
|
|
3449
4484
|
DOT: {
|
|
@@ -3469,7 +4504,7 @@ declare const rpcResult: {
|
|
|
3469
4504
|
chain: "Ethereum";
|
|
3470
4505
|
asset: "USDC";
|
|
3471
4506
|
};
|
|
3472
|
-
};
|
|
4507
|
+
} | null;
|
|
3473
4508
|
};
|
|
3474
4509
|
Arbitrum: {
|
|
3475
4510
|
ETH: {
|
|
@@ -3495,7 +4530,7 @@ declare const rpcResult: {
|
|
|
3495
4530
|
chain: "Ethereum";
|
|
3496
4531
|
asset: "USDC";
|
|
3497
4532
|
};
|
|
3498
|
-
};
|
|
4533
|
+
} | null;
|
|
3499
4534
|
USDC: {
|
|
3500
4535
|
limit_order_fee_hundredth_pips: number;
|
|
3501
4536
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3519,7 +4554,7 @@ declare const rpcResult: {
|
|
|
3519
4554
|
chain: "Ethereum";
|
|
3520
4555
|
asset: "USDC";
|
|
3521
4556
|
};
|
|
3522
|
-
};
|
|
4557
|
+
} | null;
|
|
3523
4558
|
};
|
|
3524
4559
|
Solana?: {
|
|
3525
4560
|
USDC?: {
|
|
@@ -3545,7 +4580,7 @@ declare const rpcResult: {
|
|
|
3545
4580
|
chain: "Ethereum";
|
|
3546
4581
|
asset: "USDC";
|
|
3547
4582
|
};
|
|
3548
|
-
} | undefined;
|
|
4583
|
+
} | null | undefined;
|
|
3549
4584
|
SOL?: {
|
|
3550
4585
|
limit_order_fee_hundredth_pips: number;
|
|
3551
4586
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3569,7 +4604,7 @@ declare const rpcResult: {
|
|
|
3569
4604
|
chain: "Ethereum";
|
|
3570
4605
|
asset: "USDC";
|
|
3571
4606
|
};
|
|
3572
|
-
} | undefined;
|
|
4607
|
+
} | null | undefined;
|
|
3573
4608
|
} | undefined;
|
|
3574
4609
|
}>;
|
|
3575
4610
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3598,6 +4633,29 @@ declare const rpcResult: {
|
|
|
3598
4633
|
chain: "Ethereum";
|
|
3599
4634
|
asset: "USDC";
|
|
3600
4635
|
};
|
|
4636
|
+
} | {
|
|
4637
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4638
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4639
|
+
readonly range_order_total_fees_earned: {
|
|
4640
|
+
readonly base: "0x0";
|
|
4641
|
+
readonly quote: "0x0";
|
|
4642
|
+
};
|
|
4643
|
+
readonly limit_order_total_fees_earned: {
|
|
4644
|
+
readonly base: "0x0";
|
|
4645
|
+
readonly quote: "0x0";
|
|
4646
|
+
};
|
|
4647
|
+
readonly range_total_swap_inputs: {
|
|
4648
|
+
readonly base: "0x0";
|
|
4649
|
+
readonly quote: "0x0";
|
|
4650
|
+
};
|
|
4651
|
+
readonly limit_total_swap_inputs: {
|
|
4652
|
+
readonly base: "0x0";
|
|
4653
|
+
readonly quote: "0x0";
|
|
4654
|
+
};
|
|
4655
|
+
readonly quote_asset: {
|
|
4656
|
+
readonly chain: "Ethereum";
|
|
4657
|
+
readonly asset: "USDC";
|
|
4658
|
+
};
|
|
3601
4659
|
};
|
|
3602
4660
|
};
|
|
3603
4661
|
Ethereum: {
|
|
@@ -3624,6 +4682,29 @@ declare const rpcResult: {
|
|
|
3624
4682
|
chain: "Ethereum";
|
|
3625
4683
|
asset: "USDC";
|
|
3626
4684
|
};
|
|
4685
|
+
} | {
|
|
4686
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4687
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4688
|
+
readonly range_order_total_fees_earned: {
|
|
4689
|
+
readonly base: "0x0";
|
|
4690
|
+
readonly quote: "0x0";
|
|
4691
|
+
};
|
|
4692
|
+
readonly limit_order_total_fees_earned: {
|
|
4693
|
+
readonly base: "0x0";
|
|
4694
|
+
readonly quote: "0x0";
|
|
4695
|
+
};
|
|
4696
|
+
readonly range_total_swap_inputs: {
|
|
4697
|
+
readonly base: "0x0";
|
|
4698
|
+
readonly quote: "0x0";
|
|
4699
|
+
};
|
|
4700
|
+
readonly limit_total_swap_inputs: {
|
|
4701
|
+
readonly base: "0x0";
|
|
4702
|
+
readonly quote: "0x0";
|
|
4703
|
+
};
|
|
4704
|
+
readonly quote_asset: {
|
|
4705
|
+
readonly chain: "Ethereum";
|
|
4706
|
+
readonly asset: "USDC";
|
|
4707
|
+
};
|
|
3627
4708
|
};
|
|
3628
4709
|
FLIP: {
|
|
3629
4710
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3648,6 +4729,29 @@ declare const rpcResult: {
|
|
|
3648
4729
|
chain: "Ethereum";
|
|
3649
4730
|
asset: "USDC";
|
|
3650
4731
|
};
|
|
4732
|
+
} | {
|
|
4733
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4734
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4735
|
+
readonly range_order_total_fees_earned: {
|
|
4736
|
+
readonly base: "0x0";
|
|
4737
|
+
readonly quote: "0x0";
|
|
4738
|
+
};
|
|
4739
|
+
readonly limit_order_total_fees_earned: {
|
|
4740
|
+
readonly base: "0x0";
|
|
4741
|
+
readonly quote: "0x0";
|
|
4742
|
+
};
|
|
4743
|
+
readonly range_total_swap_inputs: {
|
|
4744
|
+
readonly base: "0x0";
|
|
4745
|
+
readonly quote: "0x0";
|
|
4746
|
+
};
|
|
4747
|
+
readonly limit_total_swap_inputs: {
|
|
4748
|
+
readonly base: "0x0";
|
|
4749
|
+
readonly quote: "0x0";
|
|
4750
|
+
};
|
|
4751
|
+
readonly quote_asset: {
|
|
4752
|
+
readonly chain: "Ethereum";
|
|
4753
|
+
readonly asset: "USDC";
|
|
4754
|
+
};
|
|
3651
4755
|
};
|
|
3652
4756
|
USDT: {
|
|
3653
4757
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3672,6 +4776,29 @@ declare const rpcResult: {
|
|
|
3672
4776
|
chain: "Ethereum";
|
|
3673
4777
|
asset: "USDC";
|
|
3674
4778
|
};
|
|
4779
|
+
} | {
|
|
4780
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4781
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4782
|
+
readonly range_order_total_fees_earned: {
|
|
4783
|
+
readonly base: "0x0";
|
|
4784
|
+
readonly quote: "0x0";
|
|
4785
|
+
};
|
|
4786
|
+
readonly limit_order_total_fees_earned: {
|
|
4787
|
+
readonly base: "0x0";
|
|
4788
|
+
readonly quote: "0x0";
|
|
4789
|
+
};
|
|
4790
|
+
readonly range_total_swap_inputs: {
|
|
4791
|
+
readonly base: "0x0";
|
|
4792
|
+
readonly quote: "0x0";
|
|
4793
|
+
};
|
|
4794
|
+
readonly limit_total_swap_inputs: {
|
|
4795
|
+
readonly base: "0x0";
|
|
4796
|
+
readonly quote: "0x0";
|
|
4797
|
+
};
|
|
4798
|
+
readonly quote_asset: {
|
|
4799
|
+
readonly chain: "Ethereum";
|
|
4800
|
+
readonly asset: "USDC";
|
|
4801
|
+
};
|
|
3675
4802
|
};
|
|
3676
4803
|
};
|
|
3677
4804
|
Polkadot: {
|
|
@@ -3698,6 +4825,29 @@ declare const rpcResult: {
|
|
|
3698
4825
|
chain: "Ethereum";
|
|
3699
4826
|
asset: "USDC";
|
|
3700
4827
|
};
|
|
4828
|
+
} | {
|
|
4829
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4830
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4831
|
+
readonly range_order_total_fees_earned: {
|
|
4832
|
+
readonly base: "0x0";
|
|
4833
|
+
readonly quote: "0x0";
|
|
4834
|
+
};
|
|
4835
|
+
readonly limit_order_total_fees_earned: {
|
|
4836
|
+
readonly base: "0x0";
|
|
4837
|
+
readonly quote: "0x0";
|
|
4838
|
+
};
|
|
4839
|
+
readonly range_total_swap_inputs: {
|
|
4840
|
+
readonly base: "0x0";
|
|
4841
|
+
readonly quote: "0x0";
|
|
4842
|
+
};
|
|
4843
|
+
readonly limit_total_swap_inputs: {
|
|
4844
|
+
readonly base: "0x0";
|
|
4845
|
+
readonly quote: "0x0";
|
|
4846
|
+
};
|
|
4847
|
+
readonly quote_asset: {
|
|
4848
|
+
readonly chain: "Ethereum";
|
|
4849
|
+
readonly asset: "USDC";
|
|
4850
|
+
};
|
|
3701
4851
|
};
|
|
3702
4852
|
};
|
|
3703
4853
|
Arbitrum: {
|
|
@@ -3724,6 +4874,29 @@ declare const rpcResult: {
|
|
|
3724
4874
|
chain: "Ethereum";
|
|
3725
4875
|
asset: "USDC";
|
|
3726
4876
|
};
|
|
4877
|
+
} | {
|
|
4878
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4879
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4880
|
+
readonly range_order_total_fees_earned: {
|
|
4881
|
+
readonly base: "0x0";
|
|
4882
|
+
readonly quote: "0x0";
|
|
4883
|
+
};
|
|
4884
|
+
readonly limit_order_total_fees_earned: {
|
|
4885
|
+
readonly base: "0x0";
|
|
4886
|
+
readonly quote: "0x0";
|
|
4887
|
+
};
|
|
4888
|
+
readonly range_total_swap_inputs: {
|
|
4889
|
+
readonly base: "0x0";
|
|
4890
|
+
readonly quote: "0x0";
|
|
4891
|
+
};
|
|
4892
|
+
readonly limit_total_swap_inputs: {
|
|
4893
|
+
readonly base: "0x0";
|
|
4894
|
+
readonly quote: "0x0";
|
|
4895
|
+
};
|
|
4896
|
+
readonly quote_asset: {
|
|
4897
|
+
readonly chain: "Ethereum";
|
|
4898
|
+
readonly asset: "USDC";
|
|
4899
|
+
};
|
|
3727
4900
|
};
|
|
3728
4901
|
USDC: {
|
|
3729
4902
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3748,6 +4921,29 @@ declare const rpcResult: {
|
|
|
3748
4921
|
chain: "Ethereum";
|
|
3749
4922
|
asset: "USDC";
|
|
3750
4923
|
};
|
|
4924
|
+
} | {
|
|
4925
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4926
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4927
|
+
readonly range_order_total_fees_earned: {
|
|
4928
|
+
readonly base: "0x0";
|
|
4929
|
+
readonly quote: "0x0";
|
|
4930
|
+
};
|
|
4931
|
+
readonly limit_order_total_fees_earned: {
|
|
4932
|
+
readonly base: "0x0";
|
|
4933
|
+
readonly quote: "0x0";
|
|
4934
|
+
};
|
|
4935
|
+
readonly range_total_swap_inputs: {
|
|
4936
|
+
readonly base: "0x0";
|
|
4937
|
+
readonly quote: "0x0";
|
|
4938
|
+
};
|
|
4939
|
+
readonly limit_total_swap_inputs: {
|
|
4940
|
+
readonly base: "0x0";
|
|
4941
|
+
readonly quote: "0x0";
|
|
4942
|
+
};
|
|
4943
|
+
readonly quote_asset: {
|
|
4944
|
+
readonly chain: "Ethereum";
|
|
4945
|
+
readonly asset: "USDC";
|
|
4946
|
+
};
|
|
3751
4947
|
};
|
|
3752
4948
|
};
|
|
3753
4949
|
Solana: {
|
|
@@ -3774,6 +4970,29 @@ declare const rpcResult: {
|
|
|
3774
4970
|
chain: "Ethereum";
|
|
3775
4971
|
asset: "USDC";
|
|
3776
4972
|
};
|
|
4973
|
+
} | {
|
|
4974
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
4975
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
4976
|
+
readonly range_order_total_fees_earned: {
|
|
4977
|
+
readonly base: "0x0";
|
|
4978
|
+
readonly quote: "0x0";
|
|
4979
|
+
};
|
|
4980
|
+
readonly limit_order_total_fees_earned: {
|
|
4981
|
+
readonly base: "0x0";
|
|
4982
|
+
readonly quote: "0x0";
|
|
4983
|
+
};
|
|
4984
|
+
readonly range_total_swap_inputs: {
|
|
4985
|
+
readonly base: "0x0";
|
|
4986
|
+
readonly quote: "0x0";
|
|
4987
|
+
};
|
|
4988
|
+
readonly limit_total_swap_inputs: {
|
|
4989
|
+
readonly base: "0x0";
|
|
4990
|
+
readonly quote: "0x0";
|
|
4991
|
+
};
|
|
4992
|
+
readonly quote_asset: {
|
|
4993
|
+
readonly chain: "Ethereum";
|
|
4994
|
+
readonly asset: "USDC";
|
|
4995
|
+
};
|
|
3777
4996
|
};
|
|
3778
4997
|
SOL: {
|
|
3779
4998
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -3798,6 +5017,29 @@ declare const rpcResult: {
|
|
|
3798
5017
|
chain: "Ethereum";
|
|
3799
5018
|
asset: "USDC";
|
|
3800
5019
|
};
|
|
5020
|
+
} | {
|
|
5021
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5022
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5023
|
+
readonly range_order_total_fees_earned: {
|
|
5024
|
+
readonly base: "0x0";
|
|
5025
|
+
readonly quote: "0x0";
|
|
5026
|
+
};
|
|
5027
|
+
readonly limit_order_total_fees_earned: {
|
|
5028
|
+
readonly base: "0x0";
|
|
5029
|
+
readonly quote: "0x0";
|
|
5030
|
+
};
|
|
5031
|
+
readonly range_total_swap_inputs: {
|
|
5032
|
+
readonly base: "0x0";
|
|
5033
|
+
readonly quote: "0x0";
|
|
5034
|
+
};
|
|
5035
|
+
readonly limit_total_swap_inputs: {
|
|
5036
|
+
readonly base: "0x0";
|
|
5037
|
+
readonly quote: "0x0";
|
|
5038
|
+
};
|
|
5039
|
+
readonly quote_asset: {
|
|
5040
|
+
readonly chain: "Ethereum";
|
|
5041
|
+
readonly asset: "USDC";
|
|
5042
|
+
};
|
|
3801
5043
|
};
|
|
3802
5044
|
};
|
|
3803
5045
|
};
|
|
@@ -3827,7 +5069,7 @@ declare const rpcResult: {
|
|
|
3827
5069
|
chain: "Ethereum";
|
|
3828
5070
|
asset: "USDC";
|
|
3829
5071
|
};
|
|
3830
|
-
};
|
|
5072
|
+
} | null;
|
|
3831
5073
|
};
|
|
3832
5074
|
Ethereum: {
|
|
3833
5075
|
ETH: {
|
|
@@ -3853,7 +5095,7 @@ declare const rpcResult: {
|
|
|
3853
5095
|
chain: "Ethereum";
|
|
3854
5096
|
asset: "USDC";
|
|
3855
5097
|
};
|
|
3856
|
-
};
|
|
5098
|
+
} | null;
|
|
3857
5099
|
FLIP: {
|
|
3858
5100
|
limit_order_fee_hundredth_pips: number;
|
|
3859
5101
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3877,7 +5119,7 @@ declare const rpcResult: {
|
|
|
3877
5119
|
chain: "Ethereum";
|
|
3878
5120
|
asset: "USDC";
|
|
3879
5121
|
};
|
|
3880
|
-
};
|
|
5122
|
+
} | null;
|
|
3881
5123
|
USDT: {
|
|
3882
5124
|
limit_order_fee_hundredth_pips: number;
|
|
3883
5125
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3901,7 +5143,7 @@ declare const rpcResult: {
|
|
|
3901
5143
|
chain: "Ethereum";
|
|
3902
5144
|
asset: "USDC";
|
|
3903
5145
|
};
|
|
3904
|
-
};
|
|
5146
|
+
} | null;
|
|
3905
5147
|
};
|
|
3906
5148
|
Polkadot: {
|
|
3907
5149
|
DOT: {
|
|
@@ -3927,7 +5169,7 @@ declare const rpcResult: {
|
|
|
3927
5169
|
chain: "Ethereum";
|
|
3928
5170
|
asset: "USDC";
|
|
3929
5171
|
};
|
|
3930
|
-
};
|
|
5172
|
+
} | null;
|
|
3931
5173
|
};
|
|
3932
5174
|
Arbitrum: {
|
|
3933
5175
|
ETH: {
|
|
@@ -3953,7 +5195,7 @@ declare const rpcResult: {
|
|
|
3953
5195
|
chain: "Ethereum";
|
|
3954
5196
|
asset: "USDC";
|
|
3955
5197
|
};
|
|
3956
|
-
};
|
|
5198
|
+
} | null;
|
|
3957
5199
|
USDC: {
|
|
3958
5200
|
limit_order_fee_hundredth_pips: number;
|
|
3959
5201
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3977,7 +5219,7 @@ declare const rpcResult: {
|
|
|
3977
5219
|
chain: "Ethereum";
|
|
3978
5220
|
asset: "USDC";
|
|
3979
5221
|
};
|
|
3980
|
-
};
|
|
5222
|
+
} | null;
|
|
3981
5223
|
};
|
|
3982
5224
|
Solana?: {
|
|
3983
5225
|
USDC?: {
|
|
@@ -4003,7 +5245,7 @@ declare const rpcResult: {
|
|
|
4003
5245
|
chain: "Ethereum";
|
|
4004
5246
|
asset: "USDC";
|
|
4005
5247
|
};
|
|
4006
|
-
} | undefined;
|
|
5248
|
+
} | null | undefined;
|
|
4007
5249
|
SOL?: {
|
|
4008
5250
|
limit_order_fee_hundredth_pips: number;
|
|
4009
5251
|
range_order_fee_hundredth_pips: number;
|
|
@@ -4027,7 +5269,7 @@ declare const rpcResult: {
|
|
|
4027
5269
|
chain: "Ethereum";
|
|
4028
5270
|
asset: "USDC";
|
|
4029
5271
|
};
|
|
4030
|
-
} | undefined;
|
|
5272
|
+
} | null | undefined;
|
|
4031
5273
|
} | undefined;
|
|
4032
5274
|
};
|
|
4033
5275
|
}>;
|
|
@@ -4221,6 +5463,29 @@ declare const rpcResult: {
|
|
|
4221
5463
|
chain: "Ethereum";
|
|
4222
5464
|
asset: "USDC";
|
|
4223
5465
|
};
|
|
5466
|
+
} | {
|
|
5467
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5468
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5469
|
+
readonly range_order_total_fees_earned: {
|
|
5470
|
+
readonly base: "0x0";
|
|
5471
|
+
readonly quote: "0x0";
|
|
5472
|
+
};
|
|
5473
|
+
readonly limit_order_total_fees_earned: {
|
|
5474
|
+
readonly base: "0x0";
|
|
5475
|
+
readonly quote: "0x0";
|
|
5476
|
+
};
|
|
5477
|
+
readonly range_total_swap_inputs: {
|
|
5478
|
+
readonly base: "0x0";
|
|
5479
|
+
readonly quote: "0x0";
|
|
5480
|
+
};
|
|
5481
|
+
readonly limit_total_swap_inputs: {
|
|
5482
|
+
readonly base: "0x0";
|
|
5483
|
+
readonly quote: "0x0";
|
|
5484
|
+
};
|
|
5485
|
+
readonly quote_asset: {
|
|
5486
|
+
readonly chain: "Ethereum";
|
|
5487
|
+
readonly asset: "USDC";
|
|
5488
|
+
};
|
|
4224
5489
|
};
|
|
4225
5490
|
};
|
|
4226
5491
|
Ethereum: {
|
|
@@ -4247,6 +5512,29 @@ declare const rpcResult: {
|
|
|
4247
5512
|
chain: "Ethereum";
|
|
4248
5513
|
asset: "USDC";
|
|
4249
5514
|
};
|
|
5515
|
+
} | {
|
|
5516
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5517
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5518
|
+
readonly range_order_total_fees_earned: {
|
|
5519
|
+
readonly base: "0x0";
|
|
5520
|
+
readonly quote: "0x0";
|
|
5521
|
+
};
|
|
5522
|
+
readonly limit_order_total_fees_earned: {
|
|
5523
|
+
readonly base: "0x0";
|
|
5524
|
+
readonly quote: "0x0";
|
|
5525
|
+
};
|
|
5526
|
+
readonly range_total_swap_inputs: {
|
|
5527
|
+
readonly base: "0x0";
|
|
5528
|
+
readonly quote: "0x0";
|
|
5529
|
+
};
|
|
5530
|
+
readonly limit_total_swap_inputs: {
|
|
5531
|
+
readonly base: "0x0";
|
|
5532
|
+
readonly quote: "0x0";
|
|
5533
|
+
};
|
|
5534
|
+
readonly quote_asset: {
|
|
5535
|
+
readonly chain: "Ethereum";
|
|
5536
|
+
readonly asset: "USDC";
|
|
5537
|
+
};
|
|
4250
5538
|
};
|
|
4251
5539
|
FLIP: {
|
|
4252
5540
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -4271,6 +5559,29 @@ declare const rpcResult: {
|
|
|
4271
5559
|
chain: "Ethereum";
|
|
4272
5560
|
asset: "USDC";
|
|
4273
5561
|
};
|
|
5562
|
+
} | {
|
|
5563
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5564
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5565
|
+
readonly range_order_total_fees_earned: {
|
|
5566
|
+
readonly base: "0x0";
|
|
5567
|
+
readonly quote: "0x0";
|
|
5568
|
+
};
|
|
5569
|
+
readonly limit_order_total_fees_earned: {
|
|
5570
|
+
readonly base: "0x0";
|
|
5571
|
+
readonly quote: "0x0";
|
|
5572
|
+
};
|
|
5573
|
+
readonly range_total_swap_inputs: {
|
|
5574
|
+
readonly base: "0x0";
|
|
5575
|
+
readonly quote: "0x0";
|
|
5576
|
+
};
|
|
5577
|
+
readonly limit_total_swap_inputs: {
|
|
5578
|
+
readonly base: "0x0";
|
|
5579
|
+
readonly quote: "0x0";
|
|
5580
|
+
};
|
|
5581
|
+
readonly quote_asset: {
|
|
5582
|
+
readonly chain: "Ethereum";
|
|
5583
|
+
readonly asset: "USDC";
|
|
5584
|
+
};
|
|
4274
5585
|
};
|
|
4275
5586
|
USDT: {
|
|
4276
5587
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -4295,6 +5606,29 @@ declare const rpcResult: {
|
|
|
4295
5606
|
chain: "Ethereum";
|
|
4296
5607
|
asset: "USDC";
|
|
4297
5608
|
};
|
|
5609
|
+
} | {
|
|
5610
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5611
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5612
|
+
readonly range_order_total_fees_earned: {
|
|
5613
|
+
readonly base: "0x0";
|
|
5614
|
+
readonly quote: "0x0";
|
|
5615
|
+
};
|
|
5616
|
+
readonly limit_order_total_fees_earned: {
|
|
5617
|
+
readonly base: "0x0";
|
|
5618
|
+
readonly quote: "0x0";
|
|
5619
|
+
};
|
|
5620
|
+
readonly range_total_swap_inputs: {
|
|
5621
|
+
readonly base: "0x0";
|
|
5622
|
+
readonly quote: "0x0";
|
|
5623
|
+
};
|
|
5624
|
+
readonly limit_total_swap_inputs: {
|
|
5625
|
+
readonly base: "0x0";
|
|
5626
|
+
readonly quote: "0x0";
|
|
5627
|
+
};
|
|
5628
|
+
readonly quote_asset: {
|
|
5629
|
+
readonly chain: "Ethereum";
|
|
5630
|
+
readonly asset: "USDC";
|
|
5631
|
+
};
|
|
4298
5632
|
};
|
|
4299
5633
|
};
|
|
4300
5634
|
Polkadot: {
|
|
@@ -4321,6 +5655,29 @@ declare const rpcResult: {
|
|
|
4321
5655
|
chain: "Ethereum";
|
|
4322
5656
|
asset: "USDC";
|
|
4323
5657
|
};
|
|
5658
|
+
} | {
|
|
5659
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5660
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5661
|
+
readonly range_order_total_fees_earned: {
|
|
5662
|
+
readonly base: "0x0";
|
|
5663
|
+
readonly quote: "0x0";
|
|
5664
|
+
};
|
|
5665
|
+
readonly limit_order_total_fees_earned: {
|
|
5666
|
+
readonly base: "0x0";
|
|
5667
|
+
readonly quote: "0x0";
|
|
5668
|
+
};
|
|
5669
|
+
readonly range_total_swap_inputs: {
|
|
5670
|
+
readonly base: "0x0";
|
|
5671
|
+
readonly quote: "0x0";
|
|
5672
|
+
};
|
|
5673
|
+
readonly limit_total_swap_inputs: {
|
|
5674
|
+
readonly base: "0x0";
|
|
5675
|
+
readonly quote: "0x0";
|
|
5676
|
+
};
|
|
5677
|
+
readonly quote_asset: {
|
|
5678
|
+
readonly chain: "Ethereum";
|
|
5679
|
+
readonly asset: "USDC";
|
|
5680
|
+
};
|
|
4324
5681
|
};
|
|
4325
5682
|
};
|
|
4326
5683
|
Arbitrum: {
|
|
@@ -4347,6 +5704,29 @@ declare const rpcResult: {
|
|
|
4347
5704
|
chain: "Ethereum";
|
|
4348
5705
|
asset: "USDC";
|
|
4349
5706
|
};
|
|
5707
|
+
} | {
|
|
5708
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5709
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5710
|
+
readonly range_order_total_fees_earned: {
|
|
5711
|
+
readonly base: "0x0";
|
|
5712
|
+
readonly quote: "0x0";
|
|
5713
|
+
};
|
|
5714
|
+
readonly limit_order_total_fees_earned: {
|
|
5715
|
+
readonly base: "0x0";
|
|
5716
|
+
readonly quote: "0x0";
|
|
5717
|
+
};
|
|
5718
|
+
readonly range_total_swap_inputs: {
|
|
5719
|
+
readonly base: "0x0";
|
|
5720
|
+
readonly quote: "0x0";
|
|
5721
|
+
};
|
|
5722
|
+
readonly limit_total_swap_inputs: {
|
|
5723
|
+
readonly base: "0x0";
|
|
5724
|
+
readonly quote: "0x0";
|
|
5725
|
+
};
|
|
5726
|
+
readonly quote_asset: {
|
|
5727
|
+
readonly chain: "Ethereum";
|
|
5728
|
+
readonly asset: "USDC";
|
|
5729
|
+
};
|
|
4350
5730
|
};
|
|
4351
5731
|
USDC: {
|
|
4352
5732
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -4371,6 +5751,29 @@ declare const rpcResult: {
|
|
|
4371
5751
|
chain: "Ethereum";
|
|
4372
5752
|
asset: "USDC";
|
|
4373
5753
|
};
|
|
5754
|
+
} | {
|
|
5755
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5756
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5757
|
+
readonly range_order_total_fees_earned: {
|
|
5758
|
+
readonly base: "0x0";
|
|
5759
|
+
readonly quote: "0x0";
|
|
5760
|
+
};
|
|
5761
|
+
readonly limit_order_total_fees_earned: {
|
|
5762
|
+
readonly base: "0x0";
|
|
5763
|
+
readonly quote: "0x0";
|
|
5764
|
+
};
|
|
5765
|
+
readonly range_total_swap_inputs: {
|
|
5766
|
+
readonly base: "0x0";
|
|
5767
|
+
readonly quote: "0x0";
|
|
5768
|
+
};
|
|
5769
|
+
readonly limit_total_swap_inputs: {
|
|
5770
|
+
readonly base: "0x0";
|
|
5771
|
+
readonly quote: "0x0";
|
|
5772
|
+
};
|
|
5773
|
+
readonly quote_asset: {
|
|
5774
|
+
readonly chain: "Ethereum";
|
|
5775
|
+
readonly asset: "USDC";
|
|
5776
|
+
};
|
|
4374
5777
|
};
|
|
4375
5778
|
};
|
|
4376
5779
|
Solana: {
|
|
@@ -4397,6 +5800,29 @@ declare const rpcResult: {
|
|
|
4397
5800
|
chain: "Ethereum";
|
|
4398
5801
|
asset: "USDC";
|
|
4399
5802
|
};
|
|
5803
|
+
} | {
|
|
5804
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5805
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5806
|
+
readonly range_order_total_fees_earned: {
|
|
5807
|
+
readonly base: "0x0";
|
|
5808
|
+
readonly quote: "0x0";
|
|
5809
|
+
};
|
|
5810
|
+
readonly limit_order_total_fees_earned: {
|
|
5811
|
+
readonly base: "0x0";
|
|
5812
|
+
readonly quote: "0x0";
|
|
5813
|
+
};
|
|
5814
|
+
readonly range_total_swap_inputs: {
|
|
5815
|
+
readonly base: "0x0";
|
|
5816
|
+
readonly quote: "0x0";
|
|
5817
|
+
};
|
|
5818
|
+
readonly limit_total_swap_inputs: {
|
|
5819
|
+
readonly base: "0x0";
|
|
5820
|
+
readonly quote: "0x0";
|
|
5821
|
+
};
|
|
5822
|
+
readonly quote_asset: {
|
|
5823
|
+
readonly chain: "Ethereum";
|
|
5824
|
+
readonly asset: "USDC";
|
|
5825
|
+
};
|
|
4400
5826
|
};
|
|
4401
5827
|
SOL: {
|
|
4402
5828
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -4421,6 +5847,29 @@ declare const rpcResult: {
|
|
|
4421
5847
|
chain: "Ethereum";
|
|
4422
5848
|
asset: "USDC";
|
|
4423
5849
|
};
|
|
5850
|
+
} | {
|
|
5851
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
5852
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
5853
|
+
readonly range_order_total_fees_earned: {
|
|
5854
|
+
readonly base: "0x0";
|
|
5855
|
+
readonly quote: "0x0";
|
|
5856
|
+
};
|
|
5857
|
+
readonly limit_order_total_fees_earned: {
|
|
5858
|
+
readonly base: "0x0";
|
|
5859
|
+
readonly quote: "0x0";
|
|
5860
|
+
};
|
|
5861
|
+
readonly range_total_swap_inputs: {
|
|
5862
|
+
readonly base: "0x0";
|
|
5863
|
+
readonly quote: "0x0";
|
|
5864
|
+
};
|
|
5865
|
+
readonly limit_total_swap_inputs: {
|
|
5866
|
+
readonly base: "0x0";
|
|
5867
|
+
readonly quote: "0x0";
|
|
5868
|
+
};
|
|
5869
|
+
readonly quote_asset: {
|
|
5870
|
+
readonly chain: "Ethereum";
|
|
5871
|
+
readonly asset: "USDC";
|
|
5872
|
+
};
|
|
4424
5873
|
};
|
|
4425
5874
|
};
|
|
4426
5875
|
};
|
|
@@ -4592,7 +6041,7 @@ declare const rpcResult: {
|
|
|
4592
6041
|
chain: "Ethereum";
|
|
4593
6042
|
asset: "USDC";
|
|
4594
6043
|
};
|
|
4595
|
-
};
|
|
6044
|
+
} | null;
|
|
4596
6045
|
};
|
|
4597
6046
|
Ethereum: {
|
|
4598
6047
|
ETH: {
|
|
@@ -4618,7 +6067,7 @@ declare const rpcResult: {
|
|
|
4618
6067
|
chain: "Ethereum";
|
|
4619
6068
|
asset: "USDC";
|
|
4620
6069
|
};
|
|
4621
|
-
};
|
|
6070
|
+
} | null;
|
|
4622
6071
|
FLIP: {
|
|
4623
6072
|
limit_order_fee_hundredth_pips: number;
|
|
4624
6073
|
range_order_fee_hundredth_pips: number;
|
|
@@ -4642,7 +6091,7 @@ declare const rpcResult: {
|
|
|
4642
6091
|
chain: "Ethereum";
|
|
4643
6092
|
asset: "USDC";
|
|
4644
6093
|
};
|
|
4645
|
-
};
|
|
6094
|
+
} | null;
|
|
4646
6095
|
USDT: {
|
|
4647
6096
|
limit_order_fee_hundredth_pips: number;
|
|
4648
6097
|
range_order_fee_hundredth_pips: number;
|
|
@@ -4666,7 +6115,7 @@ declare const rpcResult: {
|
|
|
4666
6115
|
chain: "Ethereum";
|
|
4667
6116
|
asset: "USDC";
|
|
4668
6117
|
};
|
|
4669
|
-
};
|
|
6118
|
+
} | null;
|
|
4670
6119
|
};
|
|
4671
6120
|
Polkadot: {
|
|
4672
6121
|
DOT: {
|
|
@@ -4692,7 +6141,7 @@ declare const rpcResult: {
|
|
|
4692
6141
|
chain: "Ethereum";
|
|
4693
6142
|
asset: "USDC";
|
|
4694
6143
|
};
|
|
4695
|
-
};
|
|
6144
|
+
} | null;
|
|
4696
6145
|
};
|
|
4697
6146
|
Arbitrum: {
|
|
4698
6147
|
ETH: {
|
|
@@ -4718,7 +6167,7 @@ declare const rpcResult: {
|
|
|
4718
6167
|
chain: "Ethereum";
|
|
4719
6168
|
asset: "USDC";
|
|
4720
6169
|
};
|
|
4721
|
-
};
|
|
6170
|
+
} | null;
|
|
4722
6171
|
USDC: {
|
|
4723
6172
|
limit_order_fee_hundredth_pips: number;
|
|
4724
6173
|
range_order_fee_hundredth_pips: number;
|
|
@@ -4742,7 +6191,7 @@ declare const rpcResult: {
|
|
|
4742
6191
|
chain: "Ethereum";
|
|
4743
6192
|
asset: "USDC";
|
|
4744
6193
|
};
|
|
4745
|
-
};
|
|
6194
|
+
} | null;
|
|
4746
6195
|
};
|
|
4747
6196
|
Solana?: {
|
|
4748
6197
|
USDC?: {
|
|
@@ -4768,7 +6217,7 @@ declare const rpcResult: {
|
|
|
4768
6217
|
chain: "Ethereum";
|
|
4769
6218
|
asset: "USDC";
|
|
4770
6219
|
};
|
|
4771
|
-
} | undefined;
|
|
6220
|
+
} | null | undefined;
|
|
4772
6221
|
SOL?: {
|
|
4773
6222
|
limit_order_fee_hundredth_pips: number;
|
|
4774
6223
|
range_order_fee_hundredth_pips: number;
|
|
@@ -4792,7 +6241,7 @@ declare const rpcResult: {
|
|
|
4792
6241
|
chain: "Ethereum";
|
|
4793
6242
|
asset: "USDC";
|
|
4794
6243
|
};
|
|
4795
|
-
} | undefined;
|
|
6244
|
+
} | null | undefined;
|
|
4796
6245
|
} | undefined;
|
|
4797
6246
|
};
|
|
4798
6247
|
};
|
|
@@ -6282,7 +7731,7 @@ declare const rpcResult: {
|
|
|
6282
7731
|
readonly cf_pools_environment: z.ZodObject<{
|
|
6283
7732
|
fees: z.ZodObject<{
|
|
6284
7733
|
Bitcoin: z.ZodObject<{
|
|
6285
|
-
BTC: z.ZodObject<{
|
|
7734
|
+
BTC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
6286
7735
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
6287
7736
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
6288
7737
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -6381,7 +7830,76 @@ declare const rpcResult: {
|
|
|
6381
7830
|
chain: "Ethereum";
|
|
6382
7831
|
asset: "USDC";
|
|
6383
7832
|
};
|
|
6384
|
-
}
|
|
7833
|
+
}>>, {
|
|
7834
|
+
limit_order_fee_hundredth_pips: number;
|
|
7835
|
+
range_order_fee_hundredth_pips: number;
|
|
7836
|
+
range_order_total_fees_earned: {
|
|
7837
|
+
base: bigint;
|
|
7838
|
+
quote: bigint;
|
|
7839
|
+
};
|
|
7840
|
+
limit_order_total_fees_earned: {
|
|
7841
|
+
base: bigint;
|
|
7842
|
+
quote: bigint;
|
|
7843
|
+
};
|
|
7844
|
+
range_total_swap_inputs: {
|
|
7845
|
+
base: bigint;
|
|
7846
|
+
quote: bigint;
|
|
7847
|
+
};
|
|
7848
|
+
limit_total_swap_inputs: {
|
|
7849
|
+
base: bigint;
|
|
7850
|
+
quote: bigint;
|
|
7851
|
+
};
|
|
7852
|
+
quote_asset: {
|
|
7853
|
+
chain: "Ethereum";
|
|
7854
|
+
asset: "USDC";
|
|
7855
|
+
};
|
|
7856
|
+
} | {
|
|
7857
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7858
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7859
|
+
readonly range_order_total_fees_earned: {
|
|
7860
|
+
readonly base: "0x0";
|
|
7861
|
+
readonly quote: "0x0";
|
|
7862
|
+
};
|
|
7863
|
+
readonly limit_order_total_fees_earned: {
|
|
7864
|
+
readonly base: "0x0";
|
|
7865
|
+
readonly quote: "0x0";
|
|
7866
|
+
};
|
|
7867
|
+
readonly range_total_swap_inputs: {
|
|
7868
|
+
readonly base: "0x0";
|
|
7869
|
+
readonly quote: "0x0";
|
|
7870
|
+
};
|
|
7871
|
+
readonly limit_total_swap_inputs: {
|
|
7872
|
+
readonly base: "0x0";
|
|
7873
|
+
readonly quote: "0x0";
|
|
7874
|
+
};
|
|
7875
|
+
readonly quote_asset: {
|
|
7876
|
+
readonly chain: "Ethereum";
|
|
7877
|
+
readonly asset: "USDC";
|
|
7878
|
+
};
|
|
7879
|
+
}, {
|
|
7880
|
+
limit_order_fee_hundredth_pips: number;
|
|
7881
|
+
range_order_fee_hundredth_pips: number;
|
|
7882
|
+
range_order_total_fees_earned: {
|
|
7883
|
+
base: string;
|
|
7884
|
+
quote: string;
|
|
7885
|
+
};
|
|
7886
|
+
limit_order_total_fees_earned: {
|
|
7887
|
+
base: string;
|
|
7888
|
+
quote: string;
|
|
7889
|
+
};
|
|
7890
|
+
range_total_swap_inputs: {
|
|
7891
|
+
base: string;
|
|
7892
|
+
quote: string;
|
|
7893
|
+
};
|
|
7894
|
+
limit_total_swap_inputs: {
|
|
7895
|
+
base: string;
|
|
7896
|
+
quote: string;
|
|
7897
|
+
};
|
|
7898
|
+
quote_asset: {
|
|
7899
|
+
chain: "Ethereum";
|
|
7900
|
+
asset: "USDC";
|
|
7901
|
+
};
|
|
7902
|
+
} | null>;
|
|
6385
7903
|
}, "strip", z.ZodTypeAny, {
|
|
6386
7904
|
BTC: {
|
|
6387
7905
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6406,6 +7924,29 @@ declare const rpcResult: {
|
|
|
6406
7924
|
chain: "Ethereum";
|
|
6407
7925
|
asset: "USDC";
|
|
6408
7926
|
};
|
|
7927
|
+
} | {
|
|
7928
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
7929
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
7930
|
+
readonly range_order_total_fees_earned: {
|
|
7931
|
+
readonly base: "0x0";
|
|
7932
|
+
readonly quote: "0x0";
|
|
7933
|
+
};
|
|
7934
|
+
readonly limit_order_total_fees_earned: {
|
|
7935
|
+
readonly base: "0x0";
|
|
7936
|
+
readonly quote: "0x0";
|
|
7937
|
+
};
|
|
7938
|
+
readonly range_total_swap_inputs: {
|
|
7939
|
+
readonly base: "0x0";
|
|
7940
|
+
readonly quote: "0x0";
|
|
7941
|
+
};
|
|
7942
|
+
readonly limit_total_swap_inputs: {
|
|
7943
|
+
readonly base: "0x0";
|
|
7944
|
+
readonly quote: "0x0";
|
|
7945
|
+
};
|
|
7946
|
+
readonly quote_asset: {
|
|
7947
|
+
readonly chain: "Ethereum";
|
|
7948
|
+
readonly asset: "USDC";
|
|
7949
|
+
};
|
|
6409
7950
|
};
|
|
6410
7951
|
}, {
|
|
6411
7952
|
BTC: {
|
|
@@ -6431,10 +7972,179 @@ declare const rpcResult: {
|
|
|
6431
7972
|
chain: "Ethereum";
|
|
6432
7973
|
asset: "USDC";
|
|
6433
7974
|
};
|
|
6434
|
-
};
|
|
7975
|
+
} | null;
|
|
6435
7976
|
}>;
|
|
6436
7977
|
Ethereum: z.ZodObject<{
|
|
6437
|
-
ETH: z.ZodObject<{
|
|
7978
|
+
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
7979
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
7980
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
7981
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
7982
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7983
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7984
|
+
}, "strip", z.ZodTypeAny, {
|
|
7985
|
+
base: bigint;
|
|
7986
|
+
quote: bigint;
|
|
7987
|
+
}, {
|
|
7988
|
+
base: string;
|
|
7989
|
+
quote: string;
|
|
7990
|
+
}>;
|
|
7991
|
+
limit_order_total_fees_earned: z.ZodObject<{
|
|
7992
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7993
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7994
|
+
}, "strip", z.ZodTypeAny, {
|
|
7995
|
+
base: bigint;
|
|
7996
|
+
quote: bigint;
|
|
7997
|
+
}, {
|
|
7998
|
+
base: string;
|
|
7999
|
+
quote: string;
|
|
8000
|
+
}>;
|
|
8001
|
+
range_total_swap_inputs: z.ZodObject<{
|
|
8002
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
8003
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
8004
|
+
}, "strip", z.ZodTypeAny, {
|
|
8005
|
+
base: bigint;
|
|
8006
|
+
quote: bigint;
|
|
8007
|
+
}, {
|
|
8008
|
+
base: string;
|
|
8009
|
+
quote: string;
|
|
8010
|
+
}>;
|
|
8011
|
+
limit_total_swap_inputs: z.ZodObject<{
|
|
8012
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
8013
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
8014
|
+
}, "strip", z.ZodTypeAny, {
|
|
8015
|
+
base: bigint;
|
|
8016
|
+
quote: bigint;
|
|
8017
|
+
}, {
|
|
8018
|
+
base: string;
|
|
8019
|
+
quote: string;
|
|
8020
|
+
}>;
|
|
8021
|
+
quote_asset: z.ZodObject<{
|
|
8022
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
8023
|
+
asset: z.ZodLiteral<"USDC">;
|
|
8024
|
+
}, "strip", z.ZodTypeAny, {
|
|
8025
|
+
chain: "Ethereum";
|
|
8026
|
+
asset: "USDC";
|
|
8027
|
+
}, {
|
|
8028
|
+
chain: "Ethereum";
|
|
8029
|
+
asset: "USDC";
|
|
8030
|
+
}>;
|
|
8031
|
+
}, "strip", z.ZodTypeAny, {
|
|
8032
|
+
limit_order_fee_hundredth_pips: number;
|
|
8033
|
+
range_order_fee_hundredth_pips: number;
|
|
8034
|
+
range_order_total_fees_earned: {
|
|
8035
|
+
base: bigint;
|
|
8036
|
+
quote: bigint;
|
|
8037
|
+
};
|
|
8038
|
+
limit_order_total_fees_earned: {
|
|
8039
|
+
base: bigint;
|
|
8040
|
+
quote: bigint;
|
|
8041
|
+
};
|
|
8042
|
+
range_total_swap_inputs: {
|
|
8043
|
+
base: bigint;
|
|
8044
|
+
quote: bigint;
|
|
8045
|
+
};
|
|
8046
|
+
limit_total_swap_inputs: {
|
|
8047
|
+
base: bigint;
|
|
8048
|
+
quote: bigint;
|
|
8049
|
+
};
|
|
8050
|
+
quote_asset: {
|
|
8051
|
+
chain: "Ethereum";
|
|
8052
|
+
asset: "USDC";
|
|
8053
|
+
};
|
|
8054
|
+
}, {
|
|
8055
|
+
limit_order_fee_hundredth_pips: number;
|
|
8056
|
+
range_order_fee_hundredth_pips: number;
|
|
8057
|
+
range_order_total_fees_earned: {
|
|
8058
|
+
base: string;
|
|
8059
|
+
quote: string;
|
|
8060
|
+
};
|
|
8061
|
+
limit_order_total_fees_earned: {
|
|
8062
|
+
base: string;
|
|
8063
|
+
quote: string;
|
|
8064
|
+
};
|
|
8065
|
+
range_total_swap_inputs: {
|
|
8066
|
+
base: string;
|
|
8067
|
+
quote: string;
|
|
8068
|
+
};
|
|
8069
|
+
limit_total_swap_inputs: {
|
|
8070
|
+
base: string;
|
|
8071
|
+
quote: string;
|
|
8072
|
+
};
|
|
8073
|
+
quote_asset: {
|
|
8074
|
+
chain: "Ethereum";
|
|
8075
|
+
asset: "USDC";
|
|
8076
|
+
};
|
|
8077
|
+
}>>, {
|
|
8078
|
+
limit_order_fee_hundredth_pips: number;
|
|
8079
|
+
range_order_fee_hundredth_pips: number;
|
|
8080
|
+
range_order_total_fees_earned: {
|
|
8081
|
+
base: bigint;
|
|
8082
|
+
quote: bigint;
|
|
8083
|
+
};
|
|
8084
|
+
limit_order_total_fees_earned: {
|
|
8085
|
+
base: bigint;
|
|
8086
|
+
quote: bigint;
|
|
8087
|
+
};
|
|
8088
|
+
range_total_swap_inputs: {
|
|
8089
|
+
base: bigint;
|
|
8090
|
+
quote: bigint;
|
|
8091
|
+
};
|
|
8092
|
+
limit_total_swap_inputs: {
|
|
8093
|
+
base: bigint;
|
|
8094
|
+
quote: bigint;
|
|
8095
|
+
};
|
|
8096
|
+
quote_asset: {
|
|
8097
|
+
chain: "Ethereum";
|
|
8098
|
+
asset: "USDC";
|
|
8099
|
+
};
|
|
8100
|
+
} | {
|
|
8101
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8102
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8103
|
+
readonly range_order_total_fees_earned: {
|
|
8104
|
+
readonly base: "0x0";
|
|
8105
|
+
readonly quote: "0x0";
|
|
8106
|
+
};
|
|
8107
|
+
readonly limit_order_total_fees_earned: {
|
|
8108
|
+
readonly base: "0x0";
|
|
8109
|
+
readonly quote: "0x0";
|
|
8110
|
+
};
|
|
8111
|
+
readonly range_total_swap_inputs: {
|
|
8112
|
+
readonly base: "0x0";
|
|
8113
|
+
readonly quote: "0x0";
|
|
8114
|
+
};
|
|
8115
|
+
readonly limit_total_swap_inputs: {
|
|
8116
|
+
readonly base: "0x0";
|
|
8117
|
+
readonly quote: "0x0";
|
|
8118
|
+
};
|
|
8119
|
+
readonly quote_asset: {
|
|
8120
|
+
readonly chain: "Ethereum";
|
|
8121
|
+
readonly asset: "USDC";
|
|
8122
|
+
};
|
|
8123
|
+
}, {
|
|
8124
|
+
limit_order_fee_hundredth_pips: number;
|
|
8125
|
+
range_order_fee_hundredth_pips: number;
|
|
8126
|
+
range_order_total_fees_earned: {
|
|
8127
|
+
base: string;
|
|
8128
|
+
quote: string;
|
|
8129
|
+
};
|
|
8130
|
+
limit_order_total_fees_earned: {
|
|
8131
|
+
base: string;
|
|
8132
|
+
quote: string;
|
|
8133
|
+
};
|
|
8134
|
+
range_total_swap_inputs: {
|
|
8135
|
+
base: string;
|
|
8136
|
+
quote: string;
|
|
8137
|
+
};
|
|
8138
|
+
limit_total_swap_inputs: {
|
|
8139
|
+
base: string;
|
|
8140
|
+
quote: string;
|
|
8141
|
+
};
|
|
8142
|
+
quote_asset: {
|
|
8143
|
+
chain: "Ethereum";
|
|
8144
|
+
asset: "USDC";
|
|
8145
|
+
};
|
|
8146
|
+
} | null>;
|
|
8147
|
+
FLIP: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
6438
8148
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
6439
8149
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
6440
8150
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -6476,18 +8186,64 @@ declare const rpcResult: {
|
|
|
6476
8186
|
}, {
|
|
6477
8187
|
base: string;
|
|
6478
8188
|
quote: string;
|
|
6479
|
-
}>;
|
|
6480
|
-
quote_asset: z.ZodObject<{
|
|
6481
|
-
chain: z.ZodLiteral<"Ethereum">;
|
|
6482
|
-
asset: z.ZodLiteral<"USDC">;
|
|
6483
|
-
}, "strip", z.ZodTypeAny, {
|
|
6484
|
-
chain: "Ethereum";
|
|
6485
|
-
asset: "USDC";
|
|
6486
|
-
}, {
|
|
8189
|
+
}>;
|
|
8190
|
+
quote_asset: z.ZodObject<{
|
|
8191
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
8192
|
+
asset: z.ZodLiteral<"USDC">;
|
|
8193
|
+
}, "strip", z.ZodTypeAny, {
|
|
8194
|
+
chain: "Ethereum";
|
|
8195
|
+
asset: "USDC";
|
|
8196
|
+
}, {
|
|
8197
|
+
chain: "Ethereum";
|
|
8198
|
+
asset: "USDC";
|
|
8199
|
+
}>;
|
|
8200
|
+
}, "strip", z.ZodTypeAny, {
|
|
8201
|
+
limit_order_fee_hundredth_pips: number;
|
|
8202
|
+
range_order_fee_hundredth_pips: number;
|
|
8203
|
+
range_order_total_fees_earned: {
|
|
8204
|
+
base: bigint;
|
|
8205
|
+
quote: bigint;
|
|
8206
|
+
};
|
|
8207
|
+
limit_order_total_fees_earned: {
|
|
8208
|
+
base: bigint;
|
|
8209
|
+
quote: bigint;
|
|
8210
|
+
};
|
|
8211
|
+
range_total_swap_inputs: {
|
|
8212
|
+
base: bigint;
|
|
8213
|
+
quote: bigint;
|
|
8214
|
+
};
|
|
8215
|
+
limit_total_swap_inputs: {
|
|
8216
|
+
base: bigint;
|
|
8217
|
+
quote: bigint;
|
|
8218
|
+
};
|
|
8219
|
+
quote_asset: {
|
|
8220
|
+
chain: "Ethereum";
|
|
8221
|
+
asset: "USDC";
|
|
8222
|
+
};
|
|
8223
|
+
}, {
|
|
8224
|
+
limit_order_fee_hundredth_pips: number;
|
|
8225
|
+
range_order_fee_hundredth_pips: number;
|
|
8226
|
+
range_order_total_fees_earned: {
|
|
8227
|
+
base: string;
|
|
8228
|
+
quote: string;
|
|
8229
|
+
};
|
|
8230
|
+
limit_order_total_fees_earned: {
|
|
8231
|
+
base: string;
|
|
8232
|
+
quote: string;
|
|
8233
|
+
};
|
|
8234
|
+
range_total_swap_inputs: {
|
|
8235
|
+
base: string;
|
|
8236
|
+
quote: string;
|
|
8237
|
+
};
|
|
8238
|
+
limit_total_swap_inputs: {
|
|
8239
|
+
base: string;
|
|
8240
|
+
quote: string;
|
|
8241
|
+
};
|
|
8242
|
+
quote_asset: {
|
|
6487
8243
|
chain: "Ethereum";
|
|
6488
8244
|
asset: "USDC";
|
|
6489
|
-
}
|
|
6490
|
-
}
|
|
8245
|
+
};
|
|
8246
|
+
}>>, {
|
|
6491
8247
|
limit_order_fee_hundredth_pips: number;
|
|
6492
8248
|
range_order_fee_hundredth_pips: number;
|
|
6493
8249
|
range_order_total_fees_earned: {
|
|
@@ -6510,6 +8266,29 @@ declare const rpcResult: {
|
|
|
6510
8266
|
chain: "Ethereum";
|
|
6511
8267
|
asset: "USDC";
|
|
6512
8268
|
};
|
|
8269
|
+
} | {
|
|
8270
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8271
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8272
|
+
readonly range_order_total_fees_earned: {
|
|
8273
|
+
readonly base: "0x0";
|
|
8274
|
+
readonly quote: "0x0";
|
|
8275
|
+
};
|
|
8276
|
+
readonly limit_order_total_fees_earned: {
|
|
8277
|
+
readonly base: "0x0";
|
|
8278
|
+
readonly quote: "0x0";
|
|
8279
|
+
};
|
|
8280
|
+
readonly range_total_swap_inputs: {
|
|
8281
|
+
readonly base: "0x0";
|
|
8282
|
+
readonly quote: "0x0";
|
|
8283
|
+
};
|
|
8284
|
+
readonly limit_total_swap_inputs: {
|
|
8285
|
+
readonly base: "0x0";
|
|
8286
|
+
readonly quote: "0x0";
|
|
8287
|
+
};
|
|
8288
|
+
readonly quote_asset: {
|
|
8289
|
+
readonly chain: "Ethereum";
|
|
8290
|
+
readonly asset: "USDC";
|
|
8291
|
+
};
|
|
6513
8292
|
}, {
|
|
6514
8293
|
limit_order_fee_hundredth_pips: number;
|
|
6515
8294
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6533,8 +8312,8 @@ declare const rpcResult: {
|
|
|
6533
8312
|
chain: "Ethereum";
|
|
6534
8313
|
asset: "USDC";
|
|
6535
8314
|
};
|
|
6536
|
-
}>;
|
|
6537
|
-
|
|
8315
|
+
} | null>;
|
|
8316
|
+
USDT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
6538
8317
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
6539
8318
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
6540
8319
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -6633,61 +8412,7 @@ declare const rpcResult: {
|
|
|
6633
8412
|
chain: "Ethereum";
|
|
6634
8413
|
asset: "USDC";
|
|
6635
8414
|
};
|
|
6636
|
-
}
|
|
6637
|
-
USDT: z.ZodObject<{
|
|
6638
|
-
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
6639
|
-
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
6640
|
-
range_order_total_fees_earned: z.ZodObject<{
|
|
6641
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6642
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6643
|
-
}, "strip", z.ZodTypeAny, {
|
|
6644
|
-
base: bigint;
|
|
6645
|
-
quote: bigint;
|
|
6646
|
-
}, {
|
|
6647
|
-
base: string;
|
|
6648
|
-
quote: string;
|
|
6649
|
-
}>;
|
|
6650
|
-
limit_order_total_fees_earned: z.ZodObject<{
|
|
6651
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6652
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6653
|
-
}, "strip", z.ZodTypeAny, {
|
|
6654
|
-
base: bigint;
|
|
6655
|
-
quote: bigint;
|
|
6656
|
-
}, {
|
|
6657
|
-
base: string;
|
|
6658
|
-
quote: string;
|
|
6659
|
-
}>;
|
|
6660
|
-
range_total_swap_inputs: z.ZodObject<{
|
|
6661
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6662
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6663
|
-
}, "strip", z.ZodTypeAny, {
|
|
6664
|
-
base: bigint;
|
|
6665
|
-
quote: bigint;
|
|
6666
|
-
}, {
|
|
6667
|
-
base: string;
|
|
6668
|
-
quote: string;
|
|
6669
|
-
}>;
|
|
6670
|
-
limit_total_swap_inputs: z.ZodObject<{
|
|
6671
|
-
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6672
|
-
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6673
|
-
}, "strip", z.ZodTypeAny, {
|
|
6674
|
-
base: bigint;
|
|
6675
|
-
quote: bigint;
|
|
6676
|
-
}, {
|
|
6677
|
-
base: string;
|
|
6678
|
-
quote: string;
|
|
6679
|
-
}>;
|
|
6680
|
-
quote_asset: z.ZodObject<{
|
|
6681
|
-
chain: z.ZodLiteral<"Ethereum">;
|
|
6682
|
-
asset: z.ZodLiteral<"USDC">;
|
|
6683
|
-
}, "strip", z.ZodTypeAny, {
|
|
6684
|
-
chain: "Ethereum";
|
|
6685
|
-
asset: "USDC";
|
|
6686
|
-
}, {
|
|
6687
|
-
chain: "Ethereum";
|
|
6688
|
-
asset: "USDC";
|
|
6689
|
-
}>;
|
|
6690
|
-
}, "strip", z.ZodTypeAny, {
|
|
8415
|
+
}>>, {
|
|
6691
8416
|
limit_order_fee_hundredth_pips: number;
|
|
6692
8417
|
range_order_fee_hundredth_pips: number;
|
|
6693
8418
|
range_order_total_fees_earned: {
|
|
@@ -6710,6 +8435,29 @@ declare const rpcResult: {
|
|
|
6710
8435
|
chain: "Ethereum";
|
|
6711
8436
|
asset: "USDC";
|
|
6712
8437
|
};
|
|
8438
|
+
} | {
|
|
8439
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8440
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8441
|
+
readonly range_order_total_fees_earned: {
|
|
8442
|
+
readonly base: "0x0";
|
|
8443
|
+
readonly quote: "0x0";
|
|
8444
|
+
};
|
|
8445
|
+
readonly limit_order_total_fees_earned: {
|
|
8446
|
+
readonly base: "0x0";
|
|
8447
|
+
readonly quote: "0x0";
|
|
8448
|
+
};
|
|
8449
|
+
readonly range_total_swap_inputs: {
|
|
8450
|
+
readonly base: "0x0";
|
|
8451
|
+
readonly quote: "0x0";
|
|
8452
|
+
};
|
|
8453
|
+
readonly limit_total_swap_inputs: {
|
|
8454
|
+
readonly base: "0x0";
|
|
8455
|
+
readonly quote: "0x0";
|
|
8456
|
+
};
|
|
8457
|
+
readonly quote_asset: {
|
|
8458
|
+
readonly chain: "Ethereum";
|
|
8459
|
+
readonly asset: "USDC";
|
|
8460
|
+
};
|
|
6713
8461
|
}, {
|
|
6714
8462
|
limit_order_fee_hundredth_pips: number;
|
|
6715
8463
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6733,7 +8481,7 @@ declare const rpcResult: {
|
|
|
6733
8481
|
chain: "Ethereum";
|
|
6734
8482
|
asset: "USDC";
|
|
6735
8483
|
};
|
|
6736
|
-
}>;
|
|
8484
|
+
} | null>;
|
|
6737
8485
|
}, "strip", z.ZodTypeAny, {
|
|
6738
8486
|
ETH: {
|
|
6739
8487
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6758,6 +8506,29 @@ declare const rpcResult: {
|
|
|
6758
8506
|
chain: "Ethereum";
|
|
6759
8507
|
asset: "USDC";
|
|
6760
8508
|
};
|
|
8509
|
+
} | {
|
|
8510
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8511
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8512
|
+
readonly range_order_total_fees_earned: {
|
|
8513
|
+
readonly base: "0x0";
|
|
8514
|
+
readonly quote: "0x0";
|
|
8515
|
+
};
|
|
8516
|
+
readonly limit_order_total_fees_earned: {
|
|
8517
|
+
readonly base: "0x0";
|
|
8518
|
+
readonly quote: "0x0";
|
|
8519
|
+
};
|
|
8520
|
+
readonly range_total_swap_inputs: {
|
|
8521
|
+
readonly base: "0x0";
|
|
8522
|
+
readonly quote: "0x0";
|
|
8523
|
+
};
|
|
8524
|
+
readonly limit_total_swap_inputs: {
|
|
8525
|
+
readonly base: "0x0";
|
|
8526
|
+
readonly quote: "0x0";
|
|
8527
|
+
};
|
|
8528
|
+
readonly quote_asset: {
|
|
8529
|
+
readonly chain: "Ethereum";
|
|
8530
|
+
readonly asset: "USDC";
|
|
8531
|
+
};
|
|
6761
8532
|
};
|
|
6762
8533
|
FLIP: {
|
|
6763
8534
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6782,6 +8553,29 @@ declare const rpcResult: {
|
|
|
6782
8553
|
chain: "Ethereum";
|
|
6783
8554
|
asset: "USDC";
|
|
6784
8555
|
};
|
|
8556
|
+
} | {
|
|
8557
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8558
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8559
|
+
readonly range_order_total_fees_earned: {
|
|
8560
|
+
readonly base: "0x0";
|
|
8561
|
+
readonly quote: "0x0";
|
|
8562
|
+
};
|
|
8563
|
+
readonly limit_order_total_fees_earned: {
|
|
8564
|
+
readonly base: "0x0";
|
|
8565
|
+
readonly quote: "0x0";
|
|
8566
|
+
};
|
|
8567
|
+
readonly range_total_swap_inputs: {
|
|
8568
|
+
readonly base: "0x0";
|
|
8569
|
+
readonly quote: "0x0";
|
|
8570
|
+
};
|
|
8571
|
+
readonly limit_total_swap_inputs: {
|
|
8572
|
+
readonly base: "0x0";
|
|
8573
|
+
readonly quote: "0x0";
|
|
8574
|
+
};
|
|
8575
|
+
readonly quote_asset: {
|
|
8576
|
+
readonly chain: "Ethereum";
|
|
8577
|
+
readonly asset: "USDC";
|
|
8578
|
+
};
|
|
6785
8579
|
};
|
|
6786
8580
|
USDT: {
|
|
6787
8581
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6806,6 +8600,29 @@ declare const rpcResult: {
|
|
|
6806
8600
|
chain: "Ethereum";
|
|
6807
8601
|
asset: "USDC";
|
|
6808
8602
|
};
|
|
8603
|
+
} | {
|
|
8604
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8605
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8606
|
+
readonly range_order_total_fees_earned: {
|
|
8607
|
+
readonly base: "0x0";
|
|
8608
|
+
readonly quote: "0x0";
|
|
8609
|
+
};
|
|
8610
|
+
readonly limit_order_total_fees_earned: {
|
|
8611
|
+
readonly base: "0x0";
|
|
8612
|
+
readonly quote: "0x0";
|
|
8613
|
+
};
|
|
8614
|
+
readonly range_total_swap_inputs: {
|
|
8615
|
+
readonly base: "0x0";
|
|
8616
|
+
readonly quote: "0x0";
|
|
8617
|
+
};
|
|
8618
|
+
readonly limit_total_swap_inputs: {
|
|
8619
|
+
readonly base: "0x0";
|
|
8620
|
+
readonly quote: "0x0";
|
|
8621
|
+
};
|
|
8622
|
+
readonly quote_asset: {
|
|
8623
|
+
readonly chain: "Ethereum";
|
|
8624
|
+
readonly asset: "USDC";
|
|
8625
|
+
};
|
|
6809
8626
|
};
|
|
6810
8627
|
}, {
|
|
6811
8628
|
ETH: {
|
|
@@ -6831,7 +8648,7 @@ declare const rpcResult: {
|
|
|
6831
8648
|
chain: "Ethereum";
|
|
6832
8649
|
asset: "USDC";
|
|
6833
8650
|
};
|
|
6834
|
-
};
|
|
8651
|
+
} | null;
|
|
6835
8652
|
FLIP: {
|
|
6836
8653
|
limit_order_fee_hundredth_pips: number;
|
|
6837
8654
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6855,7 +8672,7 @@ declare const rpcResult: {
|
|
|
6855
8672
|
chain: "Ethereum";
|
|
6856
8673
|
asset: "USDC";
|
|
6857
8674
|
};
|
|
6858
|
-
};
|
|
8675
|
+
} | null;
|
|
6859
8676
|
USDT: {
|
|
6860
8677
|
limit_order_fee_hundredth_pips: number;
|
|
6861
8678
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6879,10 +8696,10 @@ declare const rpcResult: {
|
|
|
6879
8696
|
chain: "Ethereum";
|
|
6880
8697
|
asset: "USDC";
|
|
6881
8698
|
};
|
|
6882
|
-
};
|
|
8699
|
+
} | null;
|
|
6883
8700
|
}>;
|
|
6884
8701
|
Polkadot: z.ZodObject<{
|
|
6885
|
-
DOT: z.ZodObject<{
|
|
8702
|
+
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
6886
8703
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
6887
8704
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
6888
8705
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -6981,7 +8798,76 @@ declare const rpcResult: {
|
|
|
6981
8798
|
chain: "Ethereum";
|
|
6982
8799
|
asset: "USDC";
|
|
6983
8800
|
};
|
|
6984
|
-
}
|
|
8801
|
+
}>>, {
|
|
8802
|
+
limit_order_fee_hundredth_pips: number;
|
|
8803
|
+
range_order_fee_hundredth_pips: number;
|
|
8804
|
+
range_order_total_fees_earned: {
|
|
8805
|
+
base: bigint;
|
|
8806
|
+
quote: bigint;
|
|
8807
|
+
};
|
|
8808
|
+
limit_order_total_fees_earned: {
|
|
8809
|
+
base: bigint;
|
|
8810
|
+
quote: bigint;
|
|
8811
|
+
};
|
|
8812
|
+
range_total_swap_inputs: {
|
|
8813
|
+
base: bigint;
|
|
8814
|
+
quote: bigint;
|
|
8815
|
+
};
|
|
8816
|
+
limit_total_swap_inputs: {
|
|
8817
|
+
base: bigint;
|
|
8818
|
+
quote: bigint;
|
|
8819
|
+
};
|
|
8820
|
+
quote_asset: {
|
|
8821
|
+
chain: "Ethereum";
|
|
8822
|
+
asset: "USDC";
|
|
8823
|
+
};
|
|
8824
|
+
} | {
|
|
8825
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8826
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8827
|
+
readonly range_order_total_fees_earned: {
|
|
8828
|
+
readonly base: "0x0";
|
|
8829
|
+
readonly quote: "0x0";
|
|
8830
|
+
};
|
|
8831
|
+
readonly limit_order_total_fees_earned: {
|
|
8832
|
+
readonly base: "0x0";
|
|
8833
|
+
readonly quote: "0x0";
|
|
8834
|
+
};
|
|
8835
|
+
readonly range_total_swap_inputs: {
|
|
8836
|
+
readonly base: "0x0";
|
|
8837
|
+
readonly quote: "0x0";
|
|
8838
|
+
};
|
|
8839
|
+
readonly limit_total_swap_inputs: {
|
|
8840
|
+
readonly base: "0x0";
|
|
8841
|
+
readonly quote: "0x0";
|
|
8842
|
+
};
|
|
8843
|
+
readonly quote_asset: {
|
|
8844
|
+
readonly chain: "Ethereum";
|
|
8845
|
+
readonly asset: "USDC";
|
|
8846
|
+
};
|
|
8847
|
+
}, {
|
|
8848
|
+
limit_order_fee_hundredth_pips: number;
|
|
8849
|
+
range_order_fee_hundredth_pips: number;
|
|
8850
|
+
range_order_total_fees_earned: {
|
|
8851
|
+
base: string;
|
|
8852
|
+
quote: string;
|
|
8853
|
+
};
|
|
8854
|
+
limit_order_total_fees_earned: {
|
|
8855
|
+
base: string;
|
|
8856
|
+
quote: string;
|
|
8857
|
+
};
|
|
8858
|
+
range_total_swap_inputs: {
|
|
8859
|
+
base: string;
|
|
8860
|
+
quote: string;
|
|
8861
|
+
};
|
|
8862
|
+
limit_total_swap_inputs: {
|
|
8863
|
+
base: string;
|
|
8864
|
+
quote: string;
|
|
8865
|
+
};
|
|
8866
|
+
quote_asset: {
|
|
8867
|
+
chain: "Ethereum";
|
|
8868
|
+
asset: "USDC";
|
|
8869
|
+
};
|
|
8870
|
+
} | null>;
|
|
6985
8871
|
}, "strip", z.ZodTypeAny, {
|
|
6986
8872
|
DOT: {
|
|
6987
8873
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7006,6 +8892,29 @@ declare const rpcResult: {
|
|
|
7006
8892
|
chain: "Ethereum";
|
|
7007
8893
|
asset: "USDC";
|
|
7008
8894
|
};
|
|
8895
|
+
} | {
|
|
8896
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
8897
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
8898
|
+
readonly range_order_total_fees_earned: {
|
|
8899
|
+
readonly base: "0x0";
|
|
8900
|
+
readonly quote: "0x0";
|
|
8901
|
+
};
|
|
8902
|
+
readonly limit_order_total_fees_earned: {
|
|
8903
|
+
readonly base: "0x0";
|
|
8904
|
+
readonly quote: "0x0";
|
|
8905
|
+
};
|
|
8906
|
+
readonly range_total_swap_inputs: {
|
|
8907
|
+
readonly base: "0x0";
|
|
8908
|
+
readonly quote: "0x0";
|
|
8909
|
+
};
|
|
8910
|
+
readonly limit_total_swap_inputs: {
|
|
8911
|
+
readonly base: "0x0";
|
|
8912
|
+
readonly quote: "0x0";
|
|
8913
|
+
};
|
|
8914
|
+
readonly quote_asset: {
|
|
8915
|
+
readonly chain: "Ethereum";
|
|
8916
|
+
readonly asset: "USDC";
|
|
8917
|
+
};
|
|
7009
8918
|
};
|
|
7010
8919
|
}, {
|
|
7011
8920
|
DOT: {
|
|
@@ -7031,10 +8940,10 @@ declare const rpcResult: {
|
|
|
7031
8940
|
chain: "Ethereum";
|
|
7032
8941
|
asset: "USDC";
|
|
7033
8942
|
};
|
|
7034
|
-
};
|
|
8943
|
+
} | null;
|
|
7035
8944
|
}>;
|
|
7036
8945
|
Arbitrum: z.ZodObject<{
|
|
7037
|
-
ETH: z.ZodObject<{
|
|
8946
|
+
ETH: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
7038
8947
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
7039
8948
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
7040
8949
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -7133,8 +9042,77 @@ declare const rpcResult: {
|
|
|
7133
9042
|
chain: "Ethereum";
|
|
7134
9043
|
asset: "USDC";
|
|
7135
9044
|
};
|
|
7136
|
-
}
|
|
7137
|
-
|
|
9045
|
+
}>>, {
|
|
9046
|
+
limit_order_fee_hundredth_pips: number;
|
|
9047
|
+
range_order_fee_hundredth_pips: number;
|
|
9048
|
+
range_order_total_fees_earned: {
|
|
9049
|
+
base: bigint;
|
|
9050
|
+
quote: bigint;
|
|
9051
|
+
};
|
|
9052
|
+
limit_order_total_fees_earned: {
|
|
9053
|
+
base: bigint;
|
|
9054
|
+
quote: bigint;
|
|
9055
|
+
};
|
|
9056
|
+
range_total_swap_inputs: {
|
|
9057
|
+
base: bigint;
|
|
9058
|
+
quote: bigint;
|
|
9059
|
+
};
|
|
9060
|
+
limit_total_swap_inputs: {
|
|
9061
|
+
base: bigint;
|
|
9062
|
+
quote: bigint;
|
|
9063
|
+
};
|
|
9064
|
+
quote_asset: {
|
|
9065
|
+
chain: "Ethereum";
|
|
9066
|
+
asset: "USDC";
|
|
9067
|
+
};
|
|
9068
|
+
} | {
|
|
9069
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9070
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9071
|
+
readonly range_order_total_fees_earned: {
|
|
9072
|
+
readonly base: "0x0";
|
|
9073
|
+
readonly quote: "0x0";
|
|
9074
|
+
};
|
|
9075
|
+
readonly limit_order_total_fees_earned: {
|
|
9076
|
+
readonly base: "0x0";
|
|
9077
|
+
readonly quote: "0x0";
|
|
9078
|
+
};
|
|
9079
|
+
readonly range_total_swap_inputs: {
|
|
9080
|
+
readonly base: "0x0";
|
|
9081
|
+
readonly quote: "0x0";
|
|
9082
|
+
};
|
|
9083
|
+
readonly limit_total_swap_inputs: {
|
|
9084
|
+
readonly base: "0x0";
|
|
9085
|
+
readonly quote: "0x0";
|
|
9086
|
+
};
|
|
9087
|
+
readonly quote_asset: {
|
|
9088
|
+
readonly chain: "Ethereum";
|
|
9089
|
+
readonly asset: "USDC";
|
|
9090
|
+
};
|
|
9091
|
+
}, {
|
|
9092
|
+
limit_order_fee_hundredth_pips: number;
|
|
9093
|
+
range_order_fee_hundredth_pips: number;
|
|
9094
|
+
range_order_total_fees_earned: {
|
|
9095
|
+
base: string;
|
|
9096
|
+
quote: string;
|
|
9097
|
+
};
|
|
9098
|
+
limit_order_total_fees_earned: {
|
|
9099
|
+
base: string;
|
|
9100
|
+
quote: string;
|
|
9101
|
+
};
|
|
9102
|
+
range_total_swap_inputs: {
|
|
9103
|
+
base: string;
|
|
9104
|
+
quote: string;
|
|
9105
|
+
};
|
|
9106
|
+
limit_total_swap_inputs: {
|
|
9107
|
+
base: string;
|
|
9108
|
+
quote: string;
|
|
9109
|
+
};
|
|
9110
|
+
quote_asset: {
|
|
9111
|
+
chain: "Ethereum";
|
|
9112
|
+
asset: "USDC";
|
|
9113
|
+
};
|
|
9114
|
+
} | null>;
|
|
9115
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
7138
9116
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
7139
9117
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
7140
9118
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -7176,18 +9154,64 @@ declare const rpcResult: {
|
|
|
7176
9154
|
}, {
|
|
7177
9155
|
base: string;
|
|
7178
9156
|
quote: string;
|
|
7179
|
-
}>;
|
|
7180
|
-
quote_asset: z.ZodObject<{
|
|
7181
|
-
chain: z.ZodLiteral<"Ethereum">;
|
|
7182
|
-
asset: z.ZodLiteral<"USDC">;
|
|
7183
|
-
}, "strip", z.ZodTypeAny, {
|
|
7184
|
-
chain: "Ethereum";
|
|
7185
|
-
asset: "USDC";
|
|
7186
|
-
}, {
|
|
9157
|
+
}>;
|
|
9158
|
+
quote_asset: z.ZodObject<{
|
|
9159
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
9160
|
+
asset: z.ZodLiteral<"USDC">;
|
|
9161
|
+
}, "strip", z.ZodTypeAny, {
|
|
9162
|
+
chain: "Ethereum";
|
|
9163
|
+
asset: "USDC";
|
|
9164
|
+
}, {
|
|
9165
|
+
chain: "Ethereum";
|
|
9166
|
+
asset: "USDC";
|
|
9167
|
+
}>;
|
|
9168
|
+
}, "strip", z.ZodTypeAny, {
|
|
9169
|
+
limit_order_fee_hundredth_pips: number;
|
|
9170
|
+
range_order_fee_hundredth_pips: number;
|
|
9171
|
+
range_order_total_fees_earned: {
|
|
9172
|
+
base: bigint;
|
|
9173
|
+
quote: bigint;
|
|
9174
|
+
};
|
|
9175
|
+
limit_order_total_fees_earned: {
|
|
9176
|
+
base: bigint;
|
|
9177
|
+
quote: bigint;
|
|
9178
|
+
};
|
|
9179
|
+
range_total_swap_inputs: {
|
|
9180
|
+
base: bigint;
|
|
9181
|
+
quote: bigint;
|
|
9182
|
+
};
|
|
9183
|
+
limit_total_swap_inputs: {
|
|
9184
|
+
base: bigint;
|
|
9185
|
+
quote: bigint;
|
|
9186
|
+
};
|
|
9187
|
+
quote_asset: {
|
|
9188
|
+
chain: "Ethereum";
|
|
9189
|
+
asset: "USDC";
|
|
9190
|
+
};
|
|
9191
|
+
}, {
|
|
9192
|
+
limit_order_fee_hundredth_pips: number;
|
|
9193
|
+
range_order_fee_hundredth_pips: number;
|
|
9194
|
+
range_order_total_fees_earned: {
|
|
9195
|
+
base: string;
|
|
9196
|
+
quote: string;
|
|
9197
|
+
};
|
|
9198
|
+
limit_order_total_fees_earned: {
|
|
9199
|
+
base: string;
|
|
9200
|
+
quote: string;
|
|
9201
|
+
};
|
|
9202
|
+
range_total_swap_inputs: {
|
|
9203
|
+
base: string;
|
|
9204
|
+
quote: string;
|
|
9205
|
+
};
|
|
9206
|
+
limit_total_swap_inputs: {
|
|
9207
|
+
base: string;
|
|
9208
|
+
quote: string;
|
|
9209
|
+
};
|
|
9210
|
+
quote_asset: {
|
|
7187
9211
|
chain: "Ethereum";
|
|
7188
9212
|
asset: "USDC";
|
|
7189
|
-
}
|
|
7190
|
-
}
|
|
9213
|
+
};
|
|
9214
|
+
}>>, {
|
|
7191
9215
|
limit_order_fee_hundredth_pips: number;
|
|
7192
9216
|
range_order_fee_hundredth_pips: number;
|
|
7193
9217
|
range_order_total_fees_earned: {
|
|
@@ -7210,6 +9234,29 @@ declare const rpcResult: {
|
|
|
7210
9234
|
chain: "Ethereum";
|
|
7211
9235
|
asset: "USDC";
|
|
7212
9236
|
};
|
|
9237
|
+
} | {
|
|
9238
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9239
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9240
|
+
readonly range_order_total_fees_earned: {
|
|
9241
|
+
readonly base: "0x0";
|
|
9242
|
+
readonly quote: "0x0";
|
|
9243
|
+
};
|
|
9244
|
+
readonly limit_order_total_fees_earned: {
|
|
9245
|
+
readonly base: "0x0";
|
|
9246
|
+
readonly quote: "0x0";
|
|
9247
|
+
};
|
|
9248
|
+
readonly range_total_swap_inputs: {
|
|
9249
|
+
readonly base: "0x0";
|
|
9250
|
+
readonly quote: "0x0";
|
|
9251
|
+
};
|
|
9252
|
+
readonly limit_total_swap_inputs: {
|
|
9253
|
+
readonly base: "0x0";
|
|
9254
|
+
readonly quote: "0x0";
|
|
9255
|
+
};
|
|
9256
|
+
readonly quote_asset: {
|
|
9257
|
+
readonly chain: "Ethereum";
|
|
9258
|
+
readonly asset: "USDC";
|
|
9259
|
+
};
|
|
7213
9260
|
}, {
|
|
7214
9261
|
limit_order_fee_hundredth_pips: number;
|
|
7215
9262
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7233,7 +9280,7 @@ declare const rpcResult: {
|
|
|
7233
9280
|
chain: "Ethereum";
|
|
7234
9281
|
asset: "USDC";
|
|
7235
9282
|
};
|
|
7236
|
-
}>;
|
|
9283
|
+
} | null>;
|
|
7237
9284
|
}, "strip", z.ZodTypeAny, {
|
|
7238
9285
|
ETH: {
|
|
7239
9286
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7258,6 +9305,29 @@ declare const rpcResult: {
|
|
|
7258
9305
|
chain: "Ethereum";
|
|
7259
9306
|
asset: "USDC";
|
|
7260
9307
|
};
|
|
9308
|
+
} | {
|
|
9309
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9310
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9311
|
+
readonly range_order_total_fees_earned: {
|
|
9312
|
+
readonly base: "0x0";
|
|
9313
|
+
readonly quote: "0x0";
|
|
9314
|
+
};
|
|
9315
|
+
readonly limit_order_total_fees_earned: {
|
|
9316
|
+
readonly base: "0x0";
|
|
9317
|
+
readonly quote: "0x0";
|
|
9318
|
+
};
|
|
9319
|
+
readonly range_total_swap_inputs: {
|
|
9320
|
+
readonly base: "0x0";
|
|
9321
|
+
readonly quote: "0x0";
|
|
9322
|
+
};
|
|
9323
|
+
readonly limit_total_swap_inputs: {
|
|
9324
|
+
readonly base: "0x0";
|
|
9325
|
+
readonly quote: "0x0";
|
|
9326
|
+
};
|
|
9327
|
+
readonly quote_asset: {
|
|
9328
|
+
readonly chain: "Ethereum";
|
|
9329
|
+
readonly asset: "USDC";
|
|
9330
|
+
};
|
|
7261
9331
|
};
|
|
7262
9332
|
USDC: {
|
|
7263
9333
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7282,6 +9352,29 @@ declare const rpcResult: {
|
|
|
7282
9352
|
chain: "Ethereum";
|
|
7283
9353
|
asset: "USDC";
|
|
7284
9354
|
};
|
|
9355
|
+
} | {
|
|
9356
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9357
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9358
|
+
readonly range_order_total_fees_earned: {
|
|
9359
|
+
readonly base: "0x0";
|
|
9360
|
+
readonly quote: "0x0";
|
|
9361
|
+
};
|
|
9362
|
+
readonly limit_order_total_fees_earned: {
|
|
9363
|
+
readonly base: "0x0";
|
|
9364
|
+
readonly quote: "0x0";
|
|
9365
|
+
};
|
|
9366
|
+
readonly range_total_swap_inputs: {
|
|
9367
|
+
readonly base: "0x0";
|
|
9368
|
+
readonly quote: "0x0";
|
|
9369
|
+
};
|
|
9370
|
+
readonly limit_total_swap_inputs: {
|
|
9371
|
+
readonly base: "0x0";
|
|
9372
|
+
readonly quote: "0x0";
|
|
9373
|
+
};
|
|
9374
|
+
readonly quote_asset: {
|
|
9375
|
+
readonly chain: "Ethereum";
|
|
9376
|
+
readonly asset: "USDC";
|
|
9377
|
+
};
|
|
7285
9378
|
};
|
|
7286
9379
|
}, {
|
|
7287
9380
|
ETH: {
|
|
@@ -7307,7 +9400,7 @@ declare const rpcResult: {
|
|
|
7307
9400
|
chain: "Ethereum";
|
|
7308
9401
|
asset: "USDC";
|
|
7309
9402
|
};
|
|
7310
|
-
};
|
|
9403
|
+
} | null;
|
|
7311
9404
|
USDC: {
|
|
7312
9405
|
limit_order_fee_hundredth_pips: number;
|
|
7313
9406
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7331,10 +9424,10 @@ declare const rpcResult: {
|
|
|
7331
9424
|
chain: "Ethereum";
|
|
7332
9425
|
asset: "USDC";
|
|
7333
9426
|
};
|
|
7334
|
-
};
|
|
9427
|
+
} | null;
|
|
7335
9428
|
}>;
|
|
7336
9429
|
Solana: z.ZodDefault<z.ZodObject<{
|
|
7337
|
-
SOL: z.ZodDefault<z.ZodObject<{
|
|
9430
|
+
SOL: z.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
7338
9431
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
7339
9432
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
7340
9433
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -7433,8 +9526,77 @@ declare const rpcResult: {
|
|
|
7433
9526
|
chain: "Ethereum";
|
|
7434
9527
|
asset: "USDC";
|
|
7435
9528
|
};
|
|
7436
|
-
}
|
|
7437
|
-
|
|
9529
|
+
}>>, {
|
|
9530
|
+
limit_order_fee_hundredth_pips: number;
|
|
9531
|
+
range_order_fee_hundredth_pips: number;
|
|
9532
|
+
range_order_total_fees_earned: {
|
|
9533
|
+
base: bigint;
|
|
9534
|
+
quote: bigint;
|
|
9535
|
+
};
|
|
9536
|
+
limit_order_total_fees_earned: {
|
|
9537
|
+
base: bigint;
|
|
9538
|
+
quote: bigint;
|
|
9539
|
+
};
|
|
9540
|
+
range_total_swap_inputs: {
|
|
9541
|
+
base: bigint;
|
|
9542
|
+
quote: bigint;
|
|
9543
|
+
};
|
|
9544
|
+
limit_total_swap_inputs: {
|
|
9545
|
+
base: bigint;
|
|
9546
|
+
quote: bigint;
|
|
9547
|
+
};
|
|
9548
|
+
quote_asset: {
|
|
9549
|
+
chain: "Ethereum";
|
|
9550
|
+
asset: "USDC";
|
|
9551
|
+
};
|
|
9552
|
+
} | {
|
|
9553
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9554
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9555
|
+
readonly range_order_total_fees_earned: {
|
|
9556
|
+
readonly base: "0x0";
|
|
9557
|
+
readonly quote: "0x0";
|
|
9558
|
+
};
|
|
9559
|
+
readonly limit_order_total_fees_earned: {
|
|
9560
|
+
readonly base: "0x0";
|
|
9561
|
+
readonly quote: "0x0";
|
|
9562
|
+
};
|
|
9563
|
+
readonly range_total_swap_inputs: {
|
|
9564
|
+
readonly base: "0x0";
|
|
9565
|
+
readonly quote: "0x0";
|
|
9566
|
+
};
|
|
9567
|
+
readonly limit_total_swap_inputs: {
|
|
9568
|
+
readonly base: "0x0";
|
|
9569
|
+
readonly quote: "0x0";
|
|
9570
|
+
};
|
|
9571
|
+
readonly quote_asset: {
|
|
9572
|
+
readonly chain: "Ethereum";
|
|
9573
|
+
readonly asset: "USDC";
|
|
9574
|
+
};
|
|
9575
|
+
}, {
|
|
9576
|
+
limit_order_fee_hundredth_pips: number;
|
|
9577
|
+
range_order_fee_hundredth_pips: number;
|
|
9578
|
+
range_order_total_fees_earned: {
|
|
9579
|
+
base: string;
|
|
9580
|
+
quote: string;
|
|
9581
|
+
};
|
|
9582
|
+
limit_order_total_fees_earned: {
|
|
9583
|
+
base: string;
|
|
9584
|
+
quote: string;
|
|
9585
|
+
};
|
|
9586
|
+
range_total_swap_inputs: {
|
|
9587
|
+
base: string;
|
|
9588
|
+
quote: string;
|
|
9589
|
+
};
|
|
9590
|
+
limit_total_swap_inputs: {
|
|
9591
|
+
base: string;
|
|
9592
|
+
quote: string;
|
|
9593
|
+
};
|
|
9594
|
+
quote_asset: {
|
|
9595
|
+
chain: "Ethereum";
|
|
9596
|
+
asset: "USDC";
|
|
9597
|
+
};
|
|
9598
|
+
} | null>>;
|
|
9599
|
+
USDC: z.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
7438
9600
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
7439
9601
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
7440
9602
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -7533,7 +9695,76 @@ declare const rpcResult: {
|
|
|
7533
9695
|
chain: "Ethereum";
|
|
7534
9696
|
asset: "USDC";
|
|
7535
9697
|
};
|
|
7536
|
-
}
|
|
9698
|
+
}>>, {
|
|
9699
|
+
limit_order_fee_hundredth_pips: number;
|
|
9700
|
+
range_order_fee_hundredth_pips: number;
|
|
9701
|
+
range_order_total_fees_earned: {
|
|
9702
|
+
base: bigint;
|
|
9703
|
+
quote: bigint;
|
|
9704
|
+
};
|
|
9705
|
+
limit_order_total_fees_earned: {
|
|
9706
|
+
base: bigint;
|
|
9707
|
+
quote: bigint;
|
|
9708
|
+
};
|
|
9709
|
+
range_total_swap_inputs: {
|
|
9710
|
+
base: bigint;
|
|
9711
|
+
quote: bigint;
|
|
9712
|
+
};
|
|
9713
|
+
limit_total_swap_inputs: {
|
|
9714
|
+
base: bigint;
|
|
9715
|
+
quote: bigint;
|
|
9716
|
+
};
|
|
9717
|
+
quote_asset: {
|
|
9718
|
+
chain: "Ethereum";
|
|
9719
|
+
asset: "USDC";
|
|
9720
|
+
};
|
|
9721
|
+
} | {
|
|
9722
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9723
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9724
|
+
readonly range_order_total_fees_earned: {
|
|
9725
|
+
readonly base: "0x0";
|
|
9726
|
+
readonly quote: "0x0";
|
|
9727
|
+
};
|
|
9728
|
+
readonly limit_order_total_fees_earned: {
|
|
9729
|
+
readonly base: "0x0";
|
|
9730
|
+
readonly quote: "0x0";
|
|
9731
|
+
};
|
|
9732
|
+
readonly range_total_swap_inputs: {
|
|
9733
|
+
readonly base: "0x0";
|
|
9734
|
+
readonly quote: "0x0";
|
|
9735
|
+
};
|
|
9736
|
+
readonly limit_total_swap_inputs: {
|
|
9737
|
+
readonly base: "0x0";
|
|
9738
|
+
readonly quote: "0x0";
|
|
9739
|
+
};
|
|
9740
|
+
readonly quote_asset: {
|
|
9741
|
+
readonly chain: "Ethereum";
|
|
9742
|
+
readonly asset: "USDC";
|
|
9743
|
+
};
|
|
9744
|
+
}, {
|
|
9745
|
+
limit_order_fee_hundredth_pips: number;
|
|
9746
|
+
range_order_fee_hundredth_pips: number;
|
|
9747
|
+
range_order_total_fees_earned: {
|
|
9748
|
+
base: string;
|
|
9749
|
+
quote: string;
|
|
9750
|
+
};
|
|
9751
|
+
limit_order_total_fees_earned: {
|
|
9752
|
+
base: string;
|
|
9753
|
+
quote: string;
|
|
9754
|
+
};
|
|
9755
|
+
range_total_swap_inputs: {
|
|
9756
|
+
base: string;
|
|
9757
|
+
quote: string;
|
|
9758
|
+
};
|
|
9759
|
+
limit_total_swap_inputs: {
|
|
9760
|
+
base: string;
|
|
9761
|
+
quote: string;
|
|
9762
|
+
};
|
|
9763
|
+
quote_asset: {
|
|
9764
|
+
chain: "Ethereum";
|
|
9765
|
+
asset: "USDC";
|
|
9766
|
+
};
|
|
9767
|
+
} | null>>;
|
|
7537
9768
|
}, "strip", z.ZodTypeAny, {
|
|
7538
9769
|
USDC: {
|
|
7539
9770
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7558,6 +9789,29 @@ declare const rpcResult: {
|
|
|
7558
9789
|
chain: "Ethereum";
|
|
7559
9790
|
asset: "USDC";
|
|
7560
9791
|
};
|
|
9792
|
+
} | {
|
|
9793
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9794
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9795
|
+
readonly range_order_total_fees_earned: {
|
|
9796
|
+
readonly base: "0x0";
|
|
9797
|
+
readonly quote: "0x0";
|
|
9798
|
+
};
|
|
9799
|
+
readonly limit_order_total_fees_earned: {
|
|
9800
|
+
readonly base: "0x0";
|
|
9801
|
+
readonly quote: "0x0";
|
|
9802
|
+
};
|
|
9803
|
+
readonly range_total_swap_inputs: {
|
|
9804
|
+
readonly base: "0x0";
|
|
9805
|
+
readonly quote: "0x0";
|
|
9806
|
+
};
|
|
9807
|
+
readonly limit_total_swap_inputs: {
|
|
9808
|
+
readonly base: "0x0";
|
|
9809
|
+
readonly quote: "0x0";
|
|
9810
|
+
};
|
|
9811
|
+
readonly quote_asset: {
|
|
9812
|
+
readonly chain: "Ethereum";
|
|
9813
|
+
readonly asset: "USDC";
|
|
9814
|
+
};
|
|
7561
9815
|
};
|
|
7562
9816
|
SOL: {
|
|
7563
9817
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7582,6 +9836,29 @@ declare const rpcResult: {
|
|
|
7582
9836
|
chain: "Ethereum";
|
|
7583
9837
|
asset: "USDC";
|
|
7584
9838
|
};
|
|
9839
|
+
} | {
|
|
9840
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9841
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9842
|
+
readonly range_order_total_fees_earned: {
|
|
9843
|
+
readonly base: "0x0";
|
|
9844
|
+
readonly quote: "0x0";
|
|
9845
|
+
};
|
|
9846
|
+
readonly limit_order_total_fees_earned: {
|
|
9847
|
+
readonly base: "0x0";
|
|
9848
|
+
readonly quote: "0x0";
|
|
9849
|
+
};
|
|
9850
|
+
readonly range_total_swap_inputs: {
|
|
9851
|
+
readonly base: "0x0";
|
|
9852
|
+
readonly quote: "0x0";
|
|
9853
|
+
};
|
|
9854
|
+
readonly limit_total_swap_inputs: {
|
|
9855
|
+
readonly base: "0x0";
|
|
9856
|
+
readonly quote: "0x0";
|
|
9857
|
+
};
|
|
9858
|
+
readonly quote_asset: {
|
|
9859
|
+
readonly chain: "Ethereum";
|
|
9860
|
+
readonly asset: "USDC";
|
|
9861
|
+
};
|
|
7585
9862
|
};
|
|
7586
9863
|
}, {
|
|
7587
9864
|
USDC?: {
|
|
@@ -7607,7 +9884,7 @@ declare const rpcResult: {
|
|
|
7607
9884
|
chain: "Ethereum";
|
|
7608
9885
|
asset: "USDC";
|
|
7609
9886
|
};
|
|
7610
|
-
} | undefined;
|
|
9887
|
+
} | null | undefined;
|
|
7611
9888
|
SOL?: {
|
|
7612
9889
|
limit_order_fee_hundredth_pips: number;
|
|
7613
9890
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7631,7 +9908,7 @@ declare const rpcResult: {
|
|
|
7631
9908
|
chain: "Ethereum";
|
|
7632
9909
|
asset: "USDC";
|
|
7633
9910
|
};
|
|
7634
|
-
} | undefined;
|
|
9911
|
+
} | null | undefined;
|
|
7635
9912
|
}>>;
|
|
7636
9913
|
}, "strip", z.ZodTypeAny, {
|
|
7637
9914
|
Bitcoin: {
|
|
@@ -7658,6 +9935,29 @@ declare const rpcResult: {
|
|
|
7658
9935
|
chain: "Ethereum";
|
|
7659
9936
|
asset: "USDC";
|
|
7660
9937
|
};
|
|
9938
|
+
} | {
|
|
9939
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9940
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9941
|
+
readonly range_order_total_fees_earned: {
|
|
9942
|
+
readonly base: "0x0";
|
|
9943
|
+
readonly quote: "0x0";
|
|
9944
|
+
};
|
|
9945
|
+
readonly limit_order_total_fees_earned: {
|
|
9946
|
+
readonly base: "0x0";
|
|
9947
|
+
readonly quote: "0x0";
|
|
9948
|
+
};
|
|
9949
|
+
readonly range_total_swap_inputs: {
|
|
9950
|
+
readonly base: "0x0";
|
|
9951
|
+
readonly quote: "0x0";
|
|
9952
|
+
};
|
|
9953
|
+
readonly limit_total_swap_inputs: {
|
|
9954
|
+
readonly base: "0x0";
|
|
9955
|
+
readonly quote: "0x0";
|
|
9956
|
+
};
|
|
9957
|
+
readonly quote_asset: {
|
|
9958
|
+
readonly chain: "Ethereum";
|
|
9959
|
+
readonly asset: "USDC";
|
|
9960
|
+
};
|
|
7661
9961
|
};
|
|
7662
9962
|
};
|
|
7663
9963
|
Ethereum: {
|
|
@@ -7684,6 +9984,29 @@ declare const rpcResult: {
|
|
|
7684
9984
|
chain: "Ethereum";
|
|
7685
9985
|
asset: "USDC";
|
|
7686
9986
|
};
|
|
9987
|
+
} | {
|
|
9988
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
9989
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
9990
|
+
readonly range_order_total_fees_earned: {
|
|
9991
|
+
readonly base: "0x0";
|
|
9992
|
+
readonly quote: "0x0";
|
|
9993
|
+
};
|
|
9994
|
+
readonly limit_order_total_fees_earned: {
|
|
9995
|
+
readonly base: "0x0";
|
|
9996
|
+
readonly quote: "0x0";
|
|
9997
|
+
};
|
|
9998
|
+
readonly range_total_swap_inputs: {
|
|
9999
|
+
readonly base: "0x0";
|
|
10000
|
+
readonly quote: "0x0";
|
|
10001
|
+
};
|
|
10002
|
+
readonly limit_total_swap_inputs: {
|
|
10003
|
+
readonly base: "0x0";
|
|
10004
|
+
readonly quote: "0x0";
|
|
10005
|
+
};
|
|
10006
|
+
readonly quote_asset: {
|
|
10007
|
+
readonly chain: "Ethereum";
|
|
10008
|
+
readonly asset: "USDC";
|
|
10009
|
+
};
|
|
7687
10010
|
};
|
|
7688
10011
|
FLIP: {
|
|
7689
10012
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7708,6 +10031,29 @@ declare const rpcResult: {
|
|
|
7708
10031
|
chain: "Ethereum";
|
|
7709
10032
|
asset: "USDC";
|
|
7710
10033
|
};
|
|
10034
|
+
} | {
|
|
10035
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10036
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10037
|
+
readonly range_order_total_fees_earned: {
|
|
10038
|
+
readonly base: "0x0";
|
|
10039
|
+
readonly quote: "0x0";
|
|
10040
|
+
};
|
|
10041
|
+
readonly limit_order_total_fees_earned: {
|
|
10042
|
+
readonly base: "0x0";
|
|
10043
|
+
readonly quote: "0x0";
|
|
10044
|
+
};
|
|
10045
|
+
readonly range_total_swap_inputs: {
|
|
10046
|
+
readonly base: "0x0";
|
|
10047
|
+
readonly quote: "0x0";
|
|
10048
|
+
};
|
|
10049
|
+
readonly limit_total_swap_inputs: {
|
|
10050
|
+
readonly base: "0x0";
|
|
10051
|
+
readonly quote: "0x0";
|
|
10052
|
+
};
|
|
10053
|
+
readonly quote_asset: {
|
|
10054
|
+
readonly chain: "Ethereum";
|
|
10055
|
+
readonly asset: "USDC";
|
|
10056
|
+
};
|
|
7711
10057
|
};
|
|
7712
10058
|
USDT: {
|
|
7713
10059
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7732,6 +10078,29 @@ declare const rpcResult: {
|
|
|
7732
10078
|
chain: "Ethereum";
|
|
7733
10079
|
asset: "USDC";
|
|
7734
10080
|
};
|
|
10081
|
+
} | {
|
|
10082
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10083
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10084
|
+
readonly range_order_total_fees_earned: {
|
|
10085
|
+
readonly base: "0x0";
|
|
10086
|
+
readonly quote: "0x0";
|
|
10087
|
+
};
|
|
10088
|
+
readonly limit_order_total_fees_earned: {
|
|
10089
|
+
readonly base: "0x0";
|
|
10090
|
+
readonly quote: "0x0";
|
|
10091
|
+
};
|
|
10092
|
+
readonly range_total_swap_inputs: {
|
|
10093
|
+
readonly base: "0x0";
|
|
10094
|
+
readonly quote: "0x0";
|
|
10095
|
+
};
|
|
10096
|
+
readonly limit_total_swap_inputs: {
|
|
10097
|
+
readonly base: "0x0";
|
|
10098
|
+
readonly quote: "0x0";
|
|
10099
|
+
};
|
|
10100
|
+
readonly quote_asset: {
|
|
10101
|
+
readonly chain: "Ethereum";
|
|
10102
|
+
readonly asset: "USDC";
|
|
10103
|
+
};
|
|
7735
10104
|
};
|
|
7736
10105
|
};
|
|
7737
10106
|
Polkadot: {
|
|
@@ -7758,6 +10127,29 @@ declare const rpcResult: {
|
|
|
7758
10127
|
chain: "Ethereum";
|
|
7759
10128
|
asset: "USDC";
|
|
7760
10129
|
};
|
|
10130
|
+
} | {
|
|
10131
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10132
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10133
|
+
readonly range_order_total_fees_earned: {
|
|
10134
|
+
readonly base: "0x0";
|
|
10135
|
+
readonly quote: "0x0";
|
|
10136
|
+
};
|
|
10137
|
+
readonly limit_order_total_fees_earned: {
|
|
10138
|
+
readonly base: "0x0";
|
|
10139
|
+
readonly quote: "0x0";
|
|
10140
|
+
};
|
|
10141
|
+
readonly range_total_swap_inputs: {
|
|
10142
|
+
readonly base: "0x0";
|
|
10143
|
+
readonly quote: "0x0";
|
|
10144
|
+
};
|
|
10145
|
+
readonly limit_total_swap_inputs: {
|
|
10146
|
+
readonly base: "0x0";
|
|
10147
|
+
readonly quote: "0x0";
|
|
10148
|
+
};
|
|
10149
|
+
readonly quote_asset: {
|
|
10150
|
+
readonly chain: "Ethereum";
|
|
10151
|
+
readonly asset: "USDC";
|
|
10152
|
+
};
|
|
7761
10153
|
};
|
|
7762
10154
|
};
|
|
7763
10155
|
Arbitrum: {
|
|
@@ -7784,6 +10176,29 @@ declare const rpcResult: {
|
|
|
7784
10176
|
chain: "Ethereum";
|
|
7785
10177
|
asset: "USDC";
|
|
7786
10178
|
};
|
|
10179
|
+
} | {
|
|
10180
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10181
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10182
|
+
readonly range_order_total_fees_earned: {
|
|
10183
|
+
readonly base: "0x0";
|
|
10184
|
+
readonly quote: "0x0";
|
|
10185
|
+
};
|
|
10186
|
+
readonly limit_order_total_fees_earned: {
|
|
10187
|
+
readonly base: "0x0";
|
|
10188
|
+
readonly quote: "0x0";
|
|
10189
|
+
};
|
|
10190
|
+
readonly range_total_swap_inputs: {
|
|
10191
|
+
readonly base: "0x0";
|
|
10192
|
+
readonly quote: "0x0";
|
|
10193
|
+
};
|
|
10194
|
+
readonly limit_total_swap_inputs: {
|
|
10195
|
+
readonly base: "0x0";
|
|
10196
|
+
readonly quote: "0x0";
|
|
10197
|
+
};
|
|
10198
|
+
readonly quote_asset: {
|
|
10199
|
+
readonly chain: "Ethereum";
|
|
10200
|
+
readonly asset: "USDC";
|
|
10201
|
+
};
|
|
7787
10202
|
};
|
|
7788
10203
|
USDC: {
|
|
7789
10204
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7808,6 +10223,29 @@ declare const rpcResult: {
|
|
|
7808
10223
|
chain: "Ethereum";
|
|
7809
10224
|
asset: "USDC";
|
|
7810
10225
|
};
|
|
10226
|
+
} | {
|
|
10227
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10228
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10229
|
+
readonly range_order_total_fees_earned: {
|
|
10230
|
+
readonly base: "0x0";
|
|
10231
|
+
readonly quote: "0x0";
|
|
10232
|
+
};
|
|
10233
|
+
readonly limit_order_total_fees_earned: {
|
|
10234
|
+
readonly base: "0x0";
|
|
10235
|
+
readonly quote: "0x0";
|
|
10236
|
+
};
|
|
10237
|
+
readonly range_total_swap_inputs: {
|
|
10238
|
+
readonly base: "0x0";
|
|
10239
|
+
readonly quote: "0x0";
|
|
10240
|
+
};
|
|
10241
|
+
readonly limit_total_swap_inputs: {
|
|
10242
|
+
readonly base: "0x0";
|
|
10243
|
+
readonly quote: "0x0";
|
|
10244
|
+
};
|
|
10245
|
+
readonly quote_asset: {
|
|
10246
|
+
readonly chain: "Ethereum";
|
|
10247
|
+
readonly asset: "USDC";
|
|
10248
|
+
};
|
|
7811
10249
|
};
|
|
7812
10250
|
};
|
|
7813
10251
|
Solana: {
|
|
@@ -7834,6 +10272,29 @@ declare const rpcResult: {
|
|
|
7834
10272
|
chain: "Ethereum";
|
|
7835
10273
|
asset: "USDC";
|
|
7836
10274
|
};
|
|
10275
|
+
} | {
|
|
10276
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10277
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10278
|
+
readonly range_order_total_fees_earned: {
|
|
10279
|
+
readonly base: "0x0";
|
|
10280
|
+
readonly quote: "0x0";
|
|
10281
|
+
};
|
|
10282
|
+
readonly limit_order_total_fees_earned: {
|
|
10283
|
+
readonly base: "0x0";
|
|
10284
|
+
readonly quote: "0x0";
|
|
10285
|
+
};
|
|
10286
|
+
readonly range_total_swap_inputs: {
|
|
10287
|
+
readonly base: "0x0";
|
|
10288
|
+
readonly quote: "0x0";
|
|
10289
|
+
};
|
|
10290
|
+
readonly limit_total_swap_inputs: {
|
|
10291
|
+
readonly base: "0x0";
|
|
10292
|
+
readonly quote: "0x0";
|
|
10293
|
+
};
|
|
10294
|
+
readonly quote_asset: {
|
|
10295
|
+
readonly chain: "Ethereum";
|
|
10296
|
+
readonly asset: "USDC";
|
|
10297
|
+
};
|
|
7837
10298
|
};
|
|
7838
10299
|
SOL: {
|
|
7839
10300
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -7858,6 +10319,29 @@ declare const rpcResult: {
|
|
|
7858
10319
|
chain: "Ethereum";
|
|
7859
10320
|
asset: "USDC";
|
|
7860
10321
|
};
|
|
10322
|
+
} | {
|
|
10323
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10324
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10325
|
+
readonly range_order_total_fees_earned: {
|
|
10326
|
+
readonly base: "0x0";
|
|
10327
|
+
readonly quote: "0x0";
|
|
10328
|
+
};
|
|
10329
|
+
readonly limit_order_total_fees_earned: {
|
|
10330
|
+
readonly base: "0x0";
|
|
10331
|
+
readonly quote: "0x0";
|
|
10332
|
+
};
|
|
10333
|
+
readonly range_total_swap_inputs: {
|
|
10334
|
+
readonly base: "0x0";
|
|
10335
|
+
readonly quote: "0x0";
|
|
10336
|
+
};
|
|
10337
|
+
readonly limit_total_swap_inputs: {
|
|
10338
|
+
readonly base: "0x0";
|
|
10339
|
+
readonly quote: "0x0";
|
|
10340
|
+
};
|
|
10341
|
+
readonly quote_asset: {
|
|
10342
|
+
readonly chain: "Ethereum";
|
|
10343
|
+
readonly asset: "USDC";
|
|
10344
|
+
};
|
|
7861
10345
|
};
|
|
7862
10346
|
};
|
|
7863
10347
|
}, {
|
|
@@ -7885,7 +10369,7 @@ declare const rpcResult: {
|
|
|
7885
10369
|
chain: "Ethereum";
|
|
7886
10370
|
asset: "USDC";
|
|
7887
10371
|
};
|
|
7888
|
-
};
|
|
10372
|
+
} | null;
|
|
7889
10373
|
};
|
|
7890
10374
|
Ethereum: {
|
|
7891
10375
|
ETH: {
|
|
@@ -7911,7 +10395,7 @@ declare const rpcResult: {
|
|
|
7911
10395
|
chain: "Ethereum";
|
|
7912
10396
|
asset: "USDC";
|
|
7913
10397
|
};
|
|
7914
|
-
};
|
|
10398
|
+
} | null;
|
|
7915
10399
|
FLIP: {
|
|
7916
10400
|
limit_order_fee_hundredth_pips: number;
|
|
7917
10401
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7935,7 +10419,7 @@ declare const rpcResult: {
|
|
|
7935
10419
|
chain: "Ethereum";
|
|
7936
10420
|
asset: "USDC";
|
|
7937
10421
|
};
|
|
7938
|
-
};
|
|
10422
|
+
} | null;
|
|
7939
10423
|
USDT: {
|
|
7940
10424
|
limit_order_fee_hundredth_pips: number;
|
|
7941
10425
|
range_order_fee_hundredth_pips: number;
|
|
@@ -7959,7 +10443,7 @@ declare const rpcResult: {
|
|
|
7959
10443
|
chain: "Ethereum";
|
|
7960
10444
|
asset: "USDC";
|
|
7961
10445
|
};
|
|
7962
|
-
};
|
|
10446
|
+
} | null;
|
|
7963
10447
|
};
|
|
7964
10448
|
Polkadot: {
|
|
7965
10449
|
DOT: {
|
|
@@ -7985,7 +10469,7 @@ declare const rpcResult: {
|
|
|
7985
10469
|
chain: "Ethereum";
|
|
7986
10470
|
asset: "USDC";
|
|
7987
10471
|
};
|
|
7988
|
-
};
|
|
10472
|
+
} | null;
|
|
7989
10473
|
};
|
|
7990
10474
|
Arbitrum: {
|
|
7991
10475
|
ETH: {
|
|
@@ -8011,7 +10495,7 @@ declare const rpcResult: {
|
|
|
8011
10495
|
chain: "Ethereum";
|
|
8012
10496
|
asset: "USDC";
|
|
8013
10497
|
};
|
|
8014
|
-
};
|
|
10498
|
+
} | null;
|
|
8015
10499
|
USDC: {
|
|
8016
10500
|
limit_order_fee_hundredth_pips: number;
|
|
8017
10501
|
range_order_fee_hundredth_pips: number;
|
|
@@ -8035,7 +10519,7 @@ declare const rpcResult: {
|
|
|
8035
10519
|
chain: "Ethereum";
|
|
8036
10520
|
asset: "USDC";
|
|
8037
10521
|
};
|
|
8038
|
-
};
|
|
10522
|
+
} | null;
|
|
8039
10523
|
};
|
|
8040
10524
|
Solana?: {
|
|
8041
10525
|
USDC?: {
|
|
@@ -8061,7 +10545,7 @@ declare const rpcResult: {
|
|
|
8061
10545
|
chain: "Ethereum";
|
|
8062
10546
|
asset: "USDC";
|
|
8063
10547
|
};
|
|
8064
|
-
} | undefined;
|
|
10548
|
+
} | null | undefined;
|
|
8065
10549
|
SOL?: {
|
|
8066
10550
|
limit_order_fee_hundredth_pips: number;
|
|
8067
10551
|
range_order_fee_hundredth_pips: number;
|
|
@@ -8085,7 +10569,7 @@ declare const rpcResult: {
|
|
|
8085
10569
|
chain: "Ethereum";
|
|
8086
10570
|
asset: "USDC";
|
|
8087
10571
|
};
|
|
8088
|
-
} | undefined;
|
|
10572
|
+
} | null | undefined;
|
|
8089
10573
|
} | undefined;
|
|
8090
10574
|
}>;
|
|
8091
10575
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8114,6 +10598,29 @@ declare const rpcResult: {
|
|
|
8114
10598
|
chain: "Ethereum";
|
|
8115
10599
|
asset: "USDC";
|
|
8116
10600
|
};
|
|
10601
|
+
} | {
|
|
10602
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10603
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10604
|
+
readonly range_order_total_fees_earned: {
|
|
10605
|
+
readonly base: "0x0";
|
|
10606
|
+
readonly quote: "0x0";
|
|
10607
|
+
};
|
|
10608
|
+
readonly limit_order_total_fees_earned: {
|
|
10609
|
+
readonly base: "0x0";
|
|
10610
|
+
readonly quote: "0x0";
|
|
10611
|
+
};
|
|
10612
|
+
readonly range_total_swap_inputs: {
|
|
10613
|
+
readonly base: "0x0";
|
|
10614
|
+
readonly quote: "0x0";
|
|
10615
|
+
};
|
|
10616
|
+
readonly limit_total_swap_inputs: {
|
|
10617
|
+
readonly base: "0x0";
|
|
10618
|
+
readonly quote: "0x0";
|
|
10619
|
+
};
|
|
10620
|
+
readonly quote_asset: {
|
|
10621
|
+
readonly chain: "Ethereum";
|
|
10622
|
+
readonly asset: "USDC";
|
|
10623
|
+
};
|
|
8117
10624
|
};
|
|
8118
10625
|
};
|
|
8119
10626
|
Ethereum: {
|
|
@@ -8140,6 +10647,29 @@ declare const rpcResult: {
|
|
|
8140
10647
|
chain: "Ethereum";
|
|
8141
10648
|
asset: "USDC";
|
|
8142
10649
|
};
|
|
10650
|
+
} | {
|
|
10651
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10652
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10653
|
+
readonly range_order_total_fees_earned: {
|
|
10654
|
+
readonly base: "0x0";
|
|
10655
|
+
readonly quote: "0x0";
|
|
10656
|
+
};
|
|
10657
|
+
readonly limit_order_total_fees_earned: {
|
|
10658
|
+
readonly base: "0x0";
|
|
10659
|
+
readonly quote: "0x0";
|
|
10660
|
+
};
|
|
10661
|
+
readonly range_total_swap_inputs: {
|
|
10662
|
+
readonly base: "0x0";
|
|
10663
|
+
readonly quote: "0x0";
|
|
10664
|
+
};
|
|
10665
|
+
readonly limit_total_swap_inputs: {
|
|
10666
|
+
readonly base: "0x0";
|
|
10667
|
+
readonly quote: "0x0";
|
|
10668
|
+
};
|
|
10669
|
+
readonly quote_asset: {
|
|
10670
|
+
readonly chain: "Ethereum";
|
|
10671
|
+
readonly asset: "USDC";
|
|
10672
|
+
};
|
|
8143
10673
|
};
|
|
8144
10674
|
FLIP: {
|
|
8145
10675
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -8164,6 +10694,29 @@ declare const rpcResult: {
|
|
|
8164
10694
|
chain: "Ethereum";
|
|
8165
10695
|
asset: "USDC";
|
|
8166
10696
|
};
|
|
10697
|
+
} | {
|
|
10698
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10699
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10700
|
+
readonly range_order_total_fees_earned: {
|
|
10701
|
+
readonly base: "0x0";
|
|
10702
|
+
readonly quote: "0x0";
|
|
10703
|
+
};
|
|
10704
|
+
readonly limit_order_total_fees_earned: {
|
|
10705
|
+
readonly base: "0x0";
|
|
10706
|
+
readonly quote: "0x0";
|
|
10707
|
+
};
|
|
10708
|
+
readonly range_total_swap_inputs: {
|
|
10709
|
+
readonly base: "0x0";
|
|
10710
|
+
readonly quote: "0x0";
|
|
10711
|
+
};
|
|
10712
|
+
readonly limit_total_swap_inputs: {
|
|
10713
|
+
readonly base: "0x0";
|
|
10714
|
+
readonly quote: "0x0";
|
|
10715
|
+
};
|
|
10716
|
+
readonly quote_asset: {
|
|
10717
|
+
readonly chain: "Ethereum";
|
|
10718
|
+
readonly asset: "USDC";
|
|
10719
|
+
};
|
|
8167
10720
|
};
|
|
8168
10721
|
USDT: {
|
|
8169
10722
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -8188,6 +10741,29 @@ declare const rpcResult: {
|
|
|
8188
10741
|
chain: "Ethereum";
|
|
8189
10742
|
asset: "USDC";
|
|
8190
10743
|
};
|
|
10744
|
+
} | {
|
|
10745
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10746
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10747
|
+
readonly range_order_total_fees_earned: {
|
|
10748
|
+
readonly base: "0x0";
|
|
10749
|
+
readonly quote: "0x0";
|
|
10750
|
+
};
|
|
10751
|
+
readonly limit_order_total_fees_earned: {
|
|
10752
|
+
readonly base: "0x0";
|
|
10753
|
+
readonly quote: "0x0";
|
|
10754
|
+
};
|
|
10755
|
+
readonly range_total_swap_inputs: {
|
|
10756
|
+
readonly base: "0x0";
|
|
10757
|
+
readonly quote: "0x0";
|
|
10758
|
+
};
|
|
10759
|
+
readonly limit_total_swap_inputs: {
|
|
10760
|
+
readonly base: "0x0";
|
|
10761
|
+
readonly quote: "0x0";
|
|
10762
|
+
};
|
|
10763
|
+
readonly quote_asset: {
|
|
10764
|
+
readonly chain: "Ethereum";
|
|
10765
|
+
readonly asset: "USDC";
|
|
10766
|
+
};
|
|
8191
10767
|
};
|
|
8192
10768
|
};
|
|
8193
10769
|
Polkadot: {
|
|
@@ -8214,6 +10790,29 @@ declare const rpcResult: {
|
|
|
8214
10790
|
chain: "Ethereum";
|
|
8215
10791
|
asset: "USDC";
|
|
8216
10792
|
};
|
|
10793
|
+
} | {
|
|
10794
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10795
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10796
|
+
readonly range_order_total_fees_earned: {
|
|
10797
|
+
readonly base: "0x0";
|
|
10798
|
+
readonly quote: "0x0";
|
|
10799
|
+
};
|
|
10800
|
+
readonly limit_order_total_fees_earned: {
|
|
10801
|
+
readonly base: "0x0";
|
|
10802
|
+
readonly quote: "0x0";
|
|
10803
|
+
};
|
|
10804
|
+
readonly range_total_swap_inputs: {
|
|
10805
|
+
readonly base: "0x0";
|
|
10806
|
+
readonly quote: "0x0";
|
|
10807
|
+
};
|
|
10808
|
+
readonly limit_total_swap_inputs: {
|
|
10809
|
+
readonly base: "0x0";
|
|
10810
|
+
readonly quote: "0x0";
|
|
10811
|
+
};
|
|
10812
|
+
readonly quote_asset: {
|
|
10813
|
+
readonly chain: "Ethereum";
|
|
10814
|
+
readonly asset: "USDC";
|
|
10815
|
+
};
|
|
8217
10816
|
};
|
|
8218
10817
|
};
|
|
8219
10818
|
Arbitrum: {
|
|
@@ -8240,6 +10839,29 @@ declare const rpcResult: {
|
|
|
8240
10839
|
chain: "Ethereum";
|
|
8241
10840
|
asset: "USDC";
|
|
8242
10841
|
};
|
|
10842
|
+
} | {
|
|
10843
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10844
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10845
|
+
readonly range_order_total_fees_earned: {
|
|
10846
|
+
readonly base: "0x0";
|
|
10847
|
+
readonly quote: "0x0";
|
|
10848
|
+
};
|
|
10849
|
+
readonly limit_order_total_fees_earned: {
|
|
10850
|
+
readonly base: "0x0";
|
|
10851
|
+
readonly quote: "0x0";
|
|
10852
|
+
};
|
|
10853
|
+
readonly range_total_swap_inputs: {
|
|
10854
|
+
readonly base: "0x0";
|
|
10855
|
+
readonly quote: "0x0";
|
|
10856
|
+
};
|
|
10857
|
+
readonly limit_total_swap_inputs: {
|
|
10858
|
+
readonly base: "0x0";
|
|
10859
|
+
readonly quote: "0x0";
|
|
10860
|
+
};
|
|
10861
|
+
readonly quote_asset: {
|
|
10862
|
+
readonly chain: "Ethereum";
|
|
10863
|
+
readonly asset: "USDC";
|
|
10864
|
+
};
|
|
8243
10865
|
};
|
|
8244
10866
|
USDC: {
|
|
8245
10867
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -8264,6 +10886,29 @@ declare const rpcResult: {
|
|
|
8264
10886
|
chain: "Ethereum";
|
|
8265
10887
|
asset: "USDC";
|
|
8266
10888
|
};
|
|
10889
|
+
} | {
|
|
10890
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10891
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10892
|
+
readonly range_order_total_fees_earned: {
|
|
10893
|
+
readonly base: "0x0";
|
|
10894
|
+
readonly quote: "0x0";
|
|
10895
|
+
};
|
|
10896
|
+
readonly limit_order_total_fees_earned: {
|
|
10897
|
+
readonly base: "0x0";
|
|
10898
|
+
readonly quote: "0x0";
|
|
10899
|
+
};
|
|
10900
|
+
readonly range_total_swap_inputs: {
|
|
10901
|
+
readonly base: "0x0";
|
|
10902
|
+
readonly quote: "0x0";
|
|
10903
|
+
};
|
|
10904
|
+
readonly limit_total_swap_inputs: {
|
|
10905
|
+
readonly base: "0x0";
|
|
10906
|
+
readonly quote: "0x0";
|
|
10907
|
+
};
|
|
10908
|
+
readonly quote_asset: {
|
|
10909
|
+
readonly chain: "Ethereum";
|
|
10910
|
+
readonly asset: "USDC";
|
|
10911
|
+
};
|
|
8267
10912
|
};
|
|
8268
10913
|
};
|
|
8269
10914
|
Solana: {
|
|
@@ -8290,6 +10935,29 @@ declare const rpcResult: {
|
|
|
8290
10935
|
chain: "Ethereum";
|
|
8291
10936
|
asset: "USDC";
|
|
8292
10937
|
};
|
|
10938
|
+
} | {
|
|
10939
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10940
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10941
|
+
readonly range_order_total_fees_earned: {
|
|
10942
|
+
readonly base: "0x0";
|
|
10943
|
+
readonly quote: "0x0";
|
|
10944
|
+
};
|
|
10945
|
+
readonly limit_order_total_fees_earned: {
|
|
10946
|
+
readonly base: "0x0";
|
|
10947
|
+
readonly quote: "0x0";
|
|
10948
|
+
};
|
|
10949
|
+
readonly range_total_swap_inputs: {
|
|
10950
|
+
readonly base: "0x0";
|
|
10951
|
+
readonly quote: "0x0";
|
|
10952
|
+
};
|
|
10953
|
+
readonly limit_total_swap_inputs: {
|
|
10954
|
+
readonly base: "0x0";
|
|
10955
|
+
readonly quote: "0x0";
|
|
10956
|
+
};
|
|
10957
|
+
readonly quote_asset: {
|
|
10958
|
+
readonly chain: "Ethereum";
|
|
10959
|
+
readonly asset: "USDC";
|
|
10960
|
+
};
|
|
8293
10961
|
};
|
|
8294
10962
|
SOL: {
|
|
8295
10963
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -8314,6 +10982,29 @@ declare const rpcResult: {
|
|
|
8314
10982
|
chain: "Ethereum";
|
|
8315
10983
|
asset: "USDC";
|
|
8316
10984
|
};
|
|
10985
|
+
} | {
|
|
10986
|
+
readonly limit_order_fee_hundredth_pips: 0;
|
|
10987
|
+
readonly range_order_fee_hundredth_pips: 0;
|
|
10988
|
+
readonly range_order_total_fees_earned: {
|
|
10989
|
+
readonly base: "0x0";
|
|
10990
|
+
readonly quote: "0x0";
|
|
10991
|
+
};
|
|
10992
|
+
readonly limit_order_total_fees_earned: {
|
|
10993
|
+
readonly base: "0x0";
|
|
10994
|
+
readonly quote: "0x0";
|
|
10995
|
+
};
|
|
10996
|
+
readonly range_total_swap_inputs: {
|
|
10997
|
+
readonly base: "0x0";
|
|
10998
|
+
readonly quote: "0x0";
|
|
10999
|
+
};
|
|
11000
|
+
readonly limit_total_swap_inputs: {
|
|
11001
|
+
readonly base: "0x0";
|
|
11002
|
+
readonly quote: "0x0";
|
|
11003
|
+
};
|
|
11004
|
+
readonly quote_asset: {
|
|
11005
|
+
readonly chain: "Ethereum";
|
|
11006
|
+
readonly asset: "USDC";
|
|
11007
|
+
};
|
|
8317
11008
|
};
|
|
8318
11009
|
};
|
|
8319
11010
|
};
|
|
@@ -8343,7 +11034,7 @@ declare const rpcResult: {
|
|
|
8343
11034
|
chain: "Ethereum";
|
|
8344
11035
|
asset: "USDC";
|
|
8345
11036
|
};
|
|
8346
|
-
};
|
|
11037
|
+
} | null;
|
|
8347
11038
|
};
|
|
8348
11039
|
Ethereum: {
|
|
8349
11040
|
ETH: {
|
|
@@ -8369,7 +11060,7 @@ declare const rpcResult: {
|
|
|
8369
11060
|
chain: "Ethereum";
|
|
8370
11061
|
asset: "USDC";
|
|
8371
11062
|
};
|
|
8372
|
-
};
|
|
11063
|
+
} | null;
|
|
8373
11064
|
FLIP: {
|
|
8374
11065
|
limit_order_fee_hundredth_pips: number;
|
|
8375
11066
|
range_order_fee_hundredth_pips: number;
|
|
@@ -8393,7 +11084,7 @@ declare const rpcResult: {
|
|
|
8393
11084
|
chain: "Ethereum";
|
|
8394
11085
|
asset: "USDC";
|
|
8395
11086
|
};
|
|
8396
|
-
};
|
|
11087
|
+
} | null;
|
|
8397
11088
|
USDT: {
|
|
8398
11089
|
limit_order_fee_hundredth_pips: number;
|
|
8399
11090
|
range_order_fee_hundredth_pips: number;
|
|
@@ -8417,7 +11108,7 @@ declare const rpcResult: {
|
|
|
8417
11108
|
chain: "Ethereum";
|
|
8418
11109
|
asset: "USDC";
|
|
8419
11110
|
};
|
|
8420
|
-
};
|
|
11111
|
+
} | null;
|
|
8421
11112
|
};
|
|
8422
11113
|
Polkadot: {
|
|
8423
11114
|
DOT: {
|
|
@@ -8443,7 +11134,7 @@ declare const rpcResult: {
|
|
|
8443
11134
|
chain: "Ethereum";
|
|
8444
11135
|
asset: "USDC";
|
|
8445
11136
|
};
|
|
8446
|
-
};
|
|
11137
|
+
} | null;
|
|
8447
11138
|
};
|
|
8448
11139
|
Arbitrum: {
|
|
8449
11140
|
ETH: {
|
|
@@ -8469,7 +11160,7 @@ declare const rpcResult: {
|
|
|
8469
11160
|
chain: "Ethereum";
|
|
8470
11161
|
asset: "USDC";
|
|
8471
11162
|
};
|
|
8472
|
-
};
|
|
11163
|
+
} | null;
|
|
8473
11164
|
USDC: {
|
|
8474
11165
|
limit_order_fee_hundredth_pips: number;
|
|
8475
11166
|
range_order_fee_hundredth_pips: number;
|
|
@@ -8493,7 +11184,7 @@ declare const rpcResult: {
|
|
|
8493
11184
|
chain: "Ethereum";
|
|
8494
11185
|
asset: "USDC";
|
|
8495
11186
|
};
|
|
8496
|
-
};
|
|
11187
|
+
} | null;
|
|
8497
11188
|
};
|
|
8498
11189
|
Solana?: {
|
|
8499
11190
|
USDC?: {
|
|
@@ -8519,7 +11210,7 @@ declare const rpcResult: {
|
|
|
8519
11210
|
chain: "Ethereum";
|
|
8520
11211
|
asset: "USDC";
|
|
8521
11212
|
};
|
|
8522
|
-
} | undefined;
|
|
11213
|
+
} | null | undefined;
|
|
8523
11214
|
SOL?: {
|
|
8524
11215
|
limit_order_fee_hundredth_pips: number;
|
|
8525
11216
|
range_order_fee_hundredth_pips: number;
|
|
@@ -8543,7 +11234,7 @@ declare const rpcResult: {
|
|
|
8543
11234
|
chain: "Ethereum";
|
|
8544
11235
|
asset: "USDC";
|
|
8545
11236
|
};
|
|
8546
|
-
} | undefined;
|
|
11237
|
+
} | null | undefined;
|
|
8547
11238
|
} | undefined;
|
|
8548
11239
|
};
|
|
8549
11240
|
}>;
|