@chainflip/rpc 1.5.1 → 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common.d.cts +2111 -294
- package/dist/common.d.ts +2111 -294
- package/dist/parsers.cjs +9 -7
- package/dist/parsers.d.cts +2248 -338
- package/dist/parsers.d.ts +2248 -338
- package/dist/parsers.mjs +9 -7
- package/package.json +1 -1
package/dist/common.d.cts
CHANGED
|
@@ -132,15 +132,25 @@ declare const rpcResult: {
|
|
|
132
132
|
}, {
|
|
133
133
|
DOT: string | number;
|
|
134
134
|
}>;
|
|
135
|
-
Arbitrum: z.
|
|
136
|
-
ETH: z.
|
|
137
|
-
USDC: z.
|
|
135
|
+
Arbitrum: z.ZodObject<{
|
|
136
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
137
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
139
|
ETH: bigint;
|
|
140
140
|
USDC: bigint;
|
|
141
141
|
}, {
|
|
142
|
-
ETH
|
|
142
|
+
ETH: string | number;
|
|
143
|
+
USDC: string | number;
|
|
144
|
+
}>;
|
|
145
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
146
|
+
SOL: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
147
|
+
USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
148
|
+
}, "strip", z.ZodTypeAny, {
|
|
149
|
+
USDC: bigint;
|
|
150
|
+
SOL: bigint;
|
|
151
|
+
}, {
|
|
143
152
|
USDC?: string | number | undefined;
|
|
153
|
+
SOL?: string | number | undefined;
|
|
144
154
|
}>>;
|
|
145
155
|
}, "strip", z.ZodTypeAny, {
|
|
146
156
|
Bitcoin: {
|
|
@@ -159,6 +169,10 @@ declare const rpcResult: {
|
|
|
159
169
|
ETH: bigint;
|
|
160
170
|
USDC: bigint;
|
|
161
171
|
};
|
|
172
|
+
Solana: {
|
|
173
|
+
USDC: bigint;
|
|
174
|
+
SOL: bigint;
|
|
175
|
+
};
|
|
162
176
|
}, {
|
|
163
177
|
Bitcoin: {
|
|
164
178
|
BTC: string | number;
|
|
@@ -172,9 +186,13 @@ declare const rpcResult: {
|
|
|
172
186
|
Polkadot: {
|
|
173
187
|
DOT: string | number;
|
|
174
188
|
};
|
|
175
|
-
Arbitrum
|
|
176
|
-
ETH
|
|
189
|
+
Arbitrum: {
|
|
190
|
+
ETH: string | number;
|
|
191
|
+
USDC: string | number;
|
|
192
|
+
};
|
|
193
|
+
Solana?: {
|
|
177
194
|
USDC?: string | number | undefined;
|
|
195
|
+
SOL?: string | number | undefined;
|
|
178
196
|
} | undefined;
|
|
179
197
|
}>;
|
|
180
198
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -197,6 +215,10 @@ declare const rpcResult: {
|
|
|
197
215
|
ETH: bigint;
|
|
198
216
|
USDC: bigint;
|
|
199
217
|
};
|
|
218
|
+
Solana: {
|
|
219
|
+
USDC: bigint;
|
|
220
|
+
SOL: bigint;
|
|
221
|
+
};
|
|
200
222
|
};
|
|
201
223
|
}, {
|
|
202
224
|
role: "broker";
|
|
@@ -214,9 +236,13 @@ declare const rpcResult: {
|
|
|
214
236
|
Polkadot: {
|
|
215
237
|
DOT: string | number;
|
|
216
238
|
};
|
|
217
|
-
Arbitrum
|
|
218
|
-
ETH
|
|
239
|
+
Arbitrum: {
|
|
240
|
+
ETH: string | number;
|
|
241
|
+
USDC: string | number;
|
|
242
|
+
};
|
|
243
|
+
Solana?: {
|
|
219
244
|
USDC?: string | number | undefined;
|
|
245
|
+
SOL?: string | number | undefined;
|
|
220
246
|
} | undefined;
|
|
221
247
|
};
|
|
222
248
|
}>, z.ZodObject<{
|
|
@@ -252,15 +278,25 @@ declare const rpcResult: {
|
|
|
252
278
|
}, {
|
|
253
279
|
DOT: string | number;
|
|
254
280
|
}>;
|
|
255
|
-
Arbitrum: z.
|
|
256
|
-
ETH: z.
|
|
257
|
-
USDC: z.
|
|
281
|
+
Arbitrum: z.ZodObject<{
|
|
282
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
283
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
258
284
|
}, "strip", z.ZodTypeAny, {
|
|
259
285
|
ETH: bigint;
|
|
260
286
|
USDC: bigint;
|
|
261
287
|
}, {
|
|
262
|
-
ETH
|
|
288
|
+
ETH: string | number;
|
|
289
|
+
USDC: string | number;
|
|
290
|
+
}>;
|
|
291
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
292
|
+
SOL: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
293
|
+
USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
294
|
+
}, "strip", z.ZodTypeAny, {
|
|
295
|
+
USDC: bigint;
|
|
296
|
+
SOL: bigint;
|
|
297
|
+
}, {
|
|
263
298
|
USDC?: string | number | undefined;
|
|
299
|
+
SOL?: string | number | undefined;
|
|
264
300
|
}>>;
|
|
265
301
|
}, "strip", z.ZodTypeAny, {
|
|
266
302
|
Bitcoin: {
|
|
@@ -279,6 +315,10 @@ declare const rpcResult: {
|
|
|
279
315
|
ETH: bigint;
|
|
280
316
|
USDC: bigint;
|
|
281
317
|
};
|
|
318
|
+
Solana: {
|
|
319
|
+
USDC: bigint;
|
|
320
|
+
SOL: bigint;
|
|
321
|
+
};
|
|
282
322
|
}, {
|
|
283
323
|
Bitcoin: {
|
|
284
324
|
BTC: string | number;
|
|
@@ -292,26 +332,33 @@ declare const rpcResult: {
|
|
|
292
332
|
Polkadot: {
|
|
293
333
|
DOT: string | number;
|
|
294
334
|
};
|
|
295
|
-
Arbitrum
|
|
296
|
-
ETH
|
|
335
|
+
Arbitrum: {
|
|
336
|
+
ETH: string | number;
|
|
337
|
+
USDC: string | number;
|
|
338
|
+
};
|
|
339
|
+
Solana?: {
|
|
297
340
|
USDC?: string | number | undefined;
|
|
341
|
+
SOL?: string | number | undefined;
|
|
298
342
|
} | undefined;
|
|
299
343
|
}>;
|
|
300
344
|
refund_addresses: z.ZodObject<{
|
|
301
345
|
Bitcoin: z.ZodNullable<z.ZodString>;
|
|
302
346
|
Ethereum: z.ZodNullable<z.ZodString>;
|
|
303
347
|
Polkadot: z.ZodNullable<z.ZodString>;
|
|
304
|
-
Arbitrum: z.
|
|
348
|
+
Arbitrum: z.ZodNullable<z.ZodString>;
|
|
349
|
+
Solana: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
305
350
|
}, "strip", z.ZodTypeAny, {
|
|
306
351
|
Bitcoin: string | null;
|
|
307
352
|
Ethereum: string | null;
|
|
308
353
|
Polkadot: string | null;
|
|
309
354
|
Arbitrum: string | null;
|
|
355
|
+
Solana: string | null;
|
|
310
356
|
}, {
|
|
311
357
|
Bitcoin: string | null;
|
|
312
358
|
Ethereum: string | null;
|
|
313
359
|
Polkadot: string | null;
|
|
314
|
-
Arbitrum
|
|
360
|
+
Arbitrum: string | null;
|
|
361
|
+
Solana?: string | null | undefined;
|
|
315
362
|
}>;
|
|
316
363
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
317
364
|
earned_fees: z.ZodObject<{
|
|
@@ -345,15 +392,25 @@ declare const rpcResult: {
|
|
|
345
392
|
}, {
|
|
346
393
|
DOT: string | number;
|
|
347
394
|
}>;
|
|
348
|
-
Arbitrum: z.
|
|
349
|
-
ETH: z.
|
|
350
|
-
USDC: z.
|
|
395
|
+
Arbitrum: z.ZodObject<{
|
|
396
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
397
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
351
398
|
}, "strip", z.ZodTypeAny, {
|
|
352
399
|
ETH: bigint;
|
|
353
400
|
USDC: bigint;
|
|
354
401
|
}, {
|
|
355
|
-
ETH
|
|
402
|
+
ETH: string | number;
|
|
403
|
+
USDC: string | number;
|
|
404
|
+
}>;
|
|
405
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
406
|
+
SOL: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
407
|
+
USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
408
|
+
}, "strip", z.ZodTypeAny, {
|
|
409
|
+
USDC: bigint;
|
|
410
|
+
SOL: bigint;
|
|
411
|
+
}, {
|
|
356
412
|
USDC?: string | number | undefined;
|
|
413
|
+
SOL?: string | number | undefined;
|
|
357
414
|
}>>;
|
|
358
415
|
}, "strip", z.ZodTypeAny, {
|
|
359
416
|
Bitcoin: {
|
|
@@ -372,6 +429,10 @@ declare const rpcResult: {
|
|
|
372
429
|
ETH: bigint;
|
|
373
430
|
USDC: bigint;
|
|
374
431
|
};
|
|
432
|
+
Solana: {
|
|
433
|
+
USDC: bigint;
|
|
434
|
+
SOL: bigint;
|
|
435
|
+
};
|
|
375
436
|
}, {
|
|
376
437
|
Bitcoin: {
|
|
377
438
|
BTC: string | number;
|
|
@@ -385,9 +446,13 @@ declare const rpcResult: {
|
|
|
385
446
|
Polkadot: {
|
|
386
447
|
DOT: string | number;
|
|
387
448
|
};
|
|
388
|
-
Arbitrum
|
|
389
|
-
ETH
|
|
449
|
+
Arbitrum: {
|
|
450
|
+
ETH: string | number;
|
|
451
|
+
USDC: string | number;
|
|
452
|
+
};
|
|
453
|
+
Solana?: {
|
|
390
454
|
USDC?: string | number | undefined;
|
|
455
|
+
SOL?: string | number | undefined;
|
|
391
456
|
} | undefined;
|
|
392
457
|
}>;
|
|
393
458
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -410,6 +475,10 @@ declare const rpcResult: {
|
|
|
410
475
|
ETH: bigint;
|
|
411
476
|
USDC: bigint;
|
|
412
477
|
};
|
|
478
|
+
Solana: {
|
|
479
|
+
USDC: bigint;
|
|
480
|
+
SOL: bigint;
|
|
481
|
+
};
|
|
413
482
|
};
|
|
414
483
|
balances: {
|
|
415
484
|
Bitcoin: {
|
|
@@ -428,12 +497,17 @@ declare const rpcResult: {
|
|
|
428
497
|
ETH: bigint;
|
|
429
498
|
USDC: bigint;
|
|
430
499
|
};
|
|
500
|
+
Solana: {
|
|
501
|
+
USDC: bigint;
|
|
502
|
+
SOL: bigint;
|
|
503
|
+
};
|
|
431
504
|
};
|
|
432
505
|
refund_addresses: {
|
|
433
506
|
Bitcoin: string | null;
|
|
434
507
|
Ethereum: string | null;
|
|
435
508
|
Polkadot: string | null;
|
|
436
509
|
Arbitrum: string | null;
|
|
510
|
+
Solana: string | null;
|
|
437
511
|
};
|
|
438
512
|
}, {
|
|
439
513
|
role: "liquidity_provider";
|
|
@@ -451,9 +525,13 @@ declare const rpcResult: {
|
|
|
451
525
|
Polkadot: {
|
|
452
526
|
DOT: string | number;
|
|
453
527
|
};
|
|
454
|
-
Arbitrum
|
|
455
|
-
ETH
|
|
528
|
+
Arbitrum: {
|
|
529
|
+
ETH: string | number;
|
|
530
|
+
USDC: string | number;
|
|
531
|
+
};
|
|
532
|
+
Solana?: {
|
|
456
533
|
USDC?: string | number | undefined;
|
|
534
|
+
SOL?: string | number | undefined;
|
|
457
535
|
} | undefined;
|
|
458
536
|
};
|
|
459
537
|
balances: {
|
|
@@ -469,16 +547,21 @@ declare const rpcResult: {
|
|
|
469
547
|
Polkadot: {
|
|
470
548
|
DOT: string | number;
|
|
471
549
|
};
|
|
472
|
-
Arbitrum
|
|
473
|
-
ETH
|
|
550
|
+
Arbitrum: {
|
|
551
|
+
ETH: string | number;
|
|
552
|
+
USDC: string | number;
|
|
553
|
+
};
|
|
554
|
+
Solana?: {
|
|
474
555
|
USDC?: string | number | undefined;
|
|
556
|
+
SOL?: string | number | undefined;
|
|
475
557
|
} | undefined;
|
|
476
558
|
};
|
|
477
559
|
refund_addresses: {
|
|
478
560
|
Bitcoin: string | null;
|
|
479
561
|
Ethereum: string | null;
|
|
480
562
|
Polkadot: string | null;
|
|
481
|
-
Arbitrum
|
|
563
|
+
Arbitrum: string | null;
|
|
564
|
+
Solana?: string | null | undefined;
|
|
482
565
|
};
|
|
483
566
|
}>, z.ZodObject<{
|
|
484
567
|
role: z.ZodLiteral<"validator">;
|
|
@@ -598,6 +681,24 @@ declare const rpcResult: {
|
|
|
598
681
|
}, {
|
|
599
682
|
chain: "Arbitrum";
|
|
600
683
|
asset: "USDC";
|
|
684
|
+
}>, z.ZodObject<{
|
|
685
|
+
chain: z.ZodLiteral<"Solana">;
|
|
686
|
+
asset: z.ZodLiteral<"SOL">;
|
|
687
|
+
}, "strip", z.ZodTypeAny, {
|
|
688
|
+
chain: "Solana";
|
|
689
|
+
asset: "SOL";
|
|
690
|
+
}, {
|
|
691
|
+
chain: "Solana";
|
|
692
|
+
asset: "SOL";
|
|
693
|
+
}>, z.ZodObject<{
|
|
694
|
+
chain: z.ZodLiteral<"Solana">;
|
|
695
|
+
asset: z.ZodLiteral<"USDC">;
|
|
696
|
+
}, "strip", z.ZodTypeAny, {
|
|
697
|
+
chain: "Solana";
|
|
698
|
+
asset: "USDC";
|
|
699
|
+
}, {
|
|
700
|
+
chain: "Solana";
|
|
701
|
+
asset: "USDC";
|
|
601
702
|
}>]>, z.ZodObject<{
|
|
602
703
|
tier: z.ZodNumber;
|
|
603
704
|
available_amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -641,15 +742,25 @@ declare const rpcResult: {
|
|
|
641
742
|
}, {
|
|
642
743
|
DOT: string | number;
|
|
643
744
|
}>;
|
|
644
|
-
Arbitrum: z.
|
|
645
|
-
ETH: z.
|
|
646
|
-
USDC: z.
|
|
745
|
+
Arbitrum: z.ZodObject<{
|
|
746
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
747
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
647
748
|
}, "strip", z.ZodTypeAny, {
|
|
648
749
|
ETH: bigint;
|
|
649
750
|
USDC: bigint;
|
|
650
751
|
}, {
|
|
651
|
-
ETH
|
|
752
|
+
ETH: string | number;
|
|
753
|
+
USDC: string | number;
|
|
754
|
+
}>;
|
|
755
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
756
|
+
SOL: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
757
|
+
USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
758
|
+
}, "strip", z.ZodTypeAny, {
|
|
759
|
+
USDC: bigint;
|
|
760
|
+
SOL: bigint;
|
|
761
|
+
}, {
|
|
652
762
|
USDC?: string | number | undefined;
|
|
763
|
+
SOL?: string | number | undefined;
|
|
653
764
|
}>>;
|
|
654
765
|
}, "strip", z.ZodTypeAny, {
|
|
655
766
|
Bitcoin: {
|
|
@@ -668,6 +779,10 @@ declare const rpcResult: {
|
|
|
668
779
|
ETH: bigint;
|
|
669
780
|
USDC: bigint;
|
|
670
781
|
};
|
|
782
|
+
Solana: {
|
|
783
|
+
USDC: bigint;
|
|
784
|
+
SOL: bigint;
|
|
785
|
+
};
|
|
671
786
|
}, {
|
|
672
787
|
Bitcoin: {
|
|
673
788
|
BTC: string | number;
|
|
@@ -681,9 +796,13 @@ declare const rpcResult: {
|
|
|
681
796
|
Polkadot: {
|
|
682
797
|
DOT: string | number;
|
|
683
798
|
};
|
|
684
|
-
Arbitrum
|
|
685
|
-
ETH
|
|
799
|
+
Arbitrum: {
|
|
800
|
+
ETH: string | number;
|
|
801
|
+
USDC: string | number;
|
|
802
|
+
};
|
|
803
|
+
Solana?: {
|
|
686
804
|
USDC?: string | number | undefined;
|
|
805
|
+
SOL?: string | number | undefined;
|
|
687
806
|
} | undefined;
|
|
688
807
|
}>;
|
|
689
808
|
ingress_fees: z.ZodObject<{
|
|
@@ -717,15 +836,25 @@ declare const rpcResult: {
|
|
|
717
836
|
}, {
|
|
718
837
|
DOT: string | number | null;
|
|
719
838
|
}>;
|
|
720
|
-
Arbitrum: z.
|
|
721
|
-
ETH: z.
|
|
722
|
-
USDC: z.
|
|
839
|
+
Arbitrum: z.ZodObject<{
|
|
840
|
+
ETH: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
841
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
723
842
|
}, "strip", z.ZodTypeAny, {
|
|
724
843
|
ETH: bigint | null;
|
|
725
844
|
USDC: bigint | null;
|
|
726
845
|
}, {
|
|
727
|
-
ETH
|
|
846
|
+
ETH: string | number | null;
|
|
847
|
+
USDC: string | number | null;
|
|
848
|
+
}>;
|
|
849
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
850
|
+
SOL: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
851
|
+
USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
852
|
+
}, "strip", z.ZodTypeAny, {
|
|
853
|
+
USDC: bigint | null;
|
|
854
|
+
SOL: bigint | null;
|
|
855
|
+
}, {
|
|
728
856
|
USDC?: string | number | null | undefined;
|
|
857
|
+
SOL?: string | number | null | undefined;
|
|
729
858
|
}>>;
|
|
730
859
|
}, "strip", z.ZodTypeAny, {
|
|
731
860
|
Bitcoin: {
|
|
@@ -744,6 +873,10 @@ declare const rpcResult: {
|
|
|
744
873
|
ETH: bigint | null;
|
|
745
874
|
USDC: bigint | null;
|
|
746
875
|
};
|
|
876
|
+
Solana: {
|
|
877
|
+
USDC: bigint | null;
|
|
878
|
+
SOL: bigint | null;
|
|
879
|
+
};
|
|
747
880
|
}, {
|
|
748
881
|
Bitcoin: {
|
|
749
882
|
BTC: string | number | null;
|
|
@@ -757,9 +890,13 @@ declare const rpcResult: {
|
|
|
757
890
|
Polkadot: {
|
|
758
891
|
DOT: string | number | null;
|
|
759
892
|
};
|
|
760
|
-
Arbitrum
|
|
761
|
-
ETH
|
|
893
|
+
Arbitrum: {
|
|
894
|
+
ETH: string | number | null;
|
|
895
|
+
USDC: string | number | null;
|
|
896
|
+
};
|
|
897
|
+
Solana?: {
|
|
762
898
|
USDC?: string | number | null | undefined;
|
|
899
|
+
SOL?: string | number | null | undefined;
|
|
763
900
|
} | undefined;
|
|
764
901
|
}>;
|
|
765
902
|
egress_fees: z.ZodObject<{
|
|
@@ -793,15 +930,25 @@ declare const rpcResult: {
|
|
|
793
930
|
}, {
|
|
794
931
|
DOT: string | number | null;
|
|
795
932
|
}>;
|
|
796
|
-
Arbitrum: z.
|
|
797
|
-
ETH: z.
|
|
798
|
-
USDC: z.
|
|
933
|
+
Arbitrum: z.ZodObject<{
|
|
934
|
+
ETH: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
935
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
799
936
|
}, "strip", z.ZodTypeAny, {
|
|
800
937
|
ETH: bigint | null;
|
|
801
938
|
USDC: bigint | null;
|
|
802
939
|
}, {
|
|
803
|
-
ETH
|
|
940
|
+
ETH: string | number | null;
|
|
941
|
+
USDC: string | number | null;
|
|
942
|
+
}>;
|
|
943
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
944
|
+
SOL: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
945
|
+
USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
946
|
+
}, "strip", z.ZodTypeAny, {
|
|
947
|
+
USDC: bigint | null;
|
|
948
|
+
SOL: bigint | null;
|
|
949
|
+
}, {
|
|
804
950
|
USDC?: string | number | null | undefined;
|
|
951
|
+
SOL?: string | number | null | undefined;
|
|
805
952
|
}>>;
|
|
806
953
|
}, "strip", z.ZodTypeAny, {
|
|
807
954
|
Bitcoin: {
|
|
@@ -820,6 +967,10 @@ declare const rpcResult: {
|
|
|
820
967
|
ETH: bigint | null;
|
|
821
968
|
USDC: bigint | null;
|
|
822
969
|
};
|
|
970
|
+
Solana: {
|
|
971
|
+
USDC: bigint | null;
|
|
972
|
+
SOL: bigint | null;
|
|
973
|
+
};
|
|
823
974
|
}, {
|
|
824
975
|
Bitcoin: {
|
|
825
976
|
BTC: string | number | null;
|
|
@@ -833,26 +984,33 @@ declare const rpcResult: {
|
|
|
833
984
|
Polkadot: {
|
|
834
985
|
DOT: string | number | null;
|
|
835
986
|
};
|
|
836
|
-
Arbitrum
|
|
837
|
-
ETH
|
|
987
|
+
Arbitrum: {
|
|
988
|
+
ETH: string | number | null;
|
|
989
|
+
USDC: string | number | null;
|
|
990
|
+
};
|
|
991
|
+
Solana?: {
|
|
838
992
|
USDC?: string | number | null | undefined;
|
|
993
|
+
SOL?: string | number | null | undefined;
|
|
839
994
|
} | undefined;
|
|
840
995
|
}>;
|
|
841
996
|
witness_safety_margins: z.ZodObject<{
|
|
842
997
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
843
998
|
Ethereum: z.ZodNullable<z.ZodNumber>;
|
|
844
999
|
Polkadot: z.ZodNullable<z.ZodNumber>;
|
|
845
|
-
Arbitrum: z.
|
|
1000
|
+
Arbitrum: z.ZodNullable<z.ZodNumber>;
|
|
1001
|
+
Solana: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
846
1002
|
}, "strip", z.ZodTypeAny, {
|
|
847
1003
|
Bitcoin: number | null;
|
|
848
1004
|
Ethereum: number | null;
|
|
849
1005
|
Polkadot: number | null;
|
|
850
1006
|
Arbitrum: number | null;
|
|
1007
|
+
Solana: number | null;
|
|
851
1008
|
}, {
|
|
852
1009
|
Bitcoin: number | null;
|
|
853
1010
|
Ethereum: number | null;
|
|
854
1011
|
Polkadot: number | null;
|
|
855
|
-
Arbitrum
|
|
1012
|
+
Arbitrum: number | null;
|
|
1013
|
+
Solana?: number | null | undefined;
|
|
856
1014
|
}>;
|
|
857
1015
|
egress_dust_limits: z.ZodObject<{
|
|
858
1016
|
Bitcoin: z.ZodObject<{
|
|
@@ -885,15 +1043,25 @@ declare const rpcResult: {
|
|
|
885
1043
|
}, {
|
|
886
1044
|
DOT: string | number;
|
|
887
1045
|
}>;
|
|
888
|
-
Arbitrum: z.
|
|
889
|
-
ETH: z.
|
|
890
|
-
USDC: z.
|
|
1046
|
+
Arbitrum: z.ZodObject<{
|
|
1047
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1048
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
891
1049
|
}, "strip", z.ZodTypeAny, {
|
|
892
1050
|
ETH: bigint;
|
|
893
1051
|
USDC: bigint;
|
|
894
1052
|
}, {
|
|
895
|
-
ETH
|
|
1053
|
+
ETH: string | number;
|
|
1054
|
+
USDC: string | number;
|
|
1055
|
+
}>;
|
|
1056
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
1057
|
+
SOL: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1058
|
+
USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1059
|
+
}, "strip", z.ZodTypeAny, {
|
|
1060
|
+
USDC: bigint;
|
|
1061
|
+
SOL: bigint;
|
|
1062
|
+
}, {
|
|
896
1063
|
USDC?: string | number | undefined;
|
|
1064
|
+
SOL?: string | number | undefined;
|
|
897
1065
|
}>>;
|
|
898
1066
|
}, "strip", z.ZodTypeAny, {
|
|
899
1067
|
Bitcoin: {
|
|
@@ -912,6 +1080,10 @@ declare const rpcResult: {
|
|
|
912
1080
|
ETH: bigint;
|
|
913
1081
|
USDC: bigint;
|
|
914
1082
|
};
|
|
1083
|
+
Solana: {
|
|
1084
|
+
USDC: bigint;
|
|
1085
|
+
SOL: bigint;
|
|
1086
|
+
};
|
|
915
1087
|
}, {
|
|
916
1088
|
Bitcoin: {
|
|
917
1089
|
BTC: string | number;
|
|
@@ -925,42 +1097,52 @@ declare const rpcResult: {
|
|
|
925
1097
|
Polkadot: {
|
|
926
1098
|
DOT: string | number;
|
|
927
1099
|
};
|
|
928
|
-
Arbitrum
|
|
929
|
-
ETH
|
|
1100
|
+
Arbitrum: {
|
|
1101
|
+
ETH: string | number;
|
|
1102
|
+
USDC: string | number;
|
|
1103
|
+
};
|
|
1104
|
+
Solana?: {
|
|
930
1105
|
USDC?: string | number | undefined;
|
|
1106
|
+
SOL?: string | number | undefined;
|
|
931
1107
|
} | undefined;
|
|
932
1108
|
}>;
|
|
933
1109
|
channel_opening_fees: z.ZodObject<{
|
|
934
1110
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
935
1111
|
Ethereum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
936
1112
|
Polkadot: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
937
|
-
Arbitrum: z.
|
|
1113
|
+
Arbitrum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1114
|
+
Solana: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
938
1115
|
}, "strip", z.ZodTypeAny, {
|
|
939
1116
|
Bitcoin: bigint;
|
|
940
1117
|
Ethereum: bigint;
|
|
941
1118
|
Polkadot: bigint;
|
|
942
1119
|
Arbitrum: bigint;
|
|
1120
|
+
Solana: bigint;
|
|
943
1121
|
}, {
|
|
944
1122
|
Bitcoin: string | number;
|
|
945
1123
|
Ethereum: string | number;
|
|
946
1124
|
Polkadot: string | number;
|
|
947
|
-
Arbitrum
|
|
1125
|
+
Arbitrum: string | number;
|
|
1126
|
+
Solana?: string | number | undefined;
|
|
948
1127
|
}>;
|
|
949
1128
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
950
1129
|
Bitcoin: z.ZodNumber;
|
|
951
1130
|
Ethereum: z.ZodNumber;
|
|
952
1131
|
Polkadot: z.ZodNumber;
|
|
953
|
-
Arbitrum: z.
|
|
1132
|
+
Arbitrum: z.ZodNumber;
|
|
1133
|
+
Solana: z.ZodDefault<z.ZodNumber>;
|
|
954
1134
|
}, "strip", z.ZodTypeAny, {
|
|
955
1135
|
Bitcoin: number;
|
|
956
1136
|
Ethereum: number;
|
|
957
1137
|
Polkadot: number;
|
|
958
1138
|
Arbitrum: number;
|
|
1139
|
+
Solana: number;
|
|
959
1140
|
}, {
|
|
960
1141
|
Bitcoin: number;
|
|
961
1142
|
Ethereum: number;
|
|
962
1143
|
Polkadot: number;
|
|
963
|
-
Arbitrum
|
|
1144
|
+
Arbitrum: number;
|
|
1145
|
+
Solana?: number | undefined;
|
|
964
1146
|
}>>>;
|
|
965
1147
|
}, "strip", z.ZodTypeAny, {
|
|
966
1148
|
minimum_deposit_amounts: {
|
|
@@ -980,6 +1162,10 @@ declare const rpcResult: {
|
|
|
980
1162
|
ETH: bigint;
|
|
981
1163
|
USDC: bigint;
|
|
982
1164
|
};
|
|
1165
|
+
Solana: {
|
|
1166
|
+
USDC: bigint;
|
|
1167
|
+
SOL: bigint;
|
|
1168
|
+
};
|
|
983
1169
|
};
|
|
984
1170
|
ingress_fees: {
|
|
985
1171
|
Bitcoin: {
|
|
@@ -998,6 +1184,10 @@ declare const rpcResult: {
|
|
|
998
1184
|
ETH: bigint | null;
|
|
999
1185
|
USDC: bigint | null;
|
|
1000
1186
|
};
|
|
1187
|
+
Solana: {
|
|
1188
|
+
USDC: bigint | null;
|
|
1189
|
+
SOL: bigint | null;
|
|
1190
|
+
};
|
|
1001
1191
|
};
|
|
1002
1192
|
egress_fees: {
|
|
1003
1193
|
Bitcoin: {
|
|
@@ -1016,12 +1206,17 @@ declare const rpcResult: {
|
|
|
1016
1206
|
ETH: bigint | null;
|
|
1017
1207
|
USDC: bigint | null;
|
|
1018
1208
|
};
|
|
1209
|
+
Solana: {
|
|
1210
|
+
USDC: bigint | null;
|
|
1211
|
+
SOL: bigint | null;
|
|
1212
|
+
};
|
|
1019
1213
|
};
|
|
1020
1214
|
witness_safety_margins: {
|
|
1021
1215
|
Bitcoin: number | null;
|
|
1022
1216
|
Ethereum: number | null;
|
|
1023
1217
|
Polkadot: number | null;
|
|
1024
1218
|
Arbitrum: number | null;
|
|
1219
|
+
Solana: number | null;
|
|
1025
1220
|
};
|
|
1026
1221
|
egress_dust_limits: {
|
|
1027
1222
|
Bitcoin: {
|
|
@@ -1040,18 +1235,24 @@ declare const rpcResult: {
|
|
|
1040
1235
|
ETH: bigint;
|
|
1041
1236
|
USDC: bigint;
|
|
1042
1237
|
};
|
|
1238
|
+
Solana: {
|
|
1239
|
+
USDC: bigint;
|
|
1240
|
+
SOL: bigint;
|
|
1241
|
+
};
|
|
1043
1242
|
};
|
|
1044
1243
|
channel_opening_fees: {
|
|
1045
1244
|
Bitcoin: bigint;
|
|
1046
1245
|
Ethereum: bigint;
|
|
1047
1246
|
Polkadot: bigint;
|
|
1048
1247
|
Arbitrum: bigint;
|
|
1248
|
+
Solana: bigint;
|
|
1049
1249
|
};
|
|
1050
1250
|
max_swap_retry_duration_blocks: {
|
|
1051
1251
|
Bitcoin: number;
|
|
1052
1252
|
Ethereum: number;
|
|
1053
1253
|
Polkadot: number;
|
|
1054
1254
|
Arbitrum: number;
|
|
1255
|
+
Solana: number;
|
|
1055
1256
|
};
|
|
1056
1257
|
}, {
|
|
1057
1258
|
minimum_deposit_amounts: {
|
|
@@ -1067,9 +1268,13 @@ declare const rpcResult: {
|
|
|
1067
1268
|
Polkadot: {
|
|
1068
1269
|
DOT: string | number;
|
|
1069
1270
|
};
|
|
1070
|
-
Arbitrum
|
|
1071
|
-
ETH
|
|
1271
|
+
Arbitrum: {
|
|
1272
|
+
ETH: string | number;
|
|
1273
|
+
USDC: string | number;
|
|
1274
|
+
};
|
|
1275
|
+
Solana?: {
|
|
1072
1276
|
USDC?: string | number | undefined;
|
|
1277
|
+
SOL?: string | number | undefined;
|
|
1073
1278
|
} | undefined;
|
|
1074
1279
|
};
|
|
1075
1280
|
ingress_fees: {
|
|
@@ -1085,9 +1290,13 @@ declare const rpcResult: {
|
|
|
1085
1290
|
Polkadot: {
|
|
1086
1291
|
DOT: string | number | null;
|
|
1087
1292
|
};
|
|
1088
|
-
Arbitrum
|
|
1089
|
-
ETH
|
|
1293
|
+
Arbitrum: {
|
|
1294
|
+
ETH: string | number | null;
|
|
1295
|
+
USDC: string | number | null;
|
|
1296
|
+
};
|
|
1297
|
+
Solana?: {
|
|
1090
1298
|
USDC?: string | number | null | undefined;
|
|
1299
|
+
SOL?: string | number | null | undefined;
|
|
1091
1300
|
} | undefined;
|
|
1092
1301
|
};
|
|
1093
1302
|
egress_fees: {
|
|
@@ -1103,16 +1312,21 @@ declare const rpcResult: {
|
|
|
1103
1312
|
Polkadot: {
|
|
1104
1313
|
DOT: string | number | null;
|
|
1105
1314
|
};
|
|
1106
|
-
Arbitrum
|
|
1107
|
-
ETH
|
|
1315
|
+
Arbitrum: {
|
|
1316
|
+
ETH: string | number | null;
|
|
1317
|
+
USDC: string | number | null;
|
|
1318
|
+
};
|
|
1319
|
+
Solana?: {
|
|
1108
1320
|
USDC?: string | number | null | undefined;
|
|
1321
|
+
SOL?: string | number | null | undefined;
|
|
1109
1322
|
} | undefined;
|
|
1110
1323
|
};
|
|
1111
1324
|
witness_safety_margins: {
|
|
1112
1325
|
Bitcoin: number | null;
|
|
1113
1326
|
Ethereum: number | null;
|
|
1114
1327
|
Polkadot: number | null;
|
|
1115
|
-
Arbitrum
|
|
1328
|
+
Arbitrum: number | null;
|
|
1329
|
+
Solana?: number | null | undefined;
|
|
1116
1330
|
};
|
|
1117
1331
|
egress_dust_limits: {
|
|
1118
1332
|
Bitcoin: {
|
|
@@ -1127,22 +1341,28 @@ declare const rpcResult: {
|
|
|
1127
1341
|
Polkadot: {
|
|
1128
1342
|
DOT: string | number;
|
|
1129
1343
|
};
|
|
1130
|
-
Arbitrum
|
|
1131
|
-
ETH
|
|
1344
|
+
Arbitrum: {
|
|
1345
|
+
ETH: string | number;
|
|
1346
|
+
USDC: string | number;
|
|
1347
|
+
};
|
|
1348
|
+
Solana?: {
|
|
1132
1349
|
USDC?: string | number | undefined;
|
|
1350
|
+
SOL?: string | number | undefined;
|
|
1133
1351
|
} | undefined;
|
|
1134
1352
|
};
|
|
1135
1353
|
channel_opening_fees: {
|
|
1136
1354
|
Bitcoin: string | number;
|
|
1137
1355
|
Ethereum: string | number;
|
|
1138
1356
|
Polkadot: string | number;
|
|
1139
|
-
Arbitrum
|
|
1357
|
+
Arbitrum: string | number;
|
|
1358
|
+
Solana?: string | number | undefined;
|
|
1140
1359
|
};
|
|
1141
1360
|
max_swap_retry_duration_blocks?: {
|
|
1142
1361
|
Bitcoin: number;
|
|
1143
1362
|
Ethereum: number;
|
|
1144
1363
|
Polkadot: number;
|
|
1145
|
-
Arbitrum
|
|
1364
|
+
Arbitrum: number;
|
|
1365
|
+
Solana?: number | undefined;
|
|
1146
1366
|
} | undefined;
|
|
1147
1367
|
}>, Omit<{
|
|
1148
1368
|
minimum_deposit_amounts: {
|
|
@@ -1162,6 +1382,10 @@ declare const rpcResult: {
|
|
|
1162
1382
|
ETH: bigint;
|
|
1163
1383
|
USDC: bigint;
|
|
1164
1384
|
};
|
|
1385
|
+
Solana: {
|
|
1386
|
+
USDC: bigint;
|
|
1387
|
+
SOL: bigint;
|
|
1388
|
+
};
|
|
1165
1389
|
};
|
|
1166
1390
|
ingress_fees: {
|
|
1167
1391
|
Bitcoin: {
|
|
@@ -1180,6 +1404,10 @@ declare const rpcResult: {
|
|
|
1180
1404
|
ETH: bigint | null;
|
|
1181
1405
|
USDC: bigint | null;
|
|
1182
1406
|
};
|
|
1407
|
+
Solana: {
|
|
1408
|
+
USDC: bigint | null;
|
|
1409
|
+
SOL: bigint | null;
|
|
1410
|
+
};
|
|
1183
1411
|
};
|
|
1184
1412
|
egress_fees: {
|
|
1185
1413
|
Bitcoin: {
|
|
@@ -1198,12 +1426,17 @@ declare const rpcResult: {
|
|
|
1198
1426
|
ETH: bigint | null;
|
|
1199
1427
|
USDC: bigint | null;
|
|
1200
1428
|
};
|
|
1429
|
+
Solana: {
|
|
1430
|
+
USDC: bigint | null;
|
|
1431
|
+
SOL: bigint | null;
|
|
1432
|
+
};
|
|
1201
1433
|
};
|
|
1202
1434
|
witness_safety_margins: {
|
|
1203
1435
|
Bitcoin: number | null;
|
|
1204
1436
|
Ethereum: number | null;
|
|
1205
1437
|
Polkadot: number | null;
|
|
1206
1438
|
Arbitrum: number | null;
|
|
1439
|
+
Solana: number | null;
|
|
1207
1440
|
};
|
|
1208
1441
|
egress_dust_limits: {
|
|
1209
1442
|
Bitcoin: {
|
|
@@ -1222,18 +1455,24 @@ declare const rpcResult: {
|
|
|
1222
1455
|
ETH: bigint;
|
|
1223
1456
|
USDC: bigint;
|
|
1224
1457
|
};
|
|
1458
|
+
Solana: {
|
|
1459
|
+
USDC: bigint;
|
|
1460
|
+
SOL: bigint;
|
|
1461
|
+
};
|
|
1225
1462
|
};
|
|
1226
1463
|
channel_opening_fees: {
|
|
1227
1464
|
Bitcoin: bigint;
|
|
1228
1465
|
Ethereum: bigint;
|
|
1229
1466
|
Polkadot: bigint;
|
|
1230
1467
|
Arbitrum: bigint;
|
|
1468
|
+
Solana: bigint;
|
|
1231
1469
|
};
|
|
1232
1470
|
max_swap_retry_duration_blocks: {
|
|
1233
1471
|
Bitcoin: number;
|
|
1234
1472
|
Ethereum: number;
|
|
1235
1473
|
Polkadot: number;
|
|
1236
1474
|
Arbitrum: number;
|
|
1475
|
+
Solana: number;
|
|
1237
1476
|
};
|
|
1238
1477
|
}, "egress_dust_limits"> & {
|
|
1239
1478
|
readonly minimum_egress_amounts: {
|
|
@@ -1253,6 +1492,10 @@ declare const rpcResult: {
|
|
|
1253
1492
|
ETH: bigint;
|
|
1254
1493
|
USDC: bigint;
|
|
1255
1494
|
};
|
|
1495
|
+
Solana: {
|
|
1496
|
+
USDC: bigint;
|
|
1497
|
+
SOL: bigint;
|
|
1498
|
+
};
|
|
1256
1499
|
};
|
|
1257
1500
|
}, {
|
|
1258
1501
|
minimum_deposit_amounts: {
|
|
@@ -1268,9 +1511,13 @@ declare const rpcResult: {
|
|
|
1268
1511
|
Polkadot: {
|
|
1269
1512
|
DOT: string | number;
|
|
1270
1513
|
};
|
|
1271
|
-
Arbitrum
|
|
1272
|
-
ETH
|
|
1514
|
+
Arbitrum: {
|
|
1515
|
+
ETH: string | number;
|
|
1516
|
+
USDC: string | number;
|
|
1517
|
+
};
|
|
1518
|
+
Solana?: {
|
|
1273
1519
|
USDC?: string | number | undefined;
|
|
1520
|
+
SOL?: string | number | undefined;
|
|
1274
1521
|
} | undefined;
|
|
1275
1522
|
};
|
|
1276
1523
|
ingress_fees: {
|
|
@@ -1286,9 +1533,13 @@ declare const rpcResult: {
|
|
|
1286
1533
|
Polkadot: {
|
|
1287
1534
|
DOT: string | number | null;
|
|
1288
1535
|
};
|
|
1289
|
-
Arbitrum
|
|
1290
|
-
ETH
|
|
1536
|
+
Arbitrum: {
|
|
1537
|
+
ETH: string | number | null;
|
|
1538
|
+
USDC: string | number | null;
|
|
1539
|
+
};
|
|
1540
|
+
Solana?: {
|
|
1291
1541
|
USDC?: string | number | null | undefined;
|
|
1542
|
+
SOL?: string | number | null | undefined;
|
|
1292
1543
|
} | undefined;
|
|
1293
1544
|
};
|
|
1294
1545
|
egress_fees: {
|
|
@@ -1304,16 +1555,21 @@ declare const rpcResult: {
|
|
|
1304
1555
|
Polkadot: {
|
|
1305
1556
|
DOT: string | number | null;
|
|
1306
1557
|
};
|
|
1307
|
-
Arbitrum
|
|
1308
|
-
ETH
|
|
1558
|
+
Arbitrum: {
|
|
1559
|
+
ETH: string | number | null;
|
|
1560
|
+
USDC: string | number | null;
|
|
1561
|
+
};
|
|
1562
|
+
Solana?: {
|
|
1309
1563
|
USDC?: string | number | null | undefined;
|
|
1564
|
+
SOL?: string | number | null | undefined;
|
|
1310
1565
|
} | undefined;
|
|
1311
1566
|
};
|
|
1312
1567
|
witness_safety_margins: {
|
|
1313
1568
|
Bitcoin: number | null;
|
|
1314
1569
|
Ethereum: number | null;
|
|
1315
1570
|
Polkadot: number | null;
|
|
1316
|
-
Arbitrum
|
|
1571
|
+
Arbitrum: number | null;
|
|
1572
|
+
Solana?: number | null | undefined;
|
|
1317
1573
|
};
|
|
1318
1574
|
egress_dust_limits: {
|
|
1319
1575
|
Bitcoin: {
|
|
@@ -1328,22 +1584,28 @@ declare const rpcResult: {
|
|
|
1328
1584
|
Polkadot: {
|
|
1329
1585
|
DOT: string | number;
|
|
1330
1586
|
};
|
|
1331
|
-
Arbitrum
|
|
1332
|
-
ETH
|
|
1587
|
+
Arbitrum: {
|
|
1588
|
+
ETH: string | number;
|
|
1589
|
+
USDC: string | number;
|
|
1590
|
+
};
|
|
1591
|
+
Solana?: {
|
|
1333
1592
|
USDC?: string | number | undefined;
|
|
1593
|
+
SOL?: string | number | undefined;
|
|
1334
1594
|
} | undefined;
|
|
1335
1595
|
};
|
|
1336
1596
|
channel_opening_fees: {
|
|
1337
1597
|
Bitcoin: string | number;
|
|
1338
1598
|
Ethereum: string | number;
|
|
1339
1599
|
Polkadot: string | number;
|
|
1340
|
-
Arbitrum
|
|
1600
|
+
Arbitrum: string | number;
|
|
1601
|
+
Solana?: string | number | undefined;
|
|
1341
1602
|
};
|
|
1342
1603
|
max_swap_retry_duration_blocks?: {
|
|
1343
1604
|
Bitcoin: number;
|
|
1344
1605
|
Ethereum: number;
|
|
1345
1606
|
Polkadot: number;
|
|
1346
|
-
Arbitrum
|
|
1607
|
+
Arbitrum: number;
|
|
1608
|
+
Solana?: number | undefined;
|
|
1347
1609
|
} | undefined;
|
|
1348
1610
|
}>;
|
|
1349
1611
|
swapping: z.ZodObject<{
|
|
@@ -1378,15 +1640,25 @@ declare const rpcResult: {
|
|
|
1378
1640
|
}, {
|
|
1379
1641
|
DOT: string | number | null;
|
|
1380
1642
|
}>;
|
|
1381
|
-
Arbitrum: z.
|
|
1382
|
-
ETH: z.
|
|
1383
|
-
USDC: z.
|
|
1643
|
+
Arbitrum: z.ZodObject<{
|
|
1644
|
+
ETH: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1645
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1384
1646
|
}, "strip", z.ZodTypeAny, {
|
|
1385
1647
|
ETH: bigint | null;
|
|
1386
1648
|
USDC: bigint | null;
|
|
1387
1649
|
}, {
|
|
1388
|
-
ETH
|
|
1650
|
+
ETH: string | number | null;
|
|
1651
|
+
USDC: string | number | null;
|
|
1652
|
+
}>;
|
|
1653
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
1654
|
+
SOL: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
1655
|
+
USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
1656
|
+
}, "strip", z.ZodTypeAny, {
|
|
1657
|
+
USDC: bigint | null;
|
|
1658
|
+
SOL: bigint | null;
|
|
1659
|
+
}, {
|
|
1389
1660
|
USDC?: string | number | null | undefined;
|
|
1661
|
+
SOL?: string | number | null | undefined;
|
|
1390
1662
|
}>>;
|
|
1391
1663
|
}, "strip", z.ZodTypeAny, {
|
|
1392
1664
|
Bitcoin: {
|
|
@@ -1405,6 +1677,10 @@ declare const rpcResult: {
|
|
|
1405
1677
|
ETH: bigint | null;
|
|
1406
1678
|
USDC: bigint | null;
|
|
1407
1679
|
};
|
|
1680
|
+
Solana: {
|
|
1681
|
+
USDC: bigint | null;
|
|
1682
|
+
SOL: bigint | null;
|
|
1683
|
+
};
|
|
1408
1684
|
}, {
|
|
1409
1685
|
Bitcoin: {
|
|
1410
1686
|
BTC: string | number | null;
|
|
@@ -1418,9 +1694,13 @@ declare const rpcResult: {
|
|
|
1418
1694
|
Polkadot: {
|
|
1419
1695
|
DOT: string | number | null;
|
|
1420
1696
|
};
|
|
1421
|
-
Arbitrum
|
|
1422
|
-
ETH
|
|
1697
|
+
Arbitrum: {
|
|
1698
|
+
ETH: string | number | null;
|
|
1699
|
+
USDC: string | number | null;
|
|
1700
|
+
};
|
|
1701
|
+
Solana?: {
|
|
1423
1702
|
USDC?: string | number | null | undefined;
|
|
1703
|
+
SOL?: string | number | null | undefined;
|
|
1424
1704
|
} | undefined;
|
|
1425
1705
|
}>;
|
|
1426
1706
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
@@ -1442,6 +1722,10 @@ declare const rpcResult: {
|
|
|
1442
1722
|
ETH: bigint | null;
|
|
1443
1723
|
USDC: bigint | null;
|
|
1444
1724
|
};
|
|
1725
|
+
Solana: {
|
|
1726
|
+
USDC: bigint | null;
|
|
1727
|
+
SOL: bigint | null;
|
|
1728
|
+
};
|
|
1445
1729
|
};
|
|
1446
1730
|
network_fee_hundredth_pips: number;
|
|
1447
1731
|
}, {
|
|
@@ -1458,9 +1742,13 @@ declare const rpcResult: {
|
|
|
1458
1742
|
Polkadot: {
|
|
1459
1743
|
DOT: string | number | null;
|
|
1460
1744
|
};
|
|
1461
|
-
Arbitrum
|
|
1462
|
-
ETH
|
|
1745
|
+
Arbitrum: {
|
|
1746
|
+
ETH: string | number | null;
|
|
1747
|
+
USDC: string | number | null;
|
|
1748
|
+
};
|
|
1749
|
+
Solana?: {
|
|
1463
1750
|
USDC?: string | number | null | undefined;
|
|
1751
|
+
SOL?: string | number | null | undefined;
|
|
1464
1752
|
} | undefined;
|
|
1465
1753
|
};
|
|
1466
1754
|
network_fee_hundredth_pips: number;
|
|
@@ -2229,8 +2517,8 @@ declare const rpcResult: {
|
|
|
2229
2517
|
};
|
|
2230
2518
|
};
|
|
2231
2519
|
}>;
|
|
2232
|
-
Arbitrum: z.
|
|
2233
|
-
ETH: z.
|
|
2520
|
+
Arbitrum: z.ZodObject<{
|
|
2521
|
+
ETH: z.ZodObject<{
|
|
2234
2522
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2235
2523
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2236
2524
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2329,8 +2617,8 @@ declare const rpcResult: {
|
|
|
2329
2617
|
chain: "Ethereum";
|
|
2330
2618
|
asset: "USDC";
|
|
2331
2619
|
};
|
|
2332
|
-
}
|
|
2333
|
-
USDC: z.
|
|
2620
|
+
}>;
|
|
2621
|
+
USDC: z.ZodObject<{
|
|
2334
2622
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2335
2623
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2336
2624
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -2429,7 +2717,7 @@ declare const rpcResult: {
|
|
|
2429
2717
|
chain: "Ethereum";
|
|
2430
2718
|
asset: "USDC";
|
|
2431
2719
|
};
|
|
2432
|
-
}
|
|
2720
|
+
}>;
|
|
2433
2721
|
}, "strip", z.ZodTypeAny, {
|
|
2434
2722
|
ETH: {
|
|
2435
2723
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -2480,7 +2768,7 @@ declare const rpcResult: {
|
|
|
2480
2768
|
};
|
|
2481
2769
|
};
|
|
2482
2770
|
}, {
|
|
2483
|
-
ETH
|
|
2771
|
+
ETH: {
|
|
2484
2772
|
limit_order_fee_hundredth_pips: number;
|
|
2485
2773
|
range_order_fee_hundredth_pips: number;
|
|
2486
2774
|
range_order_total_fees_earned: {
|
|
@@ -2503,8 +2791,8 @@ declare const rpcResult: {
|
|
|
2503
2791
|
chain: "Ethereum";
|
|
2504
2792
|
asset: "USDC";
|
|
2505
2793
|
};
|
|
2506
|
-
}
|
|
2507
|
-
USDC
|
|
2794
|
+
};
|
|
2795
|
+
USDC: {
|
|
2508
2796
|
limit_order_fee_hundredth_pips: number;
|
|
2509
2797
|
range_order_fee_hundredth_pips: number;
|
|
2510
2798
|
range_order_total_fees_earned: {
|
|
@@ -2527,18 +2815,318 @@ declare const rpcResult: {
|
|
|
2527
2815
|
chain: "Ethereum";
|
|
2528
2816
|
asset: "USDC";
|
|
2529
2817
|
};
|
|
2530
|
-
}
|
|
2531
|
-
}
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2818
|
+
};
|
|
2819
|
+
}>;
|
|
2820
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
2821
|
+
SOL: z.ZodDefault<z.ZodObject<{
|
|
2822
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2823
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2824
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
2825
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2826
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2827
|
+
}, "strip", z.ZodTypeAny, {
|
|
2538
2828
|
base: bigint;
|
|
2539
2829
|
quote: bigint;
|
|
2540
|
-
}
|
|
2541
|
-
|
|
2830
|
+
}, {
|
|
2831
|
+
base: string;
|
|
2832
|
+
quote: string;
|
|
2833
|
+
}>;
|
|
2834
|
+
limit_order_total_fees_earned: z.ZodObject<{
|
|
2835
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2836
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2837
|
+
}, "strip", z.ZodTypeAny, {
|
|
2838
|
+
base: bigint;
|
|
2839
|
+
quote: bigint;
|
|
2840
|
+
}, {
|
|
2841
|
+
base: string;
|
|
2842
|
+
quote: string;
|
|
2843
|
+
}>;
|
|
2844
|
+
range_total_swap_inputs: z.ZodObject<{
|
|
2845
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2846
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2847
|
+
}, "strip", z.ZodTypeAny, {
|
|
2848
|
+
base: bigint;
|
|
2849
|
+
quote: bigint;
|
|
2850
|
+
}, {
|
|
2851
|
+
base: string;
|
|
2852
|
+
quote: string;
|
|
2853
|
+
}>;
|
|
2854
|
+
limit_total_swap_inputs: z.ZodObject<{
|
|
2855
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2856
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2857
|
+
}, "strip", z.ZodTypeAny, {
|
|
2858
|
+
base: bigint;
|
|
2859
|
+
quote: bigint;
|
|
2860
|
+
}, {
|
|
2861
|
+
base: string;
|
|
2862
|
+
quote: string;
|
|
2863
|
+
}>;
|
|
2864
|
+
quote_asset: z.ZodObject<{
|
|
2865
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
2866
|
+
asset: z.ZodLiteral<"USDC">;
|
|
2867
|
+
}, "strip", z.ZodTypeAny, {
|
|
2868
|
+
chain: "Ethereum";
|
|
2869
|
+
asset: "USDC";
|
|
2870
|
+
}, {
|
|
2871
|
+
chain: "Ethereum";
|
|
2872
|
+
asset: "USDC";
|
|
2873
|
+
}>;
|
|
2874
|
+
}, "strip", z.ZodTypeAny, {
|
|
2875
|
+
limit_order_fee_hundredth_pips: number;
|
|
2876
|
+
range_order_fee_hundredth_pips: number;
|
|
2877
|
+
range_order_total_fees_earned: {
|
|
2878
|
+
base: bigint;
|
|
2879
|
+
quote: bigint;
|
|
2880
|
+
};
|
|
2881
|
+
limit_order_total_fees_earned: {
|
|
2882
|
+
base: bigint;
|
|
2883
|
+
quote: bigint;
|
|
2884
|
+
};
|
|
2885
|
+
range_total_swap_inputs: {
|
|
2886
|
+
base: bigint;
|
|
2887
|
+
quote: bigint;
|
|
2888
|
+
};
|
|
2889
|
+
limit_total_swap_inputs: {
|
|
2890
|
+
base: bigint;
|
|
2891
|
+
quote: bigint;
|
|
2892
|
+
};
|
|
2893
|
+
quote_asset: {
|
|
2894
|
+
chain: "Ethereum";
|
|
2895
|
+
asset: "USDC";
|
|
2896
|
+
};
|
|
2897
|
+
}, {
|
|
2898
|
+
limit_order_fee_hundredth_pips: number;
|
|
2899
|
+
range_order_fee_hundredth_pips: number;
|
|
2900
|
+
range_order_total_fees_earned: {
|
|
2901
|
+
base: string;
|
|
2902
|
+
quote: string;
|
|
2903
|
+
};
|
|
2904
|
+
limit_order_total_fees_earned: {
|
|
2905
|
+
base: string;
|
|
2906
|
+
quote: string;
|
|
2907
|
+
};
|
|
2908
|
+
range_total_swap_inputs: {
|
|
2909
|
+
base: string;
|
|
2910
|
+
quote: string;
|
|
2911
|
+
};
|
|
2912
|
+
limit_total_swap_inputs: {
|
|
2913
|
+
base: string;
|
|
2914
|
+
quote: string;
|
|
2915
|
+
};
|
|
2916
|
+
quote_asset: {
|
|
2917
|
+
chain: "Ethereum";
|
|
2918
|
+
asset: "USDC";
|
|
2919
|
+
};
|
|
2920
|
+
}>>;
|
|
2921
|
+
USDC: z.ZodDefault<z.ZodObject<{
|
|
2922
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
2923
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
2924
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
2925
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2926
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2927
|
+
}, "strip", z.ZodTypeAny, {
|
|
2928
|
+
base: bigint;
|
|
2929
|
+
quote: bigint;
|
|
2930
|
+
}, {
|
|
2931
|
+
base: string;
|
|
2932
|
+
quote: string;
|
|
2933
|
+
}>;
|
|
2934
|
+
limit_order_total_fees_earned: z.ZodObject<{
|
|
2935
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2936
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2937
|
+
}, "strip", z.ZodTypeAny, {
|
|
2938
|
+
base: bigint;
|
|
2939
|
+
quote: bigint;
|
|
2940
|
+
}, {
|
|
2941
|
+
base: string;
|
|
2942
|
+
quote: string;
|
|
2943
|
+
}>;
|
|
2944
|
+
range_total_swap_inputs: z.ZodObject<{
|
|
2945
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2946
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2947
|
+
}, "strip", z.ZodTypeAny, {
|
|
2948
|
+
base: bigint;
|
|
2949
|
+
quote: bigint;
|
|
2950
|
+
}, {
|
|
2951
|
+
base: string;
|
|
2952
|
+
quote: string;
|
|
2953
|
+
}>;
|
|
2954
|
+
limit_total_swap_inputs: z.ZodObject<{
|
|
2955
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2956
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
2957
|
+
}, "strip", z.ZodTypeAny, {
|
|
2958
|
+
base: bigint;
|
|
2959
|
+
quote: bigint;
|
|
2960
|
+
}, {
|
|
2961
|
+
base: string;
|
|
2962
|
+
quote: string;
|
|
2963
|
+
}>;
|
|
2964
|
+
quote_asset: z.ZodObject<{
|
|
2965
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
2966
|
+
asset: z.ZodLiteral<"USDC">;
|
|
2967
|
+
}, "strip", z.ZodTypeAny, {
|
|
2968
|
+
chain: "Ethereum";
|
|
2969
|
+
asset: "USDC";
|
|
2970
|
+
}, {
|
|
2971
|
+
chain: "Ethereum";
|
|
2972
|
+
asset: "USDC";
|
|
2973
|
+
}>;
|
|
2974
|
+
}, "strip", z.ZodTypeAny, {
|
|
2975
|
+
limit_order_fee_hundredth_pips: number;
|
|
2976
|
+
range_order_fee_hundredth_pips: number;
|
|
2977
|
+
range_order_total_fees_earned: {
|
|
2978
|
+
base: bigint;
|
|
2979
|
+
quote: bigint;
|
|
2980
|
+
};
|
|
2981
|
+
limit_order_total_fees_earned: {
|
|
2982
|
+
base: bigint;
|
|
2983
|
+
quote: bigint;
|
|
2984
|
+
};
|
|
2985
|
+
range_total_swap_inputs: {
|
|
2986
|
+
base: bigint;
|
|
2987
|
+
quote: bigint;
|
|
2988
|
+
};
|
|
2989
|
+
limit_total_swap_inputs: {
|
|
2990
|
+
base: bigint;
|
|
2991
|
+
quote: bigint;
|
|
2992
|
+
};
|
|
2993
|
+
quote_asset: {
|
|
2994
|
+
chain: "Ethereum";
|
|
2995
|
+
asset: "USDC";
|
|
2996
|
+
};
|
|
2997
|
+
}, {
|
|
2998
|
+
limit_order_fee_hundredth_pips: number;
|
|
2999
|
+
range_order_fee_hundredth_pips: number;
|
|
3000
|
+
range_order_total_fees_earned: {
|
|
3001
|
+
base: string;
|
|
3002
|
+
quote: string;
|
|
3003
|
+
};
|
|
3004
|
+
limit_order_total_fees_earned: {
|
|
3005
|
+
base: string;
|
|
3006
|
+
quote: string;
|
|
3007
|
+
};
|
|
3008
|
+
range_total_swap_inputs: {
|
|
3009
|
+
base: string;
|
|
3010
|
+
quote: string;
|
|
3011
|
+
};
|
|
3012
|
+
limit_total_swap_inputs: {
|
|
3013
|
+
base: string;
|
|
3014
|
+
quote: string;
|
|
3015
|
+
};
|
|
3016
|
+
quote_asset: {
|
|
3017
|
+
chain: "Ethereum";
|
|
3018
|
+
asset: "USDC";
|
|
3019
|
+
};
|
|
3020
|
+
}>>;
|
|
3021
|
+
}, "strip", z.ZodTypeAny, {
|
|
3022
|
+
USDC: {
|
|
3023
|
+
limit_order_fee_hundredth_pips: number;
|
|
3024
|
+
range_order_fee_hundredth_pips: number;
|
|
3025
|
+
range_order_total_fees_earned: {
|
|
3026
|
+
base: bigint;
|
|
3027
|
+
quote: bigint;
|
|
3028
|
+
};
|
|
3029
|
+
limit_order_total_fees_earned: {
|
|
3030
|
+
base: bigint;
|
|
3031
|
+
quote: bigint;
|
|
3032
|
+
};
|
|
3033
|
+
range_total_swap_inputs: {
|
|
3034
|
+
base: bigint;
|
|
3035
|
+
quote: bigint;
|
|
3036
|
+
};
|
|
3037
|
+
limit_total_swap_inputs: {
|
|
3038
|
+
base: bigint;
|
|
3039
|
+
quote: bigint;
|
|
3040
|
+
};
|
|
3041
|
+
quote_asset: {
|
|
3042
|
+
chain: "Ethereum";
|
|
3043
|
+
asset: "USDC";
|
|
3044
|
+
};
|
|
3045
|
+
};
|
|
3046
|
+
SOL: {
|
|
3047
|
+
limit_order_fee_hundredth_pips: number;
|
|
3048
|
+
range_order_fee_hundredth_pips: number;
|
|
3049
|
+
range_order_total_fees_earned: {
|
|
3050
|
+
base: bigint;
|
|
3051
|
+
quote: bigint;
|
|
3052
|
+
};
|
|
3053
|
+
limit_order_total_fees_earned: {
|
|
3054
|
+
base: bigint;
|
|
3055
|
+
quote: bigint;
|
|
3056
|
+
};
|
|
3057
|
+
range_total_swap_inputs: {
|
|
3058
|
+
base: bigint;
|
|
3059
|
+
quote: bigint;
|
|
3060
|
+
};
|
|
3061
|
+
limit_total_swap_inputs: {
|
|
3062
|
+
base: bigint;
|
|
3063
|
+
quote: bigint;
|
|
3064
|
+
};
|
|
3065
|
+
quote_asset: {
|
|
3066
|
+
chain: "Ethereum";
|
|
3067
|
+
asset: "USDC";
|
|
3068
|
+
};
|
|
3069
|
+
};
|
|
3070
|
+
}, {
|
|
3071
|
+
USDC?: {
|
|
3072
|
+
limit_order_fee_hundredth_pips: number;
|
|
3073
|
+
range_order_fee_hundredth_pips: number;
|
|
3074
|
+
range_order_total_fees_earned: {
|
|
3075
|
+
base: string;
|
|
3076
|
+
quote: string;
|
|
3077
|
+
};
|
|
3078
|
+
limit_order_total_fees_earned: {
|
|
3079
|
+
base: string;
|
|
3080
|
+
quote: string;
|
|
3081
|
+
};
|
|
3082
|
+
range_total_swap_inputs: {
|
|
3083
|
+
base: string;
|
|
3084
|
+
quote: string;
|
|
3085
|
+
};
|
|
3086
|
+
limit_total_swap_inputs: {
|
|
3087
|
+
base: string;
|
|
3088
|
+
quote: string;
|
|
3089
|
+
};
|
|
3090
|
+
quote_asset: {
|
|
3091
|
+
chain: "Ethereum";
|
|
3092
|
+
asset: "USDC";
|
|
3093
|
+
};
|
|
3094
|
+
} | undefined;
|
|
3095
|
+
SOL?: {
|
|
3096
|
+
limit_order_fee_hundredth_pips: number;
|
|
3097
|
+
range_order_fee_hundredth_pips: number;
|
|
3098
|
+
range_order_total_fees_earned: {
|
|
3099
|
+
base: string;
|
|
3100
|
+
quote: string;
|
|
3101
|
+
};
|
|
3102
|
+
limit_order_total_fees_earned: {
|
|
3103
|
+
base: string;
|
|
3104
|
+
quote: string;
|
|
3105
|
+
};
|
|
3106
|
+
range_total_swap_inputs: {
|
|
3107
|
+
base: string;
|
|
3108
|
+
quote: string;
|
|
3109
|
+
};
|
|
3110
|
+
limit_total_swap_inputs: {
|
|
3111
|
+
base: string;
|
|
3112
|
+
quote: string;
|
|
3113
|
+
};
|
|
3114
|
+
quote_asset: {
|
|
3115
|
+
chain: "Ethereum";
|
|
3116
|
+
asset: "USDC";
|
|
3117
|
+
};
|
|
3118
|
+
} | undefined;
|
|
3119
|
+
}>>;
|
|
3120
|
+
}, "strip", z.ZodTypeAny, {
|
|
3121
|
+
Bitcoin: {
|
|
3122
|
+
BTC: {
|
|
3123
|
+
limit_order_fee_hundredth_pips: number;
|
|
3124
|
+
range_order_fee_hundredth_pips: number;
|
|
3125
|
+
range_order_total_fees_earned: {
|
|
3126
|
+
base: bigint;
|
|
3127
|
+
quote: bigint;
|
|
3128
|
+
};
|
|
3129
|
+
limit_order_total_fees_earned: {
|
|
2542
3130
|
base: bigint;
|
|
2543
3131
|
quote: bigint;
|
|
2544
3132
|
};
|
|
@@ -2706,6 +3294,56 @@ declare const rpcResult: {
|
|
|
2706
3294
|
};
|
|
2707
3295
|
};
|
|
2708
3296
|
};
|
|
3297
|
+
Solana: {
|
|
3298
|
+
USDC: {
|
|
3299
|
+
limit_order_fee_hundredth_pips: number;
|
|
3300
|
+
range_order_fee_hundredth_pips: number;
|
|
3301
|
+
range_order_total_fees_earned: {
|
|
3302
|
+
base: bigint;
|
|
3303
|
+
quote: bigint;
|
|
3304
|
+
};
|
|
3305
|
+
limit_order_total_fees_earned: {
|
|
3306
|
+
base: bigint;
|
|
3307
|
+
quote: bigint;
|
|
3308
|
+
};
|
|
3309
|
+
range_total_swap_inputs: {
|
|
3310
|
+
base: bigint;
|
|
3311
|
+
quote: bigint;
|
|
3312
|
+
};
|
|
3313
|
+
limit_total_swap_inputs: {
|
|
3314
|
+
base: bigint;
|
|
3315
|
+
quote: bigint;
|
|
3316
|
+
};
|
|
3317
|
+
quote_asset: {
|
|
3318
|
+
chain: "Ethereum";
|
|
3319
|
+
asset: "USDC";
|
|
3320
|
+
};
|
|
3321
|
+
};
|
|
3322
|
+
SOL: {
|
|
3323
|
+
limit_order_fee_hundredth_pips: number;
|
|
3324
|
+
range_order_fee_hundredth_pips: number;
|
|
3325
|
+
range_order_total_fees_earned: {
|
|
3326
|
+
base: bigint;
|
|
3327
|
+
quote: bigint;
|
|
3328
|
+
};
|
|
3329
|
+
limit_order_total_fees_earned: {
|
|
3330
|
+
base: bigint;
|
|
3331
|
+
quote: bigint;
|
|
3332
|
+
};
|
|
3333
|
+
range_total_swap_inputs: {
|
|
3334
|
+
base: bigint;
|
|
3335
|
+
quote: bigint;
|
|
3336
|
+
};
|
|
3337
|
+
limit_total_swap_inputs: {
|
|
3338
|
+
base: bigint;
|
|
3339
|
+
quote: bigint;
|
|
3340
|
+
};
|
|
3341
|
+
quote_asset: {
|
|
3342
|
+
chain: "Ethereum";
|
|
3343
|
+
asset: "USDC";
|
|
3344
|
+
};
|
|
3345
|
+
};
|
|
3346
|
+
};
|
|
2709
3347
|
}, {
|
|
2710
3348
|
Bitcoin: {
|
|
2711
3349
|
BTC: {
|
|
@@ -2833,8 +3471,58 @@ declare const rpcResult: {
|
|
|
2833
3471
|
};
|
|
2834
3472
|
};
|
|
2835
3473
|
};
|
|
2836
|
-
Arbitrum
|
|
2837
|
-
ETH
|
|
3474
|
+
Arbitrum: {
|
|
3475
|
+
ETH: {
|
|
3476
|
+
limit_order_fee_hundredth_pips: number;
|
|
3477
|
+
range_order_fee_hundredth_pips: number;
|
|
3478
|
+
range_order_total_fees_earned: {
|
|
3479
|
+
base: string;
|
|
3480
|
+
quote: string;
|
|
3481
|
+
};
|
|
3482
|
+
limit_order_total_fees_earned: {
|
|
3483
|
+
base: string;
|
|
3484
|
+
quote: string;
|
|
3485
|
+
};
|
|
3486
|
+
range_total_swap_inputs: {
|
|
3487
|
+
base: string;
|
|
3488
|
+
quote: string;
|
|
3489
|
+
};
|
|
3490
|
+
limit_total_swap_inputs: {
|
|
3491
|
+
base: string;
|
|
3492
|
+
quote: string;
|
|
3493
|
+
};
|
|
3494
|
+
quote_asset: {
|
|
3495
|
+
chain: "Ethereum";
|
|
3496
|
+
asset: "USDC";
|
|
3497
|
+
};
|
|
3498
|
+
};
|
|
3499
|
+
USDC: {
|
|
3500
|
+
limit_order_fee_hundredth_pips: number;
|
|
3501
|
+
range_order_fee_hundredth_pips: number;
|
|
3502
|
+
range_order_total_fees_earned: {
|
|
3503
|
+
base: string;
|
|
3504
|
+
quote: string;
|
|
3505
|
+
};
|
|
3506
|
+
limit_order_total_fees_earned: {
|
|
3507
|
+
base: string;
|
|
3508
|
+
quote: string;
|
|
3509
|
+
};
|
|
3510
|
+
range_total_swap_inputs: {
|
|
3511
|
+
base: string;
|
|
3512
|
+
quote: string;
|
|
3513
|
+
};
|
|
3514
|
+
limit_total_swap_inputs: {
|
|
3515
|
+
base: string;
|
|
3516
|
+
quote: string;
|
|
3517
|
+
};
|
|
3518
|
+
quote_asset: {
|
|
3519
|
+
chain: "Ethereum";
|
|
3520
|
+
asset: "USDC";
|
|
3521
|
+
};
|
|
3522
|
+
};
|
|
3523
|
+
};
|
|
3524
|
+
Solana?: {
|
|
3525
|
+
USDC?: {
|
|
2838
3526
|
limit_order_fee_hundredth_pips: number;
|
|
2839
3527
|
range_order_fee_hundredth_pips: number;
|
|
2840
3528
|
range_order_total_fees_earned: {
|
|
@@ -2858,7 +3546,7 @@ declare const rpcResult: {
|
|
|
2858
3546
|
asset: "USDC";
|
|
2859
3547
|
};
|
|
2860
3548
|
} | undefined;
|
|
2861
|
-
|
|
3549
|
+
SOL?: {
|
|
2862
3550
|
limit_order_fee_hundredth_pips: number;
|
|
2863
3551
|
range_order_fee_hundredth_pips: number;
|
|
2864
3552
|
range_order_total_fees_earned: {
|
|
@@ -3062,6 +3750,56 @@ declare const rpcResult: {
|
|
|
3062
3750
|
};
|
|
3063
3751
|
};
|
|
3064
3752
|
};
|
|
3753
|
+
Solana: {
|
|
3754
|
+
USDC: {
|
|
3755
|
+
limit_order_fee_hundredth_pips: number;
|
|
3756
|
+
range_order_fee_hundredth_pips: number;
|
|
3757
|
+
range_order_total_fees_earned: {
|
|
3758
|
+
base: bigint;
|
|
3759
|
+
quote: bigint;
|
|
3760
|
+
};
|
|
3761
|
+
limit_order_total_fees_earned: {
|
|
3762
|
+
base: bigint;
|
|
3763
|
+
quote: bigint;
|
|
3764
|
+
};
|
|
3765
|
+
range_total_swap_inputs: {
|
|
3766
|
+
base: bigint;
|
|
3767
|
+
quote: bigint;
|
|
3768
|
+
};
|
|
3769
|
+
limit_total_swap_inputs: {
|
|
3770
|
+
base: bigint;
|
|
3771
|
+
quote: bigint;
|
|
3772
|
+
};
|
|
3773
|
+
quote_asset: {
|
|
3774
|
+
chain: "Ethereum";
|
|
3775
|
+
asset: "USDC";
|
|
3776
|
+
};
|
|
3777
|
+
};
|
|
3778
|
+
SOL: {
|
|
3779
|
+
limit_order_fee_hundredth_pips: number;
|
|
3780
|
+
range_order_fee_hundredth_pips: number;
|
|
3781
|
+
range_order_total_fees_earned: {
|
|
3782
|
+
base: bigint;
|
|
3783
|
+
quote: bigint;
|
|
3784
|
+
};
|
|
3785
|
+
limit_order_total_fees_earned: {
|
|
3786
|
+
base: bigint;
|
|
3787
|
+
quote: bigint;
|
|
3788
|
+
};
|
|
3789
|
+
range_total_swap_inputs: {
|
|
3790
|
+
base: bigint;
|
|
3791
|
+
quote: bigint;
|
|
3792
|
+
};
|
|
3793
|
+
limit_total_swap_inputs: {
|
|
3794
|
+
base: bigint;
|
|
3795
|
+
quote: bigint;
|
|
3796
|
+
};
|
|
3797
|
+
quote_asset: {
|
|
3798
|
+
chain: "Ethereum";
|
|
3799
|
+
asset: "USDC";
|
|
3800
|
+
};
|
|
3801
|
+
};
|
|
3802
|
+
};
|
|
3065
3803
|
};
|
|
3066
3804
|
}, {
|
|
3067
3805
|
fees: {
|
|
@@ -3191,8 +3929,8 @@ declare const rpcResult: {
|
|
|
3191
3929
|
};
|
|
3192
3930
|
};
|
|
3193
3931
|
};
|
|
3194
|
-
Arbitrum
|
|
3195
|
-
ETH
|
|
3932
|
+
Arbitrum: {
|
|
3933
|
+
ETH: {
|
|
3196
3934
|
limit_order_fee_hundredth_pips: number;
|
|
3197
3935
|
range_order_fee_hundredth_pips: number;
|
|
3198
3936
|
range_order_total_fees_earned: {
|
|
@@ -3215,7 +3953,33 @@ declare const rpcResult: {
|
|
|
3215
3953
|
chain: "Ethereum";
|
|
3216
3954
|
asset: "USDC";
|
|
3217
3955
|
};
|
|
3218
|
-
}
|
|
3956
|
+
};
|
|
3957
|
+
USDC: {
|
|
3958
|
+
limit_order_fee_hundredth_pips: number;
|
|
3959
|
+
range_order_fee_hundredth_pips: number;
|
|
3960
|
+
range_order_total_fees_earned: {
|
|
3961
|
+
base: string;
|
|
3962
|
+
quote: string;
|
|
3963
|
+
};
|
|
3964
|
+
limit_order_total_fees_earned: {
|
|
3965
|
+
base: string;
|
|
3966
|
+
quote: string;
|
|
3967
|
+
};
|
|
3968
|
+
range_total_swap_inputs: {
|
|
3969
|
+
base: string;
|
|
3970
|
+
quote: string;
|
|
3971
|
+
};
|
|
3972
|
+
limit_total_swap_inputs: {
|
|
3973
|
+
base: string;
|
|
3974
|
+
quote: string;
|
|
3975
|
+
};
|
|
3976
|
+
quote_asset: {
|
|
3977
|
+
chain: "Ethereum";
|
|
3978
|
+
asset: "USDC";
|
|
3979
|
+
};
|
|
3980
|
+
};
|
|
3981
|
+
};
|
|
3982
|
+
Solana?: {
|
|
3219
3983
|
USDC?: {
|
|
3220
3984
|
limit_order_fee_hundredth_pips: number;
|
|
3221
3985
|
range_order_fee_hundredth_pips: number;
|
|
@@ -3240,6 +4004,30 @@ declare const rpcResult: {
|
|
|
3240
4004
|
asset: "USDC";
|
|
3241
4005
|
};
|
|
3242
4006
|
} | undefined;
|
|
4007
|
+
SOL?: {
|
|
4008
|
+
limit_order_fee_hundredth_pips: number;
|
|
4009
|
+
range_order_fee_hundredth_pips: number;
|
|
4010
|
+
range_order_total_fees_earned: {
|
|
4011
|
+
base: string;
|
|
4012
|
+
quote: string;
|
|
4013
|
+
};
|
|
4014
|
+
limit_order_total_fees_earned: {
|
|
4015
|
+
base: string;
|
|
4016
|
+
quote: string;
|
|
4017
|
+
};
|
|
4018
|
+
range_total_swap_inputs: {
|
|
4019
|
+
base: string;
|
|
4020
|
+
quote: string;
|
|
4021
|
+
};
|
|
4022
|
+
limit_total_swap_inputs: {
|
|
4023
|
+
base: string;
|
|
4024
|
+
quote: string;
|
|
4025
|
+
};
|
|
4026
|
+
quote_asset: {
|
|
4027
|
+
chain: "Ethereum";
|
|
4028
|
+
asset: "USDC";
|
|
4029
|
+
};
|
|
4030
|
+
} | undefined;
|
|
3243
4031
|
} | undefined;
|
|
3244
4032
|
};
|
|
3245
4033
|
}>;
|
|
@@ -3262,6 +4050,10 @@ declare const rpcResult: {
|
|
|
3262
4050
|
ETH: bigint;
|
|
3263
4051
|
USDC: bigint;
|
|
3264
4052
|
};
|
|
4053
|
+
Solana: {
|
|
4054
|
+
USDC: bigint;
|
|
4055
|
+
SOL: bigint;
|
|
4056
|
+
};
|
|
3265
4057
|
};
|
|
3266
4058
|
ingress_fees: {
|
|
3267
4059
|
Bitcoin: {
|
|
@@ -3280,6 +4072,10 @@ declare const rpcResult: {
|
|
|
3280
4072
|
ETH: bigint | null;
|
|
3281
4073
|
USDC: bigint | null;
|
|
3282
4074
|
};
|
|
4075
|
+
Solana: {
|
|
4076
|
+
USDC: bigint | null;
|
|
4077
|
+
SOL: bigint | null;
|
|
4078
|
+
};
|
|
3283
4079
|
};
|
|
3284
4080
|
egress_fees: {
|
|
3285
4081
|
Bitcoin: {
|
|
@@ -3298,12 +4094,17 @@ declare const rpcResult: {
|
|
|
3298
4094
|
ETH: bigint | null;
|
|
3299
4095
|
USDC: bigint | null;
|
|
3300
4096
|
};
|
|
4097
|
+
Solana: {
|
|
4098
|
+
USDC: bigint | null;
|
|
4099
|
+
SOL: bigint | null;
|
|
4100
|
+
};
|
|
3301
4101
|
};
|
|
3302
4102
|
witness_safety_margins: {
|
|
3303
4103
|
Bitcoin: number | null;
|
|
3304
4104
|
Ethereum: number | null;
|
|
3305
4105
|
Polkadot: number | null;
|
|
3306
4106
|
Arbitrum: number | null;
|
|
4107
|
+
Solana: number | null;
|
|
3307
4108
|
};
|
|
3308
4109
|
egress_dust_limits: {
|
|
3309
4110
|
Bitcoin: {
|
|
@@ -3322,18 +4123,24 @@ declare const rpcResult: {
|
|
|
3322
4123
|
ETH: bigint;
|
|
3323
4124
|
USDC: bigint;
|
|
3324
4125
|
};
|
|
4126
|
+
Solana: {
|
|
4127
|
+
USDC: bigint;
|
|
4128
|
+
SOL: bigint;
|
|
4129
|
+
};
|
|
3325
4130
|
};
|
|
3326
4131
|
channel_opening_fees: {
|
|
3327
4132
|
Bitcoin: bigint;
|
|
3328
4133
|
Ethereum: bigint;
|
|
3329
4134
|
Polkadot: bigint;
|
|
3330
4135
|
Arbitrum: bigint;
|
|
4136
|
+
Solana: bigint;
|
|
3331
4137
|
};
|
|
3332
4138
|
max_swap_retry_duration_blocks: {
|
|
3333
4139
|
Bitcoin: number;
|
|
3334
4140
|
Ethereum: number;
|
|
3335
4141
|
Polkadot: number;
|
|
3336
4142
|
Arbitrum: number;
|
|
4143
|
+
Solana: number;
|
|
3337
4144
|
};
|
|
3338
4145
|
}, "egress_dust_limits"> & {
|
|
3339
4146
|
readonly minimum_egress_amounts: {
|
|
@@ -3353,6 +4160,10 @@ declare const rpcResult: {
|
|
|
3353
4160
|
ETH: bigint;
|
|
3354
4161
|
USDC: bigint;
|
|
3355
4162
|
};
|
|
4163
|
+
Solana: {
|
|
4164
|
+
USDC: bigint;
|
|
4165
|
+
SOL: bigint;
|
|
4166
|
+
};
|
|
3356
4167
|
};
|
|
3357
4168
|
};
|
|
3358
4169
|
swapping: {
|
|
@@ -3373,6 +4184,10 @@ declare const rpcResult: {
|
|
|
3373
4184
|
ETH: bigint | null;
|
|
3374
4185
|
USDC: bigint | null;
|
|
3375
4186
|
};
|
|
4187
|
+
Solana: {
|
|
4188
|
+
USDC: bigint | null;
|
|
4189
|
+
SOL: bigint | null;
|
|
4190
|
+
};
|
|
3376
4191
|
};
|
|
3377
4192
|
network_fee_hundredth_pips: number;
|
|
3378
4193
|
};
|
|
@@ -3407,9 +4222,57 @@ declare const rpcResult: {
|
|
|
3407
4222
|
asset: "USDC";
|
|
3408
4223
|
};
|
|
3409
4224
|
};
|
|
3410
|
-
};
|
|
3411
|
-
Ethereum: {
|
|
3412
|
-
ETH: {
|
|
4225
|
+
};
|
|
4226
|
+
Ethereum: {
|
|
4227
|
+
ETH: {
|
|
4228
|
+
limit_order_fee_hundredth_pips: number;
|
|
4229
|
+
range_order_fee_hundredth_pips: number;
|
|
4230
|
+
range_order_total_fees_earned: {
|
|
4231
|
+
base: bigint;
|
|
4232
|
+
quote: bigint;
|
|
4233
|
+
};
|
|
4234
|
+
limit_order_total_fees_earned: {
|
|
4235
|
+
base: bigint;
|
|
4236
|
+
quote: bigint;
|
|
4237
|
+
};
|
|
4238
|
+
range_total_swap_inputs: {
|
|
4239
|
+
base: bigint;
|
|
4240
|
+
quote: bigint;
|
|
4241
|
+
};
|
|
4242
|
+
limit_total_swap_inputs: {
|
|
4243
|
+
base: bigint;
|
|
4244
|
+
quote: bigint;
|
|
4245
|
+
};
|
|
4246
|
+
quote_asset: {
|
|
4247
|
+
chain: "Ethereum";
|
|
4248
|
+
asset: "USDC";
|
|
4249
|
+
};
|
|
4250
|
+
};
|
|
4251
|
+
FLIP: {
|
|
4252
|
+
limit_order_fee_hundredth_pips: number;
|
|
4253
|
+
range_order_fee_hundredth_pips: number;
|
|
4254
|
+
range_order_total_fees_earned: {
|
|
4255
|
+
base: bigint;
|
|
4256
|
+
quote: bigint;
|
|
4257
|
+
};
|
|
4258
|
+
limit_order_total_fees_earned: {
|
|
4259
|
+
base: bigint;
|
|
4260
|
+
quote: bigint;
|
|
4261
|
+
};
|
|
4262
|
+
range_total_swap_inputs: {
|
|
4263
|
+
base: bigint;
|
|
4264
|
+
quote: bigint;
|
|
4265
|
+
};
|
|
4266
|
+
limit_total_swap_inputs: {
|
|
4267
|
+
base: bigint;
|
|
4268
|
+
quote: bigint;
|
|
4269
|
+
};
|
|
4270
|
+
quote_asset: {
|
|
4271
|
+
chain: "Ethereum";
|
|
4272
|
+
asset: "USDC";
|
|
4273
|
+
};
|
|
4274
|
+
};
|
|
4275
|
+
USDT: {
|
|
3413
4276
|
limit_order_fee_hundredth_pips: number;
|
|
3414
4277
|
range_order_fee_hundredth_pips: number;
|
|
3415
4278
|
range_order_total_fees_earned: {
|
|
@@ -3433,7 +4296,9 @@ declare const rpcResult: {
|
|
|
3433
4296
|
asset: "USDC";
|
|
3434
4297
|
};
|
|
3435
4298
|
};
|
|
3436
|
-
|
|
4299
|
+
};
|
|
4300
|
+
Polkadot: {
|
|
4301
|
+
DOT: {
|
|
3437
4302
|
limit_order_fee_hundredth_pips: number;
|
|
3438
4303
|
range_order_fee_hundredth_pips: number;
|
|
3439
4304
|
range_order_total_fees_earned: {
|
|
@@ -3457,7 +4322,9 @@ declare const rpcResult: {
|
|
|
3457
4322
|
asset: "USDC";
|
|
3458
4323
|
};
|
|
3459
4324
|
};
|
|
3460
|
-
|
|
4325
|
+
};
|
|
4326
|
+
Arbitrum: {
|
|
4327
|
+
ETH: {
|
|
3461
4328
|
limit_order_fee_hundredth_pips: number;
|
|
3462
4329
|
range_order_fee_hundredth_pips: number;
|
|
3463
4330
|
range_order_total_fees_earned: {
|
|
@@ -3481,9 +4348,7 @@ declare const rpcResult: {
|
|
|
3481
4348
|
asset: "USDC";
|
|
3482
4349
|
};
|
|
3483
4350
|
};
|
|
3484
|
-
|
|
3485
|
-
Polkadot: {
|
|
3486
|
-
DOT: {
|
|
4351
|
+
USDC: {
|
|
3487
4352
|
limit_order_fee_hundredth_pips: number;
|
|
3488
4353
|
range_order_fee_hundredth_pips: number;
|
|
3489
4354
|
range_order_total_fees_earned: {
|
|
@@ -3508,8 +4373,8 @@ declare const rpcResult: {
|
|
|
3508
4373
|
};
|
|
3509
4374
|
};
|
|
3510
4375
|
};
|
|
3511
|
-
|
|
3512
|
-
|
|
4376
|
+
Solana: {
|
|
4377
|
+
USDC: {
|
|
3513
4378
|
limit_order_fee_hundredth_pips: number;
|
|
3514
4379
|
range_order_fee_hundredth_pips: number;
|
|
3515
4380
|
range_order_total_fees_earned: {
|
|
@@ -3533,7 +4398,7 @@ declare const rpcResult: {
|
|
|
3533
4398
|
asset: "USDC";
|
|
3534
4399
|
};
|
|
3535
4400
|
};
|
|
3536
|
-
|
|
4401
|
+
SOL: {
|
|
3537
4402
|
limit_order_fee_hundredth_pips: number;
|
|
3538
4403
|
range_order_fee_hundredth_pips: number;
|
|
3539
4404
|
range_order_total_fees_earned: {
|
|
@@ -3575,9 +4440,13 @@ declare const rpcResult: {
|
|
|
3575
4440
|
Polkadot: {
|
|
3576
4441
|
DOT: string | number;
|
|
3577
4442
|
};
|
|
3578
|
-
Arbitrum
|
|
3579
|
-
ETH
|
|
4443
|
+
Arbitrum: {
|
|
4444
|
+
ETH: string | number;
|
|
4445
|
+
USDC: string | number;
|
|
4446
|
+
};
|
|
4447
|
+
Solana?: {
|
|
3580
4448
|
USDC?: string | number | undefined;
|
|
4449
|
+
SOL?: string | number | undefined;
|
|
3581
4450
|
} | undefined;
|
|
3582
4451
|
};
|
|
3583
4452
|
ingress_fees: {
|
|
@@ -3593,9 +4462,13 @@ declare const rpcResult: {
|
|
|
3593
4462
|
Polkadot: {
|
|
3594
4463
|
DOT: string | number | null;
|
|
3595
4464
|
};
|
|
3596
|
-
Arbitrum
|
|
3597
|
-
ETH
|
|
4465
|
+
Arbitrum: {
|
|
4466
|
+
ETH: string | number | null;
|
|
4467
|
+
USDC: string | number | null;
|
|
4468
|
+
};
|
|
4469
|
+
Solana?: {
|
|
3598
4470
|
USDC?: string | number | null | undefined;
|
|
4471
|
+
SOL?: string | number | null | undefined;
|
|
3599
4472
|
} | undefined;
|
|
3600
4473
|
};
|
|
3601
4474
|
egress_fees: {
|
|
@@ -3611,16 +4484,21 @@ declare const rpcResult: {
|
|
|
3611
4484
|
Polkadot: {
|
|
3612
4485
|
DOT: string | number | null;
|
|
3613
4486
|
};
|
|
3614
|
-
Arbitrum
|
|
3615
|
-
ETH
|
|
4487
|
+
Arbitrum: {
|
|
4488
|
+
ETH: string | number | null;
|
|
4489
|
+
USDC: string | number | null;
|
|
4490
|
+
};
|
|
4491
|
+
Solana?: {
|
|
3616
4492
|
USDC?: string | number | null | undefined;
|
|
4493
|
+
SOL?: string | number | null | undefined;
|
|
3617
4494
|
} | undefined;
|
|
3618
4495
|
};
|
|
3619
4496
|
witness_safety_margins: {
|
|
3620
4497
|
Bitcoin: number | null;
|
|
3621
4498
|
Ethereum: number | null;
|
|
3622
4499
|
Polkadot: number | null;
|
|
3623
|
-
Arbitrum
|
|
4500
|
+
Arbitrum: number | null;
|
|
4501
|
+
Solana?: number | null | undefined;
|
|
3624
4502
|
};
|
|
3625
4503
|
egress_dust_limits: {
|
|
3626
4504
|
Bitcoin: {
|
|
@@ -3635,22 +4513,28 @@ declare const rpcResult: {
|
|
|
3635
4513
|
Polkadot: {
|
|
3636
4514
|
DOT: string | number;
|
|
3637
4515
|
};
|
|
3638
|
-
Arbitrum
|
|
3639
|
-
ETH
|
|
4516
|
+
Arbitrum: {
|
|
4517
|
+
ETH: string | number;
|
|
4518
|
+
USDC: string | number;
|
|
4519
|
+
};
|
|
4520
|
+
Solana?: {
|
|
3640
4521
|
USDC?: string | number | undefined;
|
|
4522
|
+
SOL?: string | number | undefined;
|
|
3641
4523
|
} | undefined;
|
|
3642
4524
|
};
|
|
3643
4525
|
channel_opening_fees: {
|
|
3644
4526
|
Bitcoin: string | number;
|
|
3645
4527
|
Ethereum: string | number;
|
|
3646
4528
|
Polkadot: string | number;
|
|
3647
|
-
Arbitrum
|
|
4529
|
+
Arbitrum: string | number;
|
|
4530
|
+
Solana?: string | number | undefined;
|
|
3648
4531
|
};
|
|
3649
4532
|
max_swap_retry_duration_blocks?: {
|
|
3650
4533
|
Bitcoin: number;
|
|
3651
4534
|
Ethereum: number;
|
|
3652
4535
|
Polkadot: number;
|
|
3653
|
-
Arbitrum
|
|
4536
|
+
Arbitrum: number;
|
|
4537
|
+
Solana?: number | undefined;
|
|
3654
4538
|
} | undefined;
|
|
3655
4539
|
};
|
|
3656
4540
|
swapping: {
|
|
@@ -3667,9 +4551,13 @@ declare const rpcResult: {
|
|
|
3667
4551
|
Polkadot: {
|
|
3668
4552
|
DOT: string | number | null;
|
|
3669
4553
|
};
|
|
3670
|
-
Arbitrum
|
|
3671
|
-
ETH
|
|
4554
|
+
Arbitrum: {
|
|
4555
|
+
ETH: string | number | null;
|
|
4556
|
+
USDC: string | number | null;
|
|
4557
|
+
};
|
|
4558
|
+
Solana?: {
|
|
3672
4559
|
USDC?: string | number | null | undefined;
|
|
4560
|
+
SOL?: string | number | null | undefined;
|
|
3673
4561
|
} | undefined;
|
|
3674
4562
|
};
|
|
3675
4563
|
network_fee_hundredth_pips: number;
|
|
@@ -3806,8 +4694,58 @@ declare const rpcResult: {
|
|
|
3806
4694
|
};
|
|
3807
4695
|
};
|
|
3808
4696
|
};
|
|
3809
|
-
Arbitrum
|
|
3810
|
-
ETH
|
|
4697
|
+
Arbitrum: {
|
|
4698
|
+
ETH: {
|
|
4699
|
+
limit_order_fee_hundredth_pips: number;
|
|
4700
|
+
range_order_fee_hundredth_pips: number;
|
|
4701
|
+
range_order_total_fees_earned: {
|
|
4702
|
+
base: string;
|
|
4703
|
+
quote: string;
|
|
4704
|
+
};
|
|
4705
|
+
limit_order_total_fees_earned: {
|
|
4706
|
+
base: string;
|
|
4707
|
+
quote: string;
|
|
4708
|
+
};
|
|
4709
|
+
range_total_swap_inputs: {
|
|
4710
|
+
base: string;
|
|
4711
|
+
quote: string;
|
|
4712
|
+
};
|
|
4713
|
+
limit_total_swap_inputs: {
|
|
4714
|
+
base: string;
|
|
4715
|
+
quote: string;
|
|
4716
|
+
};
|
|
4717
|
+
quote_asset: {
|
|
4718
|
+
chain: "Ethereum";
|
|
4719
|
+
asset: "USDC";
|
|
4720
|
+
};
|
|
4721
|
+
};
|
|
4722
|
+
USDC: {
|
|
4723
|
+
limit_order_fee_hundredth_pips: number;
|
|
4724
|
+
range_order_fee_hundredth_pips: number;
|
|
4725
|
+
range_order_total_fees_earned: {
|
|
4726
|
+
base: string;
|
|
4727
|
+
quote: string;
|
|
4728
|
+
};
|
|
4729
|
+
limit_order_total_fees_earned: {
|
|
4730
|
+
base: string;
|
|
4731
|
+
quote: string;
|
|
4732
|
+
};
|
|
4733
|
+
range_total_swap_inputs: {
|
|
4734
|
+
base: string;
|
|
4735
|
+
quote: string;
|
|
4736
|
+
};
|
|
4737
|
+
limit_total_swap_inputs: {
|
|
4738
|
+
base: string;
|
|
4739
|
+
quote: string;
|
|
4740
|
+
};
|
|
4741
|
+
quote_asset: {
|
|
4742
|
+
chain: "Ethereum";
|
|
4743
|
+
asset: "USDC";
|
|
4744
|
+
};
|
|
4745
|
+
};
|
|
4746
|
+
};
|
|
4747
|
+
Solana?: {
|
|
4748
|
+
USDC?: {
|
|
3811
4749
|
limit_order_fee_hundredth_pips: number;
|
|
3812
4750
|
range_order_fee_hundredth_pips: number;
|
|
3813
4751
|
range_order_total_fees_earned: {
|
|
@@ -3831,7 +4769,7 @@ declare const rpcResult: {
|
|
|
3831
4769
|
asset: "USDC";
|
|
3832
4770
|
};
|
|
3833
4771
|
} | undefined;
|
|
3834
|
-
|
|
4772
|
+
SOL?: {
|
|
3835
4773
|
limit_order_fee_hundredth_pips: number;
|
|
3836
4774
|
range_order_fee_hundredth_pips: number;
|
|
3837
4775
|
range_order_total_fees_earned: {
|
|
@@ -3901,15 +4839,25 @@ declare const rpcResult: {
|
|
|
3901
4839
|
}, {
|
|
3902
4840
|
DOT: string | number;
|
|
3903
4841
|
}>;
|
|
3904
|
-
Arbitrum: z.
|
|
3905
|
-
ETH: z.
|
|
3906
|
-
USDC: z.
|
|
4842
|
+
Arbitrum: z.ZodObject<{
|
|
4843
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
4844
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3907
4845
|
}, "strip", z.ZodTypeAny, {
|
|
3908
4846
|
ETH: bigint;
|
|
3909
4847
|
USDC: bigint;
|
|
3910
4848
|
}, {
|
|
3911
|
-
ETH
|
|
4849
|
+
ETH: string | number;
|
|
4850
|
+
USDC: string | number;
|
|
4851
|
+
}>;
|
|
4852
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
4853
|
+
SOL: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
4854
|
+
USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
4855
|
+
}, "strip", z.ZodTypeAny, {
|
|
4856
|
+
USDC: bigint;
|
|
4857
|
+
SOL: bigint;
|
|
4858
|
+
}, {
|
|
3912
4859
|
USDC?: string | number | undefined;
|
|
4860
|
+
SOL?: string | number | undefined;
|
|
3913
4861
|
}>>;
|
|
3914
4862
|
}, "strip", z.ZodTypeAny, {
|
|
3915
4863
|
Bitcoin: {
|
|
@@ -3928,6 +4876,10 @@ declare const rpcResult: {
|
|
|
3928
4876
|
ETH: bigint;
|
|
3929
4877
|
USDC: bigint;
|
|
3930
4878
|
};
|
|
4879
|
+
Solana: {
|
|
4880
|
+
USDC: bigint;
|
|
4881
|
+
SOL: bigint;
|
|
4882
|
+
};
|
|
3931
4883
|
}, {
|
|
3932
4884
|
Bitcoin: {
|
|
3933
4885
|
BTC: string | number;
|
|
@@ -3941,9 +4893,13 @@ declare const rpcResult: {
|
|
|
3941
4893
|
Polkadot: {
|
|
3942
4894
|
DOT: string | number;
|
|
3943
4895
|
};
|
|
3944
|
-
Arbitrum
|
|
3945
|
-
ETH
|
|
4896
|
+
Arbitrum: {
|
|
4897
|
+
ETH: string | number;
|
|
4898
|
+
USDC: string | number;
|
|
4899
|
+
};
|
|
4900
|
+
Solana?: {
|
|
3946
4901
|
USDC?: string | number | undefined;
|
|
4902
|
+
SOL?: string | number | undefined;
|
|
3947
4903
|
} | undefined;
|
|
3948
4904
|
}>;
|
|
3949
4905
|
ingress_fees: z.ZodObject<{
|
|
@@ -3977,15 +4933,25 @@ declare const rpcResult: {
|
|
|
3977
4933
|
}, {
|
|
3978
4934
|
DOT: string | number | null;
|
|
3979
4935
|
}>;
|
|
3980
|
-
Arbitrum: z.
|
|
3981
|
-
ETH: z.
|
|
3982
|
-
USDC: z.
|
|
4936
|
+
Arbitrum: z.ZodObject<{
|
|
4937
|
+
ETH: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
4938
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
3983
4939
|
}, "strip", z.ZodTypeAny, {
|
|
3984
4940
|
ETH: bigint | null;
|
|
3985
4941
|
USDC: bigint | null;
|
|
3986
4942
|
}, {
|
|
3987
|
-
ETH
|
|
4943
|
+
ETH: string | number | null;
|
|
4944
|
+
USDC: string | number | null;
|
|
4945
|
+
}>;
|
|
4946
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
4947
|
+
SOL: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
4948
|
+
USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
4949
|
+
}, "strip", z.ZodTypeAny, {
|
|
4950
|
+
USDC: bigint | null;
|
|
4951
|
+
SOL: bigint | null;
|
|
4952
|
+
}, {
|
|
3988
4953
|
USDC?: string | number | null | undefined;
|
|
4954
|
+
SOL?: string | number | null | undefined;
|
|
3989
4955
|
}>>;
|
|
3990
4956
|
}, "strip", z.ZodTypeAny, {
|
|
3991
4957
|
Bitcoin: {
|
|
@@ -4004,6 +4970,10 @@ declare const rpcResult: {
|
|
|
4004
4970
|
ETH: bigint | null;
|
|
4005
4971
|
USDC: bigint | null;
|
|
4006
4972
|
};
|
|
4973
|
+
Solana: {
|
|
4974
|
+
USDC: bigint | null;
|
|
4975
|
+
SOL: bigint | null;
|
|
4976
|
+
};
|
|
4007
4977
|
}, {
|
|
4008
4978
|
Bitcoin: {
|
|
4009
4979
|
BTC: string | number | null;
|
|
@@ -4017,9 +4987,13 @@ declare const rpcResult: {
|
|
|
4017
4987
|
Polkadot: {
|
|
4018
4988
|
DOT: string | number | null;
|
|
4019
4989
|
};
|
|
4020
|
-
Arbitrum
|
|
4021
|
-
ETH
|
|
4990
|
+
Arbitrum: {
|
|
4991
|
+
ETH: string | number | null;
|
|
4992
|
+
USDC: string | number | null;
|
|
4993
|
+
};
|
|
4994
|
+
Solana?: {
|
|
4022
4995
|
USDC?: string | number | null | undefined;
|
|
4996
|
+
SOL?: string | number | null | undefined;
|
|
4023
4997
|
} | undefined;
|
|
4024
4998
|
}>;
|
|
4025
4999
|
egress_fees: z.ZodObject<{
|
|
@@ -4053,15 +5027,25 @@ declare const rpcResult: {
|
|
|
4053
5027
|
}, {
|
|
4054
5028
|
DOT: string | number | null;
|
|
4055
5029
|
}>;
|
|
4056
|
-
Arbitrum: z.
|
|
4057
|
-
ETH: z.
|
|
4058
|
-
USDC: z.
|
|
5030
|
+
Arbitrum: z.ZodObject<{
|
|
5031
|
+
ETH: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
5032
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
4059
5033
|
}, "strip", z.ZodTypeAny, {
|
|
4060
5034
|
ETH: bigint | null;
|
|
4061
5035
|
USDC: bigint | null;
|
|
4062
5036
|
}, {
|
|
4063
|
-
ETH
|
|
5037
|
+
ETH: string | number | null;
|
|
5038
|
+
USDC: string | number | null;
|
|
5039
|
+
}>;
|
|
5040
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
5041
|
+
SOL: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
5042
|
+
USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
5043
|
+
}, "strip", z.ZodTypeAny, {
|
|
5044
|
+
USDC: bigint | null;
|
|
5045
|
+
SOL: bigint | null;
|
|
5046
|
+
}, {
|
|
4064
5047
|
USDC?: string | number | null | undefined;
|
|
5048
|
+
SOL?: string | number | null | undefined;
|
|
4065
5049
|
}>>;
|
|
4066
5050
|
}, "strip", z.ZodTypeAny, {
|
|
4067
5051
|
Bitcoin: {
|
|
@@ -4080,6 +5064,10 @@ declare const rpcResult: {
|
|
|
4080
5064
|
ETH: bigint | null;
|
|
4081
5065
|
USDC: bigint | null;
|
|
4082
5066
|
};
|
|
5067
|
+
Solana: {
|
|
5068
|
+
USDC: bigint | null;
|
|
5069
|
+
SOL: bigint | null;
|
|
5070
|
+
};
|
|
4083
5071
|
}, {
|
|
4084
5072
|
Bitcoin: {
|
|
4085
5073
|
BTC: string | number | null;
|
|
@@ -4093,26 +5081,33 @@ declare const rpcResult: {
|
|
|
4093
5081
|
Polkadot: {
|
|
4094
5082
|
DOT: string | number | null;
|
|
4095
5083
|
};
|
|
4096
|
-
Arbitrum
|
|
4097
|
-
ETH
|
|
5084
|
+
Arbitrum: {
|
|
5085
|
+
ETH: string | number | null;
|
|
5086
|
+
USDC: string | number | null;
|
|
5087
|
+
};
|
|
5088
|
+
Solana?: {
|
|
4098
5089
|
USDC?: string | number | null | undefined;
|
|
5090
|
+
SOL?: string | number | null | undefined;
|
|
4099
5091
|
} | undefined;
|
|
4100
5092
|
}>;
|
|
4101
5093
|
witness_safety_margins: z.ZodObject<{
|
|
4102
5094
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
4103
5095
|
Ethereum: z.ZodNullable<z.ZodNumber>;
|
|
4104
5096
|
Polkadot: z.ZodNullable<z.ZodNumber>;
|
|
4105
|
-
Arbitrum: z.
|
|
5097
|
+
Arbitrum: z.ZodNullable<z.ZodNumber>;
|
|
5098
|
+
Solana: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
4106
5099
|
}, "strip", z.ZodTypeAny, {
|
|
4107
5100
|
Bitcoin: number | null;
|
|
4108
5101
|
Ethereum: number | null;
|
|
4109
5102
|
Polkadot: number | null;
|
|
4110
5103
|
Arbitrum: number | null;
|
|
5104
|
+
Solana: number | null;
|
|
4111
5105
|
}, {
|
|
4112
5106
|
Bitcoin: number | null;
|
|
4113
5107
|
Ethereum: number | null;
|
|
4114
5108
|
Polkadot: number | null;
|
|
4115
|
-
Arbitrum
|
|
5109
|
+
Arbitrum: number | null;
|
|
5110
|
+
Solana?: number | null | undefined;
|
|
4116
5111
|
}>;
|
|
4117
5112
|
egress_dust_limits: z.ZodObject<{
|
|
4118
5113
|
Bitcoin: z.ZodObject<{
|
|
@@ -4145,15 +5140,25 @@ declare const rpcResult: {
|
|
|
4145
5140
|
}, {
|
|
4146
5141
|
DOT: string | number;
|
|
4147
5142
|
}>;
|
|
4148
|
-
Arbitrum: z.
|
|
4149
|
-
ETH: z.
|
|
4150
|
-
USDC: z.
|
|
5143
|
+
Arbitrum: z.ZodObject<{
|
|
5144
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
5145
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
4151
5146
|
}, "strip", z.ZodTypeAny, {
|
|
4152
5147
|
ETH: bigint;
|
|
4153
5148
|
USDC: bigint;
|
|
4154
5149
|
}, {
|
|
4155
|
-
ETH
|
|
5150
|
+
ETH: string | number;
|
|
5151
|
+
USDC: string | number;
|
|
5152
|
+
}>;
|
|
5153
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
5154
|
+
SOL: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
5155
|
+
USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
5156
|
+
}, "strip", z.ZodTypeAny, {
|
|
5157
|
+
USDC: bigint;
|
|
5158
|
+
SOL: bigint;
|
|
5159
|
+
}, {
|
|
4156
5160
|
USDC?: string | number | undefined;
|
|
5161
|
+
SOL?: string | number | undefined;
|
|
4157
5162
|
}>>;
|
|
4158
5163
|
}, "strip", z.ZodTypeAny, {
|
|
4159
5164
|
Bitcoin: {
|
|
@@ -4172,6 +5177,10 @@ declare const rpcResult: {
|
|
|
4172
5177
|
ETH: bigint;
|
|
4173
5178
|
USDC: bigint;
|
|
4174
5179
|
};
|
|
5180
|
+
Solana: {
|
|
5181
|
+
USDC: bigint;
|
|
5182
|
+
SOL: bigint;
|
|
5183
|
+
};
|
|
4175
5184
|
}, {
|
|
4176
5185
|
Bitcoin: {
|
|
4177
5186
|
BTC: string | number;
|
|
@@ -4185,42 +5194,52 @@ declare const rpcResult: {
|
|
|
4185
5194
|
Polkadot: {
|
|
4186
5195
|
DOT: string | number;
|
|
4187
5196
|
};
|
|
4188
|
-
Arbitrum
|
|
4189
|
-
ETH
|
|
5197
|
+
Arbitrum: {
|
|
5198
|
+
ETH: string | number;
|
|
5199
|
+
USDC: string | number;
|
|
5200
|
+
};
|
|
5201
|
+
Solana?: {
|
|
4190
5202
|
USDC?: string | number | undefined;
|
|
5203
|
+
SOL?: string | number | undefined;
|
|
4191
5204
|
} | undefined;
|
|
4192
5205
|
}>;
|
|
4193
5206
|
channel_opening_fees: z.ZodObject<{
|
|
4194
5207
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
4195
5208
|
Ethereum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
4196
5209
|
Polkadot: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
4197
|
-
Arbitrum: z.
|
|
5210
|
+
Arbitrum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
5211
|
+
Solana: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
4198
5212
|
}, "strip", z.ZodTypeAny, {
|
|
4199
5213
|
Bitcoin: bigint;
|
|
4200
5214
|
Ethereum: bigint;
|
|
4201
5215
|
Polkadot: bigint;
|
|
4202
5216
|
Arbitrum: bigint;
|
|
5217
|
+
Solana: bigint;
|
|
4203
5218
|
}, {
|
|
4204
5219
|
Bitcoin: string | number;
|
|
4205
5220
|
Ethereum: string | number;
|
|
4206
5221
|
Polkadot: string | number;
|
|
4207
|
-
Arbitrum
|
|
5222
|
+
Arbitrum: string | number;
|
|
5223
|
+
Solana?: string | number | undefined;
|
|
4208
5224
|
}>;
|
|
4209
5225
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
4210
5226
|
Bitcoin: z.ZodNumber;
|
|
4211
5227
|
Ethereum: z.ZodNumber;
|
|
4212
5228
|
Polkadot: z.ZodNumber;
|
|
4213
|
-
Arbitrum: z.
|
|
5229
|
+
Arbitrum: z.ZodNumber;
|
|
5230
|
+
Solana: z.ZodDefault<z.ZodNumber>;
|
|
4214
5231
|
}, "strip", z.ZodTypeAny, {
|
|
4215
5232
|
Bitcoin: number;
|
|
4216
5233
|
Ethereum: number;
|
|
4217
5234
|
Polkadot: number;
|
|
4218
5235
|
Arbitrum: number;
|
|
5236
|
+
Solana: number;
|
|
4219
5237
|
}, {
|
|
4220
5238
|
Bitcoin: number;
|
|
4221
5239
|
Ethereum: number;
|
|
4222
5240
|
Polkadot: number;
|
|
4223
|
-
Arbitrum
|
|
5241
|
+
Arbitrum: number;
|
|
5242
|
+
Solana?: number | undefined;
|
|
4224
5243
|
}>>>;
|
|
4225
5244
|
}, "strip", z.ZodTypeAny, {
|
|
4226
5245
|
minimum_deposit_amounts: {
|
|
@@ -4240,6 +5259,10 @@ declare const rpcResult: {
|
|
|
4240
5259
|
ETH: bigint;
|
|
4241
5260
|
USDC: bigint;
|
|
4242
5261
|
};
|
|
5262
|
+
Solana: {
|
|
5263
|
+
USDC: bigint;
|
|
5264
|
+
SOL: bigint;
|
|
5265
|
+
};
|
|
4243
5266
|
};
|
|
4244
5267
|
ingress_fees: {
|
|
4245
5268
|
Bitcoin: {
|
|
@@ -4258,6 +5281,10 @@ declare const rpcResult: {
|
|
|
4258
5281
|
ETH: bigint | null;
|
|
4259
5282
|
USDC: bigint | null;
|
|
4260
5283
|
};
|
|
5284
|
+
Solana: {
|
|
5285
|
+
USDC: bigint | null;
|
|
5286
|
+
SOL: bigint | null;
|
|
5287
|
+
};
|
|
4261
5288
|
};
|
|
4262
5289
|
egress_fees: {
|
|
4263
5290
|
Bitcoin: {
|
|
@@ -4276,12 +5303,17 @@ declare const rpcResult: {
|
|
|
4276
5303
|
ETH: bigint | null;
|
|
4277
5304
|
USDC: bigint | null;
|
|
4278
5305
|
};
|
|
5306
|
+
Solana: {
|
|
5307
|
+
USDC: bigint | null;
|
|
5308
|
+
SOL: bigint | null;
|
|
5309
|
+
};
|
|
4279
5310
|
};
|
|
4280
5311
|
witness_safety_margins: {
|
|
4281
5312
|
Bitcoin: number | null;
|
|
4282
5313
|
Ethereum: number | null;
|
|
4283
5314
|
Polkadot: number | null;
|
|
4284
5315
|
Arbitrum: number | null;
|
|
5316
|
+
Solana: number | null;
|
|
4285
5317
|
};
|
|
4286
5318
|
egress_dust_limits: {
|
|
4287
5319
|
Bitcoin: {
|
|
@@ -4300,18 +5332,24 @@ declare const rpcResult: {
|
|
|
4300
5332
|
ETH: bigint;
|
|
4301
5333
|
USDC: bigint;
|
|
4302
5334
|
};
|
|
5335
|
+
Solana: {
|
|
5336
|
+
USDC: bigint;
|
|
5337
|
+
SOL: bigint;
|
|
5338
|
+
};
|
|
4303
5339
|
};
|
|
4304
5340
|
channel_opening_fees: {
|
|
4305
5341
|
Bitcoin: bigint;
|
|
4306
5342
|
Ethereum: bigint;
|
|
4307
5343
|
Polkadot: bigint;
|
|
4308
5344
|
Arbitrum: bigint;
|
|
5345
|
+
Solana: bigint;
|
|
4309
5346
|
};
|
|
4310
5347
|
max_swap_retry_duration_blocks: {
|
|
4311
5348
|
Bitcoin: number;
|
|
4312
5349
|
Ethereum: number;
|
|
4313
5350
|
Polkadot: number;
|
|
4314
5351
|
Arbitrum: number;
|
|
5352
|
+
Solana: number;
|
|
4315
5353
|
};
|
|
4316
5354
|
}, {
|
|
4317
5355
|
minimum_deposit_amounts: {
|
|
@@ -4327,9 +5365,13 @@ declare const rpcResult: {
|
|
|
4327
5365
|
Polkadot: {
|
|
4328
5366
|
DOT: string | number;
|
|
4329
5367
|
};
|
|
4330
|
-
Arbitrum
|
|
4331
|
-
ETH
|
|
5368
|
+
Arbitrum: {
|
|
5369
|
+
ETH: string | number;
|
|
5370
|
+
USDC: string | number;
|
|
5371
|
+
};
|
|
5372
|
+
Solana?: {
|
|
4332
5373
|
USDC?: string | number | undefined;
|
|
5374
|
+
SOL?: string | number | undefined;
|
|
4333
5375
|
} | undefined;
|
|
4334
5376
|
};
|
|
4335
5377
|
ingress_fees: {
|
|
@@ -4345,9 +5387,13 @@ declare const rpcResult: {
|
|
|
4345
5387
|
Polkadot: {
|
|
4346
5388
|
DOT: string | number | null;
|
|
4347
5389
|
};
|
|
4348
|
-
Arbitrum
|
|
4349
|
-
ETH
|
|
5390
|
+
Arbitrum: {
|
|
5391
|
+
ETH: string | number | null;
|
|
5392
|
+
USDC: string | number | null;
|
|
5393
|
+
};
|
|
5394
|
+
Solana?: {
|
|
4350
5395
|
USDC?: string | number | null | undefined;
|
|
5396
|
+
SOL?: string | number | null | undefined;
|
|
4351
5397
|
} | undefined;
|
|
4352
5398
|
};
|
|
4353
5399
|
egress_fees: {
|
|
@@ -4363,16 +5409,21 @@ declare const rpcResult: {
|
|
|
4363
5409
|
Polkadot: {
|
|
4364
5410
|
DOT: string | number | null;
|
|
4365
5411
|
};
|
|
4366
|
-
Arbitrum
|
|
4367
|
-
ETH
|
|
5412
|
+
Arbitrum: {
|
|
5413
|
+
ETH: string | number | null;
|
|
5414
|
+
USDC: string | number | null;
|
|
5415
|
+
};
|
|
5416
|
+
Solana?: {
|
|
4368
5417
|
USDC?: string | number | null | undefined;
|
|
5418
|
+
SOL?: string | number | null | undefined;
|
|
4369
5419
|
} | undefined;
|
|
4370
5420
|
};
|
|
4371
5421
|
witness_safety_margins: {
|
|
4372
5422
|
Bitcoin: number | null;
|
|
4373
5423
|
Ethereum: number | null;
|
|
4374
5424
|
Polkadot: number | null;
|
|
4375
|
-
Arbitrum
|
|
5425
|
+
Arbitrum: number | null;
|
|
5426
|
+
Solana?: number | null | undefined;
|
|
4376
5427
|
};
|
|
4377
5428
|
egress_dust_limits: {
|
|
4378
5429
|
Bitcoin: {
|
|
@@ -4387,22 +5438,28 @@ declare const rpcResult: {
|
|
|
4387
5438
|
Polkadot: {
|
|
4388
5439
|
DOT: string | number;
|
|
4389
5440
|
};
|
|
4390
|
-
Arbitrum
|
|
4391
|
-
ETH
|
|
5441
|
+
Arbitrum: {
|
|
5442
|
+
ETH: string | number;
|
|
5443
|
+
USDC: string | number;
|
|
5444
|
+
};
|
|
5445
|
+
Solana?: {
|
|
4392
5446
|
USDC?: string | number | undefined;
|
|
5447
|
+
SOL?: string | number | undefined;
|
|
4393
5448
|
} | undefined;
|
|
4394
5449
|
};
|
|
4395
5450
|
channel_opening_fees: {
|
|
4396
5451
|
Bitcoin: string | number;
|
|
4397
5452
|
Ethereum: string | number;
|
|
4398
5453
|
Polkadot: string | number;
|
|
4399
|
-
Arbitrum
|
|
5454
|
+
Arbitrum: string | number;
|
|
5455
|
+
Solana?: string | number | undefined;
|
|
4400
5456
|
};
|
|
4401
5457
|
max_swap_retry_duration_blocks?: {
|
|
4402
5458
|
Bitcoin: number;
|
|
4403
5459
|
Ethereum: number;
|
|
4404
5460
|
Polkadot: number;
|
|
4405
|
-
Arbitrum
|
|
5461
|
+
Arbitrum: number;
|
|
5462
|
+
Solana?: number | undefined;
|
|
4406
5463
|
} | undefined;
|
|
4407
5464
|
}>, Omit<{
|
|
4408
5465
|
minimum_deposit_amounts: {
|
|
@@ -4422,6 +5479,10 @@ declare const rpcResult: {
|
|
|
4422
5479
|
ETH: bigint;
|
|
4423
5480
|
USDC: bigint;
|
|
4424
5481
|
};
|
|
5482
|
+
Solana: {
|
|
5483
|
+
USDC: bigint;
|
|
5484
|
+
SOL: bigint;
|
|
5485
|
+
};
|
|
4425
5486
|
};
|
|
4426
5487
|
ingress_fees: {
|
|
4427
5488
|
Bitcoin: {
|
|
@@ -4440,6 +5501,10 @@ declare const rpcResult: {
|
|
|
4440
5501
|
ETH: bigint | null;
|
|
4441
5502
|
USDC: bigint | null;
|
|
4442
5503
|
};
|
|
5504
|
+
Solana: {
|
|
5505
|
+
USDC: bigint | null;
|
|
5506
|
+
SOL: bigint | null;
|
|
5507
|
+
};
|
|
4443
5508
|
};
|
|
4444
5509
|
egress_fees: {
|
|
4445
5510
|
Bitcoin: {
|
|
@@ -4458,12 +5523,17 @@ declare const rpcResult: {
|
|
|
4458
5523
|
ETH: bigint | null;
|
|
4459
5524
|
USDC: bigint | null;
|
|
4460
5525
|
};
|
|
5526
|
+
Solana: {
|
|
5527
|
+
USDC: bigint | null;
|
|
5528
|
+
SOL: bigint | null;
|
|
5529
|
+
};
|
|
4461
5530
|
};
|
|
4462
5531
|
witness_safety_margins: {
|
|
4463
5532
|
Bitcoin: number | null;
|
|
4464
5533
|
Ethereum: number | null;
|
|
4465
5534
|
Polkadot: number | null;
|
|
4466
5535
|
Arbitrum: number | null;
|
|
5536
|
+
Solana: number | null;
|
|
4467
5537
|
};
|
|
4468
5538
|
egress_dust_limits: {
|
|
4469
5539
|
Bitcoin: {
|
|
@@ -4482,18 +5552,24 @@ declare const rpcResult: {
|
|
|
4482
5552
|
ETH: bigint;
|
|
4483
5553
|
USDC: bigint;
|
|
4484
5554
|
};
|
|
5555
|
+
Solana: {
|
|
5556
|
+
USDC: bigint;
|
|
5557
|
+
SOL: bigint;
|
|
5558
|
+
};
|
|
4485
5559
|
};
|
|
4486
5560
|
channel_opening_fees: {
|
|
4487
5561
|
Bitcoin: bigint;
|
|
4488
5562
|
Ethereum: bigint;
|
|
4489
5563
|
Polkadot: bigint;
|
|
4490
5564
|
Arbitrum: bigint;
|
|
5565
|
+
Solana: bigint;
|
|
4491
5566
|
};
|
|
4492
5567
|
max_swap_retry_duration_blocks: {
|
|
4493
5568
|
Bitcoin: number;
|
|
4494
5569
|
Ethereum: number;
|
|
4495
5570
|
Polkadot: number;
|
|
4496
5571
|
Arbitrum: number;
|
|
5572
|
+
Solana: number;
|
|
4497
5573
|
};
|
|
4498
5574
|
}, "egress_dust_limits"> & {
|
|
4499
5575
|
readonly minimum_egress_amounts: {
|
|
@@ -4513,6 +5589,10 @@ declare const rpcResult: {
|
|
|
4513
5589
|
ETH: bigint;
|
|
4514
5590
|
USDC: bigint;
|
|
4515
5591
|
};
|
|
5592
|
+
Solana: {
|
|
5593
|
+
USDC: bigint;
|
|
5594
|
+
SOL: bigint;
|
|
5595
|
+
};
|
|
4516
5596
|
};
|
|
4517
5597
|
}, {
|
|
4518
5598
|
minimum_deposit_amounts: {
|
|
@@ -4528,9 +5608,13 @@ declare const rpcResult: {
|
|
|
4528
5608
|
Polkadot: {
|
|
4529
5609
|
DOT: string | number;
|
|
4530
5610
|
};
|
|
4531
|
-
Arbitrum
|
|
4532
|
-
ETH
|
|
5611
|
+
Arbitrum: {
|
|
5612
|
+
ETH: string | number;
|
|
5613
|
+
USDC: string | number;
|
|
5614
|
+
};
|
|
5615
|
+
Solana?: {
|
|
4533
5616
|
USDC?: string | number | undefined;
|
|
5617
|
+
SOL?: string | number | undefined;
|
|
4534
5618
|
} | undefined;
|
|
4535
5619
|
};
|
|
4536
5620
|
ingress_fees: {
|
|
@@ -4546,9 +5630,13 @@ declare const rpcResult: {
|
|
|
4546
5630
|
Polkadot: {
|
|
4547
5631
|
DOT: string | number | null;
|
|
4548
5632
|
};
|
|
4549
|
-
Arbitrum
|
|
4550
|
-
ETH
|
|
5633
|
+
Arbitrum: {
|
|
5634
|
+
ETH: string | number | null;
|
|
5635
|
+
USDC: string | number | null;
|
|
5636
|
+
};
|
|
5637
|
+
Solana?: {
|
|
4551
5638
|
USDC?: string | number | null | undefined;
|
|
5639
|
+
SOL?: string | number | null | undefined;
|
|
4552
5640
|
} | undefined;
|
|
4553
5641
|
};
|
|
4554
5642
|
egress_fees: {
|
|
@@ -4564,16 +5652,21 @@ declare const rpcResult: {
|
|
|
4564
5652
|
Polkadot: {
|
|
4565
5653
|
DOT: string | number | null;
|
|
4566
5654
|
};
|
|
4567
|
-
Arbitrum
|
|
4568
|
-
ETH
|
|
5655
|
+
Arbitrum: {
|
|
5656
|
+
ETH: string | number | null;
|
|
5657
|
+
USDC: string | number | null;
|
|
5658
|
+
};
|
|
5659
|
+
Solana?: {
|
|
4569
5660
|
USDC?: string | number | null | undefined;
|
|
5661
|
+
SOL?: string | number | null | undefined;
|
|
4570
5662
|
} | undefined;
|
|
4571
5663
|
};
|
|
4572
5664
|
witness_safety_margins: {
|
|
4573
5665
|
Bitcoin: number | null;
|
|
4574
5666
|
Ethereum: number | null;
|
|
4575
5667
|
Polkadot: number | null;
|
|
4576
|
-
Arbitrum
|
|
5668
|
+
Arbitrum: number | null;
|
|
5669
|
+
Solana?: number | null | undefined;
|
|
4577
5670
|
};
|
|
4578
5671
|
egress_dust_limits: {
|
|
4579
5672
|
Bitcoin: {
|
|
@@ -4588,22 +5681,28 @@ declare const rpcResult: {
|
|
|
4588
5681
|
Polkadot: {
|
|
4589
5682
|
DOT: string | number;
|
|
4590
5683
|
};
|
|
4591
|
-
Arbitrum
|
|
4592
|
-
ETH
|
|
5684
|
+
Arbitrum: {
|
|
5685
|
+
ETH: string | number;
|
|
5686
|
+
USDC: string | number;
|
|
5687
|
+
};
|
|
5688
|
+
Solana?: {
|
|
4593
5689
|
USDC?: string | number | undefined;
|
|
5690
|
+
SOL?: string | number | undefined;
|
|
4594
5691
|
} | undefined;
|
|
4595
5692
|
};
|
|
4596
5693
|
channel_opening_fees: {
|
|
4597
5694
|
Bitcoin: string | number;
|
|
4598
5695
|
Ethereum: string | number;
|
|
4599
5696
|
Polkadot: string | number;
|
|
4600
|
-
Arbitrum
|
|
5697
|
+
Arbitrum: string | number;
|
|
5698
|
+
Solana?: string | number | undefined;
|
|
4601
5699
|
};
|
|
4602
5700
|
max_swap_retry_duration_blocks?: {
|
|
4603
5701
|
Bitcoin: number;
|
|
4604
5702
|
Ethereum: number;
|
|
4605
5703
|
Polkadot: number;
|
|
4606
|
-
Arbitrum
|
|
5704
|
+
Arbitrum: number;
|
|
5705
|
+
Solana?: number | undefined;
|
|
4607
5706
|
} | undefined;
|
|
4608
5707
|
}>;
|
|
4609
5708
|
readonly cf_pool_orders: z.ZodObject<{
|
|
@@ -4937,6 +6036,24 @@ declare const rpcResult: {
|
|
|
4937
6036
|
}, {
|
|
4938
6037
|
chain: "Arbitrum";
|
|
4939
6038
|
asset: "USDC";
|
|
6039
|
+
}>, z.ZodObject<{
|
|
6040
|
+
chain: z.ZodLiteral<"Solana">;
|
|
6041
|
+
asset: z.ZodLiteral<"SOL">;
|
|
6042
|
+
}, "strip", z.ZodTypeAny, {
|
|
6043
|
+
chain: "Solana";
|
|
6044
|
+
asset: "SOL";
|
|
6045
|
+
}, {
|
|
6046
|
+
chain: "Solana";
|
|
6047
|
+
asset: "SOL";
|
|
6048
|
+
}>, z.ZodObject<{
|
|
6049
|
+
chain: z.ZodLiteral<"Solana">;
|
|
6050
|
+
asset: z.ZodLiteral<"USDC">;
|
|
6051
|
+
}, "strip", z.ZodTypeAny, {
|
|
6052
|
+
chain: "Solana";
|
|
6053
|
+
asset: "USDC";
|
|
6054
|
+
}, {
|
|
6055
|
+
chain: "Solana";
|
|
6056
|
+
asset: "USDC";
|
|
4940
6057
|
}>]>;
|
|
4941
6058
|
quote_asset: z.ZodUnion<[z.ZodObject<{
|
|
4942
6059
|
chain: z.ZodLiteral<"Bitcoin">;
|
|
@@ -5010,6 +6127,24 @@ declare const rpcResult: {
|
|
|
5010
6127
|
}, {
|
|
5011
6128
|
chain: "Arbitrum";
|
|
5012
6129
|
asset: "USDC";
|
|
6130
|
+
}>, z.ZodObject<{
|
|
6131
|
+
chain: z.ZodLiteral<"Solana">;
|
|
6132
|
+
asset: z.ZodLiteral<"SOL">;
|
|
6133
|
+
}, "strip", z.ZodTypeAny, {
|
|
6134
|
+
chain: "Solana";
|
|
6135
|
+
asset: "SOL";
|
|
6136
|
+
}, {
|
|
6137
|
+
chain: "Solana";
|
|
6138
|
+
asset: "SOL";
|
|
6139
|
+
}>, z.ZodObject<{
|
|
6140
|
+
chain: z.ZodLiteral<"Solana">;
|
|
6141
|
+
asset: z.ZodLiteral<"USDC">;
|
|
6142
|
+
}, "strip", z.ZodTypeAny, {
|
|
6143
|
+
chain: "Solana";
|
|
6144
|
+
asset: "USDC";
|
|
6145
|
+
}, {
|
|
6146
|
+
chain: "Solana";
|
|
6147
|
+
asset: "USDC";
|
|
5013
6148
|
}>]>;
|
|
5014
6149
|
}, "strip", z.ZodTypeAny, {
|
|
5015
6150
|
quote_asset: {
|
|
@@ -5034,7 +6169,13 @@ declare const rpcResult: {
|
|
|
5034
6169
|
chain: "Arbitrum";
|
|
5035
6170
|
asset: "ETH";
|
|
5036
6171
|
} | {
|
|
5037
|
-
chain: "Arbitrum";
|
|
6172
|
+
chain: "Arbitrum";
|
|
6173
|
+
asset: "USDC";
|
|
6174
|
+
} | {
|
|
6175
|
+
chain: "Solana";
|
|
6176
|
+
asset: "SOL";
|
|
6177
|
+
} | {
|
|
6178
|
+
chain: "Solana";
|
|
5038
6179
|
asset: "USDC";
|
|
5039
6180
|
};
|
|
5040
6181
|
sell: bigint | null;
|
|
@@ -5064,6 +6205,12 @@ declare const rpcResult: {
|
|
|
5064
6205
|
} | {
|
|
5065
6206
|
chain: "Arbitrum";
|
|
5066
6207
|
asset: "USDC";
|
|
6208
|
+
} | {
|
|
6209
|
+
chain: "Solana";
|
|
6210
|
+
asset: "SOL";
|
|
6211
|
+
} | {
|
|
6212
|
+
chain: "Solana";
|
|
6213
|
+
asset: "USDC";
|
|
5067
6214
|
};
|
|
5068
6215
|
}, {
|
|
5069
6216
|
quote_asset: {
|
|
@@ -5090,6 +6237,12 @@ declare const rpcResult: {
|
|
|
5090
6237
|
} | {
|
|
5091
6238
|
chain: "Arbitrum";
|
|
5092
6239
|
asset: "USDC";
|
|
6240
|
+
} | {
|
|
6241
|
+
chain: "Solana";
|
|
6242
|
+
asset: "SOL";
|
|
6243
|
+
} | {
|
|
6244
|
+
chain: "Solana";
|
|
6245
|
+
asset: "USDC";
|
|
5093
6246
|
};
|
|
5094
6247
|
sell: string | number | null;
|
|
5095
6248
|
buy: string | number | null;
|
|
@@ -5118,6 +6271,12 @@ declare const rpcResult: {
|
|
|
5118
6271
|
} | {
|
|
5119
6272
|
chain: "Arbitrum";
|
|
5120
6273
|
asset: "USDC";
|
|
6274
|
+
} | {
|
|
6275
|
+
chain: "Solana";
|
|
6276
|
+
asset: "SOL";
|
|
6277
|
+
} | {
|
|
6278
|
+
chain: "Solana";
|
|
6279
|
+
asset: "USDC";
|
|
5121
6280
|
};
|
|
5122
6281
|
}>;
|
|
5123
6282
|
readonly cf_pools_environment: z.ZodObject<{
|
|
@@ -5432,26 +6591,272 @@ declare const rpcResult: {
|
|
|
5432
6591
|
limit_order_fee_hundredth_pips: number;
|
|
5433
6592
|
range_order_fee_hundredth_pips: number;
|
|
5434
6593
|
range_order_total_fees_earned: {
|
|
5435
|
-
base: bigint;
|
|
5436
|
-
quote: bigint;
|
|
6594
|
+
base: bigint;
|
|
6595
|
+
quote: bigint;
|
|
6596
|
+
};
|
|
6597
|
+
limit_order_total_fees_earned: {
|
|
6598
|
+
base: bigint;
|
|
6599
|
+
quote: bigint;
|
|
6600
|
+
};
|
|
6601
|
+
range_total_swap_inputs: {
|
|
6602
|
+
base: bigint;
|
|
6603
|
+
quote: bigint;
|
|
6604
|
+
};
|
|
6605
|
+
limit_total_swap_inputs: {
|
|
6606
|
+
base: bigint;
|
|
6607
|
+
quote: bigint;
|
|
6608
|
+
};
|
|
6609
|
+
quote_asset: {
|
|
6610
|
+
chain: "Ethereum";
|
|
6611
|
+
asset: "USDC";
|
|
6612
|
+
};
|
|
6613
|
+
}, {
|
|
6614
|
+
limit_order_fee_hundredth_pips: number;
|
|
6615
|
+
range_order_fee_hundredth_pips: number;
|
|
6616
|
+
range_order_total_fees_earned: {
|
|
6617
|
+
base: string;
|
|
6618
|
+
quote: string;
|
|
6619
|
+
};
|
|
6620
|
+
limit_order_total_fees_earned: {
|
|
6621
|
+
base: string;
|
|
6622
|
+
quote: string;
|
|
6623
|
+
};
|
|
6624
|
+
range_total_swap_inputs: {
|
|
6625
|
+
base: string;
|
|
6626
|
+
quote: string;
|
|
6627
|
+
};
|
|
6628
|
+
limit_total_swap_inputs: {
|
|
6629
|
+
base: string;
|
|
6630
|
+
quote: string;
|
|
6631
|
+
};
|
|
6632
|
+
quote_asset: {
|
|
6633
|
+
chain: "Ethereum";
|
|
6634
|
+
asset: "USDC";
|
|
6635
|
+
};
|
|
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, {
|
|
6691
|
+
limit_order_fee_hundredth_pips: number;
|
|
6692
|
+
range_order_fee_hundredth_pips: number;
|
|
6693
|
+
range_order_total_fees_earned: {
|
|
6694
|
+
base: bigint;
|
|
6695
|
+
quote: bigint;
|
|
6696
|
+
};
|
|
6697
|
+
limit_order_total_fees_earned: {
|
|
6698
|
+
base: bigint;
|
|
6699
|
+
quote: bigint;
|
|
6700
|
+
};
|
|
6701
|
+
range_total_swap_inputs: {
|
|
6702
|
+
base: bigint;
|
|
6703
|
+
quote: bigint;
|
|
6704
|
+
};
|
|
6705
|
+
limit_total_swap_inputs: {
|
|
6706
|
+
base: bigint;
|
|
6707
|
+
quote: bigint;
|
|
6708
|
+
};
|
|
6709
|
+
quote_asset: {
|
|
6710
|
+
chain: "Ethereum";
|
|
6711
|
+
asset: "USDC";
|
|
6712
|
+
};
|
|
6713
|
+
}, {
|
|
6714
|
+
limit_order_fee_hundredth_pips: number;
|
|
6715
|
+
range_order_fee_hundredth_pips: number;
|
|
6716
|
+
range_order_total_fees_earned: {
|
|
6717
|
+
base: string;
|
|
6718
|
+
quote: string;
|
|
6719
|
+
};
|
|
6720
|
+
limit_order_total_fees_earned: {
|
|
6721
|
+
base: string;
|
|
6722
|
+
quote: string;
|
|
6723
|
+
};
|
|
6724
|
+
range_total_swap_inputs: {
|
|
6725
|
+
base: string;
|
|
6726
|
+
quote: string;
|
|
6727
|
+
};
|
|
6728
|
+
limit_total_swap_inputs: {
|
|
6729
|
+
base: string;
|
|
6730
|
+
quote: string;
|
|
6731
|
+
};
|
|
6732
|
+
quote_asset: {
|
|
6733
|
+
chain: "Ethereum";
|
|
6734
|
+
asset: "USDC";
|
|
6735
|
+
};
|
|
6736
|
+
}>;
|
|
6737
|
+
}, "strip", z.ZodTypeAny, {
|
|
6738
|
+
ETH: {
|
|
6739
|
+
limit_order_fee_hundredth_pips: number;
|
|
6740
|
+
range_order_fee_hundredth_pips: number;
|
|
6741
|
+
range_order_total_fees_earned: {
|
|
6742
|
+
base: bigint;
|
|
6743
|
+
quote: bigint;
|
|
6744
|
+
};
|
|
6745
|
+
limit_order_total_fees_earned: {
|
|
6746
|
+
base: bigint;
|
|
6747
|
+
quote: bigint;
|
|
6748
|
+
};
|
|
6749
|
+
range_total_swap_inputs: {
|
|
6750
|
+
base: bigint;
|
|
6751
|
+
quote: bigint;
|
|
6752
|
+
};
|
|
6753
|
+
limit_total_swap_inputs: {
|
|
6754
|
+
base: bigint;
|
|
6755
|
+
quote: bigint;
|
|
6756
|
+
};
|
|
6757
|
+
quote_asset: {
|
|
6758
|
+
chain: "Ethereum";
|
|
6759
|
+
asset: "USDC";
|
|
6760
|
+
};
|
|
6761
|
+
};
|
|
6762
|
+
FLIP: {
|
|
6763
|
+
limit_order_fee_hundredth_pips: number;
|
|
6764
|
+
range_order_fee_hundredth_pips: number;
|
|
6765
|
+
range_order_total_fees_earned: {
|
|
6766
|
+
base: bigint;
|
|
6767
|
+
quote: bigint;
|
|
6768
|
+
};
|
|
6769
|
+
limit_order_total_fees_earned: {
|
|
6770
|
+
base: bigint;
|
|
6771
|
+
quote: bigint;
|
|
6772
|
+
};
|
|
6773
|
+
range_total_swap_inputs: {
|
|
6774
|
+
base: bigint;
|
|
6775
|
+
quote: bigint;
|
|
6776
|
+
};
|
|
6777
|
+
limit_total_swap_inputs: {
|
|
6778
|
+
base: bigint;
|
|
6779
|
+
quote: bigint;
|
|
6780
|
+
};
|
|
6781
|
+
quote_asset: {
|
|
6782
|
+
chain: "Ethereum";
|
|
6783
|
+
asset: "USDC";
|
|
6784
|
+
};
|
|
6785
|
+
};
|
|
6786
|
+
USDT: {
|
|
6787
|
+
limit_order_fee_hundredth_pips: number;
|
|
6788
|
+
range_order_fee_hundredth_pips: number;
|
|
6789
|
+
range_order_total_fees_earned: {
|
|
6790
|
+
base: bigint;
|
|
6791
|
+
quote: bigint;
|
|
6792
|
+
};
|
|
6793
|
+
limit_order_total_fees_earned: {
|
|
6794
|
+
base: bigint;
|
|
6795
|
+
quote: bigint;
|
|
6796
|
+
};
|
|
6797
|
+
range_total_swap_inputs: {
|
|
6798
|
+
base: bigint;
|
|
6799
|
+
quote: bigint;
|
|
6800
|
+
};
|
|
6801
|
+
limit_total_swap_inputs: {
|
|
6802
|
+
base: bigint;
|
|
6803
|
+
quote: bigint;
|
|
6804
|
+
};
|
|
6805
|
+
quote_asset: {
|
|
6806
|
+
chain: "Ethereum";
|
|
6807
|
+
asset: "USDC";
|
|
6808
|
+
};
|
|
6809
|
+
};
|
|
6810
|
+
}, {
|
|
6811
|
+
ETH: {
|
|
6812
|
+
limit_order_fee_hundredth_pips: number;
|
|
6813
|
+
range_order_fee_hundredth_pips: number;
|
|
6814
|
+
range_order_total_fees_earned: {
|
|
6815
|
+
base: string;
|
|
6816
|
+
quote: string;
|
|
6817
|
+
};
|
|
6818
|
+
limit_order_total_fees_earned: {
|
|
6819
|
+
base: string;
|
|
6820
|
+
quote: string;
|
|
6821
|
+
};
|
|
6822
|
+
range_total_swap_inputs: {
|
|
6823
|
+
base: string;
|
|
6824
|
+
quote: string;
|
|
6825
|
+
};
|
|
6826
|
+
limit_total_swap_inputs: {
|
|
6827
|
+
base: string;
|
|
6828
|
+
quote: string;
|
|
6829
|
+
};
|
|
6830
|
+
quote_asset: {
|
|
6831
|
+
chain: "Ethereum";
|
|
6832
|
+
asset: "USDC";
|
|
6833
|
+
};
|
|
6834
|
+
};
|
|
6835
|
+
FLIP: {
|
|
6836
|
+
limit_order_fee_hundredth_pips: number;
|
|
6837
|
+
range_order_fee_hundredth_pips: number;
|
|
6838
|
+
range_order_total_fees_earned: {
|
|
6839
|
+
base: string;
|
|
6840
|
+
quote: string;
|
|
5437
6841
|
};
|
|
5438
6842
|
limit_order_total_fees_earned: {
|
|
5439
|
-
base:
|
|
5440
|
-
quote:
|
|
6843
|
+
base: string;
|
|
6844
|
+
quote: string;
|
|
5441
6845
|
};
|
|
5442
6846
|
range_total_swap_inputs: {
|
|
5443
|
-
base:
|
|
5444
|
-
quote:
|
|
6847
|
+
base: string;
|
|
6848
|
+
quote: string;
|
|
5445
6849
|
};
|
|
5446
6850
|
limit_total_swap_inputs: {
|
|
5447
|
-
base:
|
|
5448
|
-
quote:
|
|
6851
|
+
base: string;
|
|
6852
|
+
quote: string;
|
|
5449
6853
|
};
|
|
5450
6854
|
quote_asset: {
|
|
5451
6855
|
chain: "Ethereum";
|
|
5452
6856
|
asset: "USDC";
|
|
5453
6857
|
};
|
|
5454
|
-
}
|
|
6858
|
+
};
|
|
6859
|
+
USDT: {
|
|
5455
6860
|
limit_order_fee_hundredth_pips: number;
|
|
5456
6861
|
range_order_fee_hundredth_pips: number;
|
|
5457
6862
|
range_order_total_fees_earned: {
|
|
@@ -5474,8 +6879,10 @@ declare const rpcResult: {
|
|
|
5474
6879
|
chain: "Ethereum";
|
|
5475
6880
|
asset: "USDC";
|
|
5476
6881
|
};
|
|
5477
|
-
}
|
|
5478
|
-
|
|
6882
|
+
};
|
|
6883
|
+
}>;
|
|
6884
|
+
Polkadot: z.ZodObject<{
|
|
6885
|
+
DOT: z.ZodObject<{
|
|
5479
6886
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5480
6887
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5481
6888
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5576,7 +6983,7 @@ declare const rpcResult: {
|
|
|
5576
6983
|
};
|
|
5577
6984
|
}>;
|
|
5578
6985
|
}, "strip", z.ZodTypeAny, {
|
|
5579
|
-
|
|
6986
|
+
DOT: {
|
|
5580
6987
|
limit_order_fee_hundredth_pips: number;
|
|
5581
6988
|
range_order_fee_hundredth_pips: number;
|
|
5582
6989
|
range_order_total_fees_earned: {
|
|
@@ -5600,104 +7007,110 @@ declare const rpcResult: {
|
|
|
5600
7007
|
asset: "USDC";
|
|
5601
7008
|
};
|
|
5602
7009
|
};
|
|
5603
|
-
|
|
7010
|
+
}, {
|
|
7011
|
+
DOT: {
|
|
5604
7012
|
limit_order_fee_hundredth_pips: number;
|
|
5605
7013
|
range_order_fee_hundredth_pips: number;
|
|
5606
7014
|
range_order_total_fees_earned: {
|
|
5607
|
-
base:
|
|
5608
|
-
quote:
|
|
7015
|
+
base: string;
|
|
7016
|
+
quote: string;
|
|
5609
7017
|
};
|
|
5610
7018
|
limit_order_total_fees_earned: {
|
|
5611
|
-
base:
|
|
5612
|
-
quote:
|
|
7019
|
+
base: string;
|
|
7020
|
+
quote: string;
|
|
5613
7021
|
};
|
|
5614
7022
|
range_total_swap_inputs: {
|
|
5615
|
-
base:
|
|
5616
|
-
quote:
|
|
7023
|
+
base: string;
|
|
7024
|
+
quote: string;
|
|
5617
7025
|
};
|
|
5618
7026
|
limit_total_swap_inputs: {
|
|
5619
|
-
base:
|
|
5620
|
-
quote:
|
|
7027
|
+
base: string;
|
|
7028
|
+
quote: string;
|
|
5621
7029
|
};
|
|
5622
7030
|
quote_asset: {
|
|
5623
7031
|
chain: "Ethereum";
|
|
5624
7032
|
asset: "USDC";
|
|
5625
7033
|
};
|
|
5626
7034
|
};
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
quote: bigint;
|
|
5637
|
-
};
|
|
5638
|
-
range_total_swap_inputs: {
|
|
5639
|
-
base: bigint;
|
|
5640
|
-
quote: bigint;
|
|
5641
|
-
};
|
|
5642
|
-
limit_total_swap_inputs: {
|
|
7035
|
+
}>;
|
|
7036
|
+
Arbitrum: z.ZodObject<{
|
|
7037
|
+
ETH: z.ZodObject<{
|
|
7038
|
+
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
7039
|
+
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
7040
|
+
range_order_total_fees_earned: z.ZodObject<{
|
|
7041
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7042
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7043
|
+
}, "strip", z.ZodTypeAny, {
|
|
5643
7044
|
base: bigint;
|
|
5644
7045
|
quote: bigint;
|
|
5645
|
-
}
|
|
5646
|
-
quote_asset: {
|
|
5647
|
-
chain: "Ethereum";
|
|
5648
|
-
asset: "USDC";
|
|
5649
|
-
};
|
|
5650
|
-
};
|
|
5651
|
-
}, {
|
|
5652
|
-
ETH: {
|
|
5653
|
-
limit_order_fee_hundredth_pips: number;
|
|
5654
|
-
range_order_fee_hundredth_pips: number;
|
|
5655
|
-
range_order_total_fees_earned: {
|
|
7046
|
+
}, {
|
|
5656
7047
|
base: string;
|
|
5657
7048
|
quote: string;
|
|
5658
|
-
}
|
|
5659
|
-
limit_order_total_fees_earned: {
|
|
7049
|
+
}>;
|
|
7050
|
+
limit_order_total_fees_earned: z.ZodObject<{
|
|
7051
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7052
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7053
|
+
}, "strip", z.ZodTypeAny, {
|
|
7054
|
+
base: bigint;
|
|
7055
|
+
quote: bigint;
|
|
7056
|
+
}, {
|
|
5660
7057
|
base: string;
|
|
5661
7058
|
quote: string;
|
|
5662
|
-
}
|
|
5663
|
-
range_total_swap_inputs: {
|
|
7059
|
+
}>;
|
|
7060
|
+
range_total_swap_inputs: z.ZodObject<{
|
|
7061
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7062
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7063
|
+
}, "strip", z.ZodTypeAny, {
|
|
7064
|
+
base: bigint;
|
|
7065
|
+
quote: bigint;
|
|
7066
|
+
}, {
|
|
5664
7067
|
base: string;
|
|
5665
7068
|
quote: string;
|
|
5666
|
-
}
|
|
5667
|
-
limit_total_swap_inputs: {
|
|
7069
|
+
}>;
|
|
7070
|
+
limit_total_swap_inputs: z.ZodObject<{
|
|
7071
|
+
base: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7072
|
+
quote: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
7073
|
+
}, "strip", z.ZodTypeAny, {
|
|
7074
|
+
base: bigint;
|
|
7075
|
+
quote: bigint;
|
|
7076
|
+
}, {
|
|
5668
7077
|
base: string;
|
|
5669
7078
|
quote: string;
|
|
5670
|
-
}
|
|
5671
|
-
quote_asset: {
|
|
7079
|
+
}>;
|
|
7080
|
+
quote_asset: z.ZodObject<{
|
|
7081
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
7082
|
+
asset: z.ZodLiteral<"USDC">;
|
|
7083
|
+
}, "strip", z.ZodTypeAny, {
|
|
5672
7084
|
chain: "Ethereum";
|
|
5673
7085
|
asset: "USDC";
|
|
5674
|
-
}
|
|
5675
|
-
|
|
5676
|
-
|
|
7086
|
+
}, {
|
|
7087
|
+
chain: "Ethereum";
|
|
7088
|
+
asset: "USDC";
|
|
7089
|
+
}>;
|
|
7090
|
+
}, "strip", z.ZodTypeAny, {
|
|
5677
7091
|
limit_order_fee_hundredth_pips: number;
|
|
5678
7092
|
range_order_fee_hundredth_pips: number;
|
|
5679
7093
|
range_order_total_fees_earned: {
|
|
5680
|
-
base:
|
|
5681
|
-
quote:
|
|
7094
|
+
base: bigint;
|
|
7095
|
+
quote: bigint;
|
|
5682
7096
|
};
|
|
5683
7097
|
limit_order_total_fees_earned: {
|
|
5684
|
-
base:
|
|
5685
|
-
quote:
|
|
7098
|
+
base: bigint;
|
|
7099
|
+
quote: bigint;
|
|
5686
7100
|
};
|
|
5687
7101
|
range_total_swap_inputs: {
|
|
5688
|
-
base:
|
|
5689
|
-
quote:
|
|
7102
|
+
base: bigint;
|
|
7103
|
+
quote: bigint;
|
|
5690
7104
|
};
|
|
5691
7105
|
limit_total_swap_inputs: {
|
|
5692
|
-
base:
|
|
5693
|
-
quote:
|
|
7106
|
+
base: bigint;
|
|
7107
|
+
quote: bigint;
|
|
5694
7108
|
};
|
|
5695
7109
|
quote_asset: {
|
|
5696
7110
|
chain: "Ethereum";
|
|
5697
7111
|
asset: "USDC";
|
|
5698
7112
|
};
|
|
5699
|
-
}
|
|
5700
|
-
USDT: {
|
|
7113
|
+
}, {
|
|
5701
7114
|
limit_order_fee_hundredth_pips: number;
|
|
5702
7115
|
range_order_fee_hundredth_pips: number;
|
|
5703
7116
|
range_order_total_fees_earned: {
|
|
@@ -5720,10 +7133,8 @@ declare const rpcResult: {
|
|
|
5720
7133
|
chain: "Ethereum";
|
|
5721
7134
|
asset: "USDC";
|
|
5722
7135
|
};
|
|
5723
|
-
}
|
|
5724
|
-
|
|
5725
|
-
Polkadot: z.ZodObject<{
|
|
5726
|
-
DOT: z.ZodObject<{
|
|
7136
|
+
}>;
|
|
7137
|
+
USDC: z.ZodObject<{
|
|
5727
7138
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5728
7139
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5729
7140
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5824,7 +7235,31 @@ declare const rpcResult: {
|
|
|
5824
7235
|
};
|
|
5825
7236
|
}>;
|
|
5826
7237
|
}, "strip", z.ZodTypeAny, {
|
|
5827
|
-
|
|
7238
|
+
ETH: {
|
|
7239
|
+
limit_order_fee_hundredth_pips: number;
|
|
7240
|
+
range_order_fee_hundredth_pips: number;
|
|
7241
|
+
range_order_total_fees_earned: {
|
|
7242
|
+
base: bigint;
|
|
7243
|
+
quote: bigint;
|
|
7244
|
+
};
|
|
7245
|
+
limit_order_total_fees_earned: {
|
|
7246
|
+
base: bigint;
|
|
7247
|
+
quote: bigint;
|
|
7248
|
+
};
|
|
7249
|
+
range_total_swap_inputs: {
|
|
7250
|
+
base: bigint;
|
|
7251
|
+
quote: bigint;
|
|
7252
|
+
};
|
|
7253
|
+
limit_total_swap_inputs: {
|
|
7254
|
+
base: bigint;
|
|
7255
|
+
quote: bigint;
|
|
7256
|
+
};
|
|
7257
|
+
quote_asset: {
|
|
7258
|
+
chain: "Ethereum";
|
|
7259
|
+
asset: "USDC";
|
|
7260
|
+
};
|
|
7261
|
+
};
|
|
7262
|
+
USDC: {
|
|
5828
7263
|
limit_order_fee_hundredth_pips: number;
|
|
5829
7264
|
range_order_fee_hundredth_pips: number;
|
|
5830
7265
|
range_order_total_fees_earned: {
|
|
@@ -5849,7 +7284,31 @@ declare const rpcResult: {
|
|
|
5849
7284
|
};
|
|
5850
7285
|
};
|
|
5851
7286
|
}, {
|
|
5852
|
-
|
|
7287
|
+
ETH: {
|
|
7288
|
+
limit_order_fee_hundredth_pips: number;
|
|
7289
|
+
range_order_fee_hundredth_pips: number;
|
|
7290
|
+
range_order_total_fees_earned: {
|
|
7291
|
+
base: string;
|
|
7292
|
+
quote: string;
|
|
7293
|
+
};
|
|
7294
|
+
limit_order_total_fees_earned: {
|
|
7295
|
+
base: string;
|
|
7296
|
+
quote: string;
|
|
7297
|
+
};
|
|
7298
|
+
range_total_swap_inputs: {
|
|
7299
|
+
base: string;
|
|
7300
|
+
quote: string;
|
|
7301
|
+
};
|
|
7302
|
+
limit_total_swap_inputs: {
|
|
7303
|
+
base: string;
|
|
7304
|
+
quote: string;
|
|
7305
|
+
};
|
|
7306
|
+
quote_asset: {
|
|
7307
|
+
chain: "Ethereum";
|
|
7308
|
+
asset: "USDC";
|
|
7309
|
+
};
|
|
7310
|
+
};
|
|
7311
|
+
USDC: {
|
|
5853
7312
|
limit_order_fee_hundredth_pips: number;
|
|
5854
7313
|
range_order_fee_hundredth_pips: number;
|
|
5855
7314
|
range_order_total_fees_earned: {
|
|
@@ -5874,8 +7333,8 @@ declare const rpcResult: {
|
|
|
5874
7333
|
};
|
|
5875
7334
|
};
|
|
5876
7335
|
}>;
|
|
5877
|
-
|
|
5878
|
-
|
|
7336
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
7337
|
+
SOL: z.ZodDefault<z.ZodObject<{
|
|
5879
7338
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5880
7339
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5881
7340
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -6076,7 +7535,7 @@ declare const rpcResult: {
|
|
|
6076
7535
|
};
|
|
6077
7536
|
}>>;
|
|
6078
7537
|
}, "strip", z.ZodTypeAny, {
|
|
6079
|
-
|
|
7538
|
+
USDC: {
|
|
6080
7539
|
limit_order_fee_hundredth_pips: number;
|
|
6081
7540
|
range_order_fee_hundredth_pips: number;
|
|
6082
7541
|
range_order_total_fees_earned: {
|
|
@@ -6100,7 +7559,7 @@ declare const rpcResult: {
|
|
|
6100
7559
|
asset: "USDC";
|
|
6101
7560
|
};
|
|
6102
7561
|
};
|
|
6103
|
-
|
|
7562
|
+
SOL: {
|
|
6104
7563
|
limit_order_fee_hundredth_pips: number;
|
|
6105
7564
|
range_order_fee_hundredth_pips: number;
|
|
6106
7565
|
range_order_total_fees_earned: {
|
|
@@ -6125,7 +7584,7 @@ declare const rpcResult: {
|
|
|
6125
7584
|
};
|
|
6126
7585
|
};
|
|
6127
7586
|
}, {
|
|
6128
|
-
|
|
7587
|
+
USDC?: {
|
|
6129
7588
|
limit_order_fee_hundredth_pips: number;
|
|
6130
7589
|
range_order_fee_hundredth_pips: number;
|
|
6131
7590
|
range_order_total_fees_earned: {
|
|
@@ -6149,7 +7608,7 @@ declare const rpcResult: {
|
|
|
6149
7608
|
asset: "USDC";
|
|
6150
7609
|
};
|
|
6151
7610
|
} | undefined;
|
|
6152
|
-
|
|
7611
|
+
SOL?: {
|
|
6153
7612
|
limit_order_fee_hundredth_pips: number;
|
|
6154
7613
|
range_order_fee_hundredth_pips: number;
|
|
6155
7614
|
range_order_total_fees_earned: {
|
|
@@ -6226,7 +7685,57 @@ declare const rpcResult: {
|
|
|
6226
7685
|
asset: "USDC";
|
|
6227
7686
|
};
|
|
6228
7687
|
};
|
|
6229
|
-
FLIP: {
|
|
7688
|
+
FLIP: {
|
|
7689
|
+
limit_order_fee_hundredth_pips: number;
|
|
7690
|
+
range_order_fee_hundredth_pips: number;
|
|
7691
|
+
range_order_total_fees_earned: {
|
|
7692
|
+
base: bigint;
|
|
7693
|
+
quote: bigint;
|
|
7694
|
+
};
|
|
7695
|
+
limit_order_total_fees_earned: {
|
|
7696
|
+
base: bigint;
|
|
7697
|
+
quote: bigint;
|
|
7698
|
+
};
|
|
7699
|
+
range_total_swap_inputs: {
|
|
7700
|
+
base: bigint;
|
|
7701
|
+
quote: bigint;
|
|
7702
|
+
};
|
|
7703
|
+
limit_total_swap_inputs: {
|
|
7704
|
+
base: bigint;
|
|
7705
|
+
quote: bigint;
|
|
7706
|
+
};
|
|
7707
|
+
quote_asset: {
|
|
7708
|
+
chain: "Ethereum";
|
|
7709
|
+
asset: "USDC";
|
|
7710
|
+
};
|
|
7711
|
+
};
|
|
7712
|
+
USDT: {
|
|
7713
|
+
limit_order_fee_hundredth_pips: number;
|
|
7714
|
+
range_order_fee_hundredth_pips: number;
|
|
7715
|
+
range_order_total_fees_earned: {
|
|
7716
|
+
base: bigint;
|
|
7717
|
+
quote: bigint;
|
|
7718
|
+
};
|
|
7719
|
+
limit_order_total_fees_earned: {
|
|
7720
|
+
base: bigint;
|
|
7721
|
+
quote: bigint;
|
|
7722
|
+
};
|
|
7723
|
+
range_total_swap_inputs: {
|
|
7724
|
+
base: bigint;
|
|
7725
|
+
quote: bigint;
|
|
7726
|
+
};
|
|
7727
|
+
limit_total_swap_inputs: {
|
|
7728
|
+
base: bigint;
|
|
7729
|
+
quote: bigint;
|
|
7730
|
+
};
|
|
7731
|
+
quote_asset: {
|
|
7732
|
+
chain: "Ethereum";
|
|
7733
|
+
asset: "USDC";
|
|
7734
|
+
};
|
|
7735
|
+
};
|
|
7736
|
+
};
|
|
7737
|
+
Polkadot: {
|
|
7738
|
+
DOT: {
|
|
6230
7739
|
limit_order_fee_hundredth_pips: number;
|
|
6231
7740
|
range_order_fee_hundredth_pips: number;
|
|
6232
7741
|
range_order_total_fees_earned: {
|
|
@@ -6250,7 +7759,9 @@ declare const rpcResult: {
|
|
|
6250
7759
|
asset: "USDC";
|
|
6251
7760
|
};
|
|
6252
7761
|
};
|
|
6253
|
-
|
|
7762
|
+
};
|
|
7763
|
+
Arbitrum: {
|
|
7764
|
+
ETH: {
|
|
6254
7765
|
limit_order_fee_hundredth_pips: number;
|
|
6255
7766
|
range_order_fee_hundredth_pips: number;
|
|
6256
7767
|
range_order_total_fees_earned: {
|
|
@@ -6274,9 +7785,7 @@ declare const rpcResult: {
|
|
|
6274
7785
|
asset: "USDC";
|
|
6275
7786
|
};
|
|
6276
7787
|
};
|
|
6277
|
-
|
|
6278
|
-
Polkadot: {
|
|
6279
|
-
DOT: {
|
|
7788
|
+
USDC: {
|
|
6280
7789
|
limit_order_fee_hundredth_pips: number;
|
|
6281
7790
|
range_order_fee_hundredth_pips: number;
|
|
6282
7791
|
range_order_total_fees_earned: {
|
|
@@ -6301,8 +7810,8 @@ declare const rpcResult: {
|
|
|
6301
7810
|
};
|
|
6302
7811
|
};
|
|
6303
7812
|
};
|
|
6304
|
-
|
|
6305
|
-
|
|
7813
|
+
Solana: {
|
|
7814
|
+
USDC: {
|
|
6306
7815
|
limit_order_fee_hundredth_pips: number;
|
|
6307
7816
|
range_order_fee_hundredth_pips: number;
|
|
6308
7817
|
range_order_total_fees_earned: {
|
|
@@ -6326,7 +7835,7 @@ declare const rpcResult: {
|
|
|
6326
7835
|
asset: "USDC";
|
|
6327
7836
|
};
|
|
6328
7837
|
};
|
|
6329
|
-
|
|
7838
|
+
SOL: {
|
|
6330
7839
|
limit_order_fee_hundredth_pips: number;
|
|
6331
7840
|
range_order_fee_hundredth_pips: number;
|
|
6332
7841
|
range_order_total_fees_earned: {
|
|
@@ -6478,8 +7987,8 @@ declare const rpcResult: {
|
|
|
6478
7987
|
};
|
|
6479
7988
|
};
|
|
6480
7989
|
};
|
|
6481
|
-
Arbitrum
|
|
6482
|
-
ETH
|
|
7990
|
+
Arbitrum: {
|
|
7991
|
+
ETH: {
|
|
6483
7992
|
limit_order_fee_hundredth_pips: number;
|
|
6484
7993
|
range_order_fee_hundredth_pips: number;
|
|
6485
7994
|
range_order_total_fees_earned: {
|
|
@@ -6502,7 +8011,33 @@ declare const rpcResult: {
|
|
|
6502
8011
|
chain: "Ethereum";
|
|
6503
8012
|
asset: "USDC";
|
|
6504
8013
|
};
|
|
6505
|
-
}
|
|
8014
|
+
};
|
|
8015
|
+
USDC: {
|
|
8016
|
+
limit_order_fee_hundredth_pips: number;
|
|
8017
|
+
range_order_fee_hundredth_pips: number;
|
|
8018
|
+
range_order_total_fees_earned: {
|
|
8019
|
+
base: string;
|
|
8020
|
+
quote: string;
|
|
8021
|
+
};
|
|
8022
|
+
limit_order_total_fees_earned: {
|
|
8023
|
+
base: string;
|
|
8024
|
+
quote: string;
|
|
8025
|
+
};
|
|
8026
|
+
range_total_swap_inputs: {
|
|
8027
|
+
base: string;
|
|
8028
|
+
quote: string;
|
|
8029
|
+
};
|
|
8030
|
+
limit_total_swap_inputs: {
|
|
8031
|
+
base: string;
|
|
8032
|
+
quote: string;
|
|
8033
|
+
};
|
|
8034
|
+
quote_asset: {
|
|
8035
|
+
chain: "Ethereum";
|
|
8036
|
+
asset: "USDC";
|
|
8037
|
+
};
|
|
8038
|
+
};
|
|
8039
|
+
};
|
|
8040
|
+
Solana?: {
|
|
6506
8041
|
USDC?: {
|
|
6507
8042
|
limit_order_fee_hundredth_pips: number;
|
|
6508
8043
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6527,6 +8062,30 @@ declare const rpcResult: {
|
|
|
6527
8062
|
asset: "USDC";
|
|
6528
8063
|
};
|
|
6529
8064
|
} | undefined;
|
|
8065
|
+
SOL?: {
|
|
8066
|
+
limit_order_fee_hundredth_pips: number;
|
|
8067
|
+
range_order_fee_hundredth_pips: number;
|
|
8068
|
+
range_order_total_fees_earned: {
|
|
8069
|
+
base: string;
|
|
8070
|
+
quote: string;
|
|
8071
|
+
};
|
|
8072
|
+
limit_order_total_fees_earned: {
|
|
8073
|
+
base: string;
|
|
8074
|
+
quote: string;
|
|
8075
|
+
};
|
|
8076
|
+
range_total_swap_inputs: {
|
|
8077
|
+
base: string;
|
|
8078
|
+
quote: string;
|
|
8079
|
+
};
|
|
8080
|
+
limit_total_swap_inputs: {
|
|
8081
|
+
base: string;
|
|
8082
|
+
quote: string;
|
|
8083
|
+
};
|
|
8084
|
+
quote_asset: {
|
|
8085
|
+
chain: "Ethereum";
|
|
8086
|
+
asset: "USDC";
|
|
8087
|
+
};
|
|
8088
|
+
} | undefined;
|
|
6530
8089
|
} | undefined;
|
|
6531
8090
|
}>;
|
|
6532
8091
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6707,6 +8266,56 @@ declare const rpcResult: {
|
|
|
6707
8266
|
};
|
|
6708
8267
|
};
|
|
6709
8268
|
};
|
|
8269
|
+
Solana: {
|
|
8270
|
+
USDC: {
|
|
8271
|
+
limit_order_fee_hundredth_pips: number;
|
|
8272
|
+
range_order_fee_hundredth_pips: number;
|
|
8273
|
+
range_order_total_fees_earned: {
|
|
8274
|
+
base: bigint;
|
|
8275
|
+
quote: bigint;
|
|
8276
|
+
};
|
|
8277
|
+
limit_order_total_fees_earned: {
|
|
8278
|
+
base: bigint;
|
|
8279
|
+
quote: bigint;
|
|
8280
|
+
};
|
|
8281
|
+
range_total_swap_inputs: {
|
|
8282
|
+
base: bigint;
|
|
8283
|
+
quote: bigint;
|
|
8284
|
+
};
|
|
8285
|
+
limit_total_swap_inputs: {
|
|
8286
|
+
base: bigint;
|
|
8287
|
+
quote: bigint;
|
|
8288
|
+
};
|
|
8289
|
+
quote_asset: {
|
|
8290
|
+
chain: "Ethereum";
|
|
8291
|
+
asset: "USDC";
|
|
8292
|
+
};
|
|
8293
|
+
};
|
|
8294
|
+
SOL: {
|
|
8295
|
+
limit_order_fee_hundredth_pips: number;
|
|
8296
|
+
range_order_fee_hundredth_pips: number;
|
|
8297
|
+
range_order_total_fees_earned: {
|
|
8298
|
+
base: bigint;
|
|
8299
|
+
quote: bigint;
|
|
8300
|
+
};
|
|
8301
|
+
limit_order_total_fees_earned: {
|
|
8302
|
+
base: bigint;
|
|
8303
|
+
quote: bigint;
|
|
8304
|
+
};
|
|
8305
|
+
range_total_swap_inputs: {
|
|
8306
|
+
base: bigint;
|
|
8307
|
+
quote: bigint;
|
|
8308
|
+
};
|
|
8309
|
+
limit_total_swap_inputs: {
|
|
8310
|
+
base: bigint;
|
|
8311
|
+
quote: bigint;
|
|
8312
|
+
};
|
|
8313
|
+
quote_asset: {
|
|
8314
|
+
chain: "Ethereum";
|
|
8315
|
+
asset: "USDC";
|
|
8316
|
+
};
|
|
8317
|
+
};
|
|
8318
|
+
};
|
|
6710
8319
|
};
|
|
6711
8320
|
}, {
|
|
6712
8321
|
fees: {
|
|
@@ -6836,8 +8445,8 @@ declare const rpcResult: {
|
|
|
6836
8445
|
};
|
|
6837
8446
|
};
|
|
6838
8447
|
};
|
|
6839
|
-
Arbitrum
|
|
6840
|
-
ETH
|
|
8448
|
+
Arbitrum: {
|
|
8449
|
+
ETH: {
|
|
6841
8450
|
limit_order_fee_hundredth_pips: number;
|
|
6842
8451
|
range_order_fee_hundredth_pips: number;
|
|
6843
8452
|
range_order_total_fees_earned: {
|
|
@@ -6860,7 +8469,33 @@ declare const rpcResult: {
|
|
|
6860
8469
|
chain: "Ethereum";
|
|
6861
8470
|
asset: "USDC";
|
|
6862
8471
|
};
|
|
6863
|
-
}
|
|
8472
|
+
};
|
|
8473
|
+
USDC: {
|
|
8474
|
+
limit_order_fee_hundredth_pips: number;
|
|
8475
|
+
range_order_fee_hundredth_pips: number;
|
|
8476
|
+
range_order_total_fees_earned: {
|
|
8477
|
+
base: string;
|
|
8478
|
+
quote: string;
|
|
8479
|
+
};
|
|
8480
|
+
limit_order_total_fees_earned: {
|
|
8481
|
+
base: string;
|
|
8482
|
+
quote: string;
|
|
8483
|
+
};
|
|
8484
|
+
range_total_swap_inputs: {
|
|
8485
|
+
base: string;
|
|
8486
|
+
quote: string;
|
|
8487
|
+
};
|
|
8488
|
+
limit_total_swap_inputs: {
|
|
8489
|
+
base: string;
|
|
8490
|
+
quote: string;
|
|
8491
|
+
};
|
|
8492
|
+
quote_asset: {
|
|
8493
|
+
chain: "Ethereum";
|
|
8494
|
+
asset: "USDC";
|
|
8495
|
+
};
|
|
8496
|
+
};
|
|
8497
|
+
};
|
|
8498
|
+
Solana?: {
|
|
6864
8499
|
USDC?: {
|
|
6865
8500
|
limit_order_fee_hundredth_pips: number;
|
|
6866
8501
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6885,6 +8520,30 @@ declare const rpcResult: {
|
|
|
6885
8520
|
asset: "USDC";
|
|
6886
8521
|
};
|
|
6887
8522
|
} | undefined;
|
|
8523
|
+
SOL?: {
|
|
8524
|
+
limit_order_fee_hundredth_pips: number;
|
|
8525
|
+
range_order_fee_hundredth_pips: number;
|
|
8526
|
+
range_order_total_fees_earned: {
|
|
8527
|
+
base: string;
|
|
8528
|
+
quote: string;
|
|
8529
|
+
};
|
|
8530
|
+
limit_order_total_fees_earned: {
|
|
8531
|
+
base: string;
|
|
8532
|
+
quote: string;
|
|
8533
|
+
};
|
|
8534
|
+
range_total_swap_inputs: {
|
|
8535
|
+
base: string;
|
|
8536
|
+
quote: string;
|
|
8537
|
+
};
|
|
8538
|
+
limit_total_swap_inputs: {
|
|
8539
|
+
base: string;
|
|
8540
|
+
quote: string;
|
|
8541
|
+
};
|
|
8542
|
+
quote_asset: {
|
|
8543
|
+
chain: "Ethereum";
|
|
8544
|
+
asset: "USDC";
|
|
8545
|
+
};
|
|
8546
|
+
} | undefined;
|
|
6888
8547
|
} | undefined;
|
|
6889
8548
|
};
|
|
6890
8549
|
}>;
|
|
@@ -6921,6 +8580,12 @@ declare const rpcResult: {
|
|
|
6921
8580
|
} | {
|
|
6922
8581
|
chain: "Arbitrum";
|
|
6923
8582
|
asset: "USDC";
|
|
8583
|
+
} | {
|
|
8584
|
+
chain: "Solana";
|
|
8585
|
+
asset: "SOL";
|
|
8586
|
+
} | {
|
|
8587
|
+
chain: "Solana";
|
|
8588
|
+
asset: "USDC";
|
|
6924
8589
|
})[], {
|
|
6925
8590
|
chain: string;
|
|
6926
8591
|
asset: string;
|
|
@@ -7008,6 +8673,24 @@ declare const rpcResult: {
|
|
|
7008
8673
|
}, {
|
|
7009
8674
|
chain: "Arbitrum";
|
|
7010
8675
|
asset: "USDC";
|
|
8676
|
+
}>, z.ZodObject<{
|
|
8677
|
+
chain: z.ZodLiteral<"Solana">;
|
|
8678
|
+
asset: z.ZodLiteral<"SOL">;
|
|
8679
|
+
}, "strip", z.ZodTypeAny, {
|
|
8680
|
+
chain: "Solana";
|
|
8681
|
+
asset: "SOL";
|
|
8682
|
+
}, {
|
|
8683
|
+
chain: "Solana";
|
|
8684
|
+
asset: "SOL";
|
|
8685
|
+
}>, z.ZodObject<{
|
|
8686
|
+
chain: z.ZodLiteral<"Solana">;
|
|
8687
|
+
asset: z.ZodLiteral<"USDC">;
|
|
8688
|
+
}, "strip", z.ZodTypeAny, {
|
|
8689
|
+
chain: "Solana";
|
|
8690
|
+
asset: "USDC";
|
|
8691
|
+
}, {
|
|
8692
|
+
chain: "Solana";
|
|
8693
|
+
asset: "USDC";
|
|
7011
8694
|
}>]>, z.ZodObject<{
|
|
7012
8695
|
amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7013
8696
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7087,6 +8770,24 @@ declare const rpcResult: {
|
|
|
7087
8770
|
}, {
|
|
7088
8771
|
chain: "Arbitrum";
|
|
7089
8772
|
asset: "USDC";
|
|
8773
|
+
}>, z.ZodObject<{
|
|
8774
|
+
chain: z.ZodLiteral<"Solana">;
|
|
8775
|
+
asset: z.ZodLiteral<"SOL">;
|
|
8776
|
+
}, "strip", z.ZodTypeAny, {
|
|
8777
|
+
chain: "Solana";
|
|
8778
|
+
asset: "SOL";
|
|
8779
|
+
}, {
|
|
8780
|
+
chain: "Solana";
|
|
8781
|
+
asset: "SOL";
|
|
8782
|
+
}>, z.ZodObject<{
|
|
8783
|
+
chain: z.ZodLiteral<"Solana">;
|
|
8784
|
+
asset: z.ZodLiteral<"USDC">;
|
|
8785
|
+
}, "strip", z.ZodTypeAny, {
|
|
8786
|
+
chain: "Solana";
|
|
8787
|
+
asset: "USDC";
|
|
8788
|
+
}, {
|
|
8789
|
+
chain: "Solana";
|
|
8790
|
+
asset: "USDC";
|
|
7090
8791
|
}>]>, z.ZodObject<{
|
|
7091
8792
|
amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7092
8793
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7167,6 +8868,24 @@ declare const rpcResult: {
|
|
|
7167
8868
|
}, {
|
|
7168
8869
|
chain: "Arbitrum";
|
|
7169
8870
|
asset: "USDC";
|
|
8871
|
+
}>, z.ZodObject<{
|
|
8872
|
+
chain: z.ZodLiteral<"Solana">;
|
|
8873
|
+
asset: z.ZodLiteral<"SOL">;
|
|
8874
|
+
}, "strip", z.ZodTypeAny, {
|
|
8875
|
+
chain: "Solana";
|
|
8876
|
+
asset: "SOL";
|
|
8877
|
+
}, {
|
|
8878
|
+
chain: "Solana";
|
|
8879
|
+
asset: "SOL";
|
|
8880
|
+
}>, z.ZodObject<{
|
|
8881
|
+
chain: z.ZodLiteral<"Solana">;
|
|
8882
|
+
asset: z.ZodLiteral<"USDC">;
|
|
8883
|
+
}, "strip", z.ZodTypeAny, {
|
|
8884
|
+
chain: "Solana";
|
|
8885
|
+
asset: "USDC";
|
|
8886
|
+
}, {
|
|
8887
|
+
chain: "Solana";
|
|
8888
|
+
asset: "USDC";
|
|
7170
8889
|
}>]>, z.ZodObject<{
|
|
7171
8890
|
amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7172
8891
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7202,6 +8921,12 @@ declare const rpcResult: {
|
|
|
7202
8921
|
} | {
|
|
7203
8922
|
chain: "Arbitrum";
|
|
7204
8923
|
asset: "USDC";
|
|
8924
|
+
} | {
|
|
8925
|
+
chain: "Solana";
|
|
8926
|
+
asset: "SOL";
|
|
8927
|
+
} | {
|
|
8928
|
+
chain: "Solana";
|
|
8929
|
+
asset: "USDC";
|
|
7205
8930
|
}) & {
|
|
7206
8931
|
amount: bigint;
|
|
7207
8932
|
};
|
|
@@ -7229,6 +8954,12 @@ declare const rpcResult: {
|
|
|
7229
8954
|
} | {
|
|
7230
8955
|
chain: "Arbitrum";
|
|
7231
8956
|
asset: "USDC";
|
|
8957
|
+
} | {
|
|
8958
|
+
chain: "Solana";
|
|
8959
|
+
asset: "SOL";
|
|
8960
|
+
} | {
|
|
8961
|
+
chain: "Solana";
|
|
8962
|
+
asset: "USDC";
|
|
7232
8963
|
}) & {
|
|
7233
8964
|
amount: bigint;
|
|
7234
8965
|
};
|
|
@@ -7256,6 +8987,12 @@ declare const rpcResult: {
|
|
|
7256
8987
|
} | {
|
|
7257
8988
|
chain: "Arbitrum";
|
|
7258
8989
|
asset: "USDC";
|
|
8990
|
+
} | {
|
|
8991
|
+
chain: "Solana";
|
|
8992
|
+
asset: "SOL";
|
|
8993
|
+
} | {
|
|
8994
|
+
chain: "Solana";
|
|
8995
|
+
asset: "USDC";
|
|
7259
8996
|
}) & {
|
|
7260
8997
|
amount: bigint;
|
|
7261
8998
|
};
|
|
@@ -7286,6 +9023,12 @@ declare const rpcResult: {
|
|
|
7286
9023
|
} | {
|
|
7287
9024
|
chain: "Arbitrum";
|
|
7288
9025
|
asset: "USDC";
|
|
9026
|
+
} | {
|
|
9027
|
+
chain: "Solana";
|
|
9028
|
+
asset: "SOL";
|
|
9029
|
+
} | {
|
|
9030
|
+
chain: "Solana";
|
|
9031
|
+
asset: "USDC";
|
|
7289
9032
|
}) & {
|
|
7290
9033
|
amount: string | number;
|
|
7291
9034
|
};
|
|
@@ -7313,6 +9056,12 @@ declare const rpcResult: {
|
|
|
7313
9056
|
} | {
|
|
7314
9057
|
chain: "Arbitrum";
|
|
7315
9058
|
asset: "USDC";
|
|
9059
|
+
} | {
|
|
9060
|
+
chain: "Solana";
|
|
9061
|
+
asset: "SOL";
|
|
9062
|
+
} | {
|
|
9063
|
+
chain: "Solana";
|
|
9064
|
+
asset: "USDC";
|
|
7316
9065
|
}) & {
|
|
7317
9066
|
amount: string | number;
|
|
7318
9067
|
};
|
|
@@ -7340,6 +9089,12 @@ declare const rpcResult: {
|
|
|
7340
9089
|
} | {
|
|
7341
9090
|
chain: "Arbitrum";
|
|
7342
9091
|
asset: "USDC";
|
|
9092
|
+
} | {
|
|
9093
|
+
chain: "Solana";
|
|
9094
|
+
asset: "SOL";
|
|
9095
|
+
} | {
|
|
9096
|
+
chain: "Solana";
|
|
9097
|
+
asset: "USDC";
|
|
7343
9098
|
}) & {
|
|
7344
9099
|
amount: string | number;
|
|
7345
9100
|
};
|
|
@@ -7376,15 +9131,25 @@ declare const rpcResult: {
|
|
|
7376
9131
|
}, {
|
|
7377
9132
|
DOT: string | number | null;
|
|
7378
9133
|
}>;
|
|
7379
|
-
Arbitrum: z.
|
|
7380
|
-
ETH: z.
|
|
7381
|
-
USDC: z.
|
|
9134
|
+
Arbitrum: z.ZodObject<{
|
|
9135
|
+
ETH: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
9136
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7382
9137
|
}, "strip", z.ZodTypeAny, {
|
|
7383
9138
|
ETH: bigint | null;
|
|
7384
9139
|
USDC: bigint | null;
|
|
7385
9140
|
}, {
|
|
7386
|
-
ETH
|
|
9141
|
+
ETH: string | number | null;
|
|
9142
|
+
USDC: string | number | null;
|
|
9143
|
+
}>;
|
|
9144
|
+
Solana: z.ZodDefault<z.ZodObject<{
|
|
9145
|
+
SOL: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
9146
|
+
USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
|
|
9147
|
+
}, "strip", z.ZodTypeAny, {
|
|
9148
|
+
USDC: bigint | null;
|
|
9149
|
+
SOL: bigint | null;
|
|
9150
|
+
}, {
|
|
7387
9151
|
USDC?: string | number | null | undefined;
|
|
9152
|
+
SOL?: string | number | null | undefined;
|
|
7388
9153
|
}>>;
|
|
7389
9154
|
}, "strip", z.ZodTypeAny, {
|
|
7390
9155
|
Bitcoin: {
|
|
@@ -7403,6 +9168,10 @@ declare const rpcResult: {
|
|
|
7403
9168
|
ETH: bigint | null;
|
|
7404
9169
|
USDC: bigint | null;
|
|
7405
9170
|
};
|
|
9171
|
+
Solana: {
|
|
9172
|
+
USDC: bigint | null;
|
|
9173
|
+
SOL: bigint | null;
|
|
9174
|
+
};
|
|
7406
9175
|
}, {
|
|
7407
9176
|
Bitcoin: {
|
|
7408
9177
|
BTC: string | number | null;
|
|
@@ -7416,9 +9185,13 @@ declare const rpcResult: {
|
|
|
7416
9185
|
Polkadot: {
|
|
7417
9186
|
DOT: string | number | null;
|
|
7418
9187
|
};
|
|
7419
|
-
Arbitrum
|
|
7420
|
-
ETH
|
|
9188
|
+
Arbitrum: {
|
|
9189
|
+
ETH: string | number | null;
|
|
9190
|
+
USDC: string | number | null;
|
|
9191
|
+
};
|
|
9192
|
+
Solana?: {
|
|
7421
9193
|
USDC?: string | number | null | undefined;
|
|
9194
|
+
SOL?: string | number | null | undefined;
|
|
7422
9195
|
} | undefined;
|
|
7423
9196
|
}>;
|
|
7424
9197
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
@@ -7440,6 +9213,10 @@ declare const rpcResult: {
|
|
|
7440
9213
|
ETH: bigint | null;
|
|
7441
9214
|
USDC: bigint | null;
|
|
7442
9215
|
};
|
|
9216
|
+
Solana: {
|
|
9217
|
+
USDC: bigint | null;
|
|
9218
|
+
SOL: bigint | null;
|
|
9219
|
+
};
|
|
7443
9220
|
};
|
|
7444
9221
|
network_fee_hundredth_pips: number;
|
|
7445
9222
|
}, {
|
|
@@ -7456,9 +9233,13 @@ declare const rpcResult: {
|
|
|
7456
9233
|
Polkadot: {
|
|
7457
9234
|
DOT: string | number | null;
|
|
7458
9235
|
};
|
|
7459
|
-
Arbitrum
|
|
7460
|
-
ETH
|
|
9236
|
+
Arbitrum: {
|
|
9237
|
+
ETH: string | number | null;
|
|
9238
|
+
USDC: string | number | null;
|
|
9239
|
+
};
|
|
9240
|
+
Solana?: {
|
|
7461
9241
|
USDC?: string | number | null | undefined;
|
|
9242
|
+
SOL?: string | number | null | undefined;
|
|
7462
9243
|
} | undefined;
|
|
7463
9244
|
};
|
|
7464
9245
|
network_fee_hundredth_pips: number;
|
|
@@ -7536,6 +9317,24 @@ declare const rpcResult: {
|
|
|
7536
9317
|
}, {
|
|
7537
9318
|
chain: "Arbitrum";
|
|
7538
9319
|
asset: "USDC";
|
|
9320
|
+
}>, z.ZodObject<{
|
|
9321
|
+
chain: z.ZodLiteral<"Solana">;
|
|
9322
|
+
asset: z.ZodLiteral<"SOL">;
|
|
9323
|
+
}, "strip", z.ZodTypeAny, {
|
|
9324
|
+
chain: "Solana";
|
|
9325
|
+
asset: "SOL";
|
|
9326
|
+
}, {
|
|
9327
|
+
chain: "Solana";
|
|
9328
|
+
asset: "SOL";
|
|
9329
|
+
}>, z.ZodObject<{
|
|
9330
|
+
chain: z.ZodLiteral<"Solana">;
|
|
9331
|
+
asset: z.ZodLiteral<"USDC">;
|
|
9332
|
+
}, "strip", z.ZodTypeAny, {
|
|
9333
|
+
chain: "Solana";
|
|
9334
|
+
asset: "USDC";
|
|
9335
|
+
}, {
|
|
9336
|
+
chain: "Solana";
|
|
9337
|
+
asset: "USDC";
|
|
7539
9338
|
}>]>, z.ZodObject<{
|
|
7540
9339
|
fee_tier: z.ZodNumber;
|
|
7541
9340
|
available_amounts: z.ZodArray<z.ZodObject<{
|
|
@@ -7690,6 +9489,24 @@ declare const rpcResult: {
|
|
|
7690
9489
|
}, {
|
|
7691
9490
|
chain: "Arbitrum";
|
|
7692
9491
|
asset: "USDC";
|
|
9492
|
+
}>, z.ZodObject<{
|
|
9493
|
+
chain: z.ZodLiteral<"Solana">;
|
|
9494
|
+
asset: z.ZodLiteral<"SOL">;
|
|
9495
|
+
}, "strip", z.ZodTypeAny, {
|
|
9496
|
+
chain: "Solana";
|
|
9497
|
+
asset: "SOL";
|
|
9498
|
+
}, {
|
|
9499
|
+
chain: "Solana";
|
|
9500
|
+
asset: "SOL";
|
|
9501
|
+
}>, z.ZodObject<{
|
|
9502
|
+
chain: z.ZodLiteral<"Solana">;
|
|
9503
|
+
asset: z.ZodLiteral<"USDC">;
|
|
9504
|
+
}, "strip", z.ZodTypeAny, {
|
|
9505
|
+
chain: "Solana";
|
|
9506
|
+
asset: "USDC";
|
|
9507
|
+
}, {
|
|
9508
|
+
chain: "Solana";
|
|
9509
|
+
asset: "USDC";
|
|
7693
9510
|
}>]>, z.ZodObject<{
|
|
7694
9511
|
fee_tier: z.ZodNumber;
|
|
7695
9512
|
pending_fees: z.ZodArray<z.ZodObject<{
|