@chainflip/rpc 1.9.0-assethub.2 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common.cjs +17 -1
- package/dist/common.d.cts +763 -457
- package/dist/common.d.ts +763 -457
- package/dist/common.mjs +18 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/parsers.cjs +42 -19
- package/dist/parsers.d.cts +1070 -583
- package/dist/parsers.d.ts +1070 -583
- package/dist/parsers.mjs +42 -19
- package/dist/types.d.cts +19 -7
- package/dist/types.d.ts +19 -7
- package/package.json +2 -2
package/dist/common.d.cts
CHANGED
|
@@ -111,16 +111,6 @@ type RpcRequest = WithHash<{
|
|
|
111
111
|
additionalOrders?: Nullish<AdditionalOrder[]>
|
|
112
112
|
];
|
|
113
113
|
cf_swap_rate_v3: [
|
|
114
|
-
fromAsset: UncheckedAssetAndChain,
|
|
115
|
-
toAsset: UncheckedAssetAndChain,
|
|
116
|
-
amount: `0x${string}`,
|
|
117
|
-
brokerComission?: Nullish<number>,
|
|
118
|
-
dcaParams?: Nullish<{
|
|
119
|
-
number_of_chunks: number;
|
|
120
|
-
chunk_interval: number;
|
|
121
|
-
}>,
|
|
122
|
-
additionalOrders?: Nullish<AdditionalOrder[]>
|
|
123
|
-
] | [
|
|
124
114
|
fromAsset: UncheckedAssetAndChain,
|
|
125
115
|
toAsset: UncheckedAssetAndChain,
|
|
126
116
|
amount: `0x${string}`,
|
|
@@ -130,7 +120,7 @@ type RpcRequest = WithHash<{
|
|
|
130
120
|
chunk_interval: number;
|
|
131
121
|
}>,
|
|
132
122
|
ccmData?: Nullish<{
|
|
133
|
-
gas_budget:
|
|
123
|
+
gas_budget: number;
|
|
134
124
|
message_length: number;
|
|
135
125
|
}>,
|
|
136
126
|
excludeFees?: Nullish<SwapFeeType[]>,
|
|
@@ -150,6 +140,19 @@ type RpcRequest = WithHash<{
|
|
|
150
140
|
state_getMetadata: [];
|
|
151
141
|
state_getRuntimeVersion: [];
|
|
152
142
|
lp_total_balances: [accountId: string];
|
|
143
|
+
cf_failed_call_ethereum: [broadcastId: number];
|
|
144
|
+
cf_failed_call_arbitrum: [broadcastId: number];
|
|
145
|
+
cf_authority_emission_per_block: [];
|
|
146
|
+
cf_epoch_duration: [];
|
|
147
|
+
cf_auction_state: [];
|
|
148
|
+
cf_flip_supply: [];
|
|
149
|
+
cf_eth_state_chain_gateway_address: [];
|
|
150
|
+
cf_eth_key_manager_address: [];
|
|
151
|
+
cf_pool_orderbook: [
|
|
152
|
+
baseAsset: UncheckedAssetAndChain,
|
|
153
|
+
quoteAsset: UncheckedAssetAndChain,
|
|
154
|
+
orders: number
|
|
155
|
+
];
|
|
153
156
|
}> & {
|
|
154
157
|
chain_getBlockHash: [blockHeight?: number];
|
|
155
158
|
};
|
|
@@ -349,14 +352,186 @@ declare const rpcResult: {
|
|
|
349
352
|
readonly cf_account_info: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
350
353
|
role: z.ZodLiteral<"unregistered">;
|
|
351
354
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
355
|
+
asset_balances: z.ZodObject<{
|
|
356
|
+
Bitcoin: z.ZodObject<{
|
|
357
|
+
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
358
|
+
}, "strip", z.ZodTypeAny, {
|
|
359
|
+
BTC: bigint;
|
|
360
|
+
}, {
|
|
361
|
+
BTC: string | number;
|
|
362
|
+
}>;
|
|
363
|
+
Ethereum: z.ZodObject<{
|
|
364
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
365
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
366
|
+
FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
367
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
368
|
+
}, "strip", z.ZodTypeAny, {
|
|
369
|
+
ETH: bigint;
|
|
370
|
+
USDC: bigint;
|
|
371
|
+
FLIP: bigint;
|
|
372
|
+
USDT: bigint;
|
|
373
|
+
}, {
|
|
374
|
+
ETH: string | number;
|
|
375
|
+
USDC: string | number;
|
|
376
|
+
FLIP: string | number;
|
|
377
|
+
USDT: string | number;
|
|
378
|
+
}>;
|
|
379
|
+
Polkadot: z.ZodObject<{
|
|
380
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
381
|
+
}, "strip", z.ZodTypeAny, {
|
|
382
|
+
DOT: bigint;
|
|
383
|
+
}, {
|
|
384
|
+
DOT: string | number;
|
|
385
|
+
}>;
|
|
386
|
+
Arbitrum: z.ZodObject<{
|
|
387
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
388
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
389
|
+
}, "strip", z.ZodTypeAny, {
|
|
390
|
+
ETH: bigint;
|
|
391
|
+
USDC: bigint;
|
|
392
|
+
}, {
|
|
393
|
+
ETH: string | number;
|
|
394
|
+
USDC: string | number;
|
|
395
|
+
}>;
|
|
396
|
+
Solana: z.ZodObject<{
|
|
397
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
398
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
399
|
+
}, "strip", z.ZodTypeAny, {
|
|
400
|
+
USDC: bigint;
|
|
401
|
+
SOL: bigint;
|
|
402
|
+
}, {
|
|
403
|
+
USDC: string | number;
|
|
404
|
+
SOL: string | number;
|
|
405
|
+
}>;
|
|
406
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
407
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
408
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
409
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
410
|
+
}, "strip", z.ZodTypeAny, {
|
|
411
|
+
USDC: bigint;
|
|
412
|
+
USDT: bigint;
|
|
413
|
+
DOT: bigint;
|
|
414
|
+
}, {
|
|
415
|
+
USDC: string | number;
|
|
416
|
+
USDT: string | number;
|
|
417
|
+
DOT: string | number;
|
|
418
|
+
}>>;
|
|
419
|
+
}, "strip", z.ZodTypeAny, {
|
|
420
|
+
Bitcoin: {
|
|
421
|
+
BTC: bigint;
|
|
422
|
+
};
|
|
423
|
+
Ethereum: {
|
|
424
|
+
ETH: bigint;
|
|
425
|
+
USDC: bigint;
|
|
426
|
+
FLIP: bigint;
|
|
427
|
+
USDT: bigint;
|
|
428
|
+
};
|
|
429
|
+
Arbitrum: {
|
|
430
|
+
ETH: bigint;
|
|
431
|
+
USDC: bigint;
|
|
432
|
+
};
|
|
433
|
+
Solana: {
|
|
434
|
+
USDC: bigint;
|
|
435
|
+
SOL: bigint;
|
|
436
|
+
};
|
|
437
|
+
Polkadot: {
|
|
438
|
+
DOT: bigint;
|
|
439
|
+
};
|
|
440
|
+
Assethub: {
|
|
441
|
+
USDC: bigint;
|
|
442
|
+
USDT: bigint;
|
|
443
|
+
DOT: bigint;
|
|
444
|
+
};
|
|
445
|
+
}, {
|
|
446
|
+
Bitcoin: {
|
|
447
|
+
BTC: string | number;
|
|
448
|
+
};
|
|
449
|
+
Ethereum: {
|
|
450
|
+
ETH: string | number;
|
|
451
|
+
USDC: string | number;
|
|
452
|
+
FLIP: string | number;
|
|
453
|
+
USDT: string | number;
|
|
454
|
+
};
|
|
455
|
+
Arbitrum: {
|
|
456
|
+
ETH: string | number;
|
|
457
|
+
USDC: string | number;
|
|
458
|
+
};
|
|
459
|
+
Solana: {
|
|
460
|
+
USDC: string | number;
|
|
461
|
+
SOL: string | number;
|
|
462
|
+
};
|
|
463
|
+
Polkadot: {
|
|
464
|
+
DOT: string | number;
|
|
465
|
+
};
|
|
466
|
+
Assethub?: {
|
|
467
|
+
USDC: string | number;
|
|
468
|
+
USDT: string | number;
|
|
469
|
+
DOT: string | number;
|
|
470
|
+
} | undefined;
|
|
471
|
+
}>;
|
|
352
472
|
}, "strip", z.ZodTypeAny, {
|
|
353
473
|
role: "unregistered";
|
|
354
474
|
flip_balance: bigint;
|
|
475
|
+
asset_balances: {
|
|
476
|
+
Bitcoin: {
|
|
477
|
+
BTC: bigint;
|
|
478
|
+
};
|
|
479
|
+
Ethereum: {
|
|
480
|
+
ETH: bigint;
|
|
481
|
+
USDC: bigint;
|
|
482
|
+
FLIP: bigint;
|
|
483
|
+
USDT: bigint;
|
|
484
|
+
};
|
|
485
|
+
Arbitrum: {
|
|
486
|
+
ETH: bigint;
|
|
487
|
+
USDC: bigint;
|
|
488
|
+
};
|
|
489
|
+
Solana: {
|
|
490
|
+
USDC: bigint;
|
|
491
|
+
SOL: bigint;
|
|
492
|
+
};
|
|
493
|
+
Polkadot: {
|
|
494
|
+
DOT: bigint;
|
|
495
|
+
};
|
|
496
|
+
Assethub: {
|
|
497
|
+
USDC: bigint;
|
|
498
|
+
USDT: bigint;
|
|
499
|
+
DOT: bigint;
|
|
500
|
+
};
|
|
501
|
+
};
|
|
355
502
|
}, {
|
|
356
503
|
role: "unregistered";
|
|
357
504
|
flip_balance: string | number;
|
|
505
|
+
asset_balances: {
|
|
506
|
+
Bitcoin: {
|
|
507
|
+
BTC: string | number;
|
|
508
|
+
};
|
|
509
|
+
Ethereum: {
|
|
510
|
+
ETH: string | number;
|
|
511
|
+
USDC: string | number;
|
|
512
|
+
FLIP: string | number;
|
|
513
|
+
USDT: string | number;
|
|
514
|
+
};
|
|
515
|
+
Arbitrum: {
|
|
516
|
+
ETH: string | number;
|
|
517
|
+
USDC: string | number;
|
|
518
|
+
};
|
|
519
|
+
Solana: {
|
|
520
|
+
USDC: string | number;
|
|
521
|
+
SOL: string | number;
|
|
522
|
+
};
|
|
523
|
+
Polkadot: {
|
|
524
|
+
DOT: string | number;
|
|
525
|
+
};
|
|
526
|
+
Assethub?: {
|
|
527
|
+
USDC: string | number;
|
|
528
|
+
USDT: string | number;
|
|
529
|
+
DOT: string | number;
|
|
530
|
+
} | undefined;
|
|
531
|
+
};
|
|
358
532
|
}>, z.ZodObject<{
|
|
359
533
|
role: z.ZodLiteral<"broker">;
|
|
534
|
+
bond: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
360
535
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
361
536
|
earned_fees: z.ZodObject<{
|
|
362
537
|
Bitcoin: z.ZodObject<{
|
|
@@ -409,19 +584,19 @@ declare const rpcResult: {
|
|
|
409
584
|
USDC: string | number;
|
|
410
585
|
SOL: string | number;
|
|
411
586
|
}>;
|
|
412
|
-
Assethub: z.ZodObject<{
|
|
413
|
-
DOT: z.
|
|
414
|
-
USDC: z.
|
|
415
|
-
USDT: z.
|
|
587
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
588
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
589
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
590
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
416
591
|
}, "strip", z.ZodTypeAny, {
|
|
417
592
|
USDC: bigint;
|
|
418
593
|
USDT: bigint;
|
|
419
594
|
DOT: bigint;
|
|
420
595
|
}, {
|
|
421
|
-
USDC
|
|
422
|
-
USDT
|
|
423
|
-
DOT
|
|
424
|
-
}
|
|
596
|
+
USDC: string | number;
|
|
597
|
+
USDT: string | number;
|
|
598
|
+
DOT: string | number;
|
|
599
|
+
}>>;
|
|
425
600
|
}, "strip", z.ZodTypeAny, {
|
|
426
601
|
Bitcoin: {
|
|
427
602
|
BTC: bigint;
|
|
@@ -469,16 +644,30 @@ declare const rpcResult: {
|
|
|
469
644
|
Polkadot: {
|
|
470
645
|
DOT: string | number;
|
|
471
646
|
};
|
|
472
|
-
Assethub
|
|
473
|
-
USDC
|
|
474
|
-
USDT
|
|
475
|
-
DOT
|
|
476
|
-
};
|
|
647
|
+
Assethub?: {
|
|
648
|
+
USDC: string | number;
|
|
649
|
+
USDT: string | number;
|
|
650
|
+
DOT: string | number;
|
|
651
|
+
} | undefined;
|
|
477
652
|
}>;
|
|
478
653
|
btc_vault_deposit_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
654
|
+
affiliates: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
655
|
+
account_id: z.ZodString;
|
|
656
|
+
short_id: z.ZodNumber;
|
|
657
|
+
withdrawal_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
658
|
+
}, "strip", z.ZodTypeAny, {
|
|
659
|
+
account_id: string;
|
|
660
|
+
short_id: number;
|
|
661
|
+
withdrawal_address: `0x${string}`;
|
|
662
|
+
}, {
|
|
663
|
+
account_id: string;
|
|
664
|
+
short_id: number;
|
|
665
|
+
withdrawal_address: string;
|
|
666
|
+
}>, "many">>>;
|
|
479
667
|
}, "strip", z.ZodTypeAny, {
|
|
480
668
|
role: "broker";
|
|
481
669
|
flip_balance: bigint;
|
|
670
|
+
bond: bigint;
|
|
482
671
|
earned_fees: {
|
|
483
672
|
Bitcoin: {
|
|
484
673
|
BTC: bigint;
|
|
@@ -506,10 +695,16 @@ declare const rpcResult: {
|
|
|
506
695
|
DOT: bigint;
|
|
507
696
|
};
|
|
508
697
|
};
|
|
698
|
+
affiliates: {
|
|
699
|
+
account_id: string;
|
|
700
|
+
short_id: number;
|
|
701
|
+
withdrawal_address: `0x${string}`;
|
|
702
|
+
}[];
|
|
509
703
|
btc_vault_deposit_address?: string | null | undefined;
|
|
510
704
|
}, {
|
|
511
705
|
role: "broker";
|
|
512
706
|
flip_balance: string | number;
|
|
707
|
+
bond: string | number;
|
|
513
708
|
earned_fees: {
|
|
514
709
|
Bitcoin: {
|
|
515
710
|
BTC: string | number;
|
|
@@ -531,13 +726,18 @@ declare const rpcResult: {
|
|
|
531
726
|
Polkadot: {
|
|
532
727
|
DOT: string | number;
|
|
533
728
|
};
|
|
534
|
-
Assethub
|
|
535
|
-
USDC
|
|
536
|
-
USDT
|
|
537
|
-
DOT
|
|
538
|
-
};
|
|
729
|
+
Assethub?: {
|
|
730
|
+
USDC: string | number;
|
|
731
|
+
USDT: string | number;
|
|
732
|
+
DOT: string | number;
|
|
733
|
+
} | undefined;
|
|
539
734
|
};
|
|
540
735
|
btc_vault_deposit_address?: string | null | undefined;
|
|
736
|
+
affiliates?: {
|
|
737
|
+
account_id: string;
|
|
738
|
+
short_id: number;
|
|
739
|
+
withdrawal_address: string;
|
|
740
|
+
}[] | undefined;
|
|
541
741
|
}>, z.ZodObject<{
|
|
542
742
|
role: z.ZodLiteral<"liquidity_provider">;
|
|
543
743
|
balances: z.ZodObject<{
|
|
@@ -591,19 +791,19 @@ declare const rpcResult: {
|
|
|
591
791
|
USDC: string | number;
|
|
592
792
|
SOL: string | number;
|
|
593
793
|
}>;
|
|
594
|
-
Assethub: z.ZodObject<{
|
|
595
|
-
DOT: z.
|
|
596
|
-
USDC: z.
|
|
597
|
-
USDT: z.
|
|
794
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
795
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
796
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
797
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
598
798
|
}, "strip", z.ZodTypeAny, {
|
|
599
799
|
USDC: bigint;
|
|
600
800
|
USDT: bigint;
|
|
601
801
|
DOT: bigint;
|
|
602
802
|
}, {
|
|
603
|
-
USDC
|
|
604
|
-
USDT
|
|
605
|
-
DOT
|
|
606
|
-
}
|
|
803
|
+
USDC: string | number;
|
|
804
|
+
USDT: string | number;
|
|
805
|
+
DOT: string | number;
|
|
806
|
+
}>>;
|
|
607
807
|
}, "strip", z.ZodTypeAny, {
|
|
608
808
|
Bitcoin: {
|
|
609
809
|
BTC: bigint;
|
|
@@ -651,11 +851,11 @@ declare const rpcResult: {
|
|
|
651
851
|
Polkadot: {
|
|
652
852
|
DOT: string | number;
|
|
653
853
|
};
|
|
654
|
-
Assethub
|
|
655
|
-
USDC
|
|
656
|
-
USDT
|
|
657
|
-
DOT
|
|
658
|
-
};
|
|
854
|
+
Assethub?: {
|
|
855
|
+
USDC: string | number;
|
|
856
|
+
USDT: string | number;
|
|
857
|
+
DOT: string | number;
|
|
858
|
+
} | undefined;
|
|
659
859
|
}>;
|
|
660
860
|
refund_addresses: z.ZodObject<{
|
|
661
861
|
Bitcoin: z.ZodNullable<z.ZodString>;
|
|
@@ -731,19 +931,19 @@ declare const rpcResult: {
|
|
|
731
931
|
USDC: string | number;
|
|
732
932
|
SOL: string | number;
|
|
733
933
|
}>;
|
|
734
|
-
Assethub: z.ZodObject<{
|
|
735
|
-
DOT: z.
|
|
736
|
-
USDC: z.
|
|
737
|
-
USDT: z.
|
|
934
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
935
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
936
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
937
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
738
938
|
}, "strip", z.ZodTypeAny, {
|
|
739
939
|
USDC: bigint;
|
|
740
940
|
USDT: bigint;
|
|
741
941
|
DOT: bigint;
|
|
742
942
|
}, {
|
|
743
|
-
USDC
|
|
744
|
-
USDT
|
|
745
|
-
DOT
|
|
746
|
-
}
|
|
943
|
+
USDC: string | number;
|
|
944
|
+
USDT: string | number;
|
|
945
|
+
DOT: string | number;
|
|
946
|
+
}>>;
|
|
747
947
|
}, "strip", z.ZodTypeAny, {
|
|
748
948
|
Bitcoin: {
|
|
749
949
|
BTC: bigint;
|
|
@@ -791,11 +991,11 @@ declare const rpcResult: {
|
|
|
791
991
|
Polkadot: {
|
|
792
992
|
DOT: string | number;
|
|
793
993
|
};
|
|
794
|
-
Assethub
|
|
795
|
-
USDC
|
|
796
|
-
USDT
|
|
797
|
-
DOT
|
|
798
|
-
};
|
|
994
|
+
Assethub?: {
|
|
995
|
+
USDC: string | number;
|
|
996
|
+
USDT: string | number;
|
|
997
|
+
DOT: string | number;
|
|
998
|
+
} | undefined;
|
|
799
999
|
}>;
|
|
800
1000
|
boost_balances: z.ZodObject<{
|
|
801
1001
|
Bitcoin: z.ZodObject<{
|
|
@@ -1148,8 +1348,8 @@ declare const rpcResult: {
|
|
|
1148
1348
|
is_withdrawing: boolean;
|
|
1149
1349
|
}[];
|
|
1150
1350
|
}>;
|
|
1151
|
-
Assethub: z.ZodObject<{
|
|
1152
|
-
DOT: z.
|
|
1351
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
1352
|
+
DOT: z.ZodArray<z.ZodObject<{
|
|
1153
1353
|
fee_tier: z.ZodNumber;
|
|
1154
1354
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
1155
1355
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -1167,8 +1367,8 @@ declare const rpcResult: {
|
|
|
1167
1367
|
available_balance: string;
|
|
1168
1368
|
in_use_balance: string;
|
|
1169
1369
|
is_withdrawing: boolean;
|
|
1170
|
-
}>, "many"
|
|
1171
|
-
USDC: z.
|
|
1370
|
+
}>, "many">;
|
|
1371
|
+
USDC: z.ZodArray<z.ZodObject<{
|
|
1172
1372
|
fee_tier: z.ZodNumber;
|
|
1173
1373
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
1174
1374
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -1186,8 +1386,8 @@ declare const rpcResult: {
|
|
|
1186
1386
|
available_balance: string;
|
|
1187
1387
|
in_use_balance: string;
|
|
1188
1388
|
is_withdrawing: boolean;
|
|
1189
|
-
}>, "many"
|
|
1190
|
-
USDT: z.
|
|
1389
|
+
}>, "many">;
|
|
1390
|
+
USDT: z.ZodArray<z.ZodObject<{
|
|
1191
1391
|
fee_tier: z.ZodNumber;
|
|
1192
1392
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
1193
1393
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -1205,7 +1405,7 @@ declare const rpcResult: {
|
|
|
1205
1405
|
available_balance: string;
|
|
1206
1406
|
in_use_balance: string;
|
|
1207
1407
|
is_withdrawing: boolean;
|
|
1208
|
-
}>, "many"
|
|
1408
|
+
}>, "many">;
|
|
1209
1409
|
}, "strip", z.ZodTypeAny, {
|
|
1210
1410
|
USDC: {
|
|
1211
1411
|
fee_tier: number;
|
|
@@ -1229,28 +1429,28 @@ declare const rpcResult: {
|
|
|
1229
1429
|
is_withdrawing: boolean;
|
|
1230
1430
|
}[];
|
|
1231
1431
|
}, {
|
|
1232
|
-
USDC
|
|
1432
|
+
USDC: {
|
|
1233
1433
|
fee_tier: number;
|
|
1234
1434
|
total_balance: string;
|
|
1235
1435
|
available_balance: string;
|
|
1236
1436
|
in_use_balance: string;
|
|
1237
1437
|
is_withdrawing: boolean;
|
|
1238
|
-
}[]
|
|
1239
|
-
USDT
|
|
1438
|
+
}[];
|
|
1439
|
+
USDT: {
|
|
1240
1440
|
fee_tier: number;
|
|
1241
1441
|
total_balance: string;
|
|
1242
1442
|
available_balance: string;
|
|
1243
1443
|
in_use_balance: string;
|
|
1244
1444
|
is_withdrawing: boolean;
|
|
1245
|
-
}[]
|
|
1246
|
-
DOT
|
|
1445
|
+
}[];
|
|
1446
|
+
DOT: {
|
|
1247
1447
|
fee_tier: number;
|
|
1248
1448
|
total_balance: string;
|
|
1249
1449
|
available_balance: string;
|
|
1250
1450
|
in_use_balance: string;
|
|
1251
1451
|
is_withdrawing: boolean;
|
|
1252
|
-
}[]
|
|
1253
|
-
}
|
|
1452
|
+
}[];
|
|
1453
|
+
}>>;
|
|
1254
1454
|
}, "strip", z.ZodTypeAny, {
|
|
1255
1455
|
Bitcoin: {
|
|
1256
1456
|
BTC: {
|
|
@@ -1436,29 +1636,29 @@ declare const rpcResult: {
|
|
|
1436
1636
|
is_withdrawing: boolean;
|
|
1437
1637
|
}[];
|
|
1438
1638
|
};
|
|
1439
|
-
Assethub
|
|
1440
|
-
USDC
|
|
1639
|
+
Assethub?: {
|
|
1640
|
+
USDC: {
|
|
1441
1641
|
fee_tier: number;
|
|
1442
1642
|
total_balance: string;
|
|
1443
1643
|
available_balance: string;
|
|
1444
1644
|
in_use_balance: string;
|
|
1445
1645
|
is_withdrawing: boolean;
|
|
1446
|
-
}[]
|
|
1447
|
-
USDT
|
|
1646
|
+
}[];
|
|
1647
|
+
USDT: {
|
|
1448
1648
|
fee_tier: number;
|
|
1449
1649
|
total_balance: string;
|
|
1450
1650
|
available_balance: string;
|
|
1451
1651
|
in_use_balance: string;
|
|
1452
1652
|
is_withdrawing: boolean;
|
|
1453
|
-
}[]
|
|
1454
|
-
DOT
|
|
1653
|
+
}[];
|
|
1654
|
+
DOT: {
|
|
1455
1655
|
fee_tier: number;
|
|
1456
1656
|
total_balance: string;
|
|
1457
1657
|
available_balance: string;
|
|
1458
1658
|
in_use_balance: string;
|
|
1459
1659
|
is_withdrawing: boolean;
|
|
1460
|
-
}[]
|
|
1461
|
-
};
|
|
1660
|
+
}[];
|
|
1661
|
+
} | undefined;
|
|
1462
1662
|
}>;
|
|
1463
1663
|
}, "strip", z.ZodTypeAny, {
|
|
1464
1664
|
role: "liquidity_provider";
|
|
@@ -1654,11 +1854,11 @@ declare const rpcResult: {
|
|
|
1654
1854
|
Polkadot: {
|
|
1655
1855
|
DOT: string | number;
|
|
1656
1856
|
};
|
|
1657
|
-
Assethub
|
|
1658
|
-
USDC
|
|
1659
|
-
USDT
|
|
1660
|
-
DOT
|
|
1661
|
-
};
|
|
1857
|
+
Assethub?: {
|
|
1858
|
+
USDC: string | number;
|
|
1859
|
+
USDT: string | number;
|
|
1860
|
+
DOT: string | number;
|
|
1861
|
+
} | undefined;
|
|
1662
1862
|
};
|
|
1663
1863
|
balances: {
|
|
1664
1864
|
Bitcoin: {
|
|
@@ -1681,11 +1881,11 @@ declare const rpcResult: {
|
|
|
1681
1881
|
Polkadot: {
|
|
1682
1882
|
DOT: string | number;
|
|
1683
1883
|
};
|
|
1684
|
-
Assethub
|
|
1685
|
-
USDC
|
|
1686
|
-
USDT
|
|
1687
|
-
DOT
|
|
1688
|
-
};
|
|
1884
|
+
Assethub?: {
|
|
1885
|
+
USDC: string | number;
|
|
1886
|
+
USDT: string | number;
|
|
1887
|
+
DOT: string | number;
|
|
1888
|
+
} | undefined;
|
|
1689
1889
|
};
|
|
1690
1890
|
refund_addresses: {
|
|
1691
1891
|
Bitcoin: string | null;
|
|
@@ -1776,29 +1976,29 @@ declare const rpcResult: {
|
|
|
1776
1976
|
is_withdrawing: boolean;
|
|
1777
1977
|
}[];
|
|
1778
1978
|
};
|
|
1779
|
-
Assethub
|
|
1780
|
-
USDC
|
|
1979
|
+
Assethub?: {
|
|
1980
|
+
USDC: {
|
|
1781
1981
|
fee_tier: number;
|
|
1782
1982
|
total_balance: string;
|
|
1783
1983
|
available_balance: string;
|
|
1784
1984
|
in_use_balance: string;
|
|
1785
1985
|
is_withdrawing: boolean;
|
|
1786
|
-
}[]
|
|
1787
|
-
USDT
|
|
1986
|
+
}[];
|
|
1987
|
+
USDT: {
|
|
1788
1988
|
fee_tier: number;
|
|
1789
1989
|
total_balance: string;
|
|
1790
1990
|
available_balance: string;
|
|
1791
1991
|
in_use_balance: string;
|
|
1792
1992
|
is_withdrawing: boolean;
|
|
1793
|
-
}[]
|
|
1794
|
-
DOT
|
|
1993
|
+
}[];
|
|
1994
|
+
DOT: {
|
|
1795
1995
|
fee_tier: number;
|
|
1796
1996
|
total_balance: string;
|
|
1797
1997
|
available_balance: string;
|
|
1798
1998
|
in_use_balance: string;
|
|
1799
1999
|
is_withdrawing: boolean;
|
|
1800
|
-
}[]
|
|
1801
|
-
};
|
|
2000
|
+
}[];
|
|
2001
|
+
} | undefined;
|
|
1802
2002
|
};
|
|
1803
2003
|
}>, z.ZodObject<{
|
|
1804
2004
|
role: z.ZodLiteral<"validator">;
|
|
@@ -2150,19 +2350,19 @@ declare const rpcResult: {
|
|
|
2150
2350
|
USDC: string | number;
|
|
2151
2351
|
SOL: string | number;
|
|
2152
2352
|
}>;
|
|
2153
|
-
Assethub: z.ZodObject<{
|
|
2154
|
-
DOT: z.
|
|
2155
|
-
USDC: z.
|
|
2156
|
-
USDT: z.
|
|
2353
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
2354
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2355
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2356
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2157
2357
|
}, "strip", z.ZodTypeAny, {
|
|
2158
2358
|
USDC: bigint;
|
|
2159
2359
|
USDT: bigint;
|
|
2160
2360
|
DOT: bigint;
|
|
2161
2361
|
}, {
|
|
2162
|
-
USDC
|
|
2163
|
-
USDT
|
|
2164
|
-
DOT
|
|
2165
|
-
}
|
|
2362
|
+
USDC: string | number;
|
|
2363
|
+
USDT: string | number;
|
|
2364
|
+
DOT: string | number;
|
|
2365
|
+
}>>;
|
|
2166
2366
|
}, "strip", z.ZodTypeAny, {
|
|
2167
2367
|
Bitcoin: {
|
|
2168
2368
|
BTC: bigint;
|
|
@@ -2210,11 +2410,11 @@ declare const rpcResult: {
|
|
|
2210
2410
|
Polkadot: {
|
|
2211
2411
|
DOT: string | number;
|
|
2212
2412
|
};
|
|
2213
|
-
Assethub
|
|
2214
|
-
USDC
|
|
2215
|
-
USDT
|
|
2216
|
-
DOT
|
|
2217
|
-
};
|
|
2413
|
+
Assethub?: {
|
|
2414
|
+
USDC: string | number;
|
|
2415
|
+
USDT: string | number;
|
|
2416
|
+
DOT: string | number;
|
|
2417
|
+
} | undefined;
|
|
2218
2418
|
}>;
|
|
2219
2419
|
ingress_fees: z.ZodObject<{
|
|
2220
2420
|
Bitcoin: z.ZodObject<{
|
|
@@ -2267,19 +2467,19 @@ declare const rpcResult: {
|
|
|
2267
2467
|
USDC: string | number | null;
|
|
2268
2468
|
SOL: string | number | null;
|
|
2269
2469
|
}>;
|
|
2270
|
-
Assethub: z.ZodObject<{
|
|
2271
|
-
DOT: z.
|
|
2272
|
-
USDC: z.
|
|
2273
|
-
USDT: z.
|
|
2470
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
2471
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2472
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2473
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2274
2474
|
}, "strip", z.ZodTypeAny, {
|
|
2275
2475
|
USDC: bigint | null;
|
|
2276
2476
|
USDT: bigint | null;
|
|
2277
2477
|
DOT: bigint | null;
|
|
2278
2478
|
}, {
|
|
2279
|
-
USDC
|
|
2280
|
-
USDT
|
|
2281
|
-
DOT
|
|
2282
|
-
}
|
|
2479
|
+
USDC: string | number | null;
|
|
2480
|
+
USDT: string | number | null;
|
|
2481
|
+
DOT: string | number | null;
|
|
2482
|
+
}>>;
|
|
2283
2483
|
}, "strip", z.ZodTypeAny, {
|
|
2284
2484
|
Bitcoin: {
|
|
2285
2485
|
BTC: bigint | null;
|
|
@@ -2327,11 +2527,11 @@ declare const rpcResult: {
|
|
|
2327
2527
|
Polkadot: {
|
|
2328
2528
|
DOT: string | number | null;
|
|
2329
2529
|
};
|
|
2330
|
-
Assethub
|
|
2331
|
-
USDC
|
|
2332
|
-
USDT
|
|
2333
|
-
DOT
|
|
2334
|
-
};
|
|
2530
|
+
Assethub?: {
|
|
2531
|
+
USDC: string | number | null;
|
|
2532
|
+
USDT: string | number | null;
|
|
2533
|
+
DOT: string | number | null;
|
|
2534
|
+
} | undefined;
|
|
2335
2535
|
}>;
|
|
2336
2536
|
egress_fees: z.ZodObject<{
|
|
2337
2537
|
Bitcoin: z.ZodObject<{
|
|
@@ -2384,19 +2584,19 @@ declare const rpcResult: {
|
|
|
2384
2584
|
USDC: string | number | null;
|
|
2385
2585
|
SOL: string | number | null;
|
|
2386
2586
|
}>;
|
|
2387
|
-
Assethub: z.ZodObject<{
|
|
2388
|
-
DOT: z.
|
|
2389
|
-
USDC: z.
|
|
2390
|
-
USDT: z.
|
|
2587
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
2588
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2589
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2590
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2391
2591
|
}, "strip", z.ZodTypeAny, {
|
|
2392
2592
|
USDC: bigint | null;
|
|
2393
2593
|
USDT: bigint | null;
|
|
2394
2594
|
DOT: bigint | null;
|
|
2395
2595
|
}, {
|
|
2396
|
-
USDC
|
|
2397
|
-
USDT
|
|
2398
|
-
DOT
|
|
2399
|
-
}
|
|
2596
|
+
USDC: string | number | null;
|
|
2597
|
+
USDT: string | number | null;
|
|
2598
|
+
DOT: string | number | null;
|
|
2599
|
+
}>>;
|
|
2400
2600
|
}, "strip", z.ZodTypeAny, {
|
|
2401
2601
|
Bitcoin: {
|
|
2402
2602
|
BTC: bigint | null;
|
|
@@ -2444,11 +2644,11 @@ declare const rpcResult: {
|
|
|
2444
2644
|
Polkadot: {
|
|
2445
2645
|
DOT: string | number | null;
|
|
2446
2646
|
};
|
|
2447
|
-
Assethub
|
|
2448
|
-
USDC
|
|
2449
|
-
USDT
|
|
2450
|
-
DOT
|
|
2451
|
-
};
|
|
2647
|
+
Assethub?: {
|
|
2648
|
+
USDC: string | number | null;
|
|
2649
|
+
USDT: string | number | null;
|
|
2650
|
+
DOT: string | number | null;
|
|
2651
|
+
} | undefined;
|
|
2452
2652
|
}>;
|
|
2453
2653
|
witness_safety_margins: z.ZodObject<{
|
|
2454
2654
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2523,19 +2723,19 @@ declare const rpcResult: {
|
|
|
2523
2723
|
USDC: string | number;
|
|
2524
2724
|
SOL: string | number;
|
|
2525
2725
|
}>;
|
|
2526
|
-
Assethub: z.ZodObject<{
|
|
2527
|
-
DOT: z.
|
|
2528
|
-
USDC: z.
|
|
2529
|
-
USDT: z.
|
|
2726
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
2727
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2728
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2729
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2530
2730
|
}, "strip", z.ZodTypeAny, {
|
|
2531
2731
|
USDC: bigint;
|
|
2532
2732
|
USDT: bigint;
|
|
2533
2733
|
DOT: bigint;
|
|
2534
2734
|
}, {
|
|
2535
|
-
USDC
|
|
2536
|
-
USDT
|
|
2537
|
-
DOT
|
|
2538
|
-
}
|
|
2735
|
+
USDC: string | number;
|
|
2736
|
+
USDT: string | number;
|
|
2737
|
+
DOT: string | number;
|
|
2738
|
+
}>>;
|
|
2539
2739
|
}, "strip", z.ZodTypeAny, {
|
|
2540
2740
|
Bitcoin: {
|
|
2541
2741
|
BTC: bigint;
|
|
@@ -2583,11 +2783,11 @@ declare const rpcResult: {
|
|
|
2583
2783
|
Polkadot: {
|
|
2584
2784
|
DOT: string | number;
|
|
2585
2785
|
};
|
|
2586
|
-
Assethub
|
|
2587
|
-
USDC
|
|
2588
|
-
USDT
|
|
2589
|
-
DOT
|
|
2590
|
-
};
|
|
2786
|
+
Assethub?: {
|
|
2787
|
+
USDC: string | number;
|
|
2788
|
+
USDT: string | number;
|
|
2789
|
+
DOT: string | number;
|
|
2790
|
+
} | undefined;
|
|
2591
2791
|
}>;
|
|
2592
2792
|
channel_opening_fees: z.ZodObject<{
|
|
2593
2793
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
@@ -2611,7 +2811,7 @@ declare const rpcResult: {
|
|
|
2611
2811
|
Polkadot: string | number;
|
|
2612
2812
|
Assethub?: string | number | undefined;
|
|
2613
2813
|
}>;
|
|
2614
|
-
max_swap_retry_duration_blocks: z.
|
|
2814
|
+
max_swap_retry_duration_blocks: z.ZodObject<{
|
|
2615
2815
|
Bitcoin: z.ZodNumber;
|
|
2616
2816
|
Ethereum: z.ZodNumber;
|
|
2617
2817
|
Polkadot: z.ZodNumber;
|
|
@@ -2632,7 +2832,7 @@ declare const rpcResult: {
|
|
|
2632
2832
|
Solana: number;
|
|
2633
2833
|
Polkadot: number;
|
|
2634
2834
|
Assethub?: number | undefined;
|
|
2635
|
-
}
|
|
2835
|
+
}>;
|
|
2636
2836
|
}, "strip", z.ZodTypeAny, {
|
|
2637
2837
|
minimum_deposit_amounts: {
|
|
2638
2838
|
Bitcoin: {
|
|
@@ -2788,11 +2988,11 @@ declare const rpcResult: {
|
|
|
2788
2988
|
Polkadot: {
|
|
2789
2989
|
DOT: string | number;
|
|
2790
2990
|
};
|
|
2791
|
-
Assethub
|
|
2792
|
-
USDC
|
|
2793
|
-
USDT
|
|
2794
|
-
DOT
|
|
2795
|
-
};
|
|
2991
|
+
Assethub?: {
|
|
2992
|
+
USDC: string | number;
|
|
2993
|
+
USDT: string | number;
|
|
2994
|
+
DOT: string | number;
|
|
2995
|
+
} | undefined;
|
|
2796
2996
|
};
|
|
2797
2997
|
ingress_fees: {
|
|
2798
2998
|
Bitcoin: {
|
|
@@ -2815,11 +3015,11 @@ declare const rpcResult: {
|
|
|
2815
3015
|
Polkadot: {
|
|
2816
3016
|
DOT: string | number | null;
|
|
2817
3017
|
};
|
|
2818
|
-
Assethub
|
|
2819
|
-
USDC
|
|
2820
|
-
USDT
|
|
2821
|
-
DOT
|
|
2822
|
-
};
|
|
3018
|
+
Assethub?: {
|
|
3019
|
+
USDC: string | number | null;
|
|
3020
|
+
USDT: string | number | null;
|
|
3021
|
+
DOT: string | number | null;
|
|
3022
|
+
} | undefined;
|
|
2823
3023
|
};
|
|
2824
3024
|
egress_fees: {
|
|
2825
3025
|
Bitcoin: {
|
|
@@ -2842,11 +3042,11 @@ declare const rpcResult: {
|
|
|
2842
3042
|
Polkadot: {
|
|
2843
3043
|
DOT: string | number | null;
|
|
2844
3044
|
};
|
|
2845
|
-
Assethub
|
|
2846
|
-
USDC
|
|
2847
|
-
USDT
|
|
2848
|
-
DOT
|
|
2849
|
-
};
|
|
3045
|
+
Assethub?: {
|
|
3046
|
+
USDC: string | number | null;
|
|
3047
|
+
USDT: string | number | null;
|
|
3048
|
+
DOT: string | number | null;
|
|
3049
|
+
} | undefined;
|
|
2850
3050
|
};
|
|
2851
3051
|
witness_safety_margins: {
|
|
2852
3052
|
Bitcoin: number | null;
|
|
@@ -2877,11 +3077,11 @@ declare const rpcResult: {
|
|
|
2877
3077
|
Polkadot: {
|
|
2878
3078
|
DOT: string | number;
|
|
2879
3079
|
};
|
|
2880
|
-
Assethub
|
|
2881
|
-
USDC
|
|
2882
|
-
USDT
|
|
2883
|
-
DOT
|
|
2884
|
-
};
|
|
3080
|
+
Assethub?: {
|
|
3081
|
+
USDC: string | number;
|
|
3082
|
+
USDT: string | number;
|
|
3083
|
+
DOT: string | number;
|
|
3084
|
+
} | undefined;
|
|
2885
3085
|
};
|
|
2886
3086
|
channel_opening_fees: {
|
|
2887
3087
|
Bitcoin: string | number;
|
|
@@ -2891,14 +3091,14 @@ declare const rpcResult: {
|
|
|
2891
3091
|
Polkadot: string | number;
|
|
2892
3092
|
Assethub?: string | number | undefined;
|
|
2893
3093
|
};
|
|
2894
|
-
max_swap_retry_duration_blocks
|
|
3094
|
+
max_swap_retry_duration_blocks: {
|
|
2895
3095
|
Bitcoin: number;
|
|
2896
3096
|
Ethereum: number;
|
|
2897
3097
|
Arbitrum: number;
|
|
2898
3098
|
Solana: number;
|
|
2899
3099
|
Polkadot: number;
|
|
2900
3100
|
Assethub?: number | undefined;
|
|
2901
|
-
}
|
|
3101
|
+
};
|
|
2902
3102
|
}>, Omit<{
|
|
2903
3103
|
minimum_deposit_amounts: {
|
|
2904
3104
|
Bitcoin: {
|
|
@@ -3082,11 +3282,11 @@ declare const rpcResult: {
|
|
|
3082
3282
|
Polkadot: {
|
|
3083
3283
|
DOT: string | number;
|
|
3084
3284
|
};
|
|
3085
|
-
Assethub
|
|
3086
|
-
USDC
|
|
3087
|
-
USDT
|
|
3088
|
-
DOT
|
|
3089
|
-
};
|
|
3285
|
+
Assethub?: {
|
|
3286
|
+
USDC: string | number;
|
|
3287
|
+
USDT: string | number;
|
|
3288
|
+
DOT: string | number;
|
|
3289
|
+
} | undefined;
|
|
3090
3290
|
};
|
|
3091
3291
|
ingress_fees: {
|
|
3092
3292
|
Bitcoin: {
|
|
@@ -3109,11 +3309,11 @@ declare const rpcResult: {
|
|
|
3109
3309
|
Polkadot: {
|
|
3110
3310
|
DOT: string | number | null;
|
|
3111
3311
|
};
|
|
3112
|
-
Assethub
|
|
3113
|
-
USDC
|
|
3114
|
-
USDT
|
|
3115
|
-
DOT
|
|
3116
|
-
};
|
|
3312
|
+
Assethub?: {
|
|
3313
|
+
USDC: string | number | null;
|
|
3314
|
+
USDT: string | number | null;
|
|
3315
|
+
DOT: string | number | null;
|
|
3316
|
+
} | undefined;
|
|
3117
3317
|
};
|
|
3118
3318
|
egress_fees: {
|
|
3119
3319
|
Bitcoin: {
|
|
@@ -3136,11 +3336,11 @@ declare const rpcResult: {
|
|
|
3136
3336
|
Polkadot: {
|
|
3137
3337
|
DOT: string | number | null;
|
|
3138
3338
|
};
|
|
3139
|
-
Assethub
|
|
3140
|
-
USDC
|
|
3141
|
-
USDT
|
|
3142
|
-
DOT
|
|
3143
|
-
};
|
|
3339
|
+
Assethub?: {
|
|
3340
|
+
USDC: string | number | null;
|
|
3341
|
+
USDT: string | number | null;
|
|
3342
|
+
DOT: string | number | null;
|
|
3343
|
+
} | undefined;
|
|
3144
3344
|
};
|
|
3145
3345
|
witness_safety_margins: {
|
|
3146
3346
|
Bitcoin: number | null;
|
|
@@ -3171,11 +3371,11 @@ declare const rpcResult: {
|
|
|
3171
3371
|
Polkadot: {
|
|
3172
3372
|
DOT: string | number;
|
|
3173
3373
|
};
|
|
3174
|
-
Assethub
|
|
3175
|
-
USDC
|
|
3176
|
-
USDT
|
|
3177
|
-
DOT
|
|
3178
|
-
};
|
|
3374
|
+
Assethub?: {
|
|
3375
|
+
USDC: string | number;
|
|
3376
|
+
USDT: string | number;
|
|
3377
|
+
DOT: string | number;
|
|
3378
|
+
} | undefined;
|
|
3179
3379
|
};
|
|
3180
3380
|
channel_opening_fees: {
|
|
3181
3381
|
Bitcoin: string | number;
|
|
@@ -3185,14 +3385,14 @@ declare const rpcResult: {
|
|
|
3185
3385
|
Polkadot: string | number;
|
|
3186
3386
|
Assethub?: string | number | undefined;
|
|
3187
3387
|
};
|
|
3188
|
-
max_swap_retry_duration_blocks
|
|
3388
|
+
max_swap_retry_duration_blocks: {
|
|
3189
3389
|
Bitcoin: number;
|
|
3190
3390
|
Ethereum: number;
|
|
3191
3391
|
Arbitrum: number;
|
|
3192
3392
|
Solana: number;
|
|
3193
3393
|
Polkadot: number;
|
|
3194
3394
|
Assethub?: number | undefined;
|
|
3195
|
-
}
|
|
3395
|
+
};
|
|
3196
3396
|
}>;
|
|
3197
3397
|
swapping: z.ZodObject<{
|
|
3198
3398
|
maximum_swap_amounts: z.ZodObject<{
|
|
@@ -3246,19 +3446,19 @@ declare const rpcResult: {
|
|
|
3246
3446
|
USDC: string | number | null;
|
|
3247
3447
|
SOL: string | number | null;
|
|
3248
3448
|
}>;
|
|
3249
|
-
Assethub: z.ZodObject<{
|
|
3250
|
-
DOT: z.
|
|
3251
|
-
USDC: z.
|
|
3252
|
-
USDT: z.
|
|
3449
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
3450
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
3451
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
3452
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
3253
3453
|
}, "strip", z.ZodTypeAny, {
|
|
3254
3454
|
USDC: bigint | null;
|
|
3255
3455
|
USDT: bigint | null;
|
|
3256
3456
|
DOT: bigint | null;
|
|
3257
3457
|
}, {
|
|
3258
|
-
USDC
|
|
3259
|
-
USDT
|
|
3260
|
-
DOT
|
|
3261
|
-
}
|
|
3458
|
+
USDC: string | number | null;
|
|
3459
|
+
USDT: string | number | null;
|
|
3460
|
+
DOT: string | number | null;
|
|
3461
|
+
}>>;
|
|
3262
3462
|
}, "strip", z.ZodTypeAny, {
|
|
3263
3463
|
Bitcoin: {
|
|
3264
3464
|
BTC: bigint | null;
|
|
@@ -3306,11 +3506,11 @@ declare const rpcResult: {
|
|
|
3306
3506
|
Polkadot: {
|
|
3307
3507
|
DOT: string | number | null;
|
|
3308
3508
|
};
|
|
3309
|
-
Assethub
|
|
3310
|
-
USDC
|
|
3311
|
-
USDT
|
|
3312
|
-
DOT
|
|
3313
|
-
};
|
|
3509
|
+
Assethub?: {
|
|
3510
|
+
USDC: string | number | null;
|
|
3511
|
+
USDT: string | number | null;
|
|
3512
|
+
DOT: string | number | null;
|
|
3513
|
+
} | undefined;
|
|
3314
3514
|
}>;
|
|
3315
3515
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
3316
3516
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3364,11 +3564,11 @@ declare const rpcResult: {
|
|
|
3364
3564
|
Polkadot: {
|
|
3365
3565
|
DOT: string | number | null;
|
|
3366
3566
|
};
|
|
3367
|
-
Assethub
|
|
3368
|
-
USDC
|
|
3369
|
-
USDT
|
|
3370
|
-
DOT
|
|
3371
|
-
};
|
|
3567
|
+
Assethub?: {
|
|
3568
|
+
USDC: string | number | null;
|
|
3569
|
+
USDT: string | number | null;
|
|
3570
|
+
DOT: string | number | null;
|
|
3571
|
+
} | undefined;
|
|
3372
3572
|
};
|
|
3373
3573
|
network_fee_hundredth_pips: number;
|
|
3374
3574
|
}>;
|
|
@@ -5564,8 +5764,8 @@ declare const rpcResult: {
|
|
|
5564
5764
|
};
|
|
5565
5765
|
} | null;
|
|
5566
5766
|
}>;
|
|
5567
|
-
Assethub: z.ZodObject<{
|
|
5568
|
-
DOT: z.
|
|
5767
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
5768
|
+
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5569
5769
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5570
5770
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5571
5771
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5733,8 +5933,8 @@ declare const rpcResult: {
|
|
|
5733
5933
|
chain: "Ethereum";
|
|
5734
5934
|
asset: "USDC";
|
|
5735
5935
|
};
|
|
5736
|
-
} | null
|
|
5737
|
-
USDC: z.
|
|
5936
|
+
} | null>;
|
|
5937
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5738
5938
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5739
5939
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5740
5940
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5902,8 +6102,8 @@ declare const rpcResult: {
|
|
|
5902
6102
|
chain: "Ethereum";
|
|
5903
6103
|
asset: "USDC";
|
|
5904
6104
|
};
|
|
5905
|
-
} | null
|
|
5906
|
-
USDT: z.
|
|
6105
|
+
} | null>;
|
|
6106
|
+
USDT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5907
6107
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5908
6108
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5909
6109
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -6071,7 +6271,7 @@ declare const rpcResult: {
|
|
|
6071
6271
|
chain: "Ethereum";
|
|
6072
6272
|
asset: "USDC";
|
|
6073
6273
|
};
|
|
6074
|
-
} | null
|
|
6274
|
+
} | null>;
|
|
6075
6275
|
}, "strip", z.ZodTypeAny, {
|
|
6076
6276
|
USDC: {
|
|
6077
6277
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -6215,7 +6415,7 @@ declare const rpcResult: {
|
|
|
6215
6415
|
};
|
|
6216
6416
|
};
|
|
6217
6417
|
}, {
|
|
6218
|
-
USDC
|
|
6418
|
+
USDC: {
|
|
6219
6419
|
limit_order_fee_hundredth_pips: number;
|
|
6220
6420
|
range_order_fee_hundredth_pips: number;
|
|
6221
6421
|
range_order_total_fees_earned: {
|
|
@@ -6238,8 +6438,8 @@ declare const rpcResult: {
|
|
|
6238
6438
|
chain: "Ethereum";
|
|
6239
6439
|
asset: "USDC";
|
|
6240
6440
|
};
|
|
6241
|
-
} | null
|
|
6242
|
-
USDT
|
|
6441
|
+
} | null;
|
|
6442
|
+
USDT: {
|
|
6243
6443
|
limit_order_fee_hundredth_pips: number;
|
|
6244
6444
|
range_order_fee_hundredth_pips: number;
|
|
6245
6445
|
range_order_total_fees_earned: {
|
|
@@ -6262,8 +6462,8 @@ declare const rpcResult: {
|
|
|
6262
6462
|
chain: "Ethereum";
|
|
6263
6463
|
asset: "USDC";
|
|
6264
6464
|
};
|
|
6265
|
-
} | null
|
|
6266
|
-
DOT
|
|
6465
|
+
} | null;
|
|
6466
|
+
DOT: {
|
|
6267
6467
|
limit_order_fee_hundredth_pips: number;
|
|
6268
6468
|
range_order_fee_hundredth_pips: number;
|
|
6269
6469
|
range_order_total_fees_earned: {
|
|
@@ -6286,8 +6486,8 @@ declare const rpcResult: {
|
|
|
6286
6486
|
chain: "Ethereum";
|
|
6287
6487
|
asset: "USDC";
|
|
6288
6488
|
};
|
|
6289
|
-
} | null
|
|
6290
|
-
}
|
|
6489
|
+
} | null;
|
|
6490
|
+
}>>;
|
|
6291
6491
|
}, "strip", z.ZodTypeAny, {
|
|
6292
6492
|
Bitcoin: {
|
|
6293
6493
|
BTC: {
|
|
@@ -7092,8 +7292,8 @@ declare const rpcResult: {
|
|
|
7092
7292
|
};
|
|
7093
7293
|
} | null;
|
|
7094
7294
|
};
|
|
7095
|
-
Assethub
|
|
7096
|
-
USDC
|
|
7295
|
+
Assethub?: {
|
|
7296
|
+
USDC: {
|
|
7097
7297
|
limit_order_fee_hundredth_pips: number;
|
|
7098
7298
|
range_order_fee_hundredth_pips: number;
|
|
7099
7299
|
range_order_total_fees_earned: {
|
|
@@ -7116,8 +7316,8 @@ declare const rpcResult: {
|
|
|
7116
7316
|
chain: "Ethereum";
|
|
7117
7317
|
asset: "USDC";
|
|
7118
7318
|
};
|
|
7119
|
-
} | null
|
|
7120
|
-
USDT
|
|
7319
|
+
} | null;
|
|
7320
|
+
USDT: {
|
|
7121
7321
|
limit_order_fee_hundredth_pips: number;
|
|
7122
7322
|
range_order_fee_hundredth_pips: number;
|
|
7123
7323
|
range_order_total_fees_earned: {
|
|
@@ -7140,8 +7340,8 @@ declare const rpcResult: {
|
|
|
7140
7340
|
chain: "Ethereum";
|
|
7141
7341
|
asset: "USDC";
|
|
7142
7342
|
};
|
|
7143
|
-
} | null
|
|
7144
|
-
DOT
|
|
7343
|
+
} | null;
|
|
7344
|
+
DOT: {
|
|
7145
7345
|
limit_order_fee_hundredth_pips: number;
|
|
7146
7346
|
range_order_fee_hundredth_pips: number;
|
|
7147
7347
|
range_order_total_fees_earned: {
|
|
@@ -7164,8 +7364,8 @@ declare const rpcResult: {
|
|
|
7164
7364
|
chain: "Ethereum";
|
|
7165
7365
|
asset: "USDC";
|
|
7166
7366
|
};
|
|
7167
|
-
} | null
|
|
7168
|
-
};
|
|
7367
|
+
} | null;
|
|
7368
|
+
} | undefined;
|
|
7169
7369
|
}>;
|
|
7170
7370
|
}, "strip", z.ZodTypeAny, {
|
|
7171
7371
|
fees: {
|
|
@@ -7974,8 +8174,8 @@ declare const rpcResult: {
|
|
|
7974
8174
|
};
|
|
7975
8175
|
} | null;
|
|
7976
8176
|
};
|
|
7977
|
-
Assethub
|
|
7978
|
-
USDC
|
|
8177
|
+
Assethub?: {
|
|
8178
|
+
USDC: {
|
|
7979
8179
|
limit_order_fee_hundredth_pips: number;
|
|
7980
8180
|
range_order_fee_hundredth_pips: number;
|
|
7981
8181
|
range_order_total_fees_earned: {
|
|
@@ -7998,8 +8198,8 @@ declare const rpcResult: {
|
|
|
7998
8198
|
chain: "Ethereum";
|
|
7999
8199
|
asset: "USDC";
|
|
8000
8200
|
};
|
|
8001
|
-
} | null
|
|
8002
|
-
USDT
|
|
8201
|
+
} | null;
|
|
8202
|
+
USDT: {
|
|
8003
8203
|
limit_order_fee_hundredth_pips: number;
|
|
8004
8204
|
range_order_fee_hundredth_pips: number;
|
|
8005
8205
|
range_order_total_fees_earned: {
|
|
@@ -8022,8 +8222,8 @@ declare const rpcResult: {
|
|
|
8022
8222
|
chain: "Ethereum";
|
|
8023
8223
|
asset: "USDC";
|
|
8024
8224
|
};
|
|
8025
|
-
} | null
|
|
8026
|
-
DOT
|
|
8225
|
+
} | null;
|
|
8226
|
+
DOT: {
|
|
8027
8227
|
limit_order_fee_hundredth_pips: number;
|
|
8028
8228
|
range_order_fee_hundredth_pips: number;
|
|
8029
8229
|
range_order_total_fees_earned: {
|
|
@@ -8046,8 +8246,8 @@ declare const rpcResult: {
|
|
|
8046
8246
|
chain: "Ethereum";
|
|
8047
8247
|
asset: "USDC";
|
|
8048
8248
|
};
|
|
8049
|
-
} | null
|
|
8050
|
-
};
|
|
8249
|
+
} | null;
|
|
8250
|
+
} | undefined;
|
|
8051
8251
|
};
|
|
8052
8252
|
}>;
|
|
8053
8253
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8850,11 +9050,11 @@ declare const rpcResult: {
|
|
|
8850
9050
|
Polkadot: {
|
|
8851
9051
|
DOT: string | number;
|
|
8852
9052
|
};
|
|
8853
|
-
Assethub
|
|
8854
|
-
USDC
|
|
8855
|
-
USDT
|
|
8856
|
-
DOT
|
|
8857
|
-
};
|
|
9053
|
+
Assethub?: {
|
|
9054
|
+
USDC: string | number;
|
|
9055
|
+
USDT: string | number;
|
|
9056
|
+
DOT: string | number;
|
|
9057
|
+
} | undefined;
|
|
8858
9058
|
};
|
|
8859
9059
|
ingress_fees: {
|
|
8860
9060
|
Bitcoin: {
|
|
@@ -8877,11 +9077,11 @@ declare const rpcResult: {
|
|
|
8877
9077
|
Polkadot: {
|
|
8878
9078
|
DOT: string | number | null;
|
|
8879
9079
|
};
|
|
8880
|
-
Assethub
|
|
8881
|
-
USDC
|
|
8882
|
-
USDT
|
|
8883
|
-
DOT
|
|
8884
|
-
};
|
|
9080
|
+
Assethub?: {
|
|
9081
|
+
USDC: string | number | null;
|
|
9082
|
+
USDT: string | number | null;
|
|
9083
|
+
DOT: string | number | null;
|
|
9084
|
+
} | undefined;
|
|
8885
9085
|
};
|
|
8886
9086
|
egress_fees: {
|
|
8887
9087
|
Bitcoin: {
|
|
@@ -8904,11 +9104,11 @@ declare const rpcResult: {
|
|
|
8904
9104
|
Polkadot: {
|
|
8905
9105
|
DOT: string | number | null;
|
|
8906
9106
|
};
|
|
8907
|
-
Assethub
|
|
8908
|
-
USDC
|
|
8909
|
-
USDT
|
|
8910
|
-
DOT
|
|
8911
|
-
};
|
|
9107
|
+
Assethub?: {
|
|
9108
|
+
USDC: string | number | null;
|
|
9109
|
+
USDT: string | number | null;
|
|
9110
|
+
DOT: string | number | null;
|
|
9111
|
+
} | undefined;
|
|
8912
9112
|
};
|
|
8913
9113
|
witness_safety_margins: {
|
|
8914
9114
|
Bitcoin: number | null;
|
|
@@ -8939,11 +9139,11 @@ declare const rpcResult: {
|
|
|
8939
9139
|
Polkadot: {
|
|
8940
9140
|
DOT: string | number;
|
|
8941
9141
|
};
|
|
8942
|
-
Assethub
|
|
8943
|
-
USDC
|
|
8944
|
-
USDT
|
|
8945
|
-
DOT
|
|
8946
|
-
};
|
|
9142
|
+
Assethub?: {
|
|
9143
|
+
USDC: string | number;
|
|
9144
|
+
USDT: string | number;
|
|
9145
|
+
DOT: string | number;
|
|
9146
|
+
} | undefined;
|
|
8947
9147
|
};
|
|
8948
9148
|
channel_opening_fees: {
|
|
8949
9149
|
Bitcoin: string | number;
|
|
@@ -8953,14 +9153,14 @@ declare const rpcResult: {
|
|
|
8953
9153
|
Polkadot: string | number;
|
|
8954
9154
|
Assethub?: string | number | undefined;
|
|
8955
9155
|
};
|
|
8956
|
-
max_swap_retry_duration_blocks
|
|
9156
|
+
max_swap_retry_duration_blocks: {
|
|
8957
9157
|
Bitcoin: number;
|
|
8958
9158
|
Ethereum: number;
|
|
8959
9159
|
Arbitrum: number;
|
|
8960
9160
|
Solana: number;
|
|
8961
9161
|
Polkadot: number;
|
|
8962
9162
|
Assethub?: number | undefined;
|
|
8963
|
-
}
|
|
9163
|
+
};
|
|
8964
9164
|
};
|
|
8965
9165
|
swapping: {
|
|
8966
9166
|
maximum_swap_amounts: {
|
|
@@ -8984,11 +9184,11 @@ declare const rpcResult: {
|
|
|
8984
9184
|
Polkadot: {
|
|
8985
9185
|
DOT: string | number | null;
|
|
8986
9186
|
};
|
|
8987
|
-
Assethub
|
|
8988
|
-
USDC
|
|
8989
|
-
USDT
|
|
8990
|
-
DOT
|
|
8991
|
-
};
|
|
9187
|
+
Assethub?: {
|
|
9188
|
+
USDC: string | number | null;
|
|
9189
|
+
USDT: string | number | null;
|
|
9190
|
+
DOT: string | number | null;
|
|
9191
|
+
} | undefined;
|
|
8992
9192
|
};
|
|
8993
9193
|
network_fee_hundredth_pips: number;
|
|
8994
9194
|
};
|
|
@@ -9224,8 +9424,8 @@ declare const rpcResult: {
|
|
|
9224
9424
|
};
|
|
9225
9425
|
} | null;
|
|
9226
9426
|
};
|
|
9227
|
-
Assethub
|
|
9228
|
-
USDC
|
|
9427
|
+
Assethub?: {
|
|
9428
|
+
USDC: {
|
|
9229
9429
|
limit_order_fee_hundredth_pips: number;
|
|
9230
9430
|
range_order_fee_hundredth_pips: number;
|
|
9231
9431
|
range_order_total_fees_earned: {
|
|
@@ -9248,8 +9448,8 @@ declare const rpcResult: {
|
|
|
9248
9448
|
chain: "Ethereum";
|
|
9249
9449
|
asset: "USDC";
|
|
9250
9450
|
};
|
|
9251
|
-
} | null
|
|
9252
|
-
USDT
|
|
9451
|
+
} | null;
|
|
9452
|
+
USDT: {
|
|
9253
9453
|
limit_order_fee_hundredth_pips: number;
|
|
9254
9454
|
range_order_fee_hundredth_pips: number;
|
|
9255
9455
|
range_order_total_fees_earned: {
|
|
@@ -9272,8 +9472,8 @@ declare const rpcResult: {
|
|
|
9272
9472
|
chain: "Ethereum";
|
|
9273
9473
|
asset: "USDC";
|
|
9274
9474
|
};
|
|
9275
|
-
} | null
|
|
9276
|
-
DOT
|
|
9475
|
+
} | null;
|
|
9476
|
+
DOT: {
|
|
9277
9477
|
limit_order_fee_hundredth_pips: number;
|
|
9278
9478
|
range_order_fee_hundredth_pips: number;
|
|
9279
9479
|
range_order_total_fees_earned: {
|
|
@@ -9296,8 +9496,8 @@ declare const rpcResult: {
|
|
|
9296
9496
|
chain: "Ethereum";
|
|
9297
9497
|
asset: "USDC";
|
|
9298
9498
|
};
|
|
9299
|
-
} | null
|
|
9300
|
-
};
|
|
9499
|
+
} | null;
|
|
9500
|
+
} | undefined;
|
|
9301
9501
|
};
|
|
9302
9502
|
};
|
|
9303
9503
|
}>;
|
|
@@ -9363,19 +9563,19 @@ declare const rpcResult: {
|
|
|
9363
9563
|
USDC: string | number;
|
|
9364
9564
|
SOL: string | number;
|
|
9365
9565
|
}>;
|
|
9366
|
-
Assethub: z.ZodObject<{
|
|
9367
|
-
DOT: z.
|
|
9368
|
-
USDC: z.
|
|
9369
|
-
USDT: z.
|
|
9566
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
9567
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
9568
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
9569
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
9370
9570
|
}, "strip", z.ZodTypeAny, {
|
|
9371
9571
|
USDC: bigint;
|
|
9372
9572
|
USDT: bigint;
|
|
9373
9573
|
DOT: bigint;
|
|
9374
9574
|
}, {
|
|
9375
|
-
USDC
|
|
9376
|
-
USDT
|
|
9377
|
-
DOT
|
|
9378
|
-
}
|
|
9575
|
+
USDC: string | number;
|
|
9576
|
+
USDT: string | number;
|
|
9577
|
+
DOT: string | number;
|
|
9578
|
+
}>>;
|
|
9379
9579
|
}, "strip", z.ZodTypeAny, {
|
|
9380
9580
|
Bitcoin: {
|
|
9381
9581
|
BTC: bigint;
|
|
@@ -9423,11 +9623,11 @@ declare const rpcResult: {
|
|
|
9423
9623
|
Polkadot: {
|
|
9424
9624
|
DOT: string | number;
|
|
9425
9625
|
};
|
|
9426
|
-
Assethub
|
|
9427
|
-
USDC
|
|
9428
|
-
USDT
|
|
9429
|
-
DOT
|
|
9430
|
-
};
|
|
9626
|
+
Assethub?: {
|
|
9627
|
+
USDC: string | number;
|
|
9628
|
+
USDT: string | number;
|
|
9629
|
+
DOT: string | number;
|
|
9630
|
+
} | undefined;
|
|
9431
9631
|
}>;
|
|
9432
9632
|
ingress_fees: z.ZodObject<{
|
|
9433
9633
|
Bitcoin: z.ZodObject<{
|
|
@@ -9480,19 +9680,19 @@ declare const rpcResult: {
|
|
|
9480
9680
|
USDC: string | number | null;
|
|
9481
9681
|
SOL: string | number | null;
|
|
9482
9682
|
}>;
|
|
9483
|
-
Assethub: z.ZodObject<{
|
|
9484
|
-
DOT: z.
|
|
9485
|
-
USDC: z.
|
|
9486
|
-
USDT: z.
|
|
9683
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
9684
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
9685
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
9686
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
9487
9687
|
}, "strip", z.ZodTypeAny, {
|
|
9488
9688
|
USDC: bigint | null;
|
|
9489
9689
|
USDT: bigint | null;
|
|
9490
9690
|
DOT: bigint | null;
|
|
9491
9691
|
}, {
|
|
9492
|
-
USDC
|
|
9493
|
-
USDT
|
|
9494
|
-
DOT
|
|
9495
|
-
}
|
|
9692
|
+
USDC: string | number | null;
|
|
9693
|
+
USDT: string | number | null;
|
|
9694
|
+
DOT: string | number | null;
|
|
9695
|
+
}>>;
|
|
9496
9696
|
}, "strip", z.ZodTypeAny, {
|
|
9497
9697
|
Bitcoin: {
|
|
9498
9698
|
BTC: bigint | null;
|
|
@@ -9540,11 +9740,11 @@ declare const rpcResult: {
|
|
|
9540
9740
|
Polkadot: {
|
|
9541
9741
|
DOT: string | number | null;
|
|
9542
9742
|
};
|
|
9543
|
-
Assethub
|
|
9544
|
-
USDC
|
|
9545
|
-
USDT
|
|
9546
|
-
DOT
|
|
9547
|
-
};
|
|
9743
|
+
Assethub?: {
|
|
9744
|
+
USDC: string | number | null;
|
|
9745
|
+
USDT: string | number | null;
|
|
9746
|
+
DOT: string | number | null;
|
|
9747
|
+
} | undefined;
|
|
9548
9748
|
}>;
|
|
9549
9749
|
egress_fees: z.ZodObject<{
|
|
9550
9750
|
Bitcoin: z.ZodObject<{
|
|
@@ -9597,19 +9797,19 @@ declare const rpcResult: {
|
|
|
9597
9797
|
USDC: string | number | null;
|
|
9598
9798
|
SOL: string | number | null;
|
|
9599
9799
|
}>;
|
|
9600
|
-
Assethub: z.ZodObject<{
|
|
9601
|
-
DOT: z.
|
|
9602
|
-
USDC: z.
|
|
9603
|
-
USDT: z.
|
|
9800
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
9801
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
9802
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
9803
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
9604
9804
|
}, "strip", z.ZodTypeAny, {
|
|
9605
9805
|
USDC: bigint | null;
|
|
9606
9806
|
USDT: bigint | null;
|
|
9607
9807
|
DOT: bigint | null;
|
|
9608
9808
|
}, {
|
|
9609
|
-
USDC
|
|
9610
|
-
USDT
|
|
9611
|
-
DOT
|
|
9612
|
-
}
|
|
9809
|
+
USDC: string | number | null;
|
|
9810
|
+
USDT: string | number | null;
|
|
9811
|
+
DOT: string | number | null;
|
|
9812
|
+
}>>;
|
|
9613
9813
|
}, "strip", z.ZodTypeAny, {
|
|
9614
9814
|
Bitcoin: {
|
|
9615
9815
|
BTC: bigint | null;
|
|
@@ -9657,11 +9857,11 @@ declare const rpcResult: {
|
|
|
9657
9857
|
Polkadot: {
|
|
9658
9858
|
DOT: string | number | null;
|
|
9659
9859
|
};
|
|
9660
|
-
Assethub
|
|
9661
|
-
USDC
|
|
9662
|
-
USDT
|
|
9663
|
-
DOT
|
|
9664
|
-
};
|
|
9860
|
+
Assethub?: {
|
|
9861
|
+
USDC: string | number | null;
|
|
9862
|
+
USDT: string | number | null;
|
|
9863
|
+
DOT: string | number | null;
|
|
9864
|
+
} | undefined;
|
|
9665
9865
|
}>;
|
|
9666
9866
|
witness_safety_margins: z.ZodObject<{
|
|
9667
9867
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
@@ -9736,19 +9936,19 @@ declare const rpcResult: {
|
|
|
9736
9936
|
USDC: string | number;
|
|
9737
9937
|
SOL: string | number;
|
|
9738
9938
|
}>;
|
|
9739
|
-
Assethub: z.ZodObject<{
|
|
9740
|
-
DOT: z.
|
|
9741
|
-
USDC: z.
|
|
9742
|
-
USDT: z.
|
|
9939
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
9940
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
9941
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
9942
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
9743
9943
|
}, "strip", z.ZodTypeAny, {
|
|
9744
9944
|
USDC: bigint;
|
|
9745
9945
|
USDT: bigint;
|
|
9746
9946
|
DOT: bigint;
|
|
9747
9947
|
}, {
|
|
9748
|
-
USDC
|
|
9749
|
-
USDT
|
|
9750
|
-
DOT
|
|
9751
|
-
}
|
|
9948
|
+
USDC: string | number;
|
|
9949
|
+
USDT: string | number;
|
|
9950
|
+
DOT: string | number;
|
|
9951
|
+
}>>;
|
|
9752
9952
|
}, "strip", z.ZodTypeAny, {
|
|
9753
9953
|
Bitcoin: {
|
|
9754
9954
|
BTC: bigint;
|
|
@@ -9796,11 +9996,11 @@ declare const rpcResult: {
|
|
|
9796
9996
|
Polkadot: {
|
|
9797
9997
|
DOT: string | number;
|
|
9798
9998
|
};
|
|
9799
|
-
Assethub
|
|
9800
|
-
USDC
|
|
9801
|
-
USDT
|
|
9802
|
-
DOT
|
|
9803
|
-
};
|
|
9999
|
+
Assethub?: {
|
|
10000
|
+
USDC: string | number;
|
|
10001
|
+
USDT: string | number;
|
|
10002
|
+
DOT: string | number;
|
|
10003
|
+
} | undefined;
|
|
9804
10004
|
}>;
|
|
9805
10005
|
channel_opening_fees: z.ZodObject<{
|
|
9806
10006
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
@@ -9824,7 +10024,7 @@ declare const rpcResult: {
|
|
|
9824
10024
|
Polkadot: string | number;
|
|
9825
10025
|
Assethub?: string | number | undefined;
|
|
9826
10026
|
}>;
|
|
9827
|
-
max_swap_retry_duration_blocks: z.
|
|
10027
|
+
max_swap_retry_duration_blocks: z.ZodObject<{
|
|
9828
10028
|
Bitcoin: z.ZodNumber;
|
|
9829
10029
|
Ethereum: z.ZodNumber;
|
|
9830
10030
|
Polkadot: z.ZodNumber;
|
|
@@ -9845,7 +10045,7 @@ declare const rpcResult: {
|
|
|
9845
10045
|
Solana: number;
|
|
9846
10046
|
Polkadot: number;
|
|
9847
10047
|
Assethub?: number | undefined;
|
|
9848
|
-
}
|
|
10048
|
+
}>;
|
|
9849
10049
|
}, "strip", z.ZodTypeAny, {
|
|
9850
10050
|
minimum_deposit_amounts: {
|
|
9851
10051
|
Bitcoin: {
|
|
@@ -10001,11 +10201,11 @@ declare const rpcResult: {
|
|
|
10001
10201
|
Polkadot: {
|
|
10002
10202
|
DOT: string | number;
|
|
10003
10203
|
};
|
|
10004
|
-
Assethub
|
|
10005
|
-
USDC
|
|
10006
|
-
USDT
|
|
10007
|
-
DOT
|
|
10008
|
-
};
|
|
10204
|
+
Assethub?: {
|
|
10205
|
+
USDC: string | number;
|
|
10206
|
+
USDT: string | number;
|
|
10207
|
+
DOT: string | number;
|
|
10208
|
+
} | undefined;
|
|
10009
10209
|
};
|
|
10010
10210
|
ingress_fees: {
|
|
10011
10211
|
Bitcoin: {
|
|
@@ -10028,11 +10228,11 @@ declare const rpcResult: {
|
|
|
10028
10228
|
Polkadot: {
|
|
10029
10229
|
DOT: string | number | null;
|
|
10030
10230
|
};
|
|
10031
|
-
Assethub
|
|
10032
|
-
USDC
|
|
10033
|
-
USDT
|
|
10034
|
-
DOT
|
|
10035
|
-
};
|
|
10231
|
+
Assethub?: {
|
|
10232
|
+
USDC: string | number | null;
|
|
10233
|
+
USDT: string | number | null;
|
|
10234
|
+
DOT: string | number | null;
|
|
10235
|
+
} | undefined;
|
|
10036
10236
|
};
|
|
10037
10237
|
egress_fees: {
|
|
10038
10238
|
Bitcoin: {
|
|
@@ -10055,11 +10255,11 @@ declare const rpcResult: {
|
|
|
10055
10255
|
Polkadot: {
|
|
10056
10256
|
DOT: string | number | null;
|
|
10057
10257
|
};
|
|
10058
|
-
Assethub
|
|
10059
|
-
USDC
|
|
10060
|
-
USDT
|
|
10061
|
-
DOT
|
|
10062
|
-
};
|
|
10258
|
+
Assethub?: {
|
|
10259
|
+
USDC: string | number | null;
|
|
10260
|
+
USDT: string | number | null;
|
|
10261
|
+
DOT: string | number | null;
|
|
10262
|
+
} | undefined;
|
|
10063
10263
|
};
|
|
10064
10264
|
witness_safety_margins: {
|
|
10065
10265
|
Bitcoin: number | null;
|
|
@@ -10090,11 +10290,11 @@ declare const rpcResult: {
|
|
|
10090
10290
|
Polkadot: {
|
|
10091
10291
|
DOT: string | number;
|
|
10092
10292
|
};
|
|
10093
|
-
Assethub
|
|
10094
|
-
USDC
|
|
10095
|
-
USDT
|
|
10096
|
-
DOT
|
|
10097
|
-
};
|
|
10293
|
+
Assethub?: {
|
|
10294
|
+
USDC: string | number;
|
|
10295
|
+
USDT: string | number;
|
|
10296
|
+
DOT: string | number;
|
|
10297
|
+
} | undefined;
|
|
10098
10298
|
};
|
|
10099
10299
|
channel_opening_fees: {
|
|
10100
10300
|
Bitcoin: string | number;
|
|
@@ -10104,14 +10304,14 @@ declare const rpcResult: {
|
|
|
10104
10304
|
Polkadot: string | number;
|
|
10105
10305
|
Assethub?: string | number | undefined;
|
|
10106
10306
|
};
|
|
10107
|
-
max_swap_retry_duration_blocks
|
|
10307
|
+
max_swap_retry_duration_blocks: {
|
|
10108
10308
|
Bitcoin: number;
|
|
10109
10309
|
Ethereum: number;
|
|
10110
10310
|
Arbitrum: number;
|
|
10111
10311
|
Solana: number;
|
|
10112
10312
|
Polkadot: number;
|
|
10113
10313
|
Assethub?: number | undefined;
|
|
10114
|
-
}
|
|
10314
|
+
};
|
|
10115
10315
|
}>, Omit<{
|
|
10116
10316
|
minimum_deposit_amounts: {
|
|
10117
10317
|
Bitcoin: {
|
|
@@ -10295,11 +10495,11 @@ declare const rpcResult: {
|
|
|
10295
10495
|
Polkadot: {
|
|
10296
10496
|
DOT: string | number;
|
|
10297
10497
|
};
|
|
10298
|
-
Assethub
|
|
10299
|
-
USDC
|
|
10300
|
-
USDT
|
|
10301
|
-
DOT
|
|
10302
|
-
};
|
|
10498
|
+
Assethub?: {
|
|
10499
|
+
USDC: string | number;
|
|
10500
|
+
USDT: string | number;
|
|
10501
|
+
DOT: string | number;
|
|
10502
|
+
} | undefined;
|
|
10303
10503
|
};
|
|
10304
10504
|
ingress_fees: {
|
|
10305
10505
|
Bitcoin: {
|
|
@@ -10322,11 +10522,11 @@ declare const rpcResult: {
|
|
|
10322
10522
|
Polkadot: {
|
|
10323
10523
|
DOT: string | number | null;
|
|
10324
10524
|
};
|
|
10325
|
-
Assethub
|
|
10326
|
-
USDC
|
|
10327
|
-
USDT
|
|
10328
|
-
DOT
|
|
10329
|
-
};
|
|
10525
|
+
Assethub?: {
|
|
10526
|
+
USDC: string | number | null;
|
|
10527
|
+
USDT: string | number | null;
|
|
10528
|
+
DOT: string | number | null;
|
|
10529
|
+
} | undefined;
|
|
10330
10530
|
};
|
|
10331
10531
|
egress_fees: {
|
|
10332
10532
|
Bitcoin: {
|
|
@@ -10349,11 +10549,11 @@ declare const rpcResult: {
|
|
|
10349
10549
|
Polkadot: {
|
|
10350
10550
|
DOT: string | number | null;
|
|
10351
10551
|
};
|
|
10352
|
-
Assethub
|
|
10353
|
-
USDC
|
|
10354
|
-
USDT
|
|
10355
|
-
DOT
|
|
10356
|
-
};
|
|
10552
|
+
Assethub?: {
|
|
10553
|
+
USDC: string | number | null;
|
|
10554
|
+
USDT: string | number | null;
|
|
10555
|
+
DOT: string | number | null;
|
|
10556
|
+
} | undefined;
|
|
10357
10557
|
};
|
|
10358
10558
|
witness_safety_margins: {
|
|
10359
10559
|
Bitcoin: number | null;
|
|
@@ -10384,11 +10584,11 @@ declare const rpcResult: {
|
|
|
10384
10584
|
Polkadot: {
|
|
10385
10585
|
DOT: string | number;
|
|
10386
10586
|
};
|
|
10387
|
-
Assethub
|
|
10388
|
-
USDC
|
|
10389
|
-
USDT
|
|
10390
|
-
DOT
|
|
10391
|
-
};
|
|
10587
|
+
Assethub?: {
|
|
10588
|
+
USDC: string | number;
|
|
10589
|
+
USDT: string | number;
|
|
10590
|
+
DOT: string | number;
|
|
10591
|
+
} | undefined;
|
|
10392
10592
|
};
|
|
10393
10593
|
channel_opening_fees: {
|
|
10394
10594
|
Bitcoin: string | number;
|
|
@@ -10398,14 +10598,14 @@ declare const rpcResult: {
|
|
|
10398
10598
|
Polkadot: string | number;
|
|
10399
10599
|
Assethub?: string | number | undefined;
|
|
10400
10600
|
};
|
|
10401
|
-
max_swap_retry_duration_blocks
|
|
10601
|
+
max_swap_retry_duration_blocks: {
|
|
10402
10602
|
Bitcoin: number;
|
|
10403
10603
|
Ethereum: number;
|
|
10404
10604
|
Arbitrum: number;
|
|
10405
10605
|
Solana: number;
|
|
10406
10606
|
Polkadot: number;
|
|
10407
10607
|
Assethub?: number | undefined;
|
|
10408
|
-
}
|
|
10608
|
+
};
|
|
10409
10609
|
}>;
|
|
10410
10610
|
readonly cf_pool_orders: z.ZodObject<{
|
|
10411
10611
|
limit_orders: z.ZodObject<{
|
|
@@ -13253,8 +13453,8 @@ declare const rpcResult: {
|
|
|
13253
13453
|
};
|
|
13254
13454
|
} | null;
|
|
13255
13455
|
}>;
|
|
13256
|
-
Assethub: z.ZodObject<{
|
|
13257
|
-
DOT: z.
|
|
13456
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
13457
|
+
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
13258
13458
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
13259
13459
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
13260
13460
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -13422,8 +13622,8 @@ declare const rpcResult: {
|
|
|
13422
13622
|
chain: "Ethereum";
|
|
13423
13623
|
asset: "USDC";
|
|
13424
13624
|
};
|
|
13425
|
-
} | null
|
|
13426
|
-
USDC: z.
|
|
13625
|
+
} | null>;
|
|
13626
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
13427
13627
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
13428
13628
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
13429
13629
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -13591,8 +13791,8 @@ declare const rpcResult: {
|
|
|
13591
13791
|
chain: "Ethereum";
|
|
13592
13792
|
asset: "USDC";
|
|
13593
13793
|
};
|
|
13594
|
-
} | null
|
|
13595
|
-
USDT: z.
|
|
13794
|
+
} | null>;
|
|
13795
|
+
USDT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
13596
13796
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
13597
13797
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
13598
13798
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -13760,7 +13960,7 @@ declare const rpcResult: {
|
|
|
13760
13960
|
chain: "Ethereum";
|
|
13761
13961
|
asset: "USDC";
|
|
13762
13962
|
};
|
|
13763
|
-
} | null
|
|
13963
|
+
} | null>;
|
|
13764
13964
|
}, "strip", z.ZodTypeAny, {
|
|
13765
13965
|
USDC: {
|
|
13766
13966
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -13904,7 +14104,7 @@ declare const rpcResult: {
|
|
|
13904
14104
|
};
|
|
13905
14105
|
};
|
|
13906
14106
|
}, {
|
|
13907
|
-
USDC
|
|
14107
|
+
USDC: {
|
|
13908
14108
|
limit_order_fee_hundredth_pips: number;
|
|
13909
14109
|
range_order_fee_hundredth_pips: number;
|
|
13910
14110
|
range_order_total_fees_earned: {
|
|
@@ -13927,8 +14127,8 @@ declare const rpcResult: {
|
|
|
13927
14127
|
chain: "Ethereum";
|
|
13928
14128
|
asset: "USDC";
|
|
13929
14129
|
};
|
|
13930
|
-
} | null
|
|
13931
|
-
USDT
|
|
14130
|
+
} | null;
|
|
14131
|
+
USDT: {
|
|
13932
14132
|
limit_order_fee_hundredth_pips: number;
|
|
13933
14133
|
range_order_fee_hundredth_pips: number;
|
|
13934
14134
|
range_order_total_fees_earned: {
|
|
@@ -13951,8 +14151,8 @@ declare const rpcResult: {
|
|
|
13951
14151
|
chain: "Ethereum";
|
|
13952
14152
|
asset: "USDC";
|
|
13953
14153
|
};
|
|
13954
|
-
} | null
|
|
13955
|
-
DOT
|
|
14154
|
+
} | null;
|
|
14155
|
+
DOT: {
|
|
13956
14156
|
limit_order_fee_hundredth_pips: number;
|
|
13957
14157
|
range_order_fee_hundredth_pips: number;
|
|
13958
14158
|
range_order_total_fees_earned: {
|
|
@@ -13975,8 +14175,8 @@ declare const rpcResult: {
|
|
|
13975
14175
|
chain: "Ethereum";
|
|
13976
14176
|
asset: "USDC";
|
|
13977
14177
|
};
|
|
13978
|
-
} | null
|
|
13979
|
-
}
|
|
14178
|
+
} | null;
|
|
14179
|
+
}>>;
|
|
13980
14180
|
}, "strip", z.ZodTypeAny, {
|
|
13981
14181
|
Bitcoin: {
|
|
13982
14182
|
BTC: {
|
|
@@ -14781,8 +14981,8 @@ declare const rpcResult: {
|
|
|
14781
14981
|
};
|
|
14782
14982
|
} | null;
|
|
14783
14983
|
};
|
|
14784
|
-
Assethub
|
|
14785
|
-
USDC
|
|
14984
|
+
Assethub?: {
|
|
14985
|
+
USDC: {
|
|
14786
14986
|
limit_order_fee_hundredth_pips: number;
|
|
14787
14987
|
range_order_fee_hundredth_pips: number;
|
|
14788
14988
|
range_order_total_fees_earned: {
|
|
@@ -14805,8 +15005,8 @@ declare const rpcResult: {
|
|
|
14805
15005
|
chain: "Ethereum";
|
|
14806
15006
|
asset: "USDC";
|
|
14807
15007
|
};
|
|
14808
|
-
} | null
|
|
14809
|
-
USDT
|
|
15008
|
+
} | null;
|
|
15009
|
+
USDT: {
|
|
14810
15010
|
limit_order_fee_hundredth_pips: number;
|
|
14811
15011
|
range_order_fee_hundredth_pips: number;
|
|
14812
15012
|
range_order_total_fees_earned: {
|
|
@@ -14829,8 +15029,8 @@ declare const rpcResult: {
|
|
|
14829
15029
|
chain: "Ethereum";
|
|
14830
15030
|
asset: "USDC";
|
|
14831
15031
|
};
|
|
14832
|
-
} | null
|
|
14833
|
-
DOT
|
|
15032
|
+
} | null;
|
|
15033
|
+
DOT: {
|
|
14834
15034
|
limit_order_fee_hundredth_pips: number;
|
|
14835
15035
|
range_order_fee_hundredth_pips: number;
|
|
14836
15036
|
range_order_total_fees_earned: {
|
|
@@ -14853,8 +15053,8 @@ declare const rpcResult: {
|
|
|
14853
15053
|
chain: "Ethereum";
|
|
14854
15054
|
asset: "USDC";
|
|
14855
15055
|
};
|
|
14856
|
-
} | null
|
|
14857
|
-
};
|
|
15056
|
+
} | null;
|
|
15057
|
+
} | undefined;
|
|
14858
15058
|
}>;
|
|
14859
15059
|
}, "strip", z.ZodTypeAny, {
|
|
14860
15060
|
fees: {
|
|
@@ -15663,8 +15863,8 @@ declare const rpcResult: {
|
|
|
15663
15863
|
};
|
|
15664
15864
|
} | null;
|
|
15665
15865
|
};
|
|
15666
|
-
Assethub
|
|
15667
|
-
USDC
|
|
15866
|
+
Assethub?: {
|
|
15867
|
+
USDC: {
|
|
15668
15868
|
limit_order_fee_hundredth_pips: number;
|
|
15669
15869
|
range_order_fee_hundredth_pips: number;
|
|
15670
15870
|
range_order_total_fees_earned: {
|
|
@@ -15687,8 +15887,8 @@ declare const rpcResult: {
|
|
|
15687
15887
|
chain: "Ethereum";
|
|
15688
15888
|
asset: "USDC";
|
|
15689
15889
|
};
|
|
15690
|
-
} | null
|
|
15691
|
-
USDT
|
|
15890
|
+
} | null;
|
|
15891
|
+
USDT: {
|
|
15692
15892
|
limit_order_fee_hundredth_pips: number;
|
|
15693
15893
|
range_order_fee_hundredth_pips: number;
|
|
15694
15894
|
range_order_total_fees_earned: {
|
|
@@ -15711,8 +15911,8 @@ declare const rpcResult: {
|
|
|
15711
15911
|
chain: "Ethereum";
|
|
15712
15912
|
asset: "USDC";
|
|
15713
15913
|
};
|
|
15714
|
-
} | null
|
|
15715
|
-
DOT
|
|
15914
|
+
} | null;
|
|
15915
|
+
DOT: {
|
|
15716
15916
|
limit_order_fee_hundredth_pips: number;
|
|
15717
15917
|
range_order_fee_hundredth_pips: number;
|
|
15718
15918
|
range_order_total_fees_earned: {
|
|
@@ -15735,8 +15935,8 @@ declare const rpcResult: {
|
|
|
15735
15935
|
chain: "Ethereum";
|
|
15736
15936
|
asset: "USDC";
|
|
15737
15937
|
};
|
|
15738
|
-
} | null
|
|
15739
|
-
};
|
|
15938
|
+
} | null;
|
|
15939
|
+
} | undefined;
|
|
15740
15940
|
};
|
|
15741
15941
|
}>;
|
|
15742
15942
|
readonly cf_supported_assets: z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
@@ -17330,19 +17530,19 @@ declare const rpcResult: {
|
|
|
17330
17530
|
USDC: string | number | null;
|
|
17331
17531
|
SOL: string | number | null;
|
|
17332
17532
|
}>;
|
|
17333
|
-
Assethub: z.ZodObject<{
|
|
17334
|
-
DOT: z.
|
|
17335
|
-
USDC: z.
|
|
17336
|
-
USDT: z.
|
|
17533
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
17534
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
17535
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
17536
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
17337
17537
|
}, "strip", z.ZodTypeAny, {
|
|
17338
17538
|
USDC: bigint | null;
|
|
17339
17539
|
USDT: bigint | null;
|
|
17340
17540
|
DOT: bigint | null;
|
|
17341
17541
|
}, {
|
|
17342
|
-
USDC
|
|
17343
|
-
USDT
|
|
17344
|
-
DOT
|
|
17345
|
-
}
|
|
17542
|
+
USDC: string | number | null;
|
|
17543
|
+
USDT: string | number | null;
|
|
17544
|
+
DOT: string | number | null;
|
|
17545
|
+
}>>;
|
|
17346
17546
|
}, "strip", z.ZodTypeAny, {
|
|
17347
17547
|
Bitcoin: {
|
|
17348
17548
|
BTC: bigint | null;
|
|
@@ -17390,11 +17590,11 @@ declare const rpcResult: {
|
|
|
17390
17590
|
Polkadot: {
|
|
17391
17591
|
DOT: string | number | null;
|
|
17392
17592
|
};
|
|
17393
|
-
Assethub
|
|
17394
|
-
USDC
|
|
17395
|
-
USDT
|
|
17396
|
-
DOT
|
|
17397
|
-
};
|
|
17593
|
+
Assethub?: {
|
|
17594
|
+
USDC: string | number | null;
|
|
17595
|
+
USDT: string | number | null;
|
|
17596
|
+
DOT: string | number | null;
|
|
17597
|
+
} | undefined;
|
|
17398
17598
|
}>;
|
|
17399
17599
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
17400
17600
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17448,11 +17648,11 @@ declare const rpcResult: {
|
|
|
17448
17648
|
Polkadot: {
|
|
17449
17649
|
DOT: string | number | null;
|
|
17450
17650
|
};
|
|
17451
|
-
Assethub
|
|
17452
|
-
USDC
|
|
17453
|
-
USDT
|
|
17454
|
-
DOT
|
|
17455
|
-
};
|
|
17651
|
+
Assethub?: {
|
|
17652
|
+
USDC: string | number | null;
|
|
17653
|
+
USDT: string | number | null;
|
|
17654
|
+
DOT: string | number | null;
|
|
17655
|
+
} | undefined;
|
|
17456
17656
|
};
|
|
17457
17657
|
network_fee_hundredth_pips: number;
|
|
17458
17658
|
}>;
|
|
@@ -17580,59 +17780,59 @@ declare const rpcResult: {
|
|
|
17580
17780
|
account_id: z.ZodString;
|
|
17581
17781
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
17582
17782
|
}, "strip", z.ZodTypeAny, {
|
|
17583
|
-
amount: bigint;
|
|
17584
17783
|
account_id: string;
|
|
17784
|
+
amount: bigint;
|
|
17585
17785
|
}, {
|
|
17586
|
-
amount: string;
|
|
17587
17786
|
account_id: string;
|
|
17787
|
+
amount: string;
|
|
17588
17788
|
}>, "many">;
|
|
17589
17789
|
deposits_pending_finalization: z.ZodArray<z.ZodObject<{
|
|
17590
|
-
deposit_id: z.ZodEffects<z.ZodNumber, bigint, number>;
|
|
17790
|
+
deposit_id: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17591
17791
|
owed_amounts: z.ZodArray<z.ZodObject<{
|
|
17592
17792
|
account_id: z.ZodString;
|
|
17593
17793
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
17594
17794
|
}, "strip", z.ZodTypeAny, {
|
|
17595
|
-
amount: bigint;
|
|
17596
17795
|
account_id: string;
|
|
17796
|
+
amount: bigint;
|
|
17597
17797
|
}, {
|
|
17598
|
-
amount: string;
|
|
17599
17798
|
account_id: string;
|
|
17799
|
+
amount: string;
|
|
17600
17800
|
}>, "many">;
|
|
17601
17801
|
}, "strip", z.ZodTypeAny, {
|
|
17602
17802
|
deposit_id: bigint;
|
|
17603
17803
|
owed_amounts: {
|
|
17604
|
-
amount: bigint;
|
|
17605
17804
|
account_id: string;
|
|
17805
|
+
amount: bigint;
|
|
17606
17806
|
}[];
|
|
17607
17807
|
}, {
|
|
17608
|
-
deposit_id: number;
|
|
17808
|
+
deposit_id: string | number;
|
|
17609
17809
|
owed_amounts: {
|
|
17610
|
-
amount: string;
|
|
17611
17810
|
account_id: string;
|
|
17811
|
+
amount: string;
|
|
17612
17812
|
}[];
|
|
17613
17813
|
}>, "many">;
|
|
17614
17814
|
pending_withdrawals: z.ZodArray<z.ZodObject<{
|
|
17615
17815
|
account_id: z.ZodString;
|
|
17616
|
-
pending_deposits: z.ZodArray<z.
|
|
17816
|
+
pending_deposits: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>, "many">;
|
|
17617
17817
|
}, "strip", z.ZodTypeAny, {
|
|
17618
17818
|
account_id: string;
|
|
17619
17819
|
pending_deposits: bigint[];
|
|
17620
17820
|
}, {
|
|
17621
17821
|
account_id: string;
|
|
17622
|
-
pending_deposits:
|
|
17822
|
+
pending_deposits: (string | number)[];
|
|
17623
17823
|
}>, "many">;
|
|
17624
17824
|
network_fee_deduction_percent: z.ZodOptional<z.ZodNumber>;
|
|
17625
17825
|
}, "strip", z.ZodTypeAny, {
|
|
17626
17826
|
fee_tier: number;
|
|
17627
17827
|
available_amounts: {
|
|
17628
|
-
amount: bigint;
|
|
17629
17828
|
account_id: string;
|
|
17829
|
+
amount: bigint;
|
|
17630
17830
|
}[];
|
|
17631
17831
|
deposits_pending_finalization: {
|
|
17632
17832
|
deposit_id: bigint;
|
|
17633
17833
|
owed_amounts: {
|
|
17634
|
-
amount: bigint;
|
|
17635
17834
|
account_id: string;
|
|
17835
|
+
amount: bigint;
|
|
17636
17836
|
}[];
|
|
17637
17837
|
}[];
|
|
17638
17838
|
pending_withdrawals: {
|
|
@@ -17643,19 +17843,19 @@ declare const rpcResult: {
|
|
|
17643
17843
|
}, {
|
|
17644
17844
|
fee_tier: number;
|
|
17645
17845
|
available_amounts: {
|
|
17646
|
-
amount: string;
|
|
17647
17846
|
account_id: string;
|
|
17847
|
+
amount: string;
|
|
17648
17848
|
}[];
|
|
17649
17849
|
deposits_pending_finalization: {
|
|
17650
|
-
deposit_id: number;
|
|
17850
|
+
deposit_id: string | number;
|
|
17651
17851
|
owed_amounts: {
|
|
17652
|
-
amount: string;
|
|
17653
17852
|
account_id: string;
|
|
17853
|
+
amount: string;
|
|
17654
17854
|
}[];
|
|
17655
17855
|
}[];
|
|
17656
17856
|
pending_withdrawals: {
|
|
17657
17857
|
account_id: string;
|
|
17658
|
-
pending_deposits:
|
|
17858
|
+
pending_deposits: (string | number)[];
|
|
17659
17859
|
}[];
|
|
17660
17860
|
network_fee_deduction_percent?: number | undefined;
|
|
17661
17861
|
}>>, "many">;
|
|
@@ -17784,22 +17984,22 @@ declare const rpcResult: {
|
|
|
17784
17984
|
account_id: z.ZodString;
|
|
17785
17985
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
17786
17986
|
}, "strip", z.ZodTypeAny, {
|
|
17787
|
-
amount: bigint;
|
|
17788
17987
|
account_id: string;
|
|
17988
|
+
amount: bigint;
|
|
17789
17989
|
}, {
|
|
17790
|
-
amount: string;
|
|
17791
17990
|
account_id: string;
|
|
17991
|
+
amount: string;
|
|
17792
17992
|
}>, "many">;
|
|
17793
17993
|
}, "strip", z.ZodTypeAny, {
|
|
17794
17994
|
fees: {
|
|
17795
|
-
amount: bigint;
|
|
17796
17995
|
account_id: string;
|
|
17996
|
+
amount: bigint;
|
|
17797
17997
|
}[];
|
|
17798
17998
|
deposit_id: bigint;
|
|
17799
17999
|
}, {
|
|
17800
18000
|
fees: {
|
|
17801
|
-
amount: string;
|
|
17802
18001
|
account_id: string;
|
|
18002
|
+
amount: string;
|
|
17803
18003
|
}[];
|
|
17804
18004
|
deposit_id: number;
|
|
17805
18005
|
}>, "many">;
|
|
@@ -17807,8 +18007,8 @@ declare const rpcResult: {
|
|
|
17807
18007
|
fee_tier: number;
|
|
17808
18008
|
pending_fees: {
|
|
17809
18009
|
fees: {
|
|
17810
|
-
amount: bigint;
|
|
17811
18010
|
account_id: string;
|
|
18011
|
+
amount: bigint;
|
|
17812
18012
|
}[];
|
|
17813
18013
|
deposit_id: bigint;
|
|
17814
18014
|
}[];
|
|
@@ -17816,8 +18016,8 @@ declare const rpcResult: {
|
|
|
17816
18016
|
fee_tier: number;
|
|
17817
18017
|
pending_fees: {
|
|
17818
18018
|
fees: {
|
|
17819
|
-
amount: string;
|
|
17820
18019
|
account_id: string;
|
|
18020
|
+
amount: string;
|
|
17821
18021
|
}[];
|
|
17822
18022
|
deposit_id: number;
|
|
17823
18023
|
}[];
|
|
@@ -17902,19 +18102,19 @@ declare const rpcResult: {
|
|
|
17902
18102
|
USDC: string | number;
|
|
17903
18103
|
SOL: string | number;
|
|
17904
18104
|
}>;
|
|
17905
|
-
Assethub: z.ZodObject<{
|
|
17906
|
-
DOT: z.
|
|
17907
|
-
USDC: z.
|
|
17908
|
-
USDT: z.
|
|
18105
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
18106
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18107
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18108
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17909
18109
|
}, "strip", z.ZodTypeAny, {
|
|
17910
18110
|
USDC: bigint;
|
|
17911
18111
|
USDT: bigint;
|
|
17912
18112
|
DOT: bigint;
|
|
17913
18113
|
}, {
|
|
17914
|
-
USDC
|
|
17915
|
-
USDT
|
|
17916
|
-
DOT
|
|
17917
|
-
}
|
|
18114
|
+
USDC: string | number;
|
|
18115
|
+
USDT: string | number;
|
|
18116
|
+
DOT: string | number;
|
|
18117
|
+
}>>;
|
|
17918
18118
|
}, "strip", z.ZodTypeAny, {
|
|
17919
18119
|
Bitcoin: {
|
|
17920
18120
|
BTC: bigint;
|
|
@@ -17962,11 +18162,117 @@ declare const rpcResult: {
|
|
|
17962
18162
|
Polkadot: {
|
|
17963
18163
|
DOT: string | number;
|
|
17964
18164
|
};
|
|
17965
|
-
Assethub
|
|
17966
|
-
USDC
|
|
17967
|
-
USDT
|
|
17968
|
-
DOT
|
|
17969
|
-
};
|
|
18165
|
+
Assethub?: {
|
|
18166
|
+
USDC: string | number;
|
|
18167
|
+
USDT: string | number;
|
|
18168
|
+
DOT: string | number;
|
|
18169
|
+
} | undefined;
|
|
18170
|
+
}>;
|
|
18171
|
+
readonly cf_failed_call_ethereum: z.ZodNullable<z.ZodObject<{
|
|
18172
|
+
contract: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
18173
|
+
data: z.ZodString;
|
|
18174
|
+
}, "strip", z.ZodTypeAny, {
|
|
18175
|
+
data: string;
|
|
18176
|
+
contract: `0x${string}`;
|
|
18177
|
+
}, {
|
|
18178
|
+
data: string;
|
|
18179
|
+
contract: string;
|
|
18180
|
+
}>>;
|
|
18181
|
+
readonly cf_failed_call_arbitrum: z.ZodNullable<z.ZodObject<{
|
|
18182
|
+
contract: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
18183
|
+
data: z.ZodString;
|
|
18184
|
+
}, "strip", z.ZodTypeAny, {
|
|
18185
|
+
data: string;
|
|
18186
|
+
contract: `0x${string}`;
|
|
18187
|
+
}, {
|
|
18188
|
+
data: string;
|
|
18189
|
+
contract: string;
|
|
18190
|
+
}>>;
|
|
18191
|
+
readonly cf_authority_emission_per_block: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18192
|
+
readonly cf_epoch_duration: z.ZodNumber;
|
|
18193
|
+
readonly cf_auction_state: z.ZodEffects<z.ZodObject<{
|
|
18194
|
+
epoch_duration: z.ZodNumber;
|
|
18195
|
+
current_epoch_started_at: z.ZodNumber;
|
|
18196
|
+
redemption_period_as_percentage: z.ZodNumber;
|
|
18197
|
+
min_funding: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18198
|
+
auction_size_range: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
18199
|
+
min_active_bid: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18200
|
+
}, "strip", z.ZodTypeAny, {
|
|
18201
|
+
epoch_duration: number;
|
|
18202
|
+
current_epoch_started_at: number;
|
|
18203
|
+
redemption_period_as_percentage: number;
|
|
18204
|
+
min_funding: bigint;
|
|
18205
|
+
auction_size_range: [number, number];
|
|
18206
|
+
min_active_bid: bigint;
|
|
18207
|
+
}, {
|
|
18208
|
+
epoch_duration: number;
|
|
18209
|
+
current_epoch_started_at: number;
|
|
18210
|
+
redemption_period_as_percentage: number;
|
|
18211
|
+
min_funding: string | number;
|
|
18212
|
+
auction_size_range: [number, number];
|
|
18213
|
+
min_active_bid: string | number;
|
|
18214
|
+
}>, Omit<{
|
|
18215
|
+
epoch_duration: number;
|
|
18216
|
+
current_epoch_started_at: number;
|
|
18217
|
+
redemption_period_as_percentage: number;
|
|
18218
|
+
min_funding: bigint;
|
|
18219
|
+
auction_size_range: [number, number];
|
|
18220
|
+
min_active_bid: bigint;
|
|
18221
|
+
}, "epoch_duration"> & {
|
|
18222
|
+
readonly epoch_duration_blocks: number;
|
|
18223
|
+
}, {
|
|
18224
|
+
epoch_duration: number;
|
|
18225
|
+
current_epoch_started_at: number;
|
|
18226
|
+
redemption_period_as_percentage: number;
|
|
18227
|
+
min_funding: string | number;
|
|
18228
|
+
auction_size_range: [number, number];
|
|
18229
|
+
min_active_bid: string | number;
|
|
18230
|
+
}>;
|
|
18231
|
+
readonly cf_flip_supply: z.ZodEffects<z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>, z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>], null>, {
|
|
18232
|
+
totalIssuance: bigint;
|
|
18233
|
+
offchainFunds: bigint;
|
|
18234
|
+
}, [string | number, string | number]>;
|
|
18235
|
+
readonly cf_eth_state_chain_gateway_address: z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
18236
|
+
readonly cf_eth_key_manager_address: z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
18237
|
+
readonly cf_pool_orderbook: z.ZodObject<{
|
|
18238
|
+
bids: z.ZodArray<z.ZodObject<{
|
|
18239
|
+
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
18240
|
+
sqrt_price: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
18241
|
+
}, "strip", z.ZodTypeAny, {
|
|
18242
|
+
amount: bigint;
|
|
18243
|
+
sqrt_price: bigint;
|
|
18244
|
+
}, {
|
|
18245
|
+
amount: string;
|
|
18246
|
+
sqrt_price: string;
|
|
18247
|
+
}>, "many">;
|
|
18248
|
+
asks: z.ZodArray<z.ZodObject<{
|
|
18249
|
+
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
18250
|
+
sqrt_price: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
18251
|
+
}, "strip", z.ZodTypeAny, {
|
|
18252
|
+
amount: bigint;
|
|
18253
|
+
sqrt_price: bigint;
|
|
18254
|
+
}, {
|
|
18255
|
+
amount: string;
|
|
18256
|
+
sqrt_price: string;
|
|
18257
|
+
}>, "many">;
|
|
18258
|
+
}, "strip", z.ZodTypeAny, {
|
|
18259
|
+
asks: {
|
|
18260
|
+
amount: bigint;
|
|
18261
|
+
sqrt_price: bigint;
|
|
18262
|
+
}[];
|
|
18263
|
+
bids: {
|
|
18264
|
+
amount: bigint;
|
|
18265
|
+
sqrt_price: bigint;
|
|
18266
|
+
}[];
|
|
18267
|
+
}, {
|
|
18268
|
+
asks: {
|
|
18269
|
+
amount: string;
|
|
18270
|
+
sqrt_price: string;
|
|
18271
|
+
}[];
|
|
18272
|
+
bids: {
|
|
18273
|
+
amount: string;
|
|
18274
|
+
sqrt_price: string;
|
|
18275
|
+
}[];
|
|
17970
18276
|
}>;
|
|
17971
18277
|
};
|
|
17972
18278
|
type RpcMethod = keyof RpcRequest;
|