@chainflip/rpc 1.11.0-beta.14 → 1.11.0-beta.15
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 +3 -1
- package/dist/common.d.cts +573 -481
- package/dist/common.d.ts +573 -481
- package/dist/common.mjs +4 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/parsers.cjs +28 -2
- package/dist/parsers.d.cts +980 -888
- package/dist/parsers.d.ts +980 -888
- package/dist/parsers.mjs +27 -1
- package/dist/types.d.cts +3 -1
- package/dist/types.d.ts +3 -1
- package/package.json +2 -2
package/dist/common.d.cts
CHANGED
|
@@ -192,6 +192,7 @@ type RpcRequest = WithHash<{
|
|
|
192
192
|
cf_safe_mode_statuses: [];
|
|
193
193
|
cf_oracle_prices: [oraclePricePair?: Nullish<[PriceAsset, PriceAsset]>];
|
|
194
194
|
cf_lending_pools: [asset?: UncheckedAssetAndChain];
|
|
195
|
+
cf_lending_config: [];
|
|
195
196
|
}> & {
|
|
196
197
|
chain_getBlockHash: [blockHeight?: number];
|
|
197
198
|
};
|
|
@@ -200,7 +201,7 @@ declare const rpcResult: {
|
|
|
200
201
|
address: z.ZodString;
|
|
201
202
|
issued_block: z.ZodNumber;
|
|
202
203
|
channel_id: z.ZodNumber;
|
|
203
|
-
source_chain_expiry_block: z.
|
|
204
|
+
source_chain_expiry_block: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
204
205
|
channel_opening_fee: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
205
206
|
}, "strip", z.ZodTypeAny, {
|
|
206
207
|
address: string;
|
|
@@ -230,7 +231,7 @@ declare const rpcResult: {
|
|
|
230
231
|
}>, z.ZodObject<{
|
|
231
232
|
to: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
232
233
|
calldata: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
233
|
-
value: z.
|
|
234
|
+
value: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
234
235
|
source_token_address: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
235
236
|
} & {
|
|
236
237
|
chain: z.ZodLiteral<"Ethereum">;
|
|
@@ -249,7 +250,7 @@ declare const rpcResult: {
|
|
|
249
250
|
}>, z.ZodObject<{
|
|
250
251
|
to: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
251
252
|
calldata: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
252
|
-
value: z.
|
|
253
|
+
value: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
253
254
|
source_token_address: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
254
255
|
} & {
|
|
255
256
|
chain: z.ZodLiteral<"Arbitrum">;
|
|
@@ -316,7 +317,7 @@ declare const rpcResult: {
|
|
|
316
317
|
}>, z.ZodObject<{
|
|
317
318
|
to: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
318
319
|
calldata: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
319
|
-
value: z.
|
|
320
|
+
value: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
320
321
|
source_token_address: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
321
322
|
} & {
|
|
322
323
|
chain: z.ZodLiteral<"Ethereum">;
|
|
@@ -335,7 +336,7 @@ declare const rpcResult: {
|
|
|
335
336
|
}>, z.ZodObject<{
|
|
336
337
|
to: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
337
338
|
calldata: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
338
|
-
value: z.
|
|
339
|
+
value: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
339
340
|
source_token_address: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
340
341
|
} & {
|
|
341
342
|
chain: z.ZodLiteral<"Arbitrum">;
|
|
@@ -390,20 +391,20 @@ declare const rpcResult: {
|
|
|
390
391
|
readonly cf_accounts: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
391
392
|
readonly cf_account_info: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
392
393
|
vanity_name: z.ZodOptional<z.ZodString>;
|
|
393
|
-
flip_balance: z.
|
|
394
|
+
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
394
395
|
asset_balances: z.ZodObject<Omit<{
|
|
395
396
|
Bitcoin: z.ZodObject<{
|
|
396
|
-
BTC: z.
|
|
397
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
397
398
|
}, "strip", z.ZodTypeAny, {
|
|
398
399
|
BTC: bigint;
|
|
399
400
|
}, {
|
|
400
401
|
BTC: string | number;
|
|
401
402
|
}>;
|
|
402
403
|
Ethereum: z.ZodObject<{
|
|
403
|
-
ETH: z.
|
|
404
|
-
USDC: z.
|
|
405
|
-
FLIP: z.
|
|
406
|
-
USDT: z.
|
|
404
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
405
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
406
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
407
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
407
408
|
}, "strip", z.ZodTypeAny, {
|
|
408
409
|
ETH: bigint;
|
|
409
410
|
USDC: bigint;
|
|
@@ -416,15 +417,15 @@ declare const rpcResult: {
|
|
|
416
417
|
USDT: string | number;
|
|
417
418
|
}>;
|
|
418
419
|
Polkadot: z.ZodObject<{
|
|
419
|
-
DOT: z.
|
|
420
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
420
421
|
}, "strip", z.ZodTypeAny, {
|
|
421
422
|
DOT: bigint;
|
|
422
423
|
}, {
|
|
423
424
|
DOT: string | number;
|
|
424
425
|
}>;
|
|
425
426
|
Arbitrum: z.ZodObject<{
|
|
426
|
-
ETH: z.
|
|
427
|
-
USDC: z.
|
|
427
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
428
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
428
429
|
}, "strip", z.ZodTypeAny, {
|
|
429
430
|
ETH: bigint;
|
|
430
431
|
USDC: bigint;
|
|
@@ -433,8 +434,8 @@ declare const rpcResult: {
|
|
|
433
434
|
USDC: string | number;
|
|
434
435
|
}>;
|
|
435
436
|
Solana: z.ZodObject<{
|
|
436
|
-
SOL: z.
|
|
437
|
-
USDC: z.
|
|
437
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
438
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
438
439
|
}, "strip", z.ZodTypeAny, {
|
|
439
440
|
USDC: bigint;
|
|
440
441
|
SOL: bigint;
|
|
@@ -443,9 +444,9 @@ declare const rpcResult: {
|
|
|
443
444
|
SOL: string | number;
|
|
444
445
|
}>;
|
|
445
446
|
Assethub: z.ZodObject<{
|
|
446
|
-
DOT: z.
|
|
447
|
-
USDC: z.
|
|
448
|
-
USDT: z.
|
|
447
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
448
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
449
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
449
450
|
}, "strip", z.ZodTypeAny, {
|
|
450
451
|
USDC: bigint;
|
|
451
452
|
USDT: bigint;
|
|
@@ -502,13 +503,13 @@ declare const rpcResult: {
|
|
|
502
503
|
DOT: string | number;
|
|
503
504
|
};
|
|
504
505
|
}>;
|
|
505
|
-
bond: z.
|
|
506
|
-
estimated_redeemable_balance: z.
|
|
506
|
+
bond: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
507
|
+
estimated_redeemable_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
507
508
|
bound_redeem_address: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
508
|
-
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.
|
|
509
|
+
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
509
510
|
current_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
510
511
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
511
|
-
bid: z.
|
|
512
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
512
513
|
}, "strip", z.ZodTypeAny, {
|
|
513
514
|
operator: `cF${string}`;
|
|
514
515
|
bid: bigint;
|
|
@@ -518,7 +519,7 @@ declare const rpcResult: {
|
|
|
518
519
|
}>>;
|
|
519
520
|
upcoming_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
520
521
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
521
|
-
bid: z.
|
|
522
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
522
523
|
}, "strip", z.ZodTypeAny, {
|
|
523
524
|
operator: `cF${string}`;
|
|
524
525
|
bid: bigint;
|
|
@@ -610,17 +611,17 @@ declare const rpcResult: {
|
|
|
610
611
|
}>, z.ZodObject<{
|
|
611
612
|
earned_fees: z.ZodObject<Omit<{
|
|
612
613
|
Bitcoin: z.ZodObject<{
|
|
613
|
-
BTC: z.
|
|
614
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
614
615
|
}, "strip", z.ZodTypeAny, {
|
|
615
616
|
BTC: bigint;
|
|
616
617
|
}, {
|
|
617
618
|
BTC: string | number;
|
|
618
619
|
}>;
|
|
619
620
|
Ethereum: z.ZodObject<{
|
|
620
|
-
ETH: z.
|
|
621
|
-
USDC: z.
|
|
622
|
-
FLIP: z.
|
|
623
|
-
USDT: z.
|
|
621
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
622
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
623
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
624
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
624
625
|
}, "strip", z.ZodTypeAny, {
|
|
625
626
|
ETH: bigint;
|
|
626
627
|
USDC: bigint;
|
|
@@ -633,15 +634,15 @@ declare const rpcResult: {
|
|
|
633
634
|
USDT: string | number;
|
|
634
635
|
}>;
|
|
635
636
|
Polkadot: z.ZodObject<{
|
|
636
|
-
DOT: z.
|
|
637
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
637
638
|
}, "strip", z.ZodTypeAny, {
|
|
638
639
|
DOT: bigint;
|
|
639
640
|
}, {
|
|
640
641
|
DOT: string | number;
|
|
641
642
|
}>;
|
|
642
643
|
Arbitrum: z.ZodObject<{
|
|
643
|
-
ETH: z.
|
|
644
|
-
USDC: z.
|
|
644
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
645
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
645
646
|
}, "strip", z.ZodTypeAny, {
|
|
646
647
|
ETH: bigint;
|
|
647
648
|
USDC: bigint;
|
|
@@ -650,8 +651,8 @@ declare const rpcResult: {
|
|
|
650
651
|
USDC: string | number;
|
|
651
652
|
}>;
|
|
652
653
|
Solana: z.ZodObject<{
|
|
653
|
-
SOL: z.
|
|
654
|
-
USDC: z.
|
|
654
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
655
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
655
656
|
}, "strip", z.ZodTypeAny, {
|
|
656
657
|
USDC: bigint;
|
|
657
658
|
SOL: bigint;
|
|
@@ -660,9 +661,9 @@ declare const rpcResult: {
|
|
|
660
661
|
SOL: string | number;
|
|
661
662
|
}>;
|
|
662
663
|
Assethub: z.ZodObject<{
|
|
663
|
-
DOT: z.
|
|
664
|
-
USDC: z.
|
|
665
|
-
USDT: z.
|
|
664
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
665
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
666
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
666
667
|
}, "strip", z.ZodTypeAny, {
|
|
667
668
|
USDC: bigint;
|
|
668
669
|
USDT: bigint;
|
|
@@ -734,20 +735,20 @@ declare const rpcResult: {
|
|
|
734
735
|
withdrawal_address: string;
|
|
735
736
|
}>, "many">>>;
|
|
736
737
|
vanity_name: z.ZodOptional<z.ZodString>;
|
|
737
|
-
flip_balance: z.
|
|
738
|
+
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
738
739
|
asset_balances: z.ZodObject<Omit<{
|
|
739
740
|
Bitcoin: z.ZodObject<{
|
|
740
|
-
BTC: z.
|
|
741
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
741
742
|
}, "strip", z.ZodTypeAny, {
|
|
742
743
|
BTC: bigint;
|
|
743
744
|
}, {
|
|
744
745
|
BTC: string | number;
|
|
745
746
|
}>;
|
|
746
747
|
Ethereum: z.ZodObject<{
|
|
747
|
-
ETH: z.
|
|
748
|
-
USDC: z.
|
|
749
|
-
FLIP: z.
|
|
750
|
-
USDT: z.
|
|
748
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
749
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
750
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
751
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
751
752
|
}, "strip", z.ZodTypeAny, {
|
|
752
753
|
ETH: bigint;
|
|
753
754
|
USDC: bigint;
|
|
@@ -760,15 +761,15 @@ declare const rpcResult: {
|
|
|
760
761
|
USDT: string | number;
|
|
761
762
|
}>;
|
|
762
763
|
Polkadot: z.ZodObject<{
|
|
763
|
-
DOT: z.
|
|
764
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
764
765
|
}, "strip", z.ZodTypeAny, {
|
|
765
766
|
DOT: bigint;
|
|
766
767
|
}, {
|
|
767
768
|
DOT: string | number;
|
|
768
769
|
}>;
|
|
769
770
|
Arbitrum: z.ZodObject<{
|
|
770
|
-
ETH: z.
|
|
771
|
-
USDC: z.
|
|
771
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
772
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
772
773
|
}, "strip", z.ZodTypeAny, {
|
|
773
774
|
ETH: bigint;
|
|
774
775
|
USDC: bigint;
|
|
@@ -777,8 +778,8 @@ declare const rpcResult: {
|
|
|
777
778
|
USDC: string | number;
|
|
778
779
|
}>;
|
|
779
780
|
Solana: z.ZodObject<{
|
|
780
|
-
SOL: z.
|
|
781
|
-
USDC: z.
|
|
781
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
782
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
782
783
|
}, "strip", z.ZodTypeAny, {
|
|
783
784
|
USDC: bigint;
|
|
784
785
|
SOL: bigint;
|
|
@@ -787,9 +788,9 @@ declare const rpcResult: {
|
|
|
787
788
|
SOL: string | number;
|
|
788
789
|
}>;
|
|
789
790
|
Assethub: z.ZodObject<{
|
|
790
|
-
DOT: z.
|
|
791
|
-
USDC: z.
|
|
792
|
-
USDT: z.
|
|
791
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
792
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
793
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
793
794
|
}, "strip", z.ZodTypeAny, {
|
|
794
795
|
USDC: bigint;
|
|
795
796
|
USDT: bigint;
|
|
@@ -846,13 +847,13 @@ declare const rpcResult: {
|
|
|
846
847
|
DOT: string | number;
|
|
847
848
|
};
|
|
848
849
|
}>;
|
|
849
|
-
bond: z.
|
|
850
|
-
estimated_redeemable_balance: z.
|
|
850
|
+
bond: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
851
|
+
estimated_redeemable_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
851
852
|
bound_redeem_address: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
852
|
-
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.
|
|
853
|
+
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
853
854
|
current_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
854
855
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
855
|
-
bid: z.
|
|
856
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
856
857
|
}, "strip", z.ZodTypeAny, {
|
|
857
858
|
operator: `cF${string}`;
|
|
858
859
|
bid: bigint;
|
|
@@ -862,7 +863,7 @@ declare const rpcResult: {
|
|
|
862
863
|
}>>;
|
|
863
864
|
upcoming_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
864
865
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
865
|
-
bid: z.
|
|
866
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
866
867
|
}, "strip", z.ZodTypeAny, {
|
|
867
868
|
operator: `cF${string}`;
|
|
868
869
|
bid: bigint;
|
|
@@ -1012,8 +1013,8 @@ declare const rpcResult: {
|
|
|
1012
1013
|
withdrawal_address: string;
|
|
1013
1014
|
}[] | undefined;
|
|
1014
1015
|
}>, z.ZodObject<{
|
|
1015
|
-
managed_validators: z.ZodRecord<z.ZodEffects<z.ZodString, `cF${string}`, string>, z.
|
|
1016
|
-
delegators: z.ZodRecord<z.ZodEffects<z.ZodString, `cF${string}`, string>, z.
|
|
1016
|
+
managed_validators: z.ZodRecord<z.ZodEffects<z.ZodString, `cF${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
1017
|
+
delegators: z.ZodRecord<z.ZodEffects<z.ZodString, `cF${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
1017
1018
|
settings: z.ZodObject<{
|
|
1018
1019
|
fee_bps: z.ZodNumber;
|
|
1019
1020
|
delegation_acceptance: z.ZodEnum<["Allow", "Deny"]>;
|
|
@@ -1028,8 +1029,8 @@ declare const rpcResult: {
|
|
|
1028
1029
|
blocked: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, `cF${string}`, string>, "many">>>;
|
|
1029
1030
|
active_delegation: z.ZodOptional<z.ZodObject<{
|
|
1030
1031
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
1031
|
-
validators: z.ZodRecord<z.ZodEffects<z.ZodString, `cF${string}`, string>, z.
|
|
1032
|
-
delegators: z.ZodRecord<z.ZodEffects<z.ZodString, `cF${string}`, string>, z.
|
|
1032
|
+
validators: z.ZodRecord<z.ZodEffects<z.ZodString, `cF${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
1033
|
+
delegators: z.ZodRecord<z.ZodEffects<z.ZodString, `cF${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
1033
1034
|
delegation_fee_bps: z.ZodNumber;
|
|
1034
1035
|
}, "strip", z.ZodTypeAny, {
|
|
1035
1036
|
operator: `cF${string}`;
|
|
@@ -1043,20 +1044,20 @@ declare const rpcResult: {
|
|
|
1043
1044
|
delegation_fee_bps: number;
|
|
1044
1045
|
}>>;
|
|
1045
1046
|
vanity_name: z.ZodOptional<z.ZodString>;
|
|
1046
|
-
flip_balance: z.
|
|
1047
|
+
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1047
1048
|
asset_balances: z.ZodObject<Omit<{
|
|
1048
1049
|
Bitcoin: z.ZodObject<{
|
|
1049
|
-
BTC: z.
|
|
1050
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1050
1051
|
}, "strip", z.ZodTypeAny, {
|
|
1051
1052
|
BTC: bigint;
|
|
1052
1053
|
}, {
|
|
1053
1054
|
BTC: string | number;
|
|
1054
1055
|
}>;
|
|
1055
1056
|
Ethereum: z.ZodObject<{
|
|
1056
|
-
ETH: z.
|
|
1057
|
-
USDC: z.
|
|
1058
|
-
FLIP: z.
|
|
1059
|
-
USDT: z.
|
|
1057
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1058
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1059
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1060
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1060
1061
|
}, "strip", z.ZodTypeAny, {
|
|
1061
1062
|
ETH: bigint;
|
|
1062
1063
|
USDC: bigint;
|
|
@@ -1069,15 +1070,15 @@ declare const rpcResult: {
|
|
|
1069
1070
|
USDT: string | number;
|
|
1070
1071
|
}>;
|
|
1071
1072
|
Polkadot: z.ZodObject<{
|
|
1072
|
-
DOT: z.
|
|
1073
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1073
1074
|
}, "strip", z.ZodTypeAny, {
|
|
1074
1075
|
DOT: bigint;
|
|
1075
1076
|
}, {
|
|
1076
1077
|
DOT: string | number;
|
|
1077
1078
|
}>;
|
|
1078
1079
|
Arbitrum: z.ZodObject<{
|
|
1079
|
-
ETH: z.
|
|
1080
|
-
USDC: z.
|
|
1080
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1081
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1081
1082
|
}, "strip", z.ZodTypeAny, {
|
|
1082
1083
|
ETH: bigint;
|
|
1083
1084
|
USDC: bigint;
|
|
@@ -1086,8 +1087,8 @@ declare const rpcResult: {
|
|
|
1086
1087
|
USDC: string | number;
|
|
1087
1088
|
}>;
|
|
1088
1089
|
Solana: z.ZodObject<{
|
|
1089
|
-
SOL: z.
|
|
1090
|
-
USDC: z.
|
|
1090
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1091
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1091
1092
|
}, "strip", z.ZodTypeAny, {
|
|
1092
1093
|
USDC: bigint;
|
|
1093
1094
|
SOL: bigint;
|
|
@@ -1096,9 +1097,9 @@ declare const rpcResult: {
|
|
|
1096
1097
|
SOL: string | number;
|
|
1097
1098
|
}>;
|
|
1098
1099
|
Assethub: z.ZodObject<{
|
|
1099
|
-
DOT: z.
|
|
1100
|
-
USDC: z.
|
|
1101
|
-
USDT: z.
|
|
1100
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1101
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1102
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1102
1103
|
}, "strip", z.ZodTypeAny, {
|
|
1103
1104
|
USDC: bigint;
|
|
1104
1105
|
USDT: bigint;
|
|
@@ -1155,13 +1156,13 @@ declare const rpcResult: {
|
|
|
1155
1156
|
DOT: string | number;
|
|
1156
1157
|
};
|
|
1157
1158
|
}>;
|
|
1158
|
-
bond: z.
|
|
1159
|
-
estimated_redeemable_balance: z.
|
|
1159
|
+
bond: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1160
|
+
estimated_redeemable_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1160
1161
|
bound_redeem_address: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
1161
|
-
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.
|
|
1162
|
+
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
1162
1163
|
current_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
1163
1164
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
1164
|
-
bid: z.
|
|
1165
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1165
1166
|
}, "strip", z.ZodTypeAny, {
|
|
1166
1167
|
operator: `cF${string}`;
|
|
1167
1168
|
bid: bigint;
|
|
@@ -1171,7 +1172,7 @@ declare const rpcResult: {
|
|
|
1171
1172
|
}>>;
|
|
1172
1173
|
upcoming_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
1173
1174
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
1174
|
-
bid: z.
|
|
1175
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1175
1176
|
}, "strip", z.ZodTypeAny, {
|
|
1176
1177
|
operator: `cF${string}`;
|
|
1177
1178
|
bid: bigint;
|
|
@@ -1311,17 +1312,17 @@ declare const rpcResult: {
|
|
|
1311
1312
|
}>;
|
|
1312
1313
|
earned_fees: z.ZodObject<Omit<{
|
|
1313
1314
|
Bitcoin: z.ZodObject<{
|
|
1314
|
-
BTC: z.
|
|
1315
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1315
1316
|
}, "strip", z.ZodTypeAny, {
|
|
1316
1317
|
BTC: bigint;
|
|
1317
1318
|
}, {
|
|
1318
1319
|
BTC: string | number;
|
|
1319
1320
|
}>;
|
|
1320
1321
|
Ethereum: z.ZodObject<{
|
|
1321
|
-
ETH: z.
|
|
1322
|
-
USDC: z.
|
|
1323
|
-
FLIP: z.
|
|
1324
|
-
USDT: z.
|
|
1322
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1323
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1324
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1325
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1325
1326
|
}, "strip", z.ZodTypeAny, {
|
|
1326
1327
|
ETH: bigint;
|
|
1327
1328
|
USDC: bigint;
|
|
@@ -1334,15 +1335,15 @@ declare const rpcResult: {
|
|
|
1334
1335
|
USDT: string | number;
|
|
1335
1336
|
}>;
|
|
1336
1337
|
Polkadot: z.ZodObject<{
|
|
1337
|
-
DOT: z.
|
|
1338
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1338
1339
|
}, "strip", z.ZodTypeAny, {
|
|
1339
1340
|
DOT: bigint;
|
|
1340
1341
|
}, {
|
|
1341
1342
|
DOT: string | number;
|
|
1342
1343
|
}>;
|
|
1343
1344
|
Arbitrum: z.ZodObject<{
|
|
1344
|
-
ETH: z.
|
|
1345
|
-
USDC: z.
|
|
1345
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1346
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1346
1347
|
}, "strip", z.ZodTypeAny, {
|
|
1347
1348
|
ETH: bigint;
|
|
1348
1349
|
USDC: bigint;
|
|
@@ -1351,8 +1352,8 @@ declare const rpcResult: {
|
|
|
1351
1352
|
USDC: string | number;
|
|
1352
1353
|
}>;
|
|
1353
1354
|
Solana: z.ZodObject<{
|
|
1354
|
-
SOL: z.
|
|
1355
|
-
USDC: z.
|
|
1355
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1356
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1356
1357
|
}, "strip", z.ZodTypeAny, {
|
|
1357
1358
|
USDC: bigint;
|
|
1358
1359
|
SOL: bigint;
|
|
@@ -1361,9 +1362,9 @@ declare const rpcResult: {
|
|
|
1361
1362
|
SOL: string | number;
|
|
1362
1363
|
}>;
|
|
1363
1364
|
Assethub: z.ZodObject<{
|
|
1364
|
-
DOT: z.
|
|
1365
|
-
USDC: z.
|
|
1366
|
-
USDT: z.
|
|
1365
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1366
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1367
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
1367
1368
|
}, "strip", z.ZodTypeAny, {
|
|
1368
1369
|
USDC: bigint;
|
|
1369
1370
|
USDT: bigint;
|
|
@@ -2183,8 +2184,8 @@ declare const rpcResult: {
|
|
|
2183
2184
|
chain: "Assethub";
|
|
2184
2185
|
asset: "USDT";
|
|
2185
2186
|
}>]>, z.ZodObject<{
|
|
2186
|
-
total_amount: z.
|
|
2187
|
-
available_amount: z.
|
|
2187
|
+
total_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2188
|
+
available_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2188
2189
|
}, "strip", z.ZodTypeAny, {
|
|
2189
2190
|
total_amount: bigint;
|
|
2190
2191
|
available_amount: bigint;
|
|
@@ -2310,27 +2311,27 @@ declare const rpcResult: {
|
|
|
2310
2311
|
chain: "Assethub";
|
|
2311
2312
|
asset: "USDT";
|
|
2312
2313
|
}>]>, z.ZodObject<{
|
|
2313
|
-
amount: z.
|
|
2314
|
+
amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2314
2315
|
}, "strip", z.ZodTypeAny, {
|
|
2315
2316
|
amount: bigint;
|
|
2316
2317
|
}, {
|
|
2317
2318
|
amount: string | number;
|
|
2318
2319
|
}>>, "many">>;
|
|
2319
2320
|
vanity_name: z.ZodOptional<z.ZodString>;
|
|
2320
|
-
flip_balance: z.
|
|
2321
|
+
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2321
2322
|
asset_balances: z.ZodObject<Omit<{
|
|
2322
2323
|
Bitcoin: z.ZodObject<{
|
|
2323
|
-
BTC: z.
|
|
2324
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2324
2325
|
}, "strip", z.ZodTypeAny, {
|
|
2325
2326
|
BTC: bigint;
|
|
2326
2327
|
}, {
|
|
2327
2328
|
BTC: string | number;
|
|
2328
2329
|
}>;
|
|
2329
2330
|
Ethereum: z.ZodObject<{
|
|
2330
|
-
ETH: z.
|
|
2331
|
-
USDC: z.
|
|
2332
|
-
FLIP: z.
|
|
2333
|
-
USDT: z.
|
|
2331
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2332
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2333
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2334
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2334
2335
|
}, "strip", z.ZodTypeAny, {
|
|
2335
2336
|
ETH: bigint;
|
|
2336
2337
|
USDC: bigint;
|
|
@@ -2343,15 +2344,15 @@ declare const rpcResult: {
|
|
|
2343
2344
|
USDT: string | number;
|
|
2344
2345
|
}>;
|
|
2345
2346
|
Polkadot: z.ZodObject<{
|
|
2346
|
-
DOT: z.
|
|
2347
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2347
2348
|
}, "strip", z.ZodTypeAny, {
|
|
2348
2349
|
DOT: bigint;
|
|
2349
2350
|
}, {
|
|
2350
2351
|
DOT: string | number;
|
|
2351
2352
|
}>;
|
|
2352
2353
|
Arbitrum: z.ZodObject<{
|
|
2353
|
-
ETH: z.
|
|
2354
|
-
USDC: z.
|
|
2354
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2355
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2355
2356
|
}, "strip", z.ZodTypeAny, {
|
|
2356
2357
|
ETH: bigint;
|
|
2357
2358
|
USDC: bigint;
|
|
@@ -2360,8 +2361,8 @@ declare const rpcResult: {
|
|
|
2360
2361
|
USDC: string | number;
|
|
2361
2362
|
}>;
|
|
2362
2363
|
Solana: z.ZodObject<{
|
|
2363
|
-
SOL: z.
|
|
2364
|
-
USDC: z.
|
|
2364
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2365
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2365
2366
|
}, "strip", z.ZodTypeAny, {
|
|
2366
2367
|
USDC: bigint;
|
|
2367
2368
|
SOL: bigint;
|
|
@@ -2370,9 +2371,9 @@ declare const rpcResult: {
|
|
|
2370
2371
|
SOL: string | number;
|
|
2371
2372
|
}>;
|
|
2372
2373
|
Assethub: z.ZodObject<{
|
|
2373
|
-
DOT: z.
|
|
2374
|
-
USDC: z.
|
|
2375
|
-
USDT: z.
|
|
2374
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2375
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2376
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2376
2377
|
}, "strip", z.ZodTypeAny, {
|
|
2377
2378
|
USDC: bigint;
|
|
2378
2379
|
USDT: bigint;
|
|
@@ -2429,13 +2430,13 @@ declare const rpcResult: {
|
|
|
2429
2430
|
DOT: string | number;
|
|
2430
2431
|
};
|
|
2431
2432
|
}>;
|
|
2432
|
-
bond: z.
|
|
2433
|
-
estimated_redeemable_balance: z.
|
|
2433
|
+
bond: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2434
|
+
estimated_redeemable_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2434
2435
|
bound_redeem_address: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
2435
|
-
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.
|
|
2436
|
+
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
2436
2437
|
current_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
2437
2438
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
2438
|
-
bid: z.
|
|
2439
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2439
2440
|
}, "strip", z.ZodTypeAny, {
|
|
2440
2441
|
operator: `cF${string}`;
|
|
2441
2442
|
bid: bigint;
|
|
@@ -2445,7 +2446,7 @@ declare const rpcResult: {
|
|
|
2445
2446
|
}>>;
|
|
2446
2447
|
upcoming_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
2447
2448
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
2448
|
-
bid: z.
|
|
2449
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2449
2450
|
}, "strip", z.ZodTypeAny, {
|
|
2450
2451
|
operator: `cF${string}`;
|
|
2451
2452
|
bid: bigint;
|
|
@@ -2970,20 +2971,20 @@ declare const rpcResult: {
|
|
|
2970
2971
|
apy_bp: z.ZodNullable<z.ZodNumber>;
|
|
2971
2972
|
operator: z.ZodOptional<z.ZodEffects<z.ZodString, `cF${string}`, string>>;
|
|
2972
2973
|
vanity_name: z.ZodOptional<z.ZodString>;
|
|
2973
|
-
flip_balance: z.
|
|
2974
|
+
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2974
2975
|
asset_balances: z.ZodObject<Omit<{
|
|
2975
2976
|
Bitcoin: z.ZodObject<{
|
|
2976
|
-
BTC: z.
|
|
2977
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2977
2978
|
}, "strip", z.ZodTypeAny, {
|
|
2978
2979
|
BTC: bigint;
|
|
2979
2980
|
}, {
|
|
2980
2981
|
BTC: string | number;
|
|
2981
2982
|
}>;
|
|
2982
2983
|
Ethereum: z.ZodObject<{
|
|
2983
|
-
ETH: z.
|
|
2984
|
-
USDC: z.
|
|
2985
|
-
FLIP: z.
|
|
2986
|
-
USDT: z.
|
|
2984
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2985
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2986
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2987
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2987
2988
|
}, "strip", z.ZodTypeAny, {
|
|
2988
2989
|
ETH: bigint;
|
|
2989
2990
|
USDC: bigint;
|
|
@@ -2996,15 +2997,15 @@ declare const rpcResult: {
|
|
|
2996
2997
|
USDT: string | number;
|
|
2997
2998
|
}>;
|
|
2998
2999
|
Polkadot: z.ZodObject<{
|
|
2999
|
-
DOT: z.
|
|
3000
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3000
3001
|
}, "strip", z.ZodTypeAny, {
|
|
3001
3002
|
DOT: bigint;
|
|
3002
3003
|
}, {
|
|
3003
3004
|
DOT: string | number;
|
|
3004
3005
|
}>;
|
|
3005
3006
|
Arbitrum: z.ZodObject<{
|
|
3006
|
-
ETH: z.
|
|
3007
|
-
USDC: z.
|
|
3007
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3008
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3008
3009
|
}, "strip", z.ZodTypeAny, {
|
|
3009
3010
|
ETH: bigint;
|
|
3010
3011
|
USDC: bigint;
|
|
@@ -3013,8 +3014,8 @@ declare const rpcResult: {
|
|
|
3013
3014
|
USDC: string | number;
|
|
3014
3015
|
}>;
|
|
3015
3016
|
Solana: z.ZodObject<{
|
|
3016
|
-
SOL: z.
|
|
3017
|
-
USDC: z.
|
|
3017
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3018
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3018
3019
|
}, "strip", z.ZodTypeAny, {
|
|
3019
3020
|
USDC: bigint;
|
|
3020
3021
|
SOL: bigint;
|
|
@@ -3023,9 +3024,9 @@ declare const rpcResult: {
|
|
|
3023
3024
|
SOL: string | number;
|
|
3024
3025
|
}>;
|
|
3025
3026
|
Assethub: z.ZodObject<{
|
|
3026
|
-
DOT: z.
|
|
3027
|
-
USDC: z.
|
|
3028
|
-
USDT: z.
|
|
3027
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3028
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3029
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3029
3030
|
}, "strip", z.ZodTypeAny, {
|
|
3030
3031
|
USDC: bigint;
|
|
3031
3032
|
USDT: bigint;
|
|
@@ -3082,13 +3083,13 @@ declare const rpcResult: {
|
|
|
3082
3083
|
DOT: string | number;
|
|
3083
3084
|
};
|
|
3084
3085
|
}>;
|
|
3085
|
-
bond: z.
|
|
3086
|
-
estimated_redeemable_balance: z.
|
|
3086
|
+
bond: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3087
|
+
estimated_redeemable_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3087
3088
|
bound_redeem_address: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
3088
|
-
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.
|
|
3089
|
+
restricted_balances: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>>;
|
|
3089
3090
|
current_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
3090
3091
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
3091
|
-
bid: z.
|
|
3092
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3092
3093
|
}, "strip", z.ZodTypeAny, {
|
|
3093
3094
|
operator: `cF${string}`;
|
|
3094
3095
|
bid: bigint;
|
|
@@ -3098,7 +3099,7 @@ declare const rpcResult: {
|
|
|
3098
3099
|
}>>;
|
|
3099
3100
|
upcoming_delegation_status: z.ZodOptional<z.ZodObject<{
|
|
3100
3101
|
operator: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
3101
|
-
bid: z.
|
|
3102
|
+
bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
3102
3103
|
}, "strip", z.ZodTypeAny, {
|
|
3103
3104
|
operator: `cF${string}`;
|
|
3104
3105
|
bid: bigint;
|
|
@@ -4165,20 +4166,20 @@ declare const rpcResult: {
|
|
|
4165
4166
|
} | undefined;
|
|
4166
4167
|
}>, z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
4167
4168
|
role: z.ZodLiteral<"unregistered">;
|
|
4168
|
-
flip_balance: z.
|
|
4169
|
+
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4169
4170
|
asset_balances: z.ZodObject<Omit<{
|
|
4170
4171
|
Bitcoin: z.ZodObject<{
|
|
4171
|
-
BTC: z.
|
|
4172
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4172
4173
|
}, "strip", z.ZodTypeAny, {
|
|
4173
4174
|
BTC: bigint;
|
|
4174
4175
|
}, {
|
|
4175
4176
|
BTC: string | number;
|
|
4176
4177
|
}>;
|
|
4177
4178
|
Ethereum: z.ZodObject<{
|
|
4178
|
-
ETH: z.
|
|
4179
|
-
USDC: z.
|
|
4180
|
-
FLIP: z.
|
|
4181
|
-
USDT: z.
|
|
4179
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4180
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4181
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4182
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4182
4183
|
}, "strip", z.ZodTypeAny, {
|
|
4183
4184
|
ETH: bigint;
|
|
4184
4185
|
USDC: bigint;
|
|
@@ -4191,15 +4192,15 @@ declare const rpcResult: {
|
|
|
4191
4192
|
USDT: string | number;
|
|
4192
4193
|
}>;
|
|
4193
4194
|
Polkadot: z.ZodObject<{
|
|
4194
|
-
DOT: z.
|
|
4195
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4195
4196
|
}, "strip", z.ZodTypeAny, {
|
|
4196
4197
|
DOT: bigint;
|
|
4197
4198
|
}, {
|
|
4198
4199
|
DOT: string | number;
|
|
4199
4200
|
}>;
|
|
4200
4201
|
Arbitrum: z.ZodObject<{
|
|
4201
|
-
ETH: z.
|
|
4202
|
-
USDC: z.
|
|
4202
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4203
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4203
4204
|
}, "strip", z.ZodTypeAny, {
|
|
4204
4205
|
ETH: bigint;
|
|
4205
4206
|
USDC: bigint;
|
|
@@ -4208,8 +4209,8 @@ declare const rpcResult: {
|
|
|
4208
4209
|
USDC: string | number;
|
|
4209
4210
|
}>;
|
|
4210
4211
|
Solana: z.ZodObject<{
|
|
4211
|
-
SOL: z.
|
|
4212
|
-
USDC: z.
|
|
4212
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4213
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4213
4214
|
}, "strip", z.ZodTypeAny, {
|
|
4214
4215
|
USDC: bigint;
|
|
4215
4216
|
SOL: bigint;
|
|
@@ -4218,9 +4219,9 @@ declare const rpcResult: {
|
|
|
4218
4219
|
SOL: string | number;
|
|
4219
4220
|
}>;
|
|
4220
4221
|
Assethub: z.ZodObject<{
|
|
4221
|
-
DOT: z.
|
|
4222
|
-
USDC: z.
|
|
4223
|
-
USDT: z.
|
|
4222
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4223
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4224
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4224
4225
|
}, "strip", z.ZodTypeAny, {
|
|
4225
4226
|
USDC: bigint;
|
|
4226
4227
|
USDT: bigint;
|
|
@@ -4333,21 +4334,21 @@ declare const rpcResult: {
|
|
|
4333
4334
|
};
|
|
4334
4335
|
}>, z.ZodObject<{
|
|
4335
4336
|
role: z.ZodLiteral<"broker">;
|
|
4336
|
-
bond: z.
|
|
4337
|
-
flip_balance: z.
|
|
4337
|
+
bond: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4338
|
+
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4338
4339
|
earned_fees: z.ZodObject<Omit<{
|
|
4339
4340
|
Bitcoin: z.ZodObject<{
|
|
4340
|
-
BTC: z.
|
|
4341
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4341
4342
|
}, "strip", z.ZodTypeAny, {
|
|
4342
4343
|
BTC: bigint;
|
|
4343
4344
|
}, {
|
|
4344
4345
|
BTC: string | number;
|
|
4345
4346
|
}>;
|
|
4346
4347
|
Ethereum: z.ZodObject<{
|
|
4347
|
-
ETH: z.
|
|
4348
|
-
USDC: z.
|
|
4349
|
-
FLIP: z.
|
|
4350
|
-
USDT: z.
|
|
4348
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4349
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4350
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4351
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4351
4352
|
}, "strip", z.ZodTypeAny, {
|
|
4352
4353
|
ETH: bigint;
|
|
4353
4354
|
USDC: bigint;
|
|
@@ -4360,15 +4361,15 @@ declare const rpcResult: {
|
|
|
4360
4361
|
USDT: string | number;
|
|
4361
4362
|
}>;
|
|
4362
4363
|
Polkadot: z.ZodObject<{
|
|
4363
|
-
DOT: z.
|
|
4364
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4364
4365
|
}, "strip", z.ZodTypeAny, {
|
|
4365
4366
|
DOT: bigint;
|
|
4366
4367
|
}, {
|
|
4367
4368
|
DOT: string | number;
|
|
4368
4369
|
}>;
|
|
4369
4370
|
Arbitrum: z.ZodObject<{
|
|
4370
|
-
ETH: z.
|
|
4371
|
-
USDC: z.
|
|
4371
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4372
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4372
4373
|
}, "strip", z.ZodTypeAny, {
|
|
4373
4374
|
ETH: bigint;
|
|
4374
4375
|
USDC: bigint;
|
|
@@ -4377,8 +4378,8 @@ declare const rpcResult: {
|
|
|
4377
4378
|
USDC: string | number;
|
|
4378
4379
|
}>;
|
|
4379
4380
|
Solana: z.ZodObject<{
|
|
4380
|
-
SOL: z.
|
|
4381
|
-
USDC: z.
|
|
4381
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4382
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4382
4383
|
}, "strip", z.ZodTypeAny, {
|
|
4383
4384
|
USDC: bigint;
|
|
4384
4385
|
SOL: bigint;
|
|
@@ -4387,9 +4388,9 @@ declare const rpcResult: {
|
|
|
4387
4388
|
SOL: string | number;
|
|
4388
4389
|
}>;
|
|
4389
4390
|
Assethub: z.ZodObject<{
|
|
4390
|
-
DOT: z.
|
|
4391
|
-
USDC: z.
|
|
4392
|
-
USDT: z.
|
|
4391
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4392
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4393
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4393
4394
|
}, "strip", z.ZodTypeAny, {
|
|
4394
4395
|
USDC: bigint;
|
|
4395
4396
|
USDT: bigint;
|
|
@@ -4532,17 +4533,17 @@ declare const rpcResult: {
|
|
|
4532
4533
|
role: z.ZodLiteral<"liquidity_provider">;
|
|
4533
4534
|
balances: z.ZodObject<Omit<{
|
|
4534
4535
|
Bitcoin: z.ZodObject<{
|
|
4535
|
-
BTC: z.
|
|
4536
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4536
4537
|
}, "strip", z.ZodTypeAny, {
|
|
4537
4538
|
BTC: bigint;
|
|
4538
4539
|
}, {
|
|
4539
4540
|
BTC: string | number;
|
|
4540
4541
|
}>;
|
|
4541
4542
|
Ethereum: z.ZodObject<{
|
|
4542
|
-
ETH: z.
|
|
4543
|
-
USDC: z.
|
|
4544
|
-
FLIP: z.
|
|
4545
|
-
USDT: z.
|
|
4543
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4544
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4545
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4546
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4546
4547
|
}, "strip", z.ZodTypeAny, {
|
|
4547
4548
|
ETH: bigint;
|
|
4548
4549
|
USDC: bigint;
|
|
@@ -4555,15 +4556,15 @@ declare const rpcResult: {
|
|
|
4555
4556
|
USDT: string | number;
|
|
4556
4557
|
}>;
|
|
4557
4558
|
Polkadot: z.ZodObject<{
|
|
4558
|
-
DOT: z.
|
|
4559
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4559
4560
|
}, "strip", z.ZodTypeAny, {
|
|
4560
4561
|
DOT: bigint;
|
|
4561
4562
|
}, {
|
|
4562
4563
|
DOT: string | number;
|
|
4563
4564
|
}>;
|
|
4564
4565
|
Arbitrum: z.ZodObject<{
|
|
4565
|
-
ETH: z.
|
|
4566
|
-
USDC: z.
|
|
4566
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4567
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4567
4568
|
}, "strip", z.ZodTypeAny, {
|
|
4568
4569
|
ETH: bigint;
|
|
4569
4570
|
USDC: bigint;
|
|
@@ -4572,8 +4573,8 @@ declare const rpcResult: {
|
|
|
4572
4573
|
USDC: string | number;
|
|
4573
4574
|
}>;
|
|
4574
4575
|
Solana: z.ZodObject<{
|
|
4575
|
-
SOL: z.
|
|
4576
|
-
USDC: z.
|
|
4576
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4577
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4577
4578
|
}, "strip", z.ZodTypeAny, {
|
|
4578
4579
|
USDC: bigint;
|
|
4579
4580
|
SOL: bigint;
|
|
@@ -4582,9 +4583,9 @@ declare const rpcResult: {
|
|
|
4582
4583
|
SOL: string | number;
|
|
4583
4584
|
}>;
|
|
4584
4585
|
Assethub: z.ZodObject<{
|
|
4585
|
-
DOT: z.
|
|
4586
|
-
USDC: z.
|
|
4587
|
-
USDT: z.
|
|
4586
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4587
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4588
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4588
4589
|
}, "strip", z.ZodTypeAny, {
|
|
4589
4590
|
USDC: bigint;
|
|
4590
4591
|
USDT: bigint;
|
|
@@ -4661,20 +4662,20 @@ declare const rpcResult: {
|
|
|
4661
4662
|
Solana: string | null;
|
|
4662
4663
|
Assethub: string | null;
|
|
4663
4664
|
}>;
|
|
4664
|
-
flip_balance: z.
|
|
4665
|
+
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4665
4666
|
earned_fees: z.ZodObject<Omit<{
|
|
4666
4667
|
Bitcoin: z.ZodObject<{
|
|
4667
|
-
BTC: z.
|
|
4668
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4668
4669
|
}, "strip", z.ZodTypeAny, {
|
|
4669
4670
|
BTC: bigint;
|
|
4670
4671
|
}, {
|
|
4671
4672
|
BTC: string | number;
|
|
4672
4673
|
}>;
|
|
4673
4674
|
Ethereum: z.ZodObject<{
|
|
4674
|
-
ETH: z.
|
|
4675
|
-
USDC: z.
|
|
4676
|
-
FLIP: z.
|
|
4677
|
-
USDT: z.
|
|
4675
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4676
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4677
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4678
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4678
4679
|
}, "strip", z.ZodTypeAny, {
|
|
4679
4680
|
ETH: bigint;
|
|
4680
4681
|
USDC: bigint;
|
|
@@ -4687,15 +4688,15 @@ declare const rpcResult: {
|
|
|
4687
4688
|
USDT: string | number;
|
|
4688
4689
|
}>;
|
|
4689
4690
|
Polkadot: z.ZodObject<{
|
|
4690
|
-
DOT: z.
|
|
4691
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4691
4692
|
}, "strip", z.ZodTypeAny, {
|
|
4692
4693
|
DOT: bigint;
|
|
4693
4694
|
}, {
|
|
4694
4695
|
DOT: string | number;
|
|
4695
4696
|
}>;
|
|
4696
4697
|
Arbitrum: z.ZodObject<{
|
|
4697
|
-
ETH: z.
|
|
4698
|
-
USDC: z.
|
|
4698
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4699
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4699
4700
|
}, "strip", z.ZodTypeAny, {
|
|
4700
4701
|
ETH: bigint;
|
|
4701
4702
|
USDC: bigint;
|
|
@@ -4704,8 +4705,8 @@ declare const rpcResult: {
|
|
|
4704
4705
|
USDC: string | number;
|
|
4705
4706
|
}>;
|
|
4706
4707
|
Solana: z.ZodObject<{
|
|
4707
|
-
SOL: z.
|
|
4708
|
-
USDC: z.
|
|
4708
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4709
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4709
4710
|
}, "strip", z.ZodTypeAny, {
|
|
4710
4711
|
USDC: bigint;
|
|
4711
4712
|
SOL: bigint;
|
|
@@ -4714,9 +4715,9 @@ declare const rpcResult: {
|
|
|
4714
4715
|
SOL: string | number;
|
|
4715
4716
|
}>;
|
|
4716
4717
|
Assethub: z.ZodObject<{
|
|
4717
|
-
DOT: z.
|
|
4718
|
-
USDC: z.
|
|
4719
|
-
USDT: z.
|
|
4718
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4719
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4720
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4720
4721
|
}, "strip", z.ZodTypeAny, {
|
|
4721
4722
|
USDC: bigint;
|
|
4722
4723
|
USDT: bigint;
|
|
@@ -5728,8 +5729,8 @@ declare const rpcResult: {
|
|
|
5728
5729
|
};
|
|
5729
5730
|
}>, z.ZodObject<{
|
|
5730
5731
|
role: z.ZodLiteral<"validator">;
|
|
5731
|
-
flip_balance: z.
|
|
5732
|
-
bond: z.
|
|
5732
|
+
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5733
|
+
bond: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5733
5734
|
last_heartbeat: z.ZodNumber;
|
|
5734
5735
|
reputation_points: z.ZodNumber;
|
|
5735
5736
|
keyholder_epochs: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -5740,8 +5741,8 @@ declare const rpcResult: {
|
|
|
5740
5741
|
is_bidding: z.ZodBoolean;
|
|
5741
5742
|
bound_redeem_address: z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
5742
5743
|
apy_bp: z.ZodNullable<z.ZodNumber>;
|
|
5743
|
-
restricted_balances: z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.
|
|
5744
|
-
estimated_redeemable_balance: z.
|
|
5744
|
+
restricted_balances: z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
5745
|
+
estimated_redeemable_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5745
5746
|
operator: z.ZodOptional<z.ZodEffects<z.ZodString, `cF${string}`, string>>;
|
|
5746
5747
|
}, "strip", z.ZodTypeAny, {
|
|
5747
5748
|
role: "validator";
|
|
@@ -5781,8 +5782,8 @@ declare const rpcResult: {
|
|
|
5781
5782
|
readonly cf_pool_depth: z.ZodNullable<z.ZodObject<{
|
|
5782
5783
|
asks: z.ZodObject<{
|
|
5783
5784
|
limit_orders: z.ZodObject<{
|
|
5784
|
-
depth: z.
|
|
5785
|
-
price: z.ZodNullable<z.
|
|
5785
|
+
depth: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5786
|
+
price: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
5786
5787
|
}, "strip", z.ZodTypeAny, {
|
|
5787
5788
|
depth: bigint;
|
|
5788
5789
|
price: bigint | null;
|
|
@@ -5791,8 +5792,8 @@ declare const rpcResult: {
|
|
|
5791
5792
|
price: string | number | null;
|
|
5792
5793
|
}>;
|
|
5793
5794
|
range_orders: z.ZodObject<{
|
|
5794
|
-
depth: z.
|
|
5795
|
-
price: z.ZodNullable<z.
|
|
5795
|
+
depth: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5796
|
+
price: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
5796
5797
|
}, "strip", z.ZodTypeAny, {
|
|
5797
5798
|
depth: bigint;
|
|
5798
5799
|
price: bigint | null;
|
|
@@ -5821,8 +5822,8 @@ declare const rpcResult: {
|
|
|
5821
5822
|
}>;
|
|
5822
5823
|
bids: z.ZodObject<{
|
|
5823
5824
|
limit_orders: z.ZodObject<{
|
|
5824
|
-
depth: z.
|
|
5825
|
-
price: z.ZodNullable<z.
|
|
5825
|
+
depth: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5826
|
+
price: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
5826
5827
|
}, "strip", z.ZodTypeAny, {
|
|
5827
5828
|
depth: bigint;
|
|
5828
5829
|
price: bigint | null;
|
|
@@ -5831,8 +5832,8 @@ declare const rpcResult: {
|
|
|
5831
5832
|
price: string | number | null;
|
|
5832
5833
|
}>;
|
|
5833
5834
|
range_orders: z.ZodObject<{
|
|
5834
|
-
depth: z.
|
|
5835
|
-
price: z.ZodNullable<z.
|
|
5835
|
+
depth: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5836
|
+
price: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
5836
5837
|
}, "strip", z.ZodTypeAny, {
|
|
5837
5838
|
depth: bigint;
|
|
5838
5839
|
price: bigint | null;
|
|
@@ -6033,17 +6034,17 @@ declare const rpcResult: {
|
|
|
6033
6034
|
ingress_egress: z.ZodEffects<z.ZodObject<{
|
|
6034
6035
|
minimum_deposit_amounts: z.ZodObject<Omit<{
|
|
6035
6036
|
Bitcoin: z.ZodObject<{
|
|
6036
|
-
BTC: z.
|
|
6037
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6037
6038
|
}, "strip", z.ZodTypeAny, {
|
|
6038
6039
|
BTC: bigint;
|
|
6039
6040
|
}, {
|
|
6040
6041
|
BTC: string | number;
|
|
6041
6042
|
}>;
|
|
6042
6043
|
Ethereum: z.ZodObject<{
|
|
6043
|
-
ETH: z.
|
|
6044
|
-
USDC: z.
|
|
6045
|
-
FLIP: z.
|
|
6046
|
-
USDT: z.
|
|
6044
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6045
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6046
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6047
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6047
6048
|
}, "strip", z.ZodTypeAny, {
|
|
6048
6049
|
ETH: bigint;
|
|
6049
6050
|
USDC: bigint;
|
|
@@ -6056,15 +6057,15 @@ declare const rpcResult: {
|
|
|
6056
6057
|
USDT: string | number;
|
|
6057
6058
|
}>;
|
|
6058
6059
|
Polkadot: z.ZodObject<{
|
|
6059
|
-
DOT: z.
|
|
6060
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6060
6061
|
}, "strip", z.ZodTypeAny, {
|
|
6061
6062
|
DOT: bigint;
|
|
6062
6063
|
}, {
|
|
6063
6064
|
DOT: string | number;
|
|
6064
6065
|
}>;
|
|
6065
6066
|
Arbitrum: z.ZodObject<{
|
|
6066
|
-
ETH: z.
|
|
6067
|
-
USDC: z.
|
|
6067
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6068
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6068
6069
|
}, "strip", z.ZodTypeAny, {
|
|
6069
6070
|
ETH: bigint;
|
|
6070
6071
|
USDC: bigint;
|
|
@@ -6073,8 +6074,8 @@ declare const rpcResult: {
|
|
|
6073
6074
|
USDC: string | number;
|
|
6074
6075
|
}>;
|
|
6075
6076
|
Solana: z.ZodObject<{
|
|
6076
|
-
SOL: z.
|
|
6077
|
-
USDC: z.
|
|
6077
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6078
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6078
6079
|
}, "strip", z.ZodTypeAny, {
|
|
6079
6080
|
USDC: bigint;
|
|
6080
6081
|
SOL: bigint;
|
|
@@ -6083,9 +6084,9 @@ declare const rpcResult: {
|
|
|
6083
6084
|
SOL: string | number;
|
|
6084
6085
|
}>;
|
|
6085
6086
|
Assethub: z.ZodObject<{
|
|
6086
|
-
DOT: z.
|
|
6087
|
-
USDC: z.
|
|
6088
|
-
USDT: z.
|
|
6087
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6088
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6089
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6089
6090
|
}, "strip", z.ZodTypeAny, {
|
|
6090
6091
|
USDC: bigint;
|
|
6091
6092
|
USDT: bigint;
|
|
@@ -6144,17 +6145,17 @@ declare const rpcResult: {
|
|
|
6144
6145
|
}>;
|
|
6145
6146
|
ingress_fees: z.ZodObject<Omit<{
|
|
6146
6147
|
Bitcoin: z.ZodObject<{
|
|
6147
|
-
BTC: z.ZodNullable<z.
|
|
6148
|
+
BTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6148
6149
|
}, "strip", z.ZodTypeAny, {
|
|
6149
6150
|
BTC: bigint | null;
|
|
6150
6151
|
}, {
|
|
6151
6152
|
BTC: string | number | null;
|
|
6152
6153
|
}>;
|
|
6153
6154
|
Ethereum: z.ZodObject<{
|
|
6154
|
-
ETH: z.ZodNullable<z.
|
|
6155
|
-
USDC: z.ZodNullable<z.
|
|
6156
|
-
FLIP: z.ZodNullable<z.
|
|
6157
|
-
USDT: z.ZodNullable<z.
|
|
6155
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6156
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6157
|
+
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6158
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6158
6159
|
}, "strip", z.ZodTypeAny, {
|
|
6159
6160
|
ETH: bigint | null;
|
|
6160
6161
|
USDC: bigint | null;
|
|
@@ -6167,15 +6168,15 @@ declare const rpcResult: {
|
|
|
6167
6168
|
USDT: string | number | null;
|
|
6168
6169
|
}>;
|
|
6169
6170
|
Polkadot: z.ZodObject<{
|
|
6170
|
-
DOT: z.ZodNullable<z.
|
|
6171
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6171
6172
|
}, "strip", z.ZodTypeAny, {
|
|
6172
6173
|
DOT: bigint | null;
|
|
6173
6174
|
}, {
|
|
6174
6175
|
DOT: string | number | null;
|
|
6175
6176
|
}>;
|
|
6176
6177
|
Arbitrum: z.ZodObject<{
|
|
6177
|
-
ETH: z.ZodNullable<z.
|
|
6178
|
-
USDC: z.ZodNullable<z.
|
|
6178
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6179
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6179
6180
|
}, "strip", z.ZodTypeAny, {
|
|
6180
6181
|
ETH: bigint | null;
|
|
6181
6182
|
USDC: bigint | null;
|
|
@@ -6184,8 +6185,8 @@ declare const rpcResult: {
|
|
|
6184
6185
|
USDC: string | number | null;
|
|
6185
6186
|
}>;
|
|
6186
6187
|
Solana: z.ZodObject<{
|
|
6187
|
-
SOL: z.ZodNullable<z.
|
|
6188
|
-
USDC: z.ZodNullable<z.
|
|
6188
|
+
SOL: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6189
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6189
6190
|
}, "strip", z.ZodTypeAny, {
|
|
6190
6191
|
USDC: bigint | null;
|
|
6191
6192
|
SOL: bigint | null;
|
|
@@ -6194,9 +6195,9 @@ declare const rpcResult: {
|
|
|
6194
6195
|
SOL: string | number | null;
|
|
6195
6196
|
}>;
|
|
6196
6197
|
Assethub: z.ZodObject<{
|
|
6197
|
-
DOT: z.ZodNullable<z.
|
|
6198
|
-
USDC: z.ZodNullable<z.
|
|
6199
|
-
USDT: z.ZodNullable<z.
|
|
6198
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6199
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6200
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6200
6201
|
}, "strip", z.ZodTypeAny, {
|
|
6201
6202
|
USDC: bigint | null;
|
|
6202
6203
|
USDT: bigint | null;
|
|
@@ -6255,17 +6256,17 @@ declare const rpcResult: {
|
|
|
6255
6256
|
}>;
|
|
6256
6257
|
egress_fees: z.ZodObject<Omit<{
|
|
6257
6258
|
Bitcoin: z.ZodObject<{
|
|
6258
|
-
BTC: z.ZodNullable<z.
|
|
6259
|
+
BTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6259
6260
|
}, "strip", z.ZodTypeAny, {
|
|
6260
6261
|
BTC: bigint | null;
|
|
6261
6262
|
}, {
|
|
6262
6263
|
BTC: string | number | null;
|
|
6263
6264
|
}>;
|
|
6264
6265
|
Ethereum: z.ZodObject<{
|
|
6265
|
-
ETH: z.ZodNullable<z.
|
|
6266
|
-
USDC: z.ZodNullable<z.
|
|
6267
|
-
FLIP: z.ZodNullable<z.
|
|
6268
|
-
USDT: z.ZodNullable<z.
|
|
6266
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6267
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6268
|
+
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6269
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6269
6270
|
}, "strip", z.ZodTypeAny, {
|
|
6270
6271
|
ETH: bigint | null;
|
|
6271
6272
|
USDC: bigint | null;
|
|
@@ -6278,15 +6279,15 @@ declare const rpcResult: {
|
|
|
6278
6279
|
USDT: string | number | null;
|
|
6279
6280
|
}>;
|
|
6280
6281
|
Polkadot: z.ZodObject<{
|
|
6281
|
-
DOT: z.ZodNullable<z.
|
|
6282
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6282
6283
|
}, "strip", z.ZodTypeAny, {
|
|
6283
6284
|
DOT: bigint | null;
|
|
6284
6285
|
}, {
|
|
6285
6286
|
DOT: string | number | null;
|
|
6286
6287
|
}>;
|
|
6287
6288
|
Arbitrum: z.ZodObject<{
|
|
6288
|
-
ETH: z.ZodNullable<z.
|
|
6289
|
-
USDC: z.ZodNullable<z.
|
|
6289
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6290
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6290
6291
|
}, "strip", z.ZodTypeAny, {
|
|
6291
6292
|
ETH: bigint | null;
|
|
6292
6293
|
USDC: bigint | null;
|
|
@@ -6295,8 +6296,8 @@ declare const rpcResult: {
|
|
|
6295
6296
|
USDC: string | number | null;
|
|
6296
6297
|
}>;
|
|
6297
6298
|
Solana: z.ZodObject<{
|
|
6298
|
-
SOL: z.ZodNullable<z.
|
|
6299
|
-
USDC: z.ZodNullable<z.
|
|
6299
|
+
SOL: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6300
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6300
6301
|
}, "strip", z.ZodTypeAny, {
|
|
6301
6302
|
USDC: bigint | null;
|
|
6302
6303
|
SOL: bigint | null;
|
|
@@ -6305,9 +6306,9 @@ declare const rpcResult: {
|
|
|
6305
6306
|
SOL: string | number | null;
|
|
6306
6307
|
}>;
|
|
6307
6308
|
Assethub: z.ZodObject<{
|
|
6308
|
-
DOT: z.ZodNullable<z.
|
|
6309
|
-
USDC: z.ZodNullable<z.
|
|
6310
|
-
USDT: z.ZodNullable<z.
|
|
6309
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6310
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6311
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6311
6312
|
}, "strip", z.ZodTypeAny, {
|
|
6312
6313
|
USDC: bigint | null;
|
|
6313
6314
|
USDT: bigint | null;
|
|
@@ -6386,17 +6387,17 @@ declare const rpcResult: {
|
|
|
6386
6387
|
}>;
|
|
6387
6388
|
egress_dust_limits: z.ZodObject<Omit<{
|
|
6388
6389
|
Bitcoin: z.ZodObject<{
|
|
6389
|
-
BTC: z.
|
|
6390
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6390
6391
|
}, "strip", z.ZodTypeAny, {
|
|
6391
6392
|
BTC: bigint;
|
|
6392
6393
|
}, {
|
|
6393
6394
|
BTC: string | number;
|
|
6394
6395
|
}>;
|
|
6395
6396
|
Ethereum: z.ZodObject<{
|
|
6396
|
-
ETH: z.
|
|
6397
|
-
USDC: z.
|
|
6398
|
-
FLIP: z.
|
|
6399
|
-
USDT: z.
|
|
6397
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6398
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6399
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6400
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6400
6401
|
}, "strip", z.ZodTypeAny, {
|
|
6401
6402
|
ETH: bigint;
|
|
6402
6403
|
USDC: bigint;
|
|
@@ -6409,15 +6410,15 @@ declare const rpcResult: {
|
|
|
6409
6410
|
USDT: string | number;
|
|
6410
6411
|
}>;
|
|
6411
6412
|
Polkadot: z.ZodObject<{
|
|
6412
|
-
DOT: z.
|
|
6413
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6413
6414
|
}, "strip", z.ZodTypeAny, {
|
|
6414
6415
|
DOT: bigint;
|
|
6415
6416
|
}, {
|
|
6416
6417
|
DOT: string | number;
|
|
6417
6418
|
}>;
|
|
6418
6419
|
Arbitrum: z.ZodObject<{
|
|
6419
|
-
ETH: z.
|
|
6420
|
-
USDC: z.
|
|
6420
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6421
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6421
6422
|
}, "strip", z.ZodTypeAny, {
|
|
6422
6423
|
ETH: bigint;
|
|
6423
6424
|
USDC: bigint;
|
|
@@ -6426,8 +6427,8 @@ declare const rpcResult: {
|
|
|
6426
6427
|
USDC: string | number;
|
|
6427
6428
|
}>;
|
|
6428
6429
|
Solana: z.ZodObject<{
|
|
6429
|
-
SOL: z.
|
|
6430
|
-
USDC: z.
|
|
6430
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6431
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6431
6432
|
}, "strip", z.ZodTypeAny, {
|
|
6432
6433
|
USDC: bigint;
|
|
6433
6434
|
SOL: bigint;
|
|
@@ -6436,9 +6437,9 @@ declare const rpcResult: {
|
|
|
6436
6437
|
SOL: string | number;
|
|
6437
6438
|
}>;
|
|
6438
6439
|
Assethub: z.ZodObject<{
|
|
6439
|
-
DOT: z.
|
|
6440
|
-
USDC: z.
|
|
6441
|
-
USDT: z.
|
|
6440
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6441
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6442
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6442
6443
|
}, "strip", z.ZodTypeAny, {
|
|
6443
6444
|
USDC: bigint;
|
|
6444
6445
|
USDT: bigint;
|
|
@@ -6496,12 +6497,12 @@ declare const rpcResult: {
|
|
|
6496
6497
|
};
|
|
6497
6498
|
}>;
|
|
6498
6499
|
channel_opening_fees: z.ZodObject<Omit<{
|
|
6499
|
-
Bitcoin: z.
|
|
6500
|
-
Ethereum: z.
|
|
6501
|
-
Polkadot: z.
|
|
6502
|
-
Arbitrum: z.
|
|
6503
|
-
Solana: z.
|
|
6504
|
-
Assethub: z.
|
|
6500
|
+
Bitcoin: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6501
|
+
Ethereum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6502
|
+
Polkadot: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6503
|
+
Arbitrum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6504
|
+
Solana: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6505
|
+
Assethub: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
6505
6506
|
}, "Polkadot">, "strip", z.ZodTypeAny, {
|
|
6506
6507
|
Bitcoin: bigint;
|
|
6507
6508
|
Ethereum: bigint;
|
|
@@ -6988,17 +6989,17 @@ declare const rpcResult: {
|
|
|
6988
6989
|
swapping: z.ZodObject<{
|
|
6989
6990
|
maximum_swap_amounts: z.ZodObject<Omit<{
|
|
6990
6991
|
Bitcoin: z.ZodObject<{
|
|
6991
|
-
BTC: z.ZodNullable<z.
|
|
6992
|
+
BTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
6992
6993
|
}, "strip", z.ZodTypeAny, {
|
|
6993
6994
|
BTC: bigint | null;
|
|
6994
6995
|
}, {
|
|
6995
6996
|
BTC: string | number | null;
|
|
6996
6997
|
}>;
|
|
6997
6998
|
Ethereum: z.ZodObject<{
|
|
6998
|
-
ETH: z.ZodNullable<z.
|
|
6999
|
-
USDC: z.ZodNullable<z.
|
|
7000
|
-
FLIP: z.ZodNullable<z.
|
|
7001
|
-
USDT: z.ZodNullable<z.
|
|
6999
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7000
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7001
|
+
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7002
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7002
7003
|
}, "strip", z.ZodTypeAny, {
|
|
7003
7004
|
ETH: bigint | null;
|
|
7004
7005
|
USDC: bigint | null;
|
|
@@ -7011,15 +7012,15 @@ declare const rpcResult: {
|
|
|
7011
7012
|
USDT: string | number | null;
|
|
7012
7013
|
}>;
|
|
7013
7014
|
Polkadot: z.ZodObject<{
|
|
7014
|
-
DOT: z.ZodNullable<z.
|
|
7015
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7015
7016
|
}, "strip", z.ZodTypeAny, {
|
|
7016
7017
|
DOT: bigint | null;
|
|
7017
7018
|
}, {
|
|
7018
7019
|
DOT: string | number | null;
|
|
7019
7020
|
}>;
|
|
7020
7021
|
Arbitrum: z.ZodObject<{
|
|
7021
|
-
ETH: z.ZodNullable<z.
|
|
7022
|
-
USDC: z.ZodNullable<z.
|
|
7022
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7023
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7023
7024
|
}, "strip", z.ZodTypeAny, {
|
|
7024
7025
|
ETH: bigint | null;
|
|
7025
7026
|
USDC: bigint | null;
|
|
@@ -7028,8 +7029,8 @@ declare const rpcResult: {
|
|
|
7028
7029
|
USDC: string | number | null;
|
|
7029
7030
|
}>;
|
|
7030
7031
|
Solana: z.ZodObject<{
|
|
7031
|
-
SOL: z.ZodNullable<z.
|
|
7032
|
-
USDC: z.ZodNullable<z.
|
|
7032
|
+
SOL: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7033
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7033
7034
|
}, "strip", z.ZodTypeAny, {
|
|
7034
7035
|
USDC: bigint | null;
|
|
7035
7036
|
SOL: bigint | null;
|
|
@@ -7038,9 +7039,9 @@ declare const rpcResult: {
|
|
|
7038
7039
|
SOL: string | number | null;
|
|
7039
7040
|
}>;
|
|
7040
7041
|
Assethub: z.ZodObject<{
|
|
7041
|
-
DOT: z.ZodNullable<z.
|
|
7042
|
-
USDC: z.ZodNullable<z.
|
|
7043
|
-
USDT: z.ZodNullable<z.
|
|
7042
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7043
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7044
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7044
7045
|
}, "strip", z.ZodTypeAny, {
|
|
7045
7046
|
USDC: bigint | null;
|
|
7046
7047
|
USDT: bigint | null;
|
|
@@ -7103,17 +7104,17 @@ declare const rpcResult: {
|
|
|
7103
7104
|
max_swap_request_duration_blocks: z.ZodOptional<z.ZodNumber>;
|
|
7104
7105
|
minimum_chunk_size: z.ZodOptional<z.ZodObject<Omit<{
|
|
7105
7106
|
Bitcoin: z.ZodObject<{
|
|
7106
|
-
BTC: z.ZodNullable<z.
|
|
7107
|
+
BTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7107
7108
|
}, "strip", z.ZodTypeAny, {
|
|
7108
7109
|
BTC: bigint | null;
|
|
7109
7110
|
}, {
|
|
7110
7111
|
BTC: string | number | null;
|
|
7111
7112
|
}>;
|
|
7112
7113
|
Ethereum: z.ZodObject<{
|
|
7113
|
-
ETH: z.ZodNullable<z.
|
|
7114
|
-
USDC: z.ZodNullable<z.
|
|
7115
|
-
FLIP: z.ZodNullable<z.
|
|
7116
|
-
USDT: z.ZodNullable<z.
|
|
7114
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7115
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7116
|
+
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7117
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7117
7118
|
}, "strip", z.ZodTypeAny, {
|
|
7118
7119
|
ETH: bigint | null;
|
|
7119
7120
|
USDC: bigint | null;
|
|
@@ -7126,15 +7127,15 @@ declare const rpcResult: {
|
|
|
7126
7127
|
USDT: string | number | null;
|
|
7127
7128
|
}>;
|
|
7128
7129
|
Polkadot: z.ZodObject<{
|
|
7129
|
-
DOT: z.ZodNullable<z.
|
|
7130
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7130
7131
|
}, "strip", z.ZodTypeAny, {
|
|
7131
7132
|
DOT: bigint | null;
|
|
7132
7133
|
}, {
|
|
7133
7134
|
DOT: string | number | null;
|
|
7134
7135
|
}>;
|
|
7135
7136
|
Arbitrum: z.ZodObject<{
|
|
7136
|
-
ETH: z.ZodNullable<z.
|
|
7137
|
-
USDC: z.ZodNullable<z.
|
|
7137
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7138
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7138
7139
|
}, "strip", z.ZodTypeAny, {
|
|
7139
7140
|
ETH: bigint | null;
|
|
7140
7141
|
USDC: bigint | null;
|
|
@@ -7143,8 +7144,8 @@ declare const rpcResult: {
|
|
|
7143
7144
|
USDC: string | number | null;
|
|
7144
7145
|
}>;
|
|
7145
7146
|
Solana: z.ZodObject<{
|
|
7146
|
-
SOL: z.ZodNullable<z.
|
|
7147
|
-
USDC: z.ZodNullable<z.
|
|
7147
|
+
SOL: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7148
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7148
7149
|
}, "strip", z.ZodTypeAny, {
|
|
7149
7150
|
USDC: bigint | null;
|
|
7150
7151
|
SOL: bigint | null;
|
|
@@ -7153,9 +7154,9 @@ declare const rpcResult: {
|
|
|
7153
7154
|
SOL: string | number | null;
|
|
7154
7155
|
}>;
|
|
7155
7156
|
Assethub: z.ZodObject<{
|
|
7156
|
-
DOT: z.ZodNullable<z.
|
|
7157
|
-
USDC: z.ZodNullable<z.
|
|
7158
|
-
USDT: z.ZodNullable<z.
|
|
7157
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7158
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7159
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
7159
7160
|
}, "strip", z.ZodTypeAny, {
|
|
7160
7161
|
USDC: bigint | null;
|
|
7161
7162
|
USDT: bigint | null;
|
|
@@ -7215,8 +7216,8 @@ declare const rpcResult: {
|
|
|
7215
7216
|
network_fees: z.ZodObject<{
|
|
7216
7217
|
regular_network_fee: z.ZodObject<{
|
|
7217
7218
|
standard_rate_and_minimum: z.ZodObject<{
|
|
7218
|
-
rate: z.
|
|
7219
|
-
minimum: z.
|
|
7219
|
+
rate: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7220
|
+
minimum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7220
7221
|
}, "strip", z.ZodTypeAny, {
|
|
7221
7222
|
minimum: bigint;
|
|
7222
7223
|
rate: bigint;
|
|
@@ -7226,17 +7227,17 @@ declare const rpcResult: {
|
|
|
7226
7227
|
}>;
|
|
7227
7228
|
rates: z.ZodObject<Omit<{
|
|
7228
7229
|
Bitcoin: z.ZodObject<{
|
|
7229
|
-
BTC: z.
|
|
7230
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7230
7231
|
}, "strip", z.ZodTypeAny, {
|
|
7231
7232
|
BTC: bigint;
|
|
7232
7233
|
}, {
|
|
7233
7234
|
BTC: string | number;
|
|
7234
7235
|
}>;
|
|
7235
7236
|
Ethereum: z.ZodObject<{
|
|
7236
|
-
ETH: z.
|
|
7237
|
-
USDC: z.
|
|
7238
|
-
FLIP: z.
|
|
7239
|
-
USDT: z.
|
|
7237
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7238
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7239
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7240
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7240
7241
|
}, "strip", z.ZodTypeAny, {
|
|
7241
7242
|
ETH: bigint;
|
|
7242
7243
|
USDC: bigint;
|
|
@@ -7249,15 +7250,15 @@ declare const rpcResult: {
|
|
|
7249
7250
|
USDT: string | number;
|
|
7250
7251
|
}>;
|
|
7251
7252
|
Polkadot: z.ZodObject<{
|
|
7252
|
-
DOT: z.
|
|
7253
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7253
7254
|
}, "strip", z.ZodTypeAny, {
|
|
7254
7255
|
DOT: bigint;
|
|
7255
7256
|
}, {
|
|
7256
7257
|
DOT: string | number;
|
|
7257
7258
|
}>;
|
|
7258
7259
|
Arbitrum: z.ZodObject<{
|
|
7259
|
-
ETH: z.
|
|
7260
|
-
USDC: z.
|
|
7260
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7261
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7261
7262
|
}, "strip", z.ZodTypeAny, {
|
|
7262
7263
|
ETH: bigint;
|
|
7263
7264
|
USDC: bigint;
|
|
@@ -7266,8 +7267,8 @@ declare const rpcResult: {
|
|
|
7266
7267
|
USDC: string | number;
|
|
7267
7268
|
}>;
|
|
7268
7269
|
Solana: z.ZodObject<{
|
|
7269
|
-
SOL: z.
|
|
7270
|
-
USDC: z.
|
|
7270
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7271
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7271
7272
|
}, "strip", z.ZodTypeAny, {
|
|
7272
7273
|
USDC: bigint;
|
|
7273
7274
|
SOL: bigint;
|
|
@@ -7276,9 +7277,9 @@ declare const rpcResult: {
|
|
|
7276
7277
|
SOL: string | number;
|
|
7277
7278
|
}>;
|
|
7278
7279
|
Assethub: z.ZodObject<{
|
|
7279
|
-
DOT: z.
|
|
7280
|
-
USDC: z.
|
|
7281
|
-
USDT: z.
|
|
7280
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7281
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7282
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7282
7283
|
}, "strip", z.ZodTypeAny, {
|
|
7283
7284
|
USDC: bigint;
|
|
7284
7285
|
USDT: bigint;
|
|
@@ -7396,8 +7397,8 @@ declare const rpcResult: {
|
|
|
7396
7397
|
}>;
|
|
7397
7398
|
internal_swap_network_fee: z.ZodObject<{
|
|
7398
7399
|
standard_rate_and_minimum: z.ZodObject<{
|
|
7399
|
-
rate: z.
|
|
7400
|
-
minimum: z.
|
|
7400
|
+
rate: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7401
|
+
minimum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7401
7402
|
}, "strip", z.ZodTypeAny, {
|
|
7402
7403
|
minimum: bigint;
|
|
7403
7404
|
rate: bigint;
|
|
@@ -7407,17 +7408,17 @@ declare const rpcResult: {
|
|
|
7407
7408
|
}>;
|
|
7408
7409
|
rates: z.ZodObject<Omit<{
|
|
7409
7410
|
Bitcoin: z.ZodObject<{
|
|
7410
|
-
BTC: z.
|
|
7411
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7411
7412
|
}, "strip", z.ZodTypeAny, {
|
|
7412
7413
|
BTC: bigint;
|
|
7413
7414
|
}, {
|
|
7414
7415
|
BTC: string | number;
|
|
7415
7416
|
}>;
|
|
7416
7417
|
Ethereum: z.ZodObject<{
|
|
7417
|
-
ETH: z.
|
|
7418
|
-
USDC: z.
|
|
7419
|
-
FLIP: z.
|
|
7420
|
-
USDT: z.
|
|
7418
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7419
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7420
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7421
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7421
7422
|
}, "strip", z.ZodTypeAny, {
|
|
7422
7423
|
ETH: bigint;
|
|
7423
7424
|
USDC: bigint;
|
|
@@ -7430,15 +7431,15 @@ declare const rpcResult: {
|
|
|
7430
7431
|
USDT: string | number;
|
|
7431
7432
|
}>;
|
|
7432
7433
|
Polkadot: z.ZodObject<{
|
|
7433
|
-
DOT: z.
|
|
7434
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7434
7435
|
}, "strip", z.ZodTypeAny, {
|
|
7435
7436
|
DOT: bigint;
|
|
7436
7437
|
}, {
|
|
7437
7438
|
DOT: string | number;
|
|
7438
7439
|
}>;
|
|
7439
7440
|
Arbitrum: z.ZodObject<{
|
|
7440
|
-
ETH: z.
|
|
7441
|
-
USDC: z.
|
|
7441
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7442
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7442
7443
|
}, "strip", z.ZodTypeAny, {
|
|
7443
7444
|
ETH: bigint;
|
|
7444
7445
|
USDC: bigint;
|
|
@@ -7447,8 +7448,8 @@ declare const rpcResult: {
|
|
|
7447
7448
|
USDC: string | number;
|
|
7448
7449
|
}>;
|
|
7449
7450
|
Solana: z.ZodObject<{
|
|
7450
|
-
SOL: z.
|
|
7451
|
-
USDC: z.
|
|
7451
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7452
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7452
7453
|
}, "strip", z.ZodTypeAny, {
|
|
7453
7454
|
USDC: bigint;
|
|
7454
7455
|
SOL: bigint;
|
|
@@ -7457,9 +7458,9 @@ declare const rpcResult: {
|
|
|
7457
7458
|
SOL: string | number;
|
|
7458
7459
|
}>;
|
|
7459
7460
|
Assethub: z.ZodObject<{
|
|
7460
|
-
DOT: z.
|
|
7461
|
-
USDC: z.
|
|
7462
|
-
USDT: z.
|
|
7461
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7462
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7463
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7463
7464
|
}, "strip", z.ZodTypeAny, {
|
|
7464
7465
|
USDC: bigint;
|
|
7465
7466
|
USDT: bigint;
|
|
@@ -7930,8 +7931,8 @@ declare const rpcResult: {
|
|
|
7930
7931
|
} | undefined;
|
|
7931
7932
|
}>;
|
|
7932
7933
|
funding: z.ZodObject<{
|
|
7933
|
-
redemption_tax: z.
|
|
7934
|
-
minimum_funding_amount: z.
|
|
7934
|
+
redemption_tax: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7935
|
+
minimum_funding_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
7935
7936
|
}, "strip", z.ZodTypeAny, {
|
|
7936
7937
|
redemption_tax: bigint;
|
|
7937
7938
|
minimum_funding_amount: bigint;
|
|
@@ -13759,8 +13760,8 @@ declare const rpcResult: {
|
|
|
13759
13760
|
};
|
|
13760
13761
|
}>;
|
|
13761
13762
|
readonly cf_funding_environment: z.ZodObject<{
|
|
13762
|
-
redemption_tax: z.
|
|
13763
|
-
minimum_funding_amount: z.
|
|
13763
|
+
redemption_tax: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13764
|
+
minimum_funding_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13764
13765
|
}, "strip", z.ZodTypeAny, {
|
|
13765
13766
|
redemption_tax: bigint;
|
|
13766
13767
|
minimum_funding_amount: bigint;
|
|
@@ -13771,17 +13772,17 @@ declare const rpcResult: {
|
|
|
13771
13772
|
readonly cf_ingress_egress_environment: z.ZodEffects<z.ZodObject<{
|
|
13772
13773
|
minimum_deposit_amounts: z.ZodObject<Omit<{
|
|
13773
13774
|
Bitcoin: z.ZodObject<{
|
|
13774
|
-
BTC: z.
|
|
13775
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13775
13776
|
}, "strip", z.ZodTypeAny, {
|
|
13776
13777
|
BTC: bigint;
|
|
13777
13778
|
}, {
|
|
13778
13779
|
BTC: string | number;
|
|
13779
13780
|
}>;
|
|
13780
13781
|
Ethereum: z.ZodObject<{
|
|
13781
|
-
ETH: z.
|
|
13782
|
-
USDC: z.
|
|
13783
|
-
FLIP: z.
|
|
13784
|
-
USDT: z.
|
|
13782
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13783
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13784
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13785
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13785
13786
|
}, "strip", z.ZodTypeAny, {
|
|
13786
13787
|
ETH: bigint;
|
|
13787
13788
|
USDC: bigint;
|
|
@@ -13794,15 +13795,15 @@ declare const rpcResult: {
|
|
|
13794
13795
|
USDT: string | number;
|
|
13795
13796
|
}>;
|
|
13796
13797
|
Polkadot: z.ZodObject<{
|
|
13797
|
-
DOT: z.
|
|
13798
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13798
13799
|
}, "strip", z.ZodTypeAny, {
|
|
13799
13800
|
DOT: bigint;
|
|
13800
13801
|
}, {
|
|
13801
13802
|
DOT: string | number;
|
|
13802
13803
|
}>;
|
|
13803
13804
|
Arbitrum: z.ZodObject<{
|
|
13804
|
-
ETH: z.
|
|
13805
|
-
USDC: z.
|
|
13805
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13806
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13806
13807
|
}, "strip", z.ZodTypeAny, {
|
|
13807
13808
|
ETH: bigint;
|
|
13808
13809
|
USDC: bigint;
|
|
@@ -13811,8 +13812,8 @@ declare const rpcResult: {
|
|
|
13811
13812
|
USDC: string | number;
|
|
13812
13813
|
}>;
|
|
13813
13814
|
Solana: z.ZodObject<{
|
|
13814
|
-
SOL: z.
|
|
13815
|
-
USDC: z.
|
|
13815
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13816
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13816
13817
|
}, "strip", z.ZodTypeAny, {
|
|
13817
13818
|
USDC: bigint;
|
|
13818
13819
|
SOL: bigint;
|
|
@@ -13821,9 +13822,9 @@ declare const rpcResult: {
|
|
|
13821
13822
|
SOL: string | number;
|
|
13822
13823
|
}>;
|
|
13823
13824
|
Assethub: z.ZodObject<{
|
|
13824
|
-
DOT: z.
|
|
13825
|
-
USDC: z.
|
|
13826
|
-
USDT: z.
|
|
13825
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13826
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13827
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
13827
13828
|
}, "strip", z.ZodTypeAny, {
|
|
13828
13829
|
USDC: bigint;
|
|
13829
13830
|
USDT: bigint;
|
|
@@ -13882,17 +13883,17 @@ declare const rpcResult: {
|
|
|
13882
13883
|
}>;
|
|
13883
13884
|
ingress_fees: z.ZodObject<Omit<{
|
|
13884
13885
|
Bitcoin: z.ZodObject<{
|
|
13885
|
-
BTC: z.ZodNullable<z.
|
|
13886
|
+
BTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13886
13887
|
}, "strip", z.ZodTypeAny, {
|
|
13887
13888
|
BTC: bigint | null;
|
|
13888
13889
|
}, {
|
|
13889
13890
|
BTC: string | number | null;
|
|
13890
13891
|
}>;
|
|
13891
13892
|
Ethereum: z.ZodObject<{
|
|
13892
|
-
ETH: z.ZodNullable<z.
|
|
13893
|
-
USDC: z.ZodNullable<z.
|
|
13894
|
-
FLIP: z.ZodNullable<z.
|
|
13895
|
-
USDT: z.ZodNullable<z.
|
|
13893
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13894
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13895
|
+
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13896
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13896
13897
|
}, "strip", z.ZodTypeAny, {
|
|
13897
13898
|
ETH: bigint | null;
|
|
13898
13899
|
USDC: bigint | null;
|
|
@@ -13905,15 +13906,15 @@ declare const rpcResult: {
|
|
|
13905
13906
|
USDT: string | number | null;
|
|
13906
13907
|
}>;
|
|
13907
13908
|
Polkadot: z.ZodObject<{
|
|
13908
|
-
DOT: z.ZodNullable<z.
|
|
13909
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13909
13910
|
}, "strip", z.ZodTypeAny, {
|
|
13910
13911
|
DOT: bigint | null;
|
|
13911
13912
|
}, {
|
|
13912
13913
|
DOT: string | number | null;
|
|
13913
13914
|
}>;
|
|
13914
13915
|
Arbitrum: z.ZodObject<{
|
|
13915
|
-
ETH: z.ZodNullable<z.
|
|
13916
|
-
USDC: z.ZodNullable<z.
|
|
13916
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13917
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13917
13918
|
}, "strip", z.ZodTypeAny, {
|
|
13918
13919
|
ETH: bigint | null;
|
|
13919
13920
|
USDC: bigint | null;
|
|
@@ -13922,8 +13923,8 @@ declare const rpcResult: {
|
|
|
13922
13923
|
USDC: string | number | null;
|
|
13923
13924
|
}>;
|
|
13924
13925
|
Solana: z.ZodObject<{
|
|
13925
|
-
SOL: z.ZodNullable<z.
|
|
13926
|
-
USDC: z.ZodNullable<z.
|
|
13926
|
+
SOL: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13927
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13927
13928
|
}, "strip", z.ZodTypeAny, {
|
|
13928
13929
|
USDC: bigint | null;
|
|
13929
13930
|
SOL: bigint | null;
|
|
@@ -13932,9 +13933,9 @@ declare const rpcResult: {
|
|
|
13932
13933
|
SOL: string | number | null;
|
|
13933
13934
|
}>;
|
|
13934
13935
|
Assethub: z.ZodObject<{
|
|
13935
|
-
DOT: z.ZodNullable<z.
|
|
13936
|
-
USDC: z.ZodNullable<z.
|
|
13937
|
-
USDT: z.ZodNullable<z.
|
|
13936
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13937
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13938
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13938
13939
|
}, "strip", z.ZodTypeAny, {
|
|
13939
13940
|
USDC: bigint | null;
|
|
13940
13941
|
USDT: bigint | null;
|
|
@@ -13993,17 +13994,17 @@ declare const rpcResult: {
|
|
|
13993
13994
|
}>;
|
|
13994
13995
|
egress_fees: z.ZodObject<Omit<{
|
|
13995
13996
|
Bitcoin: z.ZodObject<{
|
|
13996
|
-
BTC: z.ZodNullable<z.
|
|
13997
|
+
BTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
13997
13998
|
}, "strip", z.ZodTypeAny, {
|
|
13998
13999
|
BTC: bigint | null;
|
|
13999
14000
|
}, {
|
|
14000
14001
|
BTC: string | number | null;
|
|
14001
14002
|
}>;
|
|
14002
14003
|
Ethereum: z.ZodObject<{
|
|
14003
|
-
ETH: z.ZodNullable<z.
|
|
14004
|
-
USDC: z.ZodNullable<z.
|
|
14005
|
-
FLIP: z.ZodNullable<z.
|
|
14006
|
-
USDT: z.ZodNullable<z.
|
|
14004
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14005
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14006
|
+
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14007
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14007
14008
|
}, "strip", z.ZodTypeAny, {
|
|
14008
14009
|
ETH: bigint | null;
|
|
14009
14010
|
USDC: bigint | null;
|
|
@@ -14016,15 +14017,15 @@ declare const rpcResult: {
|
|
|
14016
14017
|
USDT: string | number | null;
|
|
14017
14018
|
}>;
|
|
14018
14019
|
Polkadot: z.ZodObject<{
|
|
14019
|
-
DOT: z.ZodNullable<z.
|
|
14020
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14020
14021
|
}, "strip", z.ZodTypeAny, {
|
|
14021
14022
|
DOT: bigint | null;
|
|
14022
14023
|
}, {
|
|
14023
14024
|
DOT: string | number | null;
|
|
14024
14025
|
}>;
|
|
14025
14026
|
Arbitrum: z.ZodObject<{
|
|
14026
|
-
ETH: z.ZodNullable<z.
|
|
14027
|
-
USDC: z.ZodNullable<z.
|
|
14027
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14028
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14028
14029
|
}, "strip", z.ZodTypeAny, {
|
|
14029
14030
|
ETH: bigint | null;
|
|
14030
14031
|
USDC: bigint | null;
|
|
@@ -14033,8 +14034,8 @@ declare const rpcResult: {
|
|
|
14033
14034
|
USDC: string | number | null;
|
|
14034
14035
|
}>;
|
|
14035
14036
|
Solana: z.ZodObject<{
|
|
14036
|
-
SOL: z.ZodNullable<z.
|
|
14037
|
-
USDC: z.ZodNullable<z.
|
|
14037
|
+
SOL: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14038
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14038
14039
|
}, "strip", z.ZodTypeAny, {
|
|
14039
14040
|
USDC: bigint | null;
|
|
14040
14041
|
SOL: bigint | null;
|
|
@@ -14043,9 +14044,9 @@ declare const rpcResult: {
|
|
|
14043
14044
|
SOL: string | number | null;
|
|
14044
14045
|
}>;
|
|
14045
14046
|
Assethub: z.ZodObject<{
|
|
14046
|
-
DOT: z.ZodNullable<z.
|
|
14047
|
-
USDC: z.ZodNullable<z.
|
|
14048
|
-
USDT: z.ZodNullable<z.
|
|
14047
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14048
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14049
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14049
14050
|
}, "strip", z.ZodTypeAny, {
|
|
14050
14051
|
USDC: bigint | null;
|
|
14051
14052
|
USDT: bigint | null;
|
|
@@ -14124,17 +14125,17 @@ declare const rpcResult: {
|
|
|
14124
14125
|
}>;
|
|
14125
14126
|
egress_dust_limits: z.ZodObject<Omit<{
|
|
14126
14127
|
Bitcoin: z.ZodObject<{
|
|
14127
|
-
BTC: z.
|
|
14128
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14128
14129
|
}, "strip", z.ZodTypeAny, {
|
|
14129
14130
|
BTC: bigint;
|
|
14130
14131
|
}, {
|
|
14131
14132
|
BTC: string | number;
|
|
14132
14133
|
}>;
|
|
14133
14134
|
Ethereum: z.ZodObject<{
|
|
14134
|
-
ETH: z.
|
|
14135
|
-
USDC: z.
|
|
14136
|
-
FLIP: z.
|
|
14137
|
-
USDT: z.
|
|
14135
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14136
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14137
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14138
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14138
14139
|
}, "strip", z.ZodTypeAny, {
|
|
14139
14140
|
ETH: bigint;
|
|
14140
14141
|
USDC: bigint;
|
|
@@ -14147,15 +14148,15 @@ declare const rpcResult: {
|
|
|
14147
14148
|
USDT: string | number;
|
|
14148
14149
|
}>;
|
|
14149
14150
|
Polkadot: z.ZodObject<{
|
|
14150
|
-
DOT: z.
|
|
14151
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14151
14152
|
}, "strip", z.ZodTypeAny, {
|
|
14152
14153
|
DOT: bigint;
|
|
14153
14154
|
}, {
|
|
14154
14155
|
DOT: string | number;
|
|
14155
14156
|
}>;
|
|
14156
14157
|
Arbitrum: z.ZodObject<{
|
|
14157
|
-
ETH: z.
|
|
14158
|
-
USDC: z.
|
|
14158
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14159
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14159
14160
|
}, "strip", z.ZodTypeAny, {
|
|
14160
14161
|
ETH: bigint;
|
|
14161
14162
|
USDC: bigint;
|
|
@@ -14164,8 +14165,8 @@ declare const rpcResult: {
|
|
|
14164
14165
|
USDC: string | number;
|
|
14165
14166
|
}>;
|
|
14166
14167
|
Solana: z.ZodObject<{
|
|
14167
|
-
SOL: z.
|
|
14168
|
-
USDC: z.
|
|
14168
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14169
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14169
14170
|
}, "strip", z.ZodTypeAny, {
|
|
14170
14171
|
USDC: bigint;
|
|
14171
14172
|
SOL: bigint;
|
|
@@ -14174,9 +14175,9 @@ declare const rpcResult: {
|
|
|
14174
14175
|
SOL: string | number;
|
|
14175
14176
|
}>;
|
|
14176
14177
|
Assethub: z.ZodObject<{
|
|
14177
|
-
DOT: z.
|
|
14178
|
-
USDC: z.
|
|
14179
|
-
USDT: z.
|
|
14178
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14179
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14180
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14180
14181
|
}, "strip", z.ZodTypeAny, {
|
|
14181
14182
|
USDC: bigint;
|
|
14182
14183
|
USDT: bigint;
|
|
@@ -14234,12 +14235,12 @@ declare const rpcResult: {
|
|
|
14234
14235
|
};
|
|
14235
14236
|
}>;
|
|
14236
14237
|
channel_opening_fees: z.ZodObject<Omit<{
|
|
14237
|
-
Bitcoin: z.
|
|
14238
|
-
Ethereum: z.
|
|
14239
|
-
Polkadot: z.
|
|
14240
|
-
Arbitrum: z.
|
|
14241
|
-
Solana: z.
|
|
14242
|
-
Assethub: z.
|
|
14238
|
+
Bitcoin: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14239
|
+
Ethereum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14240
|
+
Polkadot: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14241
|
+
Arbitrum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14242
|
+
Solana: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14243
|
+
Assethub: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14243
14244
|
}, "Polkadot">, "strip", z.ZodTypeAny, {
|
|
14244
14245
|
Bitcoin: bigint;
|
|
14245
14246
|
Ethereum: bigint;
|
|
@@ -14726,11 +14727,11 @@ declare const rpcResult: {
|
|
|
14726
14727
|
readonly cf_pool_orders: z.ZodObject<{
|
|
14727
14728
|
limit_orders: z.ZodObject<{
|
|
14728
14729
|
asks: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
14729
|
-
id: z.ZodEffects<z.
|
|
14730
|
+
id: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>, string, string | number>;
|
|
14730
14731
|
tick: z.ZodNumber;
|
|
14731
|
-
sell_amount: z.
|
|
14732
|
-
fees_earned: z.
|
|
14733
|
-
original_sell_amount: z.
|
|
14732
|
+
sell_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14733
|
+
fees_earned: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14734
|
+
original_sell_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14734
14735
|
lp: z.ZodString;
|
|
14735
14736
|
}, "strip", z.ZodTypeAny, {
|
|
14736
14737
|
id: string;
|
|
@@ -14763,11 +14764,11 @@ declare const rpcResult: {
|
|
|
14763
14764
|
lp: string;
|
|
14764
14765
|
}>, "many">;
|
|
14765
14766
|
bids: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
14766
|
-
id: z.ZodEffects<z.
|
|
14767
|
+
id: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>, string, string | number>;
|
|
14767
14768
|
tick: z.ZodNumber;
|
|
14768
|
-
sell_amount: z.
|
|
14769
|
-
fees_earned: z.
|
|
14770
|
-
original_sell_amount: z.
|
|
14769
|
+
sell_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14770
|
+
fees_earned: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14771
|
+
original_sell_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14771
14772
|
lp: z.ZodString;
|
|
14772
14773
|
}, "strip", z.ZodTypeAny, {
|
|
14773
14774
|
id: string;
|
|
@@ -14837,7 +14838,7 @@ declare const rpcResult: {
|
|
|
14837
14838
|
}[];
|
|
14838
14839
|
}>;
|
|
14839
14840
|
range_orders: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
14840
|
-
id: z.ZodEffects<z.
|
|
14841
|
+
id: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>, string, string | number>;
|
|
14841
14842
|
range: z.ZodObject<{
|
|
14842
14843
|
start: z.ZodNumber;
|
|
14843
14844
|
end: z.ZodNumber;
|
|
@@ -14848,10 +14849,10 @@ declare const rpcResult: {
|
|
|
14848
14849
|
start: number;
|
|
14849
14850
|
end: number;
|
|
14850
14851
|
}>;
|
|
14851
|
-
liquidity: z.
|
|
14852
|
+
liquidity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14852
14853
|
fees_earned: z.ZodObject<{
|
|
14853
|
-
base: z.
|
|
14854
|
-
quote: z.
|
|
14854
|
+
base: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14855
|
+
quote: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14855
14856
|
}, "strip", z.ZodTypeAny, {
|
|
14856
14857
|
base: bigint;
|
|
14857
14858
|
quote: bigint;
|
|
@@ -14979,9 +14980,9 @@ declare const rpcResult: {
|
|
|
14979
14980
|
}[];
|
|
14980
14981
|
}>;
|
|
14981
14982
|
readonly cf_pool_price_v2: z.ZodObject<{
|
|
14982
|
-
sell: z.ZodNullable<z.
|
|
14983
|
-
buy: z.ZodNullable<z.
|
|
14984
|
-
range_order: z.
|
|
14983
|
+
sell: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14984
|
+
buy: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
14985
|
+
range_order: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
14985
14986
|
base_asset: z.ZodUnion<[z.ZodObject<{
|
|
14986
14987
|
chain: z.ZodLiteral<"Bitcoin">;
|
|
14987
14988
|
asset: z.ZodLiteral<"BTC">;
|
|
@@ -19958,8 +19959,8 @@ declare const rpcResult: {
|
|
|
19958
19959
|
asset: string;
|
|
19959
19960
|
}[]>;
|
|
19960
19961
|
readonly cf_swap_rate: z.ZodObject<{
|
|
19961
|
-
intermediary: z.ZodNullable<z.
|
|
19962
|
-
output: z.
|
|
19962
|
+
intermediary: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
19963
|
+
output: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
19963
19964
|
}, "strip", z.ZodTypeAny, {
|
|
19964
19965
|
intermediary: bigint | null;
|
|
19965
19966
|
output: bigint;
|
|
@@ -20086,7 +20087,7 @@ declare const rpcResult: {
|
|
|
20086
20087
|
chain: "Assethub";
|
|
20087
20088
|
asset: "USDT";
|
|
20088
20089
|
}>]>, z.ZodObject<{
|
|
20089
|
-
amount: z.
|
|
20090
|
+
amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20090
20091
|
}, "strip", z.ZodTypeAny, {
|
|
20091
20092
|
amount: bigint;
|
|
20092
20093
|
}, {
|
|
@@ -20210,7 +20211,7 @@ declare const rpcResult: {
|
|
|
20210
20211
|
chain: "Assethub";
|
|
20211
20212
|
asset: "USDT";
|
|
20212
20213
|
}>]>, z.ZodObject<{
|
|
20213
|
-
amount: z.
|
|
20214
|
+
amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20214
20215
|
}, "strip", z.ZodTypeAny, {
|
|
20215
20216
|
amount: bigint;
|
|
20216
20217
|
}, {
|
|
@@ -20335,7 +20336,7 @@ declare const rpcResult: {
|
|
|
20335
20336
|
chain: "Assethub";
|
|
20336
20337
|
asset: "USDT";
|
|
20337
20338
|
}>]>, z.ZodObject<{
|
|
20338
|
-
amount: z.
|
|
20339
|
+
amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20339
20340
|
}, "strip", z.ZodTypeAny, {
|
|
20340
20341
|
amount: bigint;
|
|
20341
20342
|
}, {
|
|
@@ -20720,7 +20721,7 @@ declare const rpcResult: {
|
|
|
20720
20721
|
chain: "Assethub";
|
|
20721
20722
|
asset: "USDT";
|
|
20722
20723
|
}>]>, z.ZodObject<{
|
|
20723
|
-
amount: z.
|
|
20724
|
+
amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20724
20725
|
}, "strip", z.ZodTypeAny, {
|
|
20725
20726
|
amount: bigint;
|
|
20726
20727
|
}, {
|
|
@@ -20844,7 +20845,7 @@ declare const rpcResult: {
|
|
|
20844
20845
|
chain: "Assethub";
|
|
20845
20846
|
asset: "USDT";
|
|
20846
20847
|
}>]>, z.ZodObject<{
|
|
20847
|
-
amount: z.
|
|
20848
|
+
amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20848
20849
|
}, "strip", z.ZodTypeAny, {
|
|
20849
20850
|
amount: bigint;
|
|
20850
20851
|
}, {
|
|
@@ -20969,7 +20970,7 @@ declare const rpcResult: {
|
|
|
20969
20970
|
chain: "Assethub";
|
|
20970
20971
|
asset: "USDT";
|
|
20971
20972
|
}>]>, z.ZodObject<{
|
|
20972
|
-
amount: z.
|
|
20973
|
+
amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
20973
20974
|
}, "strip", z.ZodTypeAny, {
|
|
20974
20975
|
amount: bigint;
|
|
20975
20976
|
}, {
|
|
@@ -21095,7 +21096,7 @@ declare const rpcResult: {
|
|
|
21095
21096
|
chain: "Assethub";
|
|
21096
21097
|
asset: "USDT";
|
|
21097
21098
|
}>]>, z.ZodObject<{
|
|
21098
|
-
amount: z.
|
|
21099
|
+
amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21099
21100
|
}, "strip", z.ZodTypeAny, {
|
|
21100
21101
|
amount: bigint;
|
|
21101
21102
|
}, {
|
|
@@ -21447,17 +21448,17 @@ declare const rpcResult: {
|
|
|
21447
21448
|
readonly cf_swapping_environment: z.ZodObject<{
|
|
21448
21449
|
maximum_swap_amounts: z.ZodObject<Omit<{
|
|
21449
21450
|
Bitcoin: z.ZodObject<{
|
|
21450
|
-
BTC: z.ZodNullable<z.
|
|
21451
|
+
BTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21451
21452
|
}, "strip", z.ZodTypeAny, {
|
|
21452
21453
|
BTC: bigint | null;
|
|
21453
21454
|
}, {
|
|
21454
21455
|
BTC: string | number | null;
|
|
21455
21456
|
}>;
|
|
21456
21457
|
Ethereum: z.ZodObject<{
|
|
21457
|
-
ETH: z.ZodNullable<z.
|
|
21458
|
-
USDC: z.ZodNullable<z.
|
|
21459
|
-
FLIP: z.ZodNullable<z.
|
|
21460
|
-
USDT: z.ZodNullable<z.
|
|
21458
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21459
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21460
|
+
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21461
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21461
21462
|
}, "strip", z.ZodTypeAny, {
|
|
21462
21463
|
ETH: bigint | null;
|
|
21463
21464
|
USDC: bigint | null;
|
|
@@ -21470,15 +21471,15 @@ declare const rpcResult: {
|
|
|
21470
21471
|
USDT: string | number | null;
|
|
21471
21472
|
}>;
|
|
21472
21473
|
Polkadot: z.ZodObject<{
|
|
21473
|
-
DOT: z.ZodNullable<z.
|
|
21474
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21474
21475
|
}, "strip", z.ZodTypeAny, {
|
|
21475
21476
|
DOT: bigint | null;
|
|
21476
21477
|
}, {
|
|
21477
21478
|
DOT: string | number | null;
|
|
21478
21479
|
}>;
|
|
21479
21480
|
Arbitrum: z.ZodObject<{
|
|
21480
|
-
ETH: z.ZodNullable<z.
|
|
21481
|
-
USDC: z.ZodNullable<z.
|
|
21481
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21482
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21482
21483
|
}, "strip", z.ZodTypeAny, {
|
|
21483
21484
|
ETH: bigint | null;
|
|
21484
21485
|
USDC: bigint | null;
|
|
@@ -21487,8 +21488,8 @@ declare const rpcResult: {
|
|
|
21487
21488
|
USDC: string | number | null;
|
|
21488
21489
|
}>;
|
|
21489
21490
|
Solana: z.ZodObject<{
|
|
21490
|
-
SOL: z.ZodNullable<z.
|
|
21491
|
-
USDC: z.ZodNullable<z.
|
|
21491
|
+
SOL: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21492
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21492
21493
|
}, "strip", z.ZodTypeAny, {
|
|
21493
21494
|
USDC: bigint | null;
|
|
21494
21495
|
SOL: bigint | null;
|
|
@@ -21497,9 +21498,9 @@ declare const rpcResult: {
|
|
|
21497
21498
|
SOL: string | number | null;
|
|
21498
21499
|
}>;
|
|
21499
21500
|
Assethub: z.ZodObject<{
|
|
21500
|
-
DOT: z.ZodNullable<z.
|
|
21501
|
-
USDC: z.ZodNullable<z.
|
|
21502
|
-
USDT: z.ZodNullable<z.
|
|
21501
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21502
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21503
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21503
21504
|
}, "strip", z.ZodTypeAny, {
|
|
21504
21505
|
USDC: bigint | null;
|
|
21505
21506
|
USDT: bigint | null;
|
|
@@ -21562,17 +21563,17 @@ declare const rpcResult: {
|
|
|
21562
21563
|
max_swap_request_duration_blocks: z.ZodOptional<z.ZodNumber>;
|
|
21563
21564
|
minimum_chunk_size: z.ZodOptional<z.ZodObject<Omit<{
|
|
21564
21565
|
Bitcoin: z.ZodObject<{
|
|
21565
|
-
BTC: z.ZodNullable<z.
|
|
21566
|
+
BTC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21566
21567
|
}, "strip", z.ZodTypeAny, {
|
|
21567
21568
|
BTC: bigint | null;
|
|
21568
21569
|
}, {
|
|
21569
21570
|
BTC: string | number | null;
|
|
21570
21571
|
}>;
|
|
21571
21572
|
Ethereum: z.ZodObject<{
|
|
21572
|
-
ETH: z.ZodNullable<z.
|
|
21573
|
-
USDC: z.ZodNullable<z.
|
|
21574
|
-
FLIP: z.ZodNullable<z.
|
|
21575
|
-
USDT: z.ZodNullable<z.
|
|
21573
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21574
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21575
|
+
FLIP: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21576
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21576
21577
|
}, "strip", z.ZodTypeAny, {
|
|
21577
21578
|
ETH: bigint | null;
|
|
21578
21579
|
USDC: bigint | null;
|
|
@@ -21585,15 +21586,15 @@ declare const rpcResult: {
|
|
|
21585
21586
|
USDT: string | number | null;
|
|
21586
21587
|
}>;
|
|
21587
21588
|
Polkadot: z.ZodObject<{
|
|
21588
|
-
DOT: z.ZodNullable<z.
|
|
21589
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21589
21590
|
}, "strip", z.ZodTypeAny, {
|
|
21590
21591
|
DOT: bigint | null;
|
|
21591
21592
|
}, {
|
|
21592
21593
|
DOT: string | number | null;
|
|
21593
21594
|
}>;
|
|
21594
21595
|
Arbitrum: z.ZodObject<{
|
|
21595
|
-
ETH: z.ZodNullable<z.
|
|
21596
|
-
USDC: z.ZodNullable<z.
|
|
21596
|
+
ETH: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21597
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21597
21598
|
}, "strip", z.ZodTypeAny, {
|
|
21598
21599
|
ETH: bigint | null;
|
|
21599
21600
|
USDC: bigint | null;
|
|
@@ -21602,8 +21603,8 @@ declare const rpcResult: {
|
|
|
21602
21603
|
USDC: string | number | null;
|
|
21603
21604
|
}>;
|
|
21604
21605
|
Solana: z.ZodObject<{
|
|
21605
|
-
SOL: z.ZodNullable<z.
|
|
21606
|
-
USDC: z.ZodNullable<z.
|
|
21606
|
+
SOL: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21607
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21607
21608
|
}, "strip", z.ZodTypeAny, {
|
|
21608
21609
|
USDC: bigint | null;
|
|
21609
21610
|
SOL: bigint | null;
|
|
@@ -21612,9 +21613,9 @@ declare const rpcResult: {
|
|
|
21612
21613
|
SOL: string | number | null;
|
|
21613
21614
|
}>;
|
|
21614
21615
|
Assethub: z.ZodObject<{
|
|
21615
|
-
DOT: z.ZodNullable<z.
|
|
21616
|
-
USDC: z.ZodNullable<z.
|
|
21617
|
-
USDT: z.ZodNullable<z.
|
|
21616
|
+
DOT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21617
|
+
USDC: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21618
|
+
USDT: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
21618
21619
|
}, "strip", z.ZodTypeAny, {
|
|
21619
21620
|
USDC: bigint | null;
|
|
21620
21621
|
USDT: bigint | null;
|
|
@@ -21674,8 +21675,8 @@ declare const rpcResult: {
|
|
|
21674
21675
|
network_fees: z.ZodObject<{
|
|
21675
21676
|
regular_network_fee: z.ZodObject<{
|
|
21676
21677
|
standard_rate_and_minimum: z.ZodObject<{
|
|
21677
|
-
rate: z.
|
|
21678
|
-
minimum: z.
|
|
21678
|
+
rate: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21679
|
+
minimum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21679
21680
|
}, "strip", z.ZodTypeAny, {
|
|
21680
21681
|
minimum: bigint;
|
|
21681
21682
|
rate: bigint;
|
|
@@ -21685,17 +21686,17 @@ declare const rpcResult: {
|
|
|
21685
21686
|
}>;
|
|
21686
21687
|
rates: z.ZodObject<Omit<{
|
|
21687
21688
|
Bitcoin: z.ZodObject<{
|
|
21688
|
-
BTC: z.
|
|
21689
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21689
21690
|
}, "strip", z.ZodTypeAny, {
|
|
21690
21691
|
BTC: bigint;
|
|
21691
21692
|
}, {
|
|
21692
21693
|
BTC: string | number;
|
|
21693
21694
|
}>;
|
|
21694
21695
|
Ethereum: z.ZodObject<{
|
|
21695
|
-
ETH: z.
|
|
21696
|
-
USDC: z.
|
|
21697
|
-
FLIP: z.
|
|
21698
|
-
USDT: z.
|
|
21696
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21697
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21698
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21699
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21699
21700
|
}, "strip", z.ZodTypeAny, {
|
|
21700
21701
|
ETH: bigint;
|
|
21701
21702
|
USDC: bigint;
|
|
@@ -21708,15 +21709,15 @@ declare const rpcResult: {
|
|
|
21708
21709
|
USDT: string | number;
|
|
21709
21710
|
}>;
|
|
21710
21711
|
Polkadot: z.ZodObject<{
|
|
21711
|
-
DOT: z.
|
|
21712
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21712
21713
|
}, "strip", z.ZodTypeAny, {
|
|
21713
21714
|
DOT: bigint;
|
|
21714
21715
|
}, {
|
|
21715
21716
|
DOT: string | number;
|
|
21716
21717
|
}>;
|
|
21717
21718
|
Arbitrum: z.ZodObject<{
|
|
21718
|
-
ETH: z.
|
|
21719
|
-
USDC: z.
|
|
21719
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21720
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21720
21721
|
}, "strip", z.ZodTypeAny, {
|
|
21721
21722
|
ETH: bigint;
|
|
21722
21723
|
USDC: bigint;
|
|
@@ -21725,8 +21726,8 @@ declare const rpcResult: {
|
|
|
21725
21726
|
USDC: string | number;
|
|
21726
21727
|
}>;
|
|
21727
21728
|
Solana: z.ZodObject<{
|
|
21728
|
-
SOL: z.
|
|
21729
|
-
USDC: z.
|
|
21729
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21730
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21730
21731
|
}, "strip", z.ZodTypeAny, {
|
|
21731
21732
|
USDC: bigint;
|
|
21732
21733
|
SOL: bigint;
|
|
@@ -21735,9 +21736,9 @@ declare const rpcResult: {
|
|
|
21735
21736
|
SOL: string | number;
|
|
21736
21737
|
}>;
|
|
21737
21738
|
Assethub: z.ZodObject<{
|
|
21738
|
-
DOT: z.
|
|
21739
|
-
USDC: z.
|
|
21740
|
-
USDT: z.
|
|
21739
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21740
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21741
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21741
21742
|
}, "strip", z.ZodTypeAny, {
|
|
21742
21743
|
USDC: bigint;
|
|
21743
21744
|
USDT: bigint;
|
|
@@ -21855,8 +21856,8 @@ declare const rpcResult: {
|
|
|
21855
21856
|
}>;
|
|
21856
21857
|
internal_swap_network_fee: z.ZodObject<{
|
|
21857
21858
|
standard_rate_and_minimum: z.ZodObject<{
|
|
21858
|
-
rate: z.
|
|
21859
|
-
minimum: z.
|
|
21859
|
+
rate: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21860
|
+
minimum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21860
21861
|
}, "strip", z.ZodTypeAny, {
|
|
21861
21862
|
minimum: bigint;
|
|
21862
21863
|
rate: bigint;
|
|
@@ -21866,17 +21867,17 @@ declare const rpcResult: {
|
|
|
21866
21867
|
}>;
|
|
21867
21868
|
rates: z.ZodObject<Omit<{
|
|
21868
21869
|
Bitcoin: z.ZodObject<{
|
|
21869
|
-
BTC: z.
|
|
21870
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21870
21871
|
}, "strip", z.ZodTypeAny, {
|
|
21871
21872
|
BTC: bigint;
|
|
21872
21873
|
}, {
|
|
21873
21874
|
BTC: string | number;
|
|
21874
21875
|
}>;
|
|
21875
21876
|
Ethereum: z.ZodObject<{
|
|
21876
|
-
ETH: z.
|
|
21877
|
-
USDC: z.
|
|
21878
|
-
FLIP: z.
|
|
21879
|
-
USDT: z.
|
|
21877
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21878
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21879
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21880
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21880
21881
|
}, "strip", z.ZodTypeAny, {
|
|
21881
21882
|
ETH: bigint;
|
|
21882
21883
|
USDC: bigint;
|
|
@@ -21889,15 +21890,15 @@ declare const rpcResult: {
|
|
|
21889
21890
|
USDT: string | number;
|
|
21890
21891
|
}>;
|
|
21891
21892
|
Polkadot: z.ZodObject<{
|
|
21892
|
-
DOT: z.
|
|
21893
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21893
21894
|
}, "strip", z.ZodTypeAny, {
|
|
21894
21895
|
DOT: bigint;
|
|
21895
21896
|
}, {
|
|
21896
21897
|
DOT: string | number;
|
|
21897
21898
|
}>;
|
|
21898
21899
|
Arbitrum: z.ZodObject<{
|
|
21899
|
-
ETH: z.
|
|
21900
|
-
USDC: z.
|
|
21900
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21901
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21901
21902
|
}, "strip", z.ZodTypeAny, {
|
|
21902
21903
|
ETH: bigint;
|
|
21903
21904
|
USDC: bigint;
|
|
@@ -21906,8 +21907,8 @@ declare const rpcResult: {
|
|
|
21906
21907
|
USDC: string | number;
|
|
21907
21908
|
}>;
|
|
21908
21909
|
Solana: z.ZodObject<{
|
|
21909
|
-
SOL: z.
|
|
21910
|
-
USDC: z.
|
|
21910
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21911
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21911
21912
|
}, "strip", z.ZodTypeAny, {
|
|
21912
21913
|
USDC: bigint;
|
|
21913
21914
|
SOL: bigint;
|
|
@@ -21916,9 +21917,9 @@ declare const rpcResult: {
|
|
|
21916
21917
|
SOL: string | number;
|
|
21917
21918
|
}>;
|
|
21918
21919
|
Assethub: z.ZodObject<{
|
|
21919
|
-
DOT: z.
|
|
21920
|
-
USDC: z.
|
|
21921
|
-
USDT: z.
|
|
21920
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21921
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21922
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
21922
21923
|
}, "strip", z.ZodTypeAny, {
|
|
21923
21924
|
USDC: bigint;
|
|
21924
21925
|
USDT: bigint;
|
|
@@ -22519,7 +22520,7 @@ declare const rpcResult: {
|
|
|
22519
22520
|
amount: string;
|
|
22520
22521
|
}>, "many">;
|
|
22521
22522
|
deposits_pending_finalization: z.ZodArray<z.ZodObject<{
|
|
22522
|
-
deposit_id: z.
|
|
22523
|
+
deposit_id: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22523
22524
|
owed_amounts: z.ZodArray<z.ZodObject<{
|
|
22524
22525
|
account_id: z.ZodString;
|
|
22525
22526
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -22545,7 +22546,7 @@ declare const rpcResult: {
|
|
|
22545
22546
|
}>, "many">;
|
|
22546
22547
|
pending_withdrawals: z.ZodArray<z.ZodObject<{
|
|
22547
22548
|
account_id: z.ZodString;
|
|
22548
|
-
pending_deposits: z.ZodArray<z.
|
|
22549
|
+
pending_deposits: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>, "many">;
|
|
22549
22550
|
}, "strip", z.ZodTypeAny, {
|
|
22550
22551
|
account_id: string;
|
|
22551
22552
|
pending_deposits: bigint[];
|
|
@@ -22785,17 +22786,17 @@ declare const rpcResult: {
|
|
|
22785
22786
|
}>;
|
|
22786
22787
|
readonly lp_total_balances: z.ZodObject<Omit<{
|
|
22787
22788
|
Bitcoin: z.ZodObject<{
|
|
22788
|
-
BTC: z.
|
|
22789
|
+
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22789
22790
|
}, "strip", z.ZodTypeAny, {
|
|
22790
22791
|
BTC: bigint;
|
|
22791
22792
|
}, {
|
|
22792
22793
|
BTC: string | number;
|
|
22793
22794
|
}>;
|
|
22794
22795
|
Ethereum: z.ZodObject<{
|
|
22795
|
-
ETH: z.
|
|
22796
|
-
USDC: z.
|
|
22797
|
-
FLIP: z.
|
|
22798
|
-
USDT: z.
|
|
22796
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22797
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22798
|
+
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22799
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22799
22800
|
}, "strip", z.ZodTypeAny, {
|
|
22800
22801
|
ETH: bigint;
|
|
22801
22802
|
USDC: bigint;
|
|
@@ -22808,15 +22809,15 @@ declare const rpcResult: {
|
|
|
22808
22809
|
USDT: string | number;
|
|
22809
22810
|
}>;
|
|
22810
22811
|
Polkadot: z.ZodObject<{
|
|
22811
|
-
DOT: z.
|
|
22812
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22812
22813
|
}, "strip", z.ZodTypeAny, {
|
|
22813
22814
|
DOT: bigint;
|
|
22814
22815
|
}, {
|
|
22815
22816
|
DOT: string | number;
|
|
22816
22817
|
}>;
|
|
22817
22818
|
Arbitrum: z.ZodObject<{
|
|
22818
|
-
ETH: z.
|
|
22819
|
-
USDC: z.
|
|
22819
|
+
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22820
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22820
22821
|
}, "strip", z.ZodTypeAny, {
|
|
22821
22822
|
ETH: bigint;
|
|
22822
22823
|
USDC: bigint;
|
|
@@ -22825,8 +22826,8 @@ declare const rpcResult: {
|
|
|
22825
22826
|
USDC: string | number;
|
|
22826
22827
|
}>;
|
|
22827
22828
|
Solana: z.ZodObject<{
|
|
22828
|
-
SOL: z.
|
|
22829
|
-
USDC: z.
|
|
22829
|
+
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22830
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22830
22831
|
}, "strip", z.ZodTypeAny, {
|
|
22831
22832
|
USDC: bigint;
|
|
22832
22833
|
SOL: bigint;
|
|
@@ -22835,9 +22836,9 @@ declare const rpcResult: {
|
|
|
22835
22836
|
SOL: string | number;
|
|
22836
22837
|
}>;
|
|
22837
22838
|
Assethub: z.ZodObject<{
|
|
22838
|
-
DOT: z.
|
|
22839
|
-
USDC: z.
|
|
22840
|
-
USDT: z.
|
|
22839
|
+
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22840
|
+
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22841
|
+
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22841
22842
|
}, "strip", z.ZodTypeAny, {
|
|
22842
22843
|
USDC: bigint;
|
|
22843
22844
|
USDT: bigint;
|
|
@@ -22914,16 +22915,16 @@ declare const rpcResult: {
|
|
|
22914
22915
|
data: string;
|
|
22915
22916
|
contract: string;
|
|
22916
22917
|
}>>;
|
|
22917
|
-
readonly cf_authority_emission_per_block: z.
|
|
22918
|
+
readonly cf_authority_emission_per_block: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22918
22919
|
readonly cf_epoch_duration: z.ZodNumber;
|
|
22919
22920
|
readonly cf_auction_state: z.ZodEffects<z.ZodObject<{
|
|
22920
22921
|
epoch_duration: z.ZodNumber;
|
|
22921
22922
|
current_epoch_started_at: z.ZodNumber;
|
|
22922
22923
|
redemption_period_as_percentage: z.ZodNumber;
|
|
22923
|
-
min_funding: z.
|
|
22924
|
+
min_funding: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22924
22925
|
auction_size_range: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
22925
|
-
min_active_bid: z.ZodNullable<z.
|
|
22926
|
-
min_bid: z.
|
|
22926
|
+
min_active_bid: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
22927
|
+
min_bid: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
22927
22928
|
}, "strip", z.ZodTypeAny, {
|
|
22928
22929
|
epoch_duration: number;
|
|
22929
22930
|
current_epoch_started_at: number;
|
|
@@ -22959,7 +22960,7 @@ declare const rpcResult: {
|
|
|
22959
22960
|
min_active_bid: string | number | null;
|
|
22960
22961
|
min_bid: string | number;
|
|
22961
22962
|
}>;
|
|
22962
|
-
readonly cf_flip_supply: z.ZodEffects<z.ZodTuple<[z.
|
|
22963
|
+
readonly cf_flip_supply: z.ZodEffects<z.ZodTuple<[z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>], null>, {
|
|
22963
22964
|
totalIssuance: bigint;
|
|
22964
22965
|
offchainFunds: bigint;
|
|
22965
22966
|
}, [string | number, string | number]>;
|
|
@@ -24028,7 +24029,7 @@ declare const rpcResult: {
|
|
|
24028
24029
|
}, {
|
|
24029
24030
|
chain: "Assethub";
|
|
24030
24031
|
asset: "USDT";
|
|
24031
|
-
}>]>, z.
|
|
24032
|
+
}>]>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>], null>, "many">;
|
|
24032
24033
|
}, "strip", z.ZodTypeAny, {
|
|
24033
24034
|
lp_id: string;
|
|
24034
24035
|
strategy_id: string;
|
|
@@ -26014,7 +26015,7 @@ declare const rpcResult: {
|
|
|
26014
26015
|
readonly broker_encode_cf_parameters: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
26015
26016
|
readonly cf_encode_cf_parameters: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
26016
26017
|
readonly cf_oracle_prices: z.ZodArray<z.ZodObject<{
|
|
26017
|
-
price: z.
|
|
26018
|
+
price: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26018
26019
|
updated_at_oracle_timestamp: z.ZodNumber;
|
|
26019
26020
|
updated_at_statechain_block: z.ZodNumber;
|
|
26020
26021
|
base_asset: z.ZodEnum<["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd"]>;
|
|
@@ -26151,8 +26152,8 @@ declare const rpcResult: {
|
|
|
26151
26152
|
chain: "Assethub";
|
|
26152
26153
|
asset: "USDT";
|
|
26153
26154
|
}>]>;
|
|
26154
|
-
total_amount: z.
|
|
26155
|
-
available_amount: z.
|
|
26155
|
+
total_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26156
|
+
available_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26156
26157
|
utilisation_rate: z.ZodNumber;
|
|
26157
26158
|
current_interest_rate: z.ZodNumber;
|
|
26158
26159
|
origination_fee: z.ZodNumber;
|
|
@@ -26280,6 +26281,97 @@ declare const rpcResult: {
|
|
|
26280
26281
|
interest_at_max_utilisation: number;
|
|
26281
26282
|
};
|
|
26282
26283
|
}>, "many">;
|
|
26284
|
+
readonly cf_lending_config: z.ZodObject<{
|
|
26285
|
+
ltv_thresholds: z.ZodObject<{
|
|
26286
|
+
minimum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26287
|
+
target: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26288
|
+
topup: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26289
|
+
soft_liquidation: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26290
|
+
soft_liquidation_abort: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26291
|
+
hard_liquidation: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26292
|
+
hard_liquidation_abort: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26293
|
+
}, "strip", z.ZodTypeAny, {
|
|
26294
|
+
minimum: bigint;
|
|
26295
|
+
target: bigint;
|
|
26296
|
+
topup: bigint;
|
|
26297
|
+
soft_liquidation: bigint;
|
|
26298
|
+
soft_liquidation_abort: bigint;
|
|
26299
|
+
hard_liquidation: bigint;
|
|
26300
|
+
hard_liquidation_abort: bigint;
|
|
26301
|
+
}, {
|
|
26302
|
+
minimum: string | number;
|
|
26303
|
+
target: string | number;
|
|
26304
|
+
topup: string | number;
|
|
26305
|
+
soft_liquidation: string | number;
|
|
26306
|
+
soft_liquidation_abort: string | number;
|
|
26307
|
+
hard_liquidation: string | number;
|
|
26308
|
+
hard_liquidation_abort: string | number;
|
|
26309
|
+
}>;
|
|
26310
|
+
network_fee_contributions: z.ZodObject<{
|
|
26311
|
+
from_interest: z.ZodNumber;
|
|
26312
|
+
from_origination_fee: z.ZodNumber;
|
|
26313
|
+
from_liquidation_fee: z.ZodNumber;
|
|
26314
|
+
}, "strip", z.ZodTypeAny, {
|
|
26315
|
+
from_interest: number;
|
|
26316
|
+
from_origination_fee: number;
|
|
26317
|
+
from_liquidation_fee: number;
|
|
26318
|
+
}, {
|
|
26319
|
+
from_interest: number;
|
|
26320
|
+
from_origination_fee: number;
|
|
26321
|
+
from_liquidation_fee: number;
|
|
26322
|
+
}>;
|
|
26323
|
+
fee_swap_interval_blocks: z.ZodNumber;
|
|
26324
|
+
interest_payment_interval_blocks: z.ZodNumber;
|
|
26325
|
+
fee_swap_threshold_usd: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26326
|
+
liquidation_swap_chunk_size_usd: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26327
|
+
soft_liquidation_max_oracle_slippage: z.ZodNumber;
|
|
26328
|
+
hard_liquidation_max_oracle_slippage: z.ZodNumber;
|
|
26329
|
+
fee_swap_max_oracle_slippage: z.ZodNumber;
|
|
26330
|
+
}, "strip", z.ZodTypeAny, {
|
|
26331
|
+
ltv_thresholds: {
|
|
26332
|
+
minimum: bigint;
|
|
26333
|
+
target: bigint;
|
|
26334
|
+
topup: bigint;
|
|
26335
|
+
soft_liquidation: bigint;
|
|
26336
|
+
soft_liquidation_abort: bigint;
|
|
26337
|
+
hard_liquidation: bigint;
|
|
26338
|
+
hard_liquidation_abort: bigint;
|
|
26339
|
+
};
|
|
26340
|
+
network_fee_contributions: {
|
|
26341
|
+
from_interest: number;
|
|
26342
|
+
from_origination_fee: number;
|
|
26343
|
+
from_liquidation_fee: number;
|
|
26344
|
+
};
|
|
26345
|
+
fee_swap_interval_blocks: number;
|
|
26346
|
+
interest_payment_interval_blocks: number;
|
|
26347
|
+
fee_swap_threshold_usd: bigint;
|
|
26348
|
+
liquidation_swap_chunk_size_usd: bigint;
|
|
26349
|
+
soft_liquidation_max_oracle_slippage: number;
|
|
26350
|
+
hard_liquidation_max_oracle_slippage: number;
|
|
26351
|
+
fee_swap_max_oracle_slippage: number;
|
|
26352
|
+
}, {
|
|
26353
|
+
ltv_thresholds: {
|
|
26354
|
+
minimum: string | number;
|
|
26355
|
+
target: string | number;
|
|
26356
|
+
topup: string | number;
|
|
26357
|
+
soft_liquidation: string | number;
|
|
26358
|
+
soft_liquidation_abort: string | number;
|
|
26359
|
+
hard_liquidation: string | number;
|
|
26360
|
+
hard_liquidation_abort: string | number;
|
|
26361
|
+
};
|
|
26362
|
+
network_fee_contributions: {
|
|
26363
|
+
from_interest: number;
|
|
26364
|
+
from_origination_fee: number;
|
|
26365
|
+
from_liquidation_fee: number;
|
|
26366
|
+
};
|
|
26367
|
+
fee_swap_interval_blocks: number;
|
|
26368
|
+
interest_payment_interval_blocks: number;
|
|
26369
|
+
fee_swap_threshold_usd: string | number;
|
|
26370
|
+
liquidation_swap_chunk_size_usd: string | number;
|
|
26371
|
+
soft_liquidation_max_oracle_slippage: number;
|
|
26372
|
+
hard_liquidation_max_oracle_slippage: number;
|
|
26373
|
+
fee_swap_max_oracle_slippage: number;
|
|
26374
|
+
}>;
|
|
26283
26375
|
};
|
|
26284
26376
|
type RpcMethod = keyof RpcRequest;
|
|
26285
26377
|
type RpcResponse<T extends RpcMethod> = z.input<(typeof rpcResult)[T]>;
|