@chainflip/rpc 1.8.5 → 1.8.7
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/HttpClient.cjs +8 -5
- package/dist/HttpClient.d.cts +0 -1
- package/dist/HttpClient.d.ts +0 -1
- package/dist/HttpClient.mjs +6 -3
- package/dist/common.cjs +3 -1
- package/dist/common.d.cts +453 -358
- package/dist/common.d.ts +453 -358
- package/dist/common.mjs +4 -2
- package/dist/parsers.cjs +9 -7
- package/dist/parsers.d.cts +525 -431
- package/dist/parsers.d.ts +525 -431
- package/dist/parsers.mjs +8 -6
- package/package.json +4 -4
package/dist/common.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ type UncheckedAssetAndChain = {
|
|
|
12
12
|
asset: AssetSymbol;
|
|
13
13
|
chain: Chain;
|
|
14
14
|
};
|
|
15
|
-
type SwapFeeType = '
|
|
15
|
+
type SwapFeeType = 'IngressDepositChannel' | 'IngressVaultSwap' | 'Network' | 'Egress';
|
|
16
16
|
type AdditionalOrder = {
|
|
17
17
|
LimitOrder: {
|
|
18
18
|
base_asset: UncheckedAssetAndChain;
|
|
@@ -149,6 +149,7 @@ type RpcRequest = WithHash<{
|
|
|
149
149
|
];
|
|
150
150
|
state_getMetadata: [];
|
|
151
151
|
state_getRuntimeVersion: [];
|
|
152
|
+
lp_total_balances: [accountId: string];
|
|
152
153
|
}> & {
|
|
153
154
|
chain_getBlockHash: [blockHeight?: number];
|
|
154
155
|
};
|
|
@@ -398,16 +399,16 @@ declare const rpcResult: {
|
|
|
398
399
|
ETH: string | number;
|
|
399
400
|
USDC: string | number;
|
|
400
401
|
}>;
|
|
401
|
-
Solana: z.
|
|
402
|
-
SOL: z.
|
|
403
|
-
USDC: z.
|
|
402
|
+
Solana: z.ZodObject<{
|
|
403
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
404
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
404
405
|
}, "strip", z.ZodTypeAny, {
|
|
405
406
|
USDC: bigint;
|
|
406
407
|
SOL: bigint;
|
|
407
408
|
}, {
|
|
408
|
-
USDC
|
|
409
|
-
SOL
|
|
410
|
-
}
|
|
409
|
+
USDC: string | number;
|
|
410
|
+
SOL: string | number;
|
|
411
|
+
}>;
|
|
411
412
|
}, "strip", z.ZodTypeAny, {
|
|
412
413
|
Bitcoin: {
|
|
413
414
|
BTC: bigint;
|
|
@@ -443,13 +444,13 @@ declare const rpcResult: {
|
|
|
443
444
|
ETH: string | number;
|
|
444
445
|
USDC: string | number;
|
|
445
446
|
};
|
|
447
|
+
Solana: {
|
|
448
|
+
USDC: string | number;
|
|
449
|
+
SOL: string | number;
|
|
450
|
+
};
|
|
446
451
|
Polkadot: {
|
|
447
452
|
DOT: string | number;
|
|
448
453
|
};
|
|
449
|
-
Solana?: {
|
|
450
|
-
USDC?: string | number | undefined;
|
|
451
|
-
SOL?: string | number | undefined;
|
|
452
|
-
} | undefined;
|
|
453
454
|
}>;
|
|
454
455
|
btc_vault_deposit_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
455
456
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -495,13 +496,13 @@ declare const rpcResult: {
|
|
|
495
496
|
ETH: string | number;
|
|
496
497
|
USDC: string | number;
|
|
497
498
|
};
|
|
499
|
+
Solana: {
|
|
500
|
+
USDC: string | number;
|
|
501
|
+
SOL: string | number;
|
|
502
|
+
};
|
|
498
503
|
Polkadot: {
|
|
499
504
|
DOT: string | number;
|
|
500
505
|
};
|
|
501
|
-
Solana?: {
|
|
502
|
-
USDC?: string | number | undefined;
|
|
503
|
-
SOL?: string | number | undefined;
|
|
504
|
-
} | undefined;
|
|
505
506
|
};
|
|
506
507
|
btc_vault_deposit_address?: string | null | undefined;
|
|
507
508
|
}>, z.ZodObject<{
|
|
@@ -547,16 +548,16 @@ declare const rpcResult: {
|
|
|
547
548
|
ETH: string | number;
|
|
548
549
|
USDC: string | number;
|
|
549
550
|
}>;
|
|
550
|
-
Solana: z.
|
|
551
|
-
SOL: z.
|
|
552
|
-
USDC: z.
|
|
551
|
+
Solana: z.ZodObject<{
|
|
552
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
553
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
553
554
|
}, "strip", z.ZodTypeAny, {
|
|
554
555
|
USDC: bigint;
|
|
555
556
|
SOL: bigint;
|
|
556
557
|
}, {
|
|
557
|
-
USDC
|
|
558
|
-
SOL
|
|
559
|
-
}
|
|
558
|
+
USDC: string | number;
|
|
559
|
+
SOL: string | number;
|
|
560
|
+
}>;
|
|
560
561
|
}, "strip", z.ZodTypeAny, {
|
|
561
562
|
Bitcoin: {
|
|
562
563
|
BTC: bigint;
|
|
@@ -592,20 +593,20 @@ declare const rpcResult: {
|
|
|
592
593
|
ETH: string | number;
|
|
593
594
|
USDC: string | number;
|
|
594
595
|
};
|
|
596
|
+
Solana: {
|
|
597
|
+
USDC: string | number;
|
|
598
|
+
SOL: string | number;
|
|
599
|
+
};
|
|
595
600
|
Polkadot: {
|
|
596
601
|
DOT: string | number;
|
|
597
602
|
};
|
|
598
|
-
Solana?: {
|
|
599
|
-
USDC?: string | number | undefined;
|
|
600
|
-
SOL?: string | number | undefined;
|
|
601
|
-
} | undefined;
|
|
602
603
|
}>;
|
|
603
604
|
refund_addresses: z.ZodObject<{
|
|
604
605
|
Bitcoin: z.ZodNullable<z.ZodString>;
|
|
605
606
|
Ethereum: z.ZodNullable<z.ZodString>;
|
|
606
607
|
Polkadot: z.ZodNullable<z.ZodString>;
|
|
607
608
|
Arbitrum: z.ZodNullable<z.ZodString>;
|
|
608
|
-
Solana: z.
|
|
609
|
+
Solana: z.ZodNullable<z.ZodString>;
|
|
609
610
|
}, "strip", z.ZodTypeAny, {
|
|
610
611
|
Bitcoin: string | null;
|
|
611
612
|
Ethereum: string | null;
|
|
@@ -616,8 +617,8 @@ declare const rpcResult: {
|
|
|
616
617
|
Bitcoin: string | null;
|
|
617
618
|
Ethereum: string | null;
|
|
618
619
|
Arbitrum: string | null;
|
|
620
|
+
Solana: string | null;
|
|
619
621
|
Polkadot: string | null;
|
|
620
|
-
Solana?: string | null | undefined;
|
|
621
622
|
}>;
|
|
622
623
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
623
624
|
earned_fees: z.ZodObject<{
|
|
@@ -661,16 +662,16 @@ declare const rpcResult: {
|
|
|
661
662
|
ETH: string | number;
|
|
662
663
|
USDC: string | number;
|
|
663
664
|
}>;
|
|
664
|
-
Solana: z.
|
|
665
|
-
SOL: z.
|
|
666
|
-
USDC: z.
|
|
665
|
+
Solana: z.ZodObject<{
|
|
666
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
667
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
667
668
|
}, "strip", z.ZodTypeAny, {
|
|
668
669
|
USDC: bigint;
|
|
669
670
|
SOL: bigint;
|
|
670
671
|
}, {
|
|
671
|
-
USDC
|
|
672
|
-
SOL
|
|
673
|
-
}
|
|
672
|
+
USDC: string | number;
|
|
673
|
+
SOL: string | number;
|
|
674
|
+
}>;
|
|
674
675
|
}, "strip", z.ZodTypeAny, {
|
|
675
676
|
Bitcoin: {
|
|
676
677
|
BTC: bigint;
|
|
@@ -706,13 +707,13 @@ declare const rpcResult: {
|
|
|
706
707
|
ETH: string | number;
|
|
707
708
|
USDC: string | number;
|
|
708
709
|
};
|
|
710
|
+
Solana: {
|
|
711
|
+
USDC: string | number;
|
|
712
|
+
SOL: string | number;
|
|
713
|
+
};
|
|
709
714
|
Polkadot: {
|
|
710
715
|
DOT: string | number;
|
|
711
716
|
};
|
|
712
|
-
Solana?: {
|
|
713
|
-
USDC?: string | number | undefined;
|
|
714
|
-
SOL?: string | number | undefined;
|
|
715
|
-
} | undefined;
|
|
716
717
|
}>;
|
|
717
718
|
boost_balances: z.ZodObject<{
|
|
718
719
|
Bitcoin: z.ZodObject<{
|
|
@@ -995,8 +996,8 @@ declare const rpcResult: {
|
|
|
995
996
|
is_withdrawing: boolean;
|
|
996
997
|
}[];
|
|
997
998
|
}>;
|
|
998
|
-
Solana: z.
|
|
999
|
-
SOL: z.
|
|
999
|
+
Solana: z.ZodObject<{
|
|
1000
|
+
SOL: z.ZodArray<z.ZodObject<{
|
|
1000
1001
|
fee_tier: z.ZodNumber;
|
|
1001
1002
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
1002
1003
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -1014,8 +1015,8 @@ declare const rpcResult: {
|
|
|
1014
1015
|
available_balance: string;
|
|
1015
1016
|
in_use_balance: string;
|
|
1016
1017
|
is_withdrawing: boolean;
|
|
1017
|
-
}>, "many"
|
|
1018
|
-
USDC: z.
|
|
1018
|
+
}>, "many">;
|
|
1019
|
+
USDC: z.ZodArray<z.ZodObject<{
|
|
1019
1020
|
fee_tier: z.ZodNumber;
|
|
1020
1021
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
1021
1022
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -1033,7 +1034,7 @@ declare const rpcResult: {
|
|
|
1033
1034
|
available_balance: string;
|
|
1034
1035
|
in_use_balance: string;
|
|
1035
1036
|
is_withdrawing: boolean;
|
|
1036
|
-
}>, "many"
|
|
1037
|
+
}>, "many">;
|
|
1037
1038
|
}, "strip", z.ZodTypeAny, {
|
|
1038
1039
|
USDC: {
|
|
1039
1040
|
fee_tier: number;
|
|
@@ -1050,21 +1051,21 @@ declare const rpcResult: {
|
|
|
1050
1051
|
is_withdrawing: boolean;
|
|
1051
1052
|
}[];
|
|
1052
1053
|
}, {
|
|
1053
|
-
USDC
|
|
1054
|
+
USDC: {
|
|
1054
1055
|
fee_tier: number;
|
|
1055
1056
|
total_balance: string;
|
|
1056
1057
|
available_balance: string;
|
|
1057
1058
|
in_use_balance: string;
|
|
1058
1059
|
is_withdrawing: boolean;
|
|
1059
|
-
}[]
|
|
1060
|
-
SOL
|
|
1060
|
+
}[];
|
|
1061
|
+
SOL: {
|
|
1061
1062
|
fee_tier: number;
|
|
1062
1063
|
total_balance: string;
|
|
1063
1064
|
available_balance: string;
|
|
1064
1065
|
in_use_balance: string;
|
|
1065
1066
|
is_withdrawing: boolean;
|
|
1066
|
-
}[]
|
|
1067
|
-
}
|
|
1067
|
+
}[];
|
|
1068
|
+
}>;
|
|
1068
1069
|
}, "strip", z.ZodTypeAny, {
|
|
1069
1070
|
Bitcoin: {
|
|
1070
1071
|
BTC: {
|
|
@@ -1202,31 +1203,31 @@ declare const rpcResult: {
|
|
|
1202
1203
|
is_withdrawing: boolean;
|
|
1203
1204
|
}[];
|
|
1204
1205
|
};
|
|
1205
|
-
|
|
1206
|
-
|
|
1206
|
+
Solana: {
|
|
1207
|
+
USDC: {
|
|
1207
1208
|
fee_tier: number;
|
|
1208
1209
|
total_balance: string;
|
|
1209
1210
|
available_balance: string;
|
|
1210
1211
|
in_use_balance: string;
|
|
1211
1212
|
is_withdrawing: boolean;
|
|
1212
1213
|
}[];
|
|
1213
|
-
|
|
1214
|
-
Solana?: {
|
|
1215
|
-
USDC?: {
|
|
1214
|
+
SOL: {
|
|
1216
1215
|
fee_tier: number;
|
|
1217
1216
|
total_balance: string;
|
|
1218
1217
|
available_balance: string;
|
|
1219
1218
|
in_use_balance: string;
|
|
1220
1219
|
is_withdrawing: boolean;
|
|
1221
|
-
}[]
|
|
1222
|
-
|
|
1220
|
+
}[];
|
|
1221
|
+
};
|
|
1222
|
+
Polkadot: {
|
|
1223
|
+
DOT: {
|
|
1223
1224
|
fee_tier: number;
|
|
1224
1225
|
total_balance: string;
|
|
1225
1226
|
available_balance: string;
|
|
1226
1227
|
in_use_balance: string;
|
|
1227
1228
|
is_withdrawing: boolean;
|
|
1228
|
-
}[]
|
|
1229
|
-
}
|
|
1229
|
+
}[];
|
|
1230
|
+
};
|
|
1230
1231
|
}>;
|
|
1231
1232
|
}, "strip", z.ZodTypeAny, {
|
|
1232
1233
|
role: "liquidity_provider";
|
|
@@ -1381,13 +1382,13 @@ declare const rpcResult: {
|
|
|
1381
1382
|
ETH: string | number;
|
|
1382
1383
|
USDC: string | number;
|
|
1383
1384
|
};
|
|
1385
|
+
Solana: {
|
|
1386
|
+
USDC: string | number;
|
|
1387
|
+
SOL: string | number;
|
|
1388
|
+
};
|
|
1384
1389
|
Polkadot: {
|
|
1385
1390
|
DOT: string | number;
|
|
1386
1391
|
};
|
|
1387
|
-
Solana?: {
|
|
1388
|
-
USDC?: string | number | undefined;
|
|
1389
|
-
SOL?: string | number | undefined;
|
|
1390
|
-
} | undefined;
|
|
1391
1392
|
};
|
|
1392
1393
|
balances: {
|
|
1393
1394
|
Bitcoin: {
|
|
@@ -1403,20 +1404,20 @@ declare const rpcResult: {
|
|
|
1403
1404
|
ETH: string | number;
|
|
1404
1405
|
USDC: string | number;
|
|
1405
1406
|
};
|
|
1407
|
+
Solana: {
|
|
1408
|
+
USDC: string | number;
|
|
1409
|
+
SOL: string | number;
|
|
1410
|
+
};
|
|
1406
1411
|
Polkadot: {
|
|
1407
1412
|
DOT: string | number;
|
|
1408
1413
|
};
|
|
1409
|
-
Solana?: {
|
|
1410
|
-
USDC?: string | number | undefined;
|
|
1411
|
-
SOL?: string | number | undefined;
|
|
1412
|
-
} | undefined;
|
|
1413
1414
|
};
|
|
1414
1415
|
refund_addresses: {
|
|
1415
1416
|
Bitcoin: string | null;
|
|
1416
1417
|
Ethereum: string | null;
|
|
1417
1418
|
Arbitrum: string | null;
|
|
1419
|
+
Solana: string | null;
|
|
1418
1420
|
Polkadot: string | null;
|
|
1419
|
-
Solana?: string | null | undefined;
|
|
1420
1421
|
};
|
|
1421
1422
|
boost_balances: {
|
|
1422
1423
|
Bitcoin: {
|
|
@@ -1474,31 +1475,31 @@ declare const rpcResult: {
|
|
|
1474
1475
|
is_withdrawing: boolean;
|
|
1475
1476
|
}[];
|
|
1476
1477
|
};
|
|
1477
|
-
|
|
1478
|
-
|
|
1478
|
+
Solana: {
|
|
1479
|
+
USDC: {
|
|
1479
1480
|
fee_tier: number;
|
|
1480
1481
|
total_balance: string;
|
|
1481
1482
|
available_balance: string;
|
|
1482
1483
|
in_use_balance: string;
|
|
1483
1484
|
is_withdrawing: boolean;
|
|
1484
1485
|
}[];
|
|
1485
|
-
|
|
1486
|
-
Solana?: {
|
|
1487
|
-
USDC?: {
|
|
1486
|
+
SOL: {
|
|
1488
1487
|
fee_tier: number;
|
|
1489
1488
|
total_balance: string;
|
|
1490
1489
|
available_balance: string;
|
|
1491
1490
|
in_use_balance: string;
|
|
1492
1491
|
is_withdrawing: boolean;
|
|
1493
|
-
}[]
|
|
1494
|
-
|
|
1492
|
+
}[];
|
|
1493
|
+
};
|
|
1494
|
+
Polkadot: {
|
|
1495
|
+
DOT: {
|
|
1495
1496
|
fee_tier: number;
|
|
1496
1497
|
total_balance: string;
|
|
1497
1498
|
available_balance: string;
|
|
1498
1499
|
in_use_balance: string;
|
|
1499
1500
|
is_withdrawing: boolean;
|
|
1500
|
-
}[]
|
|
1501
|
-
}
|
|
1501
|
+
}[];
|
|
1502
|
+
};
|
|
1502
1503
|
};
|
|
1503
1504
|
}>, z.ZodObject<{
|
|
1504
1505
|
role: z.ZodLiteral<"validator">;
|
|
@@ -1813,16 +1814,16 @@ declare const rpcResult: {
|
|
|
1813
1814
|
ETH: string | number;
|
|
1814
1815
|
USDC: string | number;
|
|
1815
1816
|
}>;
|
|
1816
|
-
Solana: z.
|
|
1817
|
-
SOL: z.
|
|
1818
|
-
USDC: z.
|
|
1817
|
+
Solana: z.ZodObject<{
|
|
1818
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1819
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1819
1820
|
}, "strip", z.ZodTypeAny, {
|
|
1820
1821
|
USDC: bigint;
|
|
1821
1822
|
SOL: bigint;
|
|
1822
1823
|
}, {
|
|
1823
|
-
USDC
|
|
1824
|
-
SOL
|
|
1825
|
-
}
|
|
1824
|
+
USDC: string | number;
|
|
1825
|
+
SOL: string | number;
|
|
1826
|
+
}>;
|
|
1826
1827
|
}, "strip", z.ZodTypeAny, {
|
|
1827
1828
|
Bitcoin: {
|
|
1828
1829
|
BTC: bigint;
|
|
@@ -1858,13 +1859,13 @@ declare const rpcResult: {
|
|
|
1858
1859
|
ETH: string | number;
|
|
1859
1860
|
USDC: string | number;
|
|
1860
1861
|
};
|
|
1862
|
+
Solana: {
|
|
1863
|
+
USDC: string | number;
|
|
1864
|
+
SOL: string | number;
|
|
1865
|
+
};
|
|
1861
1866
|
Polkadot: {
|
|
1862
1867
|
DOT: string | number;
|
|
1863
1868
|
};
|
|
1864
|
-
Solana?: {
|
|
1865
|
-
USDC?: string | number | undefined;
|
|
1866
|
-
SOL?: string | number | undefined;
|
|
1867
|
-
} | undefined;
|
|
1868
1869
|
}>;
|
|
1869
1870
|
ingress_fees: z.ZodObject<{
|
|
1870
1871
|
Bitcoin: z.ZodObject<{
|
|
@@ -1907,16 +1908,16 @@ declare const rpcResult: {
|
|
|
1907
1908
|
ETH: string | number | null;
|
|
1908
1909
|
USDC: string | number | null;
|
|
1909
1910
|
}>;
|
|
1910
|
-
Solana: z.
|
|
1911
|
-
SOL: z.
|
|
1912
|
-
USDC: z.
|
|
1911
|
+
Solana: z.ZodObject<{
|
|
1912
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1913
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1913
1914
|
}, "strip", z.ZodTypeAny, {
|
|
1914
1915
|
USDC: bigint | null;
|
|
1915
1916
|
SOL: bigint | null;
|
|
1916
1917
|
}, {
|
|
1917
|
-
USDC
|
|
1918
|
-
SOL
|
|
1919
|
-
}
|
|
1918
|
+
USDC: string | number | null;
|
|
1919
|
+
SOL: string | number | null;
|
|
1920
|
+
}>;
|
|
1920
1921
|
}, "strip", z.ZodTypeAny, {
|
|
1921
1922
|
Bitcoin: {
|
|
1922
1923
|
BTC: bigint | null;
|
|
@@ -1952,13 +1953,13 @@ declare const rpcResult: {
|
|
|
1952
1953
|
ETH: string | number | null;
|
|
1953
1954
|
USDC: string | number | null;
|
|
1954
1955
|
};
|
|
1956
|
+
Solana: {
|
|
1957
|
+
USDC: string | number | null;
|
|
1958
|
+
SOL: string | number | null;
|
|
1959
|
+
};
|
|
1955
1960
|
Polkadot: {
|
|
1956
1961
|
DOT: string | number | null;
|
|
1957
1962
|
};
|
|
1958
|
-
Solana?: {
|
|
1959
|
-
USDC?: string | number | null | undefined;
|
|
1960
|
-
SOL?: string | number | null | undefined;
|
|
1961
|
-
} | undefined;
|
|
1962
1963
|
}>;
|
|
1963
1964
|
egress_fees: z.ZodObject<{
|
|
1964
1965
|
Bitcoin: z.ZodObject<{
|
|
@@ -2001,16 +2002,16 @@ declare const rpcResult: {
|
|
|
2001
2002
|
ETH: string | number | null;
|
|
2002
2003
|
USDC: string | number | null;
|
|
2003
2004
|
}>;
|
|
2004
|
-
Solana: z.
|
|
2005
|
-
SOL: z.
|
|
2006
|
-
USDC: z.
|
|
2005
|
+
Solana: z.ZodObject<{
|
|
2006
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2007
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2007
2008
|
}, "strip", z.ZodTypeAny, {
|
|
2008
2009
|
USDC: bigint | null;
|
|
2009
2010
|
SOL: bigint | null;
|
|
2010
2011
|
}, {
|
|
2011
|
-
USDC
|
|
2012
|
-
SOL
|
|
2013
|
-
}
|
|
2012
|
+
USDC: string | number | null;
|
|
2013
|
+
SOL: string | number | null;
|
|
2014
|
+
}>;
|
|
2014
2015
|
}, "strip", z.ZodTypeAny, {
|
|
2015
2016
|
Bitcoin: {
|
|
2016
2017
|
BTC: bigint | null;
|
|
@@ -2046,20 +2047,20 @@ declare const rpcResult: {
|
|
|
2046
2047
|
ETH: string | number | null;
|
|
2047
2048
|
USDC: string | number | null;
|
|
2048
2049
|
};
|
|
2050
|
+
Solana: {
|
|
2051
|
+
USDC: string | number | null;
|
|
2052
|
+
SOL: string | number | null;
|
|
2053
|
+
};
|
|
2049
2054
|
Polkadot: {
|
|
2050
2055
|
DOT: string | number | null;
|
|
2051
2056
|
};
|
|
2052
|
-
Solana?: {
|
|
2053
|
-
USDC?: string | number | null | undefined;
|
|
2054
|
-
SOL?: string | number | null | undefined;
|
|
2055
|
-
} | undefined;
|
|
2056
2057
|
}>;
|
|
2057
2058
|
witness_safety_margins: z.ZodObject<{
|
|
2058
2059
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
2059
2060
|
Ethereum: z.ZodNullable<z.ZodNumber>;
|
|
2060
2061
|
Polkadot: z.ZodNullable<z.ZodNumber>;
|
|
2061
2062
|
Arbitrum: z.ZodNullable<z.ZodNumber>;
|
|
2062
|
-
Solana: z.
|
|
2063
|
+
Solana: z.ZodNullable<z.ZodNumber>;
|
|
2063
2064
|
}, "strip", z.ZodTypeAny, {
|
|
2064
2065
|
Bitcoin: number | null;
|
|
2065
2066
|
Ethereum: number | null;
|
|
@@ -2070,8 +2071,8 @@ declare const rpcResult: {
|
|
|
2070
2071
|
Bitcoin: number | null;
|
|
2071
2072
|
Ethereum: number | null;
|
|
2072
2073
|
Arbitrum: number | null;
|
|
2074
|
+
Solana: number | null;
|
|
2073
2075
|
Polkadot: number | null;
|
|
2074
|
-
Solana?: number | null | undefined;
|
|
2075
2076
|
}>;
|
|
2076
2077
|
egress_dust_limits: z.ZodObject<{
|
|
2077
2078
|
Bitcoin: z.ZodObject<{
|
|
@@ -2114,16 +2115,16 @@ declare const rpcResult: {
|
|
|
2114
2115
|
ETH: string | number;
|
|
2115
2116
|
USDC: string | number;
|
|
2116
2117
|
}>;
|
|
2117
|
-
Solana: z.
|
|
2118
|
-
SOL: z.
|
|
2119
|
-
USDC: z.
|
|
2118
|
+
Solana: z.ZodObject<{
|
|
2119
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2120
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2120
2121
|
}, "strip", z.ZodTypeAny, {
|
|
2121
2122
|
USDC: bigint;
|
|
2122
2123
|
SOL: bigint;
|
|
2123
2124
|
}, {
|
|
2124
|
-
USDC
|
|
2125
|
-
SOL
|
|
2126
|
-
}
|
|
2125
|
+
USDC: string | number;
|
|
2126
|
+
SOL: string | number;
|
|
2127
|
+
}>;
|
|
2127
2128
|
}, "strip", z.ZodTypeAny, {
|
|
2128
2129
|
Bitcoin: {
|
|
2129
2130
|
BTC: bigint;
|
|
@@ -2159,20 +2160,20 @@ declare const rpcResult: {
|
|
|
2159
2160
|
ETH: string | number;
|
|
2160
2161
|
USDC: string | number;
|
|
2161
2162
|
};
|
|
2163
|
+
Solana: {
|
|
2164
|
+
USDC: string | number;
|
|
2165
|
+
SOL: string | number;
|
|
2166
|
+
};
|
|
2162
2167
|
Polkadot: {
|
|
2163
2168
|
DOT: string | number;
|
|
2164
2169
|
};
|
|
2165
|
-
Solana?: {
|
|
2166
|
-
USDC?: string | number | undefined;
|
|
2167
|
-
SOL?: string | number | undefined;
|
|
2168
|
-
} | undefined;
|
|
2169
2170
|
}>;
|
|
2170
2171
|
channel_opening_fees: z.ZodObject<{
|
|
2171
2172
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2172
2173
|
Ethereum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2173
2174
|
Polkadot: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2174
2175
|
Arbitrum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2175
|
-
Solana: z.
|
|
2176
|
+
Solana: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2176
2177
|
}, "strip", z.ZodTypeAny, {
|
|
2177
2178
|
Bitcoin: bigint;
|
|
2178
2179
|
Ethereum: bigint;
|
|
@@ -2183,15 +2184,15 @@ declare const rpcResult: {
|
|
|
2183
2184
|
Bitcoin: string | number;
|
|
2184
2185
|
Ethereum: string | number;
|
|
2185
2186
|
Arbitrum: string | number;
|
|
2187
|
+
Solana: string | number;
|
|
2186
2188
|
Polkadot: string | number;
|
|
2187
|
-
Solana?: string | number | undefined;
|
|
2188
2189
|
}>;
|
|
2189
2190
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2190
2191
|
Bitcoin: z.ZodNumber;
|
|
2191
2192
|
Ethereum: z.ZodNumber;
|
|
2192
2193
|
Polkadot: z.ZodNumber;
|
|
2193
2194
|
Arbitrum: z.ZodNumber;
|
|
2194
|
-
Solana: z.
|
|
2195
|
+
Solana: z.ZodNumber;
|
|
2195
2196
|
}, "strip", z.ZodTypeAny, {
|
|
2196
2197
|
Bitcoin: number;
|
|
2197
2198
|
Ethereum: number;
|
|
@@ -2202,8 +2203,8 @@ declare const rpcResult: {
|
|
|
2202
2203
|
Bitcoin: number;
|
|
2203
2204
|
Ethereum: number;
|
|
2204
2205
|
Arbitrum: number;
|
|
2206
|
+
Solana: number;
|
|
2205
2207
|
Polkadot: number;
|
|
2206
|
-
Solana?: number | undefined;
|
|
2207
2208
|
}>>>;
|
|
2208
2209
|
}, "strip", z.ZodTypeAny, {
|
|
2209
2210
|
minimum_deposit_amounts: {
|
|
@@ -2330,13 +2331,13 @@ declare const rpcResult: {
|
|
|
2330
2331
|
ETH: string | number;
|
|
2331
2332
|
USDC: string | number;
|
|
2332
2333
|
};
|
|
2334
|
+
Solana: {
|
|
2335
|
+
USDC: string | number;
|
|
2336
|
+
SOL: string | number;
|
|
2337
|
+
};
|
|
2333
2338
|
Polkadot: {
|
|
2334
2339
|
DOT: string | number;
|
|
2335
2340
|
};
|
|
2336
|
-
Solana?: {
|
|
2337
|
-
USDC?: string | number | undefined;
|
|
2338
|
-
SOL?: string | number | undefined;
|
|
2339
|
-
} | undefined;
|
|
2340
2341
|
};
|
|
2341
2342
|
ingress_fees: {
|
|
2342
2343
|
Bitcoin: {
|
|
@@ -2352,13 +2353,13 @@ declare const rpcResult: {
|
|
|
2352
2353
|
ETH: string | number | null;
|
|
2353
2354
|
USDC: string | number | null;
|
|
2354
2355
|
};
|
|
2356
|
+
Solana: {
|
|
2357
|
+
USDC: string | number | null;
|
|
2358
|
+
SOL: string | number | null;
|
|
2359
|
+
};
|
|
2355
2360
|
Polkadot: {
|
|
2356
2361
|
DOT: string | number | null;
|
|
2357
2362
|
};
|
|
2358
|
-
Solana?: {
|
|
2359
|
-
USDC?: string | number | null | undefined;
|
|
2360
|
-
SOL?: string | number | null | undefined;
|
|
2361
|
-
} | undefined;
|
|
2362
2363
|
};
|
|
2363
2364
|
egress_fees: {
|
|
2364
2365
|
Bitcoin: {
|
|
@@ -2374,20 +2375,20 @@ declare const rpcResult: {
|
|
|
2374
2375
|
ETH: string | number | null;
|
|
2375
2376
|
USDC: string | number | null;
|
|
2376
2377
|
};
|
|
2378
|
+
Solana: {
|
|
2379
|
+
USDC: string | number | null;
|
|
2380
|
+
SOL: string | number | null;
|
|
2381
|
+
};
|
|
2377
2382
|
Polkadot: {
|
|
2378
2383
|
DOT: string | number | null;
|
|
2379
2384
|
};
|
|
2380
|
-
Solana?: {
|
|
2381
|
-
USDC?: string | number | null | undefined;
|
|
2382
|
-
SOL?: string | number | null | undefined;
|
|
2383
|
-
} | undefined;
|
|
2384
2385
|
};
|
|
2385
2386
|
witness_safety_margins: {
|
|
2386
2387
|
Bitcoin: number | null;
|
|
2387
2388
|
Ethereum: number | null;
|
|
2388
2389
|
Arbitrum: number | null;
|
|
2390
|
+
Solana: number | null;
|
|
2389
2391
|
Polkadot: number | null;
|
|
2390
|
-
Solana?: number | null | undefined;
|
|
2391
2392
|
};
|
|
2392
2393
|
egress_dust_limits: {
|
|
2393
2394
|
Bitcoin: {
|
|
@@ -2403,27 +2404,27 @@ declare const rpcResult: {
|
|
|
2403
2404
|
ETH: string | number;
|
|
2404
2405
|
USDC: string | number;
|
|
2405
2406
|
};
|
|
2407
|
+
Solana: {
|
|
2408
|
+
USDC: string | number;
|
|
2409
|
+
SOL: string | number;
|
|
2410
|
+
};
|
|
2406
2411
|
Polkadot: {
|
|
2407
2412
|
DOT: string | number;
|
|
2408
2413
|
};
|
|
2409
|
-
Solana?: {
|
|
2410
|
-
USDC?: string | number | undefined;
|
|
2411
|
-
SOL?: string | number | undefined;
|
|
2412
|
-
} | undefined;
|
|
2413
2414
|
};
|
|
2414
2415
|
channel_opening_fees: {
|
|
2415
2416
|
Bitcoin: string | number;
|
|
2416
2417
|
Ethereum: string | number;
|
|
2417
2418
|
Arbitrum: string | number;
|
|
2419
|
+
Solana: string | number;
|
|
2418
2420
|
Polkadot: string | number;
|
|
2419
|
-
Solana?: string | number | undefined;
|
|
2420
2421
|
};
|
|
2421
2422
|
max_swap_retry_duration_blocks?: {
|
|
2422
2423
|
Bitcoin: number;
|
|
2423
2424
|
Ethereum: number;
|
|
2424
2425
|
Arbitrum: number;
|
|
2426
|
+
Solana: number;
|
|
2425
2427
|
Polkadot: number;
|
|
2426
|
-
Solana?: number | undefined;
|
|
2427
2428
|
} | undefined;
|
|
2428
2429
|
}>, Omit<{
|
|
2429
2430
|
minimum_deposit_amounts: {
|
|
@@ -2573,13 +2574,13 @@ declare const rpcResult: {
|
|
|
2573
2574
|
ETH: string | number;
|
|
2574
2575
|
USDC: string | number;
|
|
2575
2576
|
};
|
|
2577
|
+
Solana: {
|
|
2578
|
+
USDC: string | number;
|
|
2579
|
+
SOL: string | number;
|
|
2580
|
+
};
|
|
2576
2581
|
Polkadot: {
|
|
2577
2582
|
DOT: string | number;
|
|
2578
2583
|
};
|
|
2579
|
-
Solana?: {
|
|
2580
|
-
USDC?: string | number | undefined;
|
|
2581
|
-
SOL?: string | number | undefined;
|
|
2582
|
-
} | undefined;
|
|
2583
2584
|
};
|
|
2584
2585
|
ingress_fees: {
|
|
2585
2586
|
Bitcoin: {
|
|
@@ -2595,13 +2596,13 @@ declare const rpcResult: {
|
|
|
2595
2596
|
ETH: string | number | null;
|
|
2596
2597
|
USDC: string | number | null;
|
|
2597
2598
|
};
|
|
2599
|
+
Solana: {
|
|
2600
|
+
USDC: string | number | null;
|
|
2601
|
+
SOL: string | number | null;
|
|
2602
|
+
};
|
|
2598
2603
|
Polkadot: {
|
|
2599
2604
|
DOT: string | number | null;
|
|
2600
2605
|
};
|
|
2601
|
-
Solana?: {
|
|
2602
|
-
USDC?: string | number | null | undefined;
|
|
2603
|
-
SOL?: string | number | null | undefined;
|
|
2604
|
-
} | undefined;
|
|
2605
2606
|
};
|
|
2606
2607
|
egress_fees: {
|
|
2607
2608
|
Bitcoin: {
|
|
@@ -2617,20 +2618,20 @@ declare const rpcResult: {
|
|
|
2617
2618
|
ETH: string | number | null;
|
|
2618
2619
|
USDC: string | number | null;
|
|
2619
2620
|
};
|
|
2621
|
+
Solana: {
|
|
2622
|
+
USDC: string | number | null;
|
|
2623
|
+
SOL: string | number | null;
|
|
2624
|
+
};
|
|
2620
2625
|
Polkadot: {
|
|
2621
2626
|
DOT: string | number | null;
|
|
2622
2627
|
};
|
|
2623
|
-
Solana?: {
|
|
2624
|
-
USDC?: string | number | null | undefined;
|
|
2625
|
-
SOL?: string | number | null | undefined;
|
|
2626
|
-
} | undefined;
|
|
2627
2628
|
};
|
|
2628
2629
|
witness_safety_margins: {
|
|
2629
2630
|
Bitcoin: number | null;
|
|
2630
2631
|
Ethereum: number | null;
|
|
2631
2632
|
Arbitrum: number | null;
|
|
2633
|
+
Solana: number | null;
|
|
2632
2634
|
Polkadot: number | null;
|
|
2633
|
-
Solana?: number | null | undefined;
|
|
2634
2635
|
};
|
|
2635
2636
|
egress_dust_limits: {
|
|
2636
2637
|
Bitcoin: {
|
|
@@ -2646,27 +2647,27 @@ declare const rpcResult: {
|
|
|
2646
2647
|
ETH: string | number;
|
|
2647
2648
|
USDC: string | number;
|
|
2648
2649
|
};
|
|
2650
|
+
Solana: {
|
|
2651
|
+
USDC: string | number;
|
|
2652
|
+
SOL: string | number;
|
|
2653
|
+
};
|
|
2649
2654
|
Polkadot: {
|
|
2650
2655
|
DOT: string | number;
|
|
2651
2656
|
};
|
|
2652
|
-
Solana?: {
|
|
2653
|
-
USDC?: string | number | undefined;
|
|
2654
|
-
SOL?: string | number | undefined;
|
|
2655
|
-
} | undefined;
|
|
2656
2657
|
};
|
|
2657
2658
|
channel_opening_fees: {
|
|
2658
2659
|
Bitcoin: string | number;
|
|
2659
2660
|
Ethereum: string | number;
|
|
2660
2661
|
Arbitrum: string | number;
|
|
2662
|
+
Solana: string | number;
|
|
2661
2663
|
Polkadot: string | number;
|
|
2662
|
-
Solana?: string | number | undefined;
|
|
2663
2664
|
};
|
|
2664
2665
|
max_swap_retry_duration_blocks?: {
|
|
2665
2666
|
Bitcoin: number;
|
|
2666
2667
|
Ethereum: number;
|
|
2667
2668
|
Arbitrum: number;
|
|
2669
|
+
Solana: number;
|
|
2668
2670
|
Polkadot: number;
|
|
2669
|
-
Solana?: number | undefined;
|
|
2670
2671
|
} | undefined;
|
|
2671
2672
|
}>;
|
|
2672
2673
|
swapping: z.ZodObject<{
|
|
@@ -2711,16 +2712,16 @@ declare const rpcResult: {
|
|
|
2711
2712
|
ETH: string | number | null;
|
|
2712
2713
|
USDC: string | number | null;
|
|
2713
2714
|
}>;
|
|
2714
|
-
Solana: z.
|
|
2715
|
-
SOL: z.
|
|
2716
|
-
USDC: z.
|
|
2715
|
+
Solana: z.ZodObject<{
|
|
2716
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2717
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2717
2718
|
}, "strip", z.ZodTypeAny, {
|
|
2718
2719
|
USDC: bigint | null;
|
|
2719
2720
|
SOL: bigint | null;
|
|
2720
2721
|
}, {
|
|
2721
|
-
USDC
|
|
2722
|
-
SOL
|
|
2723
|
-
}
|
|
2722
|
+
USDC: string | number | null;
|
|
2723
|
+
SOL: string | number | null;
|
|
2724
|
+
}>;
|
|
2724
2725
|
}, "strip", z.ZodTypeAny, {
|
|
2725
2726
|
Bitcoin: {
|
|
2726
2727
|
BTC: bigint | null;
|
|
@@ -2756,13 +2757,13 @@ declare const rpcResult: {
|
|
|
2756
2757
|
ETH: string | number | null;
|
|
2757
2758
|
USDC: string | number | null;
|
|
2758
2759
|
};
|
|
2760
|
+
Solana: {
|
|
2761
|
+
USDC: string | number | null;
|
|
2762
|
+
SOL: string | number | null;
|
|
2763
|
+
};
|
|
2759
2764
|
Polkadot: {
|
|
2760
2765
|
DOT: string | number | null;
|
|
2761
2766
|
};
|
|
2762
|
-
Solana?: {
|
|
2763
|
-
USDC?: string | number | null | undefined;
|
|
2764
|
-
SOL?: string | number | null | undefined;
|
|
2765
|
-
} | undefined;
|
|
2766
2767
|
}>;
|
|
2767
2768
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
2768
2769
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2804,13 +2805,13 @@ declare const rpcResult: {
|
|
|
2804
2805
|
ETH: string | number | null;
|
|
2805
2806
|
USDC: string | number | null;
|
|
2806
2807
|
};
|
|
2808
|
+
Solana: {
|
|
2809
|
+
USDC: string | number | null;
|
|
2810
|
+
SOL: string | number | null;
|
|
2811
|
+
};
|
|
2807
2812
|
Polkadot: {
|
|
2808
2813
|
DOT: string | number | null;
|
|
2809
2814
|
};
|
|
2810
|
-
Solana?: {
|
|
2811
|
-
USDC?: string | number | null | undefined;
|
|
2812
|
-
SOL?: string | number | null | undefined;
|
|
2813
|
-
} | undefined;
|
|
2814
2815
|
};
|
|
2815
2816
|
network_fee_hundredth_pips: number;
|
|
2816
2817
|
}>;
|
|
@@ -4522,8 +4523,8 @@ declare const rpcResult: {
|
|
|
4522
4523
|
};
|
|
4523
4524
|
} | null;
|
|
4524
4525
|
}>;
|
|
4525
|
-
Solana: z.
|
|
4526
|
-
SOL: z.
|
|
4526
|
+
Solana: z.ZodObject<{
|
|
4527
|
+
SOL: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
4527
4528
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
4528
4529
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
4529
4530
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -4691,8 +4692,8 @@ declare const rpcResult: {
|
|
|
4691
4692
|
chain: "Ethereum";
|
|
4692
4693
|
asset: "USDC";
|
|
4693
4694
|
};
|
|
4694
|
-
} | null
|
|
4695
|
-
USDC: z.
|
|
4695
|
+
} | null>;
|
|
4696
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
4696
4697
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
4697
4698
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
4698
4699
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -4860,7 +4861,7 @@ declare const rpcResult: {
|
|
|
4860
4861
|
chain: "Ethereum";
|
|
4861
4862
|
asset: "USDC";
|
|
4862
4863
|
};
|
|
4863
|
-
} | null
|
|
4864
|
+
} | null>;
|
|
4864
4865
|
}, "strip", z.ZodTypeAny, {
|
|
4865
4866
|
USDC: {
|
|
4866
4867
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -4957,7 +4958,7 @@ declare const rpcResult: {
|
|
|
4957
4958
|
};
|
|
4958
4959
|
};
|
|
4959
4960
|
}, {
|
|
4960
|
-
USDC
|
|
4961
|
+
USDC: {
|
|
4961
4962
|
limit_order_fee_hundredth_pips: number;
|
|
4962
4963
|
range_order_fee_hundredth_pips: number;
|
|
4963
4964
|
range_order_total_fees_earned: {
|
|
@@ -4980,8 +4981,8 @@ declare const rpcResult: {
|
|
|
4980
4981
|
chain: "Ethereum";
|
|
4981
4982
|
asset: "USDC";
|
|
4982
4983
|
};
|
|
4983
|
-
} | null
|
|
4984
|
-
SOL
|
|
4984
|
+
} | null;
|
|
4985
|
+
SOL: {
|
|
4985
4986
|
limit_order_fee_hundredth_pips: number;
|
|
4986
4987
|
range_order_fee_hundredth_pips: number;
|
|
4987
4988
|
range_order_total_fees_earned: {
|
|
@@ -5004,8 +5005,8 @@ declare const rpcResult: {
|
|
|
5004
5005
|
chain: "Ethereum";
|
|
5005
5006
|
asset: "USDC";
|
|
5006
5007
|
};
|
|
5007
|
-
} | null
|
|
5008
|
-
}
|
|
5008
|
+
} | null;
|
|
5009
|
+
}>;
|
|
5009
5010
|
}, "strip", z.ZodTypeAny, {
|
|
5010
5011
|
Bitcoin: {
|
|
5011
5012
|
BTC: {
|
|
@@ -5591,8 +5592,8 @@ declare const rpcResult: {
|
|
|
5591
5592
|
};
|
|
5592
5593
|
} | null;
|
|
5593
5594
|
};
|
|
5594
|
-
|
|
5595
|
-
|
|
5595
|
+
Solana: {
|
|
5596
|
+
USDC: {
|
|
5596
5597
|
limit_order_fee_hundredth_pips: number;
|
|
5597
5598
|
range_order_fee_hundredth_pips: number;
|
|
5598
5599
|
range_order_total_fees_earned: {
|
|
@@ -5616,9 +5617,7 @@ declare const rpcResult: {
|
|
|
5616
5617
|
asset: "USDC";
|
|
5617
5618
|
};
|
|
5618
5619
|
} | null;
|
|
5619
|
-
|
|
5620
|
-
Solana?: {
|
|
5621
|
-
USDC?: {
|
|
5620
|
+
SOL: {
|
|
5622
5621
|
limit_order_fee_hundredth_pips: number;
|
|
5623
5622
|
range_order_fee_hundredth_pips: number;
|
|
5624
5623
|
range_order_total_fees_earned: {
|
|
@@ -5641,8 +5640,10 @@ declare const rpcResult: {
|
|
|
5641
5640
|
chain: "Ethereum";
|
|
5642
5641
|
asset: "USDC";
|
|
5643
5642
|
};
|
|
5644
|
-
} | null
|
|
5645
|
-
|
|
5643
|
+
} | null;
|
|
5644
|
+
};
|
|
5645
|
+
Polkadot: {
|
|
5646
|
+
DOT: {
|
|
5646
5647
|
limit_order_fee_hundredth_pips: number;
|
|
5647
5648
|
range_order_fee_hundredth_pips: number;
|
|
5648
5649
|
range_order_total_fees_earned: {
|
|
@@ -5665,8 +5666,8 @@ declare const rpcResult: {
|
|
|
5665
5666
|
chain: "Ethereum";
|
|
5666
5667
|
asset: "USDC";
|
|
5667
5668
|
};
|
|
5668
|
-
} | null
|
|
5669
|
-
}
|
|
5669
|
+
} | null;
|
|
5670
|
+
};
|
|
5670
5671
|
}>;
|
|
5671
5672
|
}, "strip", z.ZodTypeAny, {
|
|
5672
5673
|
fees: {
|
|
@@ -6256,8 +6257,8 @@ declare const rpcResult: {
|
|
|
6256
6257
|
};
|
|
6257
6258
|
} | null;
|
|
6258
6259
|
};
|
|
6259
|
-
|
|
6260
|
-
|
|
6260
|
+
Solana: {
|
|
6261
|
+
USDC: {
|
|
6261
6262
|
limit_order_fee_hundredth_pips: number;
|
|
6262
6263
|
range_order_fee_hundredth_pips: number;
|
|
6263
6264
|
range_order_total_fees_earned: {
|
|
@@ -6281,9 +6282,7 @@ declare const rpcResult: {
|
|
|
6281
6282
|
asset: "USDC";
|
|
6282
6283
|
};
|
|
6283
6284
|
} | null;
|
|
6284
|
-
|
|
6285
|
-
Solana?: {
|
|
6286
|
-
USDC?: {
|
|
6285
|
+
SOL: {
|
|
6287
6286
|
limit_order_fee_hundredth_pips: number;
|
|
6288
6287
|
range_order_fee_hundredth_pips: number;
|
|
6289
6288
|
range_order_total_fees_earned: {
|
|
@@ -6306,8 +6305,10 @@ declare const rpcResult: {
|
|
|
6306
6305
|
chain: "Ethereum";
|
|
6307
6306
|
asset: "USDC";
|
|
6308
6307
|
};
|
|
6309
|
-
} | null
|
|
6310
|
-
|
|
6308
|
+
} | null;
|
|
6309
|
+
};
|
|
6310
|
+
Polkadot: {
|
|
6311
|
+
DOT: {
|
|
6311
6312
|
limit_order_fee_hundredth_pips: number;
|
|
6312
6313
|
range_order_fee_hundredth_pips: number;
|
|
6313
6314
|
range_order_total_fees_earned: {
|
|
@@ -6330,8 +6331,8 @@ declare const rpcResult: {
|
|
|
6330
6331
|
chain: "Ethereum";
|
|
6331
6332
|
asset: "USDC";
|
|
6332
6333
|
};
|
|
6333
|
-
} | null
|
|
6334
|
-
}
|
|
6334
|
+
} | null;
|
|
6335
|
+
};
|
|
6335
6336
|
};
|
|
6336
6337
|
}>;
|
|
6337
6338
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6951,13 +6952,13 @@ declare const rpcResult: {
|
|
|
6951
6952
|
ETH: string | number;
|
|
6952
6953
|
USDC: string | number;
|
|
6953
6954
|
};
|
|
6955
|
+
Solana: {
|
|
6956
|
+
USDC: string | number;
|
|
6957
|
+
SOL: string | number;
|
|
6958
|
+
};
|
|
6954
6959
|
Polkadot: {
|
|
6955
6960
|
DOT: string | number;
|
|
6956
6961
|
};
|
|
6957
|
-
Solana?: {
|
|
6958
|
-
USDC?: string | number | undefined;
|
|
6959
|
-
SOL?: string | number | undefined;
|
|
6960
|
-
} | undefined;
|
|
6961
6962
|
};
|
|
6962
6963
|
ingress_fees: {
|
|
6963
6964
|
Bitcoin: {
|
|
@@ -6973,13 +6974,13 @@ declare const rpcResult: {
|
|
|
6973
6974
|
ETH: string | number | null;
|
|
6974
6975
|
USDC: string | number | null;
|
|
6975
6976
|
};
|
|
6977
|
+
Solana: {
|
|
6978
|
+
USDC: string | number | null;
|
|
6979
|
+
SOL: string | number | null;
|
|
6980
|
+
};
|
|
6976
6981
|
Polkadot: {
|
|
6977
6982
|
DOT: string | number | null;
|
|
6978
6983
|
};
|
|
6979
|
-
Solana?: {
|
|
6980
|
-
USDC?: string | number | null | undefined;
|
|
6981
|
-
SOL?: string | number | null | undefined;
|
|
6982
|
-
} | undefined;
|
|
6983
6984
|
};
|
|
6984
6985
|
egress_fees: {
|
|
6985
6986
|
Bitcoin: {
|
|
@@ -6995,20 +6996,20 @@ declare const rpcResult: {
|
|
|
6995
6996
|
ETH: string | number | null;
|
|
6996
6997
|
USDC: string | number | null;
|
|
6997
6998
|
};
|
|
6999
|
+
Solana: {
|
|
7000
|
+
USDC: string | number | null;
|
|
7001
|
+
SOL: string | number | null;
|
|
7002
|
+
};
|
|
6998
7003
|
Polkadot: {
|
|
6999
7004
|
DOT: string | number | null;
|
|
7000
7005
|
};
|
|
7001
|
-
Solana?: {
|
|
7002
|
-
USDC?: string | number | null | undefined;
|
|
7003
|
-
SOL?: string | number | null | undefined;
|
|
7004
|
-
} | undefined;
|
|
7005
7006
|
};
|
|
7006
7007
|
witness_safety_margins: {
|
|
7007
7008
|
Bitcoin: number | null;
|
|
7008
7009
|
Ethereum: number | null;
|
|
7009
7010
|
Arbitrum: number | null;
|
|
7011
|
+
Solana: number | null;
|
|
7010
7012
|
Polkadot: number | null;
|
|
7011
|
-
Solana?: number | null | undefined;
|
|
7012
7013
|
};
|
|
7013
7014
|
egress_dust_limits: {
|
|
7014
7015
|
Bitcoin: {
|
|
@@ -7024,27 +7025,27 @@ declare const rpcResult: {
|
|
|
7024
7025
|
ETH: string | number;
|
|
7025
7026
|
USDC: string | number;
|
|
7026
7027
|
};
|
|
7028
|
+
Solana: {
|
|
7029
|
+
USDC: string | number;
|
|
7030
|
+
SOL: string | number;
|
|
7031
|
+
};
|
|
7027
7032
|
Polkadot: {
|
|
7028
7033
|
DOT: string | number;
|
|
7029
7034
|
};
|
|
7030
|
-
Solana?: {
|
|
7031
|
-
USDC?: string | number | undefined;
|
|
7032
|
-
SOL?: string | number | undefined;
|
|
7033
|
-
} | undefined;
|
|
7034
7035
|
};
|
|
7035
7036
|
channel_opening_fees: {
|
|
7036
7037
|
Bitcoin: string | number;
|
|
7037
7038
|
Ethereum: string | number;
|
|
7038
7039
|
Arbitrum: string | number;
|
|
7040
|
+
Solana: string | number;
|
|
7039
7041
|
Polkadot: string | number;
|
|
7040
|
-
Solana?: string | number | undefined;
|
|
7041
7042
|
};
|
|
7042
7043
|
max_swap_retry_duration_blocks?: {
|
|
7043
7044
|
Bitcoin: number;
|
|
7044
7045
|
Ethereum: number;
|
|
7045
7046
|
Arbitrum: number;
|
|
7047
|
+
Solana: number;
|
|
7046
7048
|
Polkadot: number;
|
|
7047
|
-
Solana?: number | undefined;
|
|
7048
7049
|
} | undefined;
|
|
7049
7050
|
};
|
|
7050
7051
|
swapping: {
|
|
@@ -7062,13 +7063,13 @@ declare const rpcResult: {
|
|
|
7062
7063
|
ETH: string | number | null;
|
|
7063
7064
|
USDC: string | number | null;
|
|
7064
7065
|
};
|
|
7066
|
+
Solana: {
|
|
7067
|
+
USDC: string | number | null;
|
|
7068
|
+
SOL: string | number | null;
|
|
7069
|
+
};
|
|
7065
7070
|
Polkadot: {
|
|
7066
7071
|
DOT: string | number | null;
|
|
7067
7072
|
};
|
|
7068
|
-
Solana?: {
|
|
7069
|
-
USDC?: string | number | null | undefined;
|
|
7070
|
-
SOL?: string | number | null | undefined;
|
|
7071
|
-
} | undefined;
|
|
7072
7073
|
};
|
|
7073
7074
|
network_fee_hundredth_pips: number;
|
|
7074
7075
|
};
|
|
@@ -7228,8 +7229,8 @@ declare const rpcResult: {
|
|
|
7228
7229
|
};
|
|
7229
7230
|
} | null;
|
|
7230
7231
|
};
|
|
7231
|
-
|
|
7232
|
-
|
|
7232
|
+
Solana: {
|
|
7233
|
+
USDC: {
|
|
7233
7234
|
limit_order_fee_hundredth_pips: number;
|
|
7234
7235
|
range_order_fee_hundredth_pips: number;
|
|
7235
7236
|
range_order_total_fees_earned: {
|
|
@@ -7253,9 +7254,7 @@ declare const rpcResult: {
|
|
|
7253
7254
|
asset: "USDC";
|
|
7254
7255
|
};
|
|
7255
7256
|
} | null;
|
|
7256
|
-
|
|
7257
|
-
Solana?: {
|
|
7258
|
-
USDC?: {
|
|
7257
|
+
SOL: {
|
|
7259
7258
|
limit_order_fee_hundredth_pips: number;
|
|
7260
7259
|
range_order_fee_hundredth_pips: number;
|
|
7261
7260
|
range_order_total_fees_earned: {
|
|
@@ -7278,8 +7277,10 @@ declare const rpcResult: {
|
|
|
7278
7277
|
chain: "Ethereum";
|
|
7279
7278
|
asset: "USDC";
|
|
7280
7279
|
};
|
|
7281
|
-
} | null
|
|
7282
|
-
|
|
7280
|
+
} | null;
|
|
7281
|
+
};
|
|
7282
|
+
Polkadot: {
|
|
7283
|
+
DOT: {
|
|
7283
7284
|
limit_order_fee_hundredth_pips: number;
|
|
7284
7285
|
range_order_fee_hundredth_pips: number;
|
|
7285
7286
|
range_order_total_fees_earned: {
|
|
@@ -7302,8 +7303,8 @@ declare const rpcResult: {
|
|
|
7302
7303
|
chain: "Ethereum";
|
|
7303
7304
|
asset: "USDC";
|
|
7304
7305
|
};
|
|
7305
|
-
} | null
|
|
7306
|
-
}
|
|
7306
|
+
} | null;
|
|
7307
|
+
};
|
|
7307
7308
|
};
|
|
7308
7309
|
};
|
|
7309
7310
|
}>;
|
|
@@ -7359,16 +7360,16 @@ declare const rpcResult: {
|
|
|
7359
7360
|
ETH: string | number;
|
|
7360
7361
|
USDC: string | number;
|
|
7361
7362
|
}>;
|
|
7362
|
-
Solana: z.
|
|
7363
|
-
SOL: z.
|
|
7364
|
-
USDC: z.
|
|
7363
|
+
Solana: z.ZodObject<{
|
|
7364
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7365
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7365
7366
|
}, "strip", z.ZodTypeAny, {
|
|
7366
7367
|
USDC: bigint;
|
|
7367
7368
|
SOL: bigint;
|
|
7368
7369
|
}, {
|
|
7369
|
-
USDC
|
|
7370
|
-
SOL
|
|
7371
|
-
}
|
|
7370
|
+
USDC: string | number;
|
|
7371
|
+
SOL: string | number;
|
|
7372
|
+
}>;
|
|
7372
7373
|
}, "strip", z.ZodTypeAny, {
|
|
7373
7374
|
Bitcoin: {
|
|
7374
7375
|
BTC: bigint;
|
|
@@ -7404,13 +7405,13 @@ declare const rpcResult: {
|
|
|
7404
7405
|
ETH: string | number;
|
|
7405
7406
|
USDC: string | number;
|
|
7406
7407
|
};
|
|
7408
|
+
Solana: {
|
|
7409
|
+
USDC: string | number;
|
|
7410
|
+
SOL: string | number;
|
|
7411
|
+
};
|
|
7407
7412
|
Polkadot: {
|
|
7408
7413
|
DOT: string | number;
|
|
7409
7414
|
};
|
|
7410
|
-
Solana?: {
|
|
7411
|
-
USDC?: string | number | undefined;
|
|
7412
|
-
SOL?: string | number | undefined;
|
|
7413
|
-
} | undefined;
|
|
7414
7415
|
}>;
|
|
7415
7416
|
ingress_fees: z.ZodObject<{
|
|
7416
7417
|
Bitcoin: z.ZodObject<{
|
|
@@ -7453,16 +7454,16 @@ declare const rpcResult: {
|
|
|
7453
7454
|
ETH: string | number | null;
|
|
7454
7455
|
USDC: string | number | null;
|
|
7455
7456
|
}>;
|
|
7456
|
-
Solana: z.
|
|
7457
|
-
SOL: z.
|
|
7458
|
-
USDC: z.
|
|
7457
|
+
Solana: z.ZodObject<{
|
|
7458
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7459
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7459
7460
|
}, "strip", z.ZodTypeAny, {
|
|
7460
7461
|
USDC: bigint | null;
|
|
7461
7462
|
SOL: bigint | null;
|
|
7462
7463
|
}, {
|
|
7463
|
-
USDC
|
|
7464
|
-
SOL
|
|
7465
|
-
}
|
|
7464
|
+
USDC: string | number | null;
|
|
7465
|
+
SOL: string | number | null;
|
|
7466
|
+
}>;
|
|
7466
7467
|
}, "strip", z.ZodTypeAny, {
|
|
7467
7468
|
Bitcoin: {
|
|
7468
7469
|
BTC: bigint | null;
|
|
@@ -7498,13 +7499,13 @@ declare const rpcResult: {
|
|
|
7498
7499
|
ETH: string | number | null;
|
|
7499
7500
|
USDC: string | number | null;
|
|
7500
7501
|
};
|
|
7502
|
+
Solana: {
|
|
7503
|
+
USDC: string | number | null;
|
|
7504
|
+
SOL: string | number | null;
|
|
7505
|
+
};
|
|
7501
7506
|
Polkadot: {
|
|
7502
7507
|
DOT: string | number | null;
|
|
7503
7508
|
};
|
|
7504
|
-
Solana?: {
|
|
7505
|
-
USDC?: string | number | null | undefined;
|
|
7506
|
-
SOL?: string | number | null | undefined;
|
|
7507
|
-
} | undefined;
|
|
7508
7509
|
}>;
|
|
7509
7510
|
egress_fees: z.ZodObject<{
|
|
7510
7511
|
Bitcoin: z.ZodObject<{
|
|
@@ -7547,16 +7548,16 @@ declare const rpcResult: {
|
|
|
7547
7548
|
ETH: string | number | null;
|
|
7548
7549
|
USDC: string | number | null;
|
|
7549
7550
|
}>;
|
|
7550
|
-
Solana: z.
|
|
7551
|
-
SOL: z.
|
|
7552
|
-
USDC: z.
|
|
7551
|
+
Solana: z.ZodObject<{
|
|
7552
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7553
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7553
7554
|
}, "strip", z.ZodTypeAny, {
|
|
7554
7555
|
USDC: bigint | null;
|
|
7555
7556
|
SOL: bigint | null;
|
|
7556
7557
|
}, {
|
|
7557
|
-
USDC
|
|
7558
|
-
SOL
|
|
7559
|
-
}
|
|
7558
|
+
USDC: string | number | null;
|
|
7559
|
+
SOL: string | number | null;
|
|
7560
|
+
}>;
|
|
7560
7561
|
}, "strip", z.ZodTypeAny, {
|
|
7561
7562
|
Bitcoin: {
|
|
7562
7563
|
BTC: bigint | null;
|
|
@@ -7592,20 +7593,20 @@ declare const rpcResult: {
|
|
|
7592
7593
|
ETH: string | number | null;
|
|
7593
7594
|
USDC: string | number | null;
|
|
7594
7595
|
};
|
|
7596
|
+
Solana: {
|
|
7597
|
+
USDC: string | number | null;
|
|
7598
|
+
SOL: string | number | null;
|
|
7599
|
+
};
|
|
7595
7600
|
Polkadot: {
|
|
7596
7601
|
DOT: string | number | null;
|
|
7597
7602
|
};
|
|
7598
|
-
Solana?: {
|
|
7599
|
-
USDC?: string | number | null | undefined;
|
|
7600
|
-
SOL?: string | number | null | undefined;
|
|
7601
|
-
} | undefined;
|
|
7602
7603
|
}>;
|
|
7603
7604
|
witness_safety_margins: z.ZodObject<{
|
|
7604
7605
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
7605
7606
|
Ethereum: z.ZodNullable<z.ZodNumber>;
|
|
7606
7607
|
Polkadot: z.ZodNullable<z.ZodNumber>;
|
|
7607
7608
|
Arbitrum: z.ZodNullable<z.ZodNumber>;
|
|
7608
|
-
Solana: z.
|
|
7609
|
+
Solana: z.ZodNullable<z.ZodNumber>;
|
|
7609
7610
|
}, "strip", z.ZodTypeAny, {
|
|
7610
7611
|
Bitcoin: number | null;
|
|
7611
7612
|
Ethereum: number | null;
|
|
@@ -7616,8 +7617,8 @@ declare const rpcResult: {
|
|
|
7616
7617
|
Bitcoin: number | null;
|
|
7617
7618
|
Ethereum: number | null;
|
|
7618
7619
|
Arbitrum: number | null;
|
|
7620
|
+
Solana: number | null;
|
|
7619
7621
|
Polkadot: number | null;
|
|
7620
|
-
Solana?: number | null | undefined;
|
|
7621
7622
|
}>;
|
|
7622
7623
|
egress_dust_limits: z.ZodObject<{
|
|
7623
7624
|
Bitcoin: z.ZodObject<{
|
|
@@ -7660,16 +7661,16 @@ declare const rpcResult: {
|
|
|
7660
7661
|
ETH: string | number;
|
|
7661
7662
|
USDC: string | number;
|
|
7662
7663
|
}>;
|
|
7663
|
-
Solana: z.
|
|
7664
|
-
SOL: z.
|
|
7665
|
-
USDC: z.
|
|
7664
|
+
Solana: z.ZodObject<{
|
|
7665
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7666
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7666
7667
|
}, "strip", z.ZodTypeAny, {
|
|
7667
7668
|
USDC: bigint;
|
|
7668
7669
|
SOL: bigint;
|
|
7669
7670
|
}, {
|
|
7670
|
-
USDC
|
|
7671
|
-
SOL
|
|
7672
|
-
}
|
|
7671
|
+
USDC: string | number;
|
|
7672
|
+
SOL: string | number;
|
|
7673
|
+
}>;
|
|
7673
7674
|
}, "strip", z.ZodTypeAny, {
|
|
7674
7675
|
Bitcoin: {
|
|
7675
7676
|
BTC: bigint;
|
|
@@ -7705,20 +7706,20 @@ declare const rpcResult: {
|
|
|
7705
7706
|
ETH: string | number;
|
|
7706
7707
|
USDC: string | number;
|
|
7707
7708
|
};
|
|
7709
|
+
Solana: {
|
|
7710
|
+
USDC: string | number;
|
|
7711
|
+
SOL: string | number;
|
|
7712
|
+
};
|
|
7708
7713
|
Polkadot: {
|
|
7709
7714
|
DOT: string | number;
|
|
7710
7715
|
};
|
|
7711
|
-
Solana?: {
|
|
7712
|
-
USDC?: string | number | undefined;
|
|
7713
|
-
SOL?: string | number | undefined;
|
|
7714
|
-
} | undefined;
|
|
7715
7716
|
}>;
|
|
7716
7717
|
channel_opening_fees: z.ZodObject<{
|
|
7717
7718
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7718
7719
|
Ethereum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7719
7720
|
Polkadot: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7720
7721
|
Arbitrum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7721
|
-
Solana: z.
|
|
7722
|
+
Solana: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7722
7723
|
}, "strip", z.ZodTypeAny, {
|
|
7723
7724
|
Bitcoin: bigint;
|
|
7724
7725
|
Ethereum: bigint;
|
|
@@ -7729,15 +7730,15 @@ declare const rpcResult: {
|
|
|
7729
7730
|
Bitcoin: string | number;
|
|
7730
7731
|
Ethereum: string | number;
|
|
7731
7732
|
Arbitrum: string | number;
|
|
7733
|
+
Solana: string | number;
|
|
7732
7734
|
Polkadot: string | number;
|
|
7733
|
-
Solana?: string | number | undefined;
|
|
7734
7735
|
}>;
|
|
7735
7736
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
7736
7737
|
Bitcoin: z.ZodNumber;
|
|
7737
7738
|
Ethereum: z.ZodNumber;
|
|
7738
7739
|
Polkadot: z.ZodNumber;
|
|
7739
7740
|
Arbitrum: z.ZodNumber;
|
|
7740
|
-
Solana: z.
|
|
7741
|
+
Solana: z.ZodNumber;
|
|
7741
7742
|
}, "strip", z.ZodTypeAny, {
|
|
7742
7743
|
Bitcoin: number;
|
|
7743
7744
|
Ethereum: number;
|
|
@@ -7748,8 +7749,8 @@ declare const rpcResult: {
|
|
|
7748
7749
|
Bitcoin: number;
|
|
7749
7750
|
Ethereum: number;
|
|
7750
7751
|
Arbitrum: number;
|
|
7752
|
+
Solana: number;
|
|
7751
7753
|
Polkadot: number;
|
|
7752
|
-
Solana?: number | undefined;
|
|
7753
7754
|
}>>>;
|
|
7754
7755
|
}, "strip", z.ZodTypeAny, {
|
|
7755
7756
|
minimum_deposit_amounts: {
|
|
@@ -7876,13 +7877,13 @@ declare const rpcResult: {
|
|
|
7876
7877
|
ETH: string | number;
|
|
7877
7878
|
USDC: string | number;
|
|
7878
7879
|
};
|
|
7880
|
+
Solana: {
|
|
7881
|
+
USDC: string | number;
|
|
7882
|
+
SOL: string | number;
|
|
7883
|
+
};
|
|
7879
7884
|
Polkadot: {
|
|
7880
7885
|
DOT: string | number;
|
|
7881
7886
|
};
|
|
7882
|
-
Solana?: {
|
|
7883
|
-
USDC?: string | number | undefined;
|
|
7884
|
-
SOL?: string | number | undefined;
|
|
7885
|
-
} | undefined;
|
|
7886
7887
|
};
|
|
7887
7888
|
ingress_fees: {
|
|
7888
7889
|
Bitcoin: {
|
|
@@ -7898,13 +7899,13 @@ declare const rpcResult: {
|
|
|
7898
7899
|
ETH: string | number | null;
|
|
7899
7900
|
USDC: string | number | null;
|
|
7900
7901
|
};
|
|
7902
|
+
Solana: {
|
|
7903
|
+
USDC: string | number | null;
|
|
7904
|
+
SOL: string | number | null;
|
|
7905
|
+
};
|
|
7901
7906
|
Polkadot: {
|
|
7902
7907
|
DOT: string | number | null;
|
|
7903
7908
|
};
|
|
7904
|
-
Solana?: {
|
|
7905
|
-
USDC?: string | number | null | undefined;
|
|
7906
|
-
SOL?: string | number | null | undefined;
|
|
7907
|
-
} | undefined;
|
|
7908
7909
|
};
|
|
7909
7910
|
egress_fees: {
|
|
7910
7911
|
Bitcoin: {
|
|
@@ -7920,20 +7921,20 @@ declare const rpcResult: {
|
|
|
7920
7921
|
ETH: string | number | null;
|
|
7921
7922
|
USDC: string | number | null;
|
|
7922
7923
|
};
|
|
7924
|
+
Solana: {
|
|
7925
|
+
USDC: string | number | null;
|
|
7926
|
+
SOL: string | number | null;
|
|
7927
|
+
};
|
|
7923
7928
|
Polkadot: {
|
|
7924
7929
|
DOT: string | number | null;
|
|
7925
7930
|
};
|
|
7926
|
-
Solana?: {
|
|
7927
|
-
USDC?: string | number | null | undefined;
|
|
7928
|
-
SOL?: string | number | null | undefined;
|
|
7929
|
-
} | undefined;
|
|
7930
7931
|
};
|
|
7931
7932
|
witness_safety_margins: {
|
|
7932
7933
|
Bitcoin: number | null;
|
|
7933
7934
|
Ethereum: number | null;
|
|
7934
7935
|
Arbitrum: number | null;
|
|
7936
|
+
Solana: number | null;
|
|
7935
7937
|
Polkadot: number | null;
|
|
7936
|
-
Solana?: number | null | undefined;
|
|
7937
7938
|
};
|
|
7938
7939
|
egress_dust_limits: {
|
|
7939
7940
|
Bitcoin: {
|
|
@@ -7949,27 +7950,27 @@ declare const rpcResult: {
|
|
|
7949
7950
|
ETH: string | number;
|
|
7950
7951
|
USDC: string | number;
|
|
7951
7952
|
};
|
|
7953
|
+
Solana: {
|
|
7954
|
+
USDC: string | number;
|
|
7955
|
+
SOL: string | number;
|
|
7956
|
+
};
|
|
7952
7957
|
Polkadot: {
|
|
7953
7958
|
DOT: string | number;
|
|
7954
7959
|
};
|
|
7955
|
-
Solana?: {
|
|
7956
|
-
USDC?: string | number | undefined;
|
|
7957
|
-
SOL?: string | number | undefined;
|
|
7958
|
-
} | undefined;
|
|
7959
7960
|
};
|
|
7960
7961
|
channel_opening_fees: {
|
|
7961
7962
|
Bitcoin: string | number;
|
|
7962
7963
|
Ethereum: string | number;
|
|
7963
7964
|
Arbitrum: string | number;
|
|
7965
|
+
Solana: string | number;
|
|
7964
7966
|
Polkadot: string | number;
|
|
7965
|
-
Solana?: string | number | undefined;
|
|
7966
7967
|
};
|
|
7967
7968
|
max_swap_retry_duration_blocks?: {
|
|
7968
7969
|
Bitcoin: number;
|
|
7969
7970
|
Ethereum: number;
|
|
7970
7971
|
Arbitrum: number;
|
|
7972
|
+
Solana: number;
|
|
7971
7973
|
Polkadot: number;
|
|
7972
|
-
Solana?: number | undefined;
|
|
7973
7974
|
} | undefined;
|
|
7974
7975
|
}>, Omit<{
|
|
7975
7976
|
minimum_deposit_amounts: {
|
|
@@ -8119,13 +8120,13 @@ declare const rpcResult: {
|
|
|
8119
8120
|
ETH: string | number;
|
|
8120
8121
|
USDC: string | number;
|
|
8121
8122
|
};
|
|
8123
|
+
Solana: {
|
|
8124
|
+
USDC: string | number;
|
|
8125
|
+
SOL: string | number;
|
|
8126
|
+
};
|
|
8122
8127
|
Polkadot: {
|
|
8123
8128
|
DOT: string | number;
|
|
8124
8129
|
};
|
|
8125
|
-
Solana?: {
|
|
8126
|
-
USDC?: string | number | undefined;
|
|
8127
|
-
SOL?: string | number | undefined;
|
|
8128
|
-
} | undefined;
|
|
8129
8130
|
};
|
|
8130
8131
|
ingress_fees: {
|
|
8131
8132
|
Bitcoin: {
|
|
@@ -8141,13 +8142,13 @@ declare const rpcResult: {
|
|
|
8141
8142
|
ETH: string | number | null;
|
|
8142
8143
|
USDC: string | number | null;
|
|
8143
8144
|
};
|
|
8145
|
+
Solana: {
|
|
8146
|
+
USDC: string | number | null;
|
|
8147
|
+
SOL: string | number | null;
|
|
8148
|
+
};
|
|
8144
8149
|
Polkadot: {
|
|
8145
8150
|
DOT: string | number | null;
|
|
8146
8151
|
};
|
|
8147
|
-
Solana?: {
|
|
8148
|
-
USDC?: string | number | null | undefined;
|
|
8149
|
-
SOL?: string | number | null | undefined;
|
|
8150
|
-
} | undefined;
|
|
8151
8152
|
};
|
|
8152
8153
|
egress_fees: {
|
|
8153
8154
|
Bitcoin: {
|
|
@@ -8163,20 +8164,20 @@ declare const rpcResult: {
|
|
|
8163
8164
|
ETH: string | number | null;
|
|
8164
8165
|
USDC: string | number | null;
|
|
8165
8166
|
};
|
|
8167
|
+
Solana: {
|
|
8168
|
+
USDC: string | number | null;
|
|
8169
|
+
SOL: string | number | null;
|
|
8170
|
+
};
|
|
8166
8171
|
Polkadot: {
|
|
8167
8172
|
DOT: string | number | null;
|
|
8168
8173
|
};
|
|
8169
|
-
Solana?: {
|
|
8170
|
-
USDC?: string | number | null | undefined;
|
|
8171
|
-
SOL?: string | number | null | undefined;
|
|
8172
|
-
} | undefined;
|
|
8173
8174
|
};
|
|
8174
8175
|
witness_safety_margins: {
|
|
8175
8176
|
Bitcoin: number | null;
|
|
8176
8177
|
Ethereum: number | null;
|
|
8177
8178
|
Arbitrum: number | null;
|
|
8179
|
+
Solana: number | null;
|
|
8178
8180
|
Polkadot: number | null;
|
|
8179
|
-
Solana?: number | null | undefined;
|
|
8180
8181
|
};
|
|
8181
8182
|
egress_dust_limits: {
|
|
8182
8183
|
Bitcoin: {
|
|
@@ -8192,27 +8193,27 @@ declare const rpcResult: {
|
|
|
8192
8193
|
ETH: string | number;
|
|
8193
8194
|
USDC: string | number;
|
|
8194
8195
|
};
|
|
8196
|
+
Solana: {
|
|
8197
|
+
USDC: string | number;
|
|
8198
|
+
SOL: string | number;
|
|
8199
|
+
};
|
|
8195
8200
|
Polkadot: {
|
|
8196
8201
|
DOT: string | number;
|
|
8197
8202
|
};
|
|
8198
|
-
Solana?: {
|
|
8199
|
-
USDC?: string | number | undefined;
|
|
8200
|
-
SOL?: string | number | undefined;
|
|
8201
|
-
} | undefined;
|
|
8202
8203
|
};
|
|
8203
8204
|
channel_opening_fees: {
|
|
8204
8205
|
Bitcoin: string | number;
|
|
8205
8206
|
Ethereum: string | number;
|
|
8206
8207
|
Arbitrum: string | number;
|
|
8208
|
+
Solana: string | number;
|
|
8207
8209
|
Polkadot: string | number;
|
|
8208
|
-
Solana?: string | number | undefined;
|
|
8209
8210
|
};
|
|
8210
8211
|
max_swap_retry_duration_blocks?: {
|
|
8211
8212
|
Bitcoin: number;
|
|
8212
8213
|
Ethereum: number;
|
|
8213
8214
|
Arbitrum: number;
|
|
8215
|
+
Solana: number;
|
|
8214
8216
|
Polkadot: number;
|
|
8215
|
-
Solana?: number | undefined;
|
|
8216
8217
|
} | undefined;
|
|
8217
8218
|
}>;
|
|
8218
8219
|
readonly cf_pool_orders: z.ZodObject<{
|
|
@@ -10487,8 +10488,8 @@ declare const rpcResult: {
|
|
|
10487
10488
|
};
|
|
10488
10489
|
} | null;
|
|
10489
10490
|
}>;
|
|
10490
|
-
Solana: z.
|
|
10491
|
-
SOL: z.
|
|
10491
|
+
Solana: z.ZodObject<{
|
|
10492
|
+
SOL: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
10492
10493
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
10493
10494
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
10494
10495
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -10656,8 +10657,8 @@ declare const rpcResult: {
|
|
|
10656
10657
|
chain: "Ethereum";
|
|
10657
10658
|
asset: "USDC";
|
|
10658
10659
|
};
|
|
10659
|
-
} | null
|
|
10660
|
-
USDC: z.
|
|
10660
|
+
} | null>;
|
|
10661
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
10661
10662
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
10662
10663
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
10663
10664
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -10825,7 +10826,7 @@ declare const rpcResult: {
|
|
|
10825
10826
|
chain: "Ethereum";
|
|
10826
10827
|
asset: "USDC";
|
|
10827
10828
|
};
|
|
10828
|
-
} | null
|
|
10829
|
+
} | null>;
|
|
10829
10830
|
}, "strip", z.ZodTypeAny, {
|
|
10830
10831
|
USDC: {
|
|
10831
10832
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -10922,7 +10923,7 @@ declare const rpcResult: {
|
|
|
10922
10923
|
};
|
|
10923
10924
|
};
|
|
10924
10925
|
}, {
|
|
10925
|
-
USDC
|
|
10926
|
+
USDC: {
|
|
10926
10927
|
limit_order_fee_hundredth_pips: number;
|
|
10927
10928
|
range_order_fee_hundredth_pips: number;
|
|
10928
10929
|
range_order_total_fees_earned: {
|
|
@@ -10945,8 +10946,8 @@ declare const rpcResult: {
|
|
|
10945
10946
|
chain: "Ethereum";
|
|
10946
10947
|
asset: "USDC";
|
|
10947
10948
|
};
|
|
10948
|
-
} | null
|
|
10949
|
-
SOL
|
|
10949
|
+
} | null;
|
|
10950
|
+
SOL: {
|
|
10950
10951
|
limit_order_fee_hundredth_pips: number;
|
|
10951
10952
|
range_order_fee_hundredth_pips: number;
|
|
10952
10953
|
range_order_total_fees_earned: {
|
|
@@ -10969,8 +10970,8 @@ declare const rpcResult: {
|
|
|
10969
10970
|
chain: "Ethereum";
|
|
10970
10971
|
asset: "USDC";
|
|
10971
10972
|
};
|
|
10972
|
-
} | null
|
|
10973
|
-
}
|
|
10973
|
+
} | null;
|
|
10974
|
+
}>;
|
|
10974
10975
|
}, "strip", z.ZodTypeAny, {
|
|
10975
10976
|
Bitcoin: {
|
|
10976
10977
|
BTC: {
|
|
@@ -11556,8 +11557,8 @@ declare const rpcResult: {
|
|
|
11556
11557
|
};
|
|
11557
11558
|
} | null;
|
|
11558
11559
|
};
|
|
11559
|
-
|
|
11560
|
-
|
|
11560
|
+
Solana: {
|
|
11561
|
+
USDC: {
|
|
11561
11562
|
limit_order_fee_hundredth_pips: number;
|
|
11562
11563
|
range_order_fee_hundredth_pips: number;
|
|
11563
11564
|
range_order_total_fees_earned: {
|
|
@@ -11581,9 +11582,7 @@ declare const rpcResult: {
|
|
|
11581
11582
|
asset: "USDC";
|
|
11582
11583
|
};
|
|
11583
11584
|
} | null;
|
|
11584
|
-
|
|
11585
|
-
Solana?: {
|
|
11586
|
-
USDC?: {
|
|
11585
|
+
SOL: {
|
|
11587
11586
|
limit_order_fee_hundredth_pips: number;
|
|
11588
11587
|
range_order_fee_hundredth_pips: number;
|
|
11589
11588
|
range_order_total_fees_earned: {
|
|
@@ -11606,8 +11605,10 @@ declare const rpcResult: {
|
|
|
11606
11605
|
chain: "Ethereum";
|
|
11607
11606
|
asset: "USDC";
|
|
11608
11607
|
};
|
|
11609
|
-
} | null
|
|
11610
|
-
|
|
11608
|
+
} | null;
|
|
11609
|
+
};
|
|
11610
|
+
Polkadot: {
|
|
11611
|
+
DOT: {
|
|
11611
11612
|
limit_order_fee_hundredth_pips: number;
|
|
11612
11613
|
range_order_fee_hundredth_pips: number;
|
|
11613
11614
|
range_order_total_fees_earned: {
|
|
@@ -11630,8 +11631,8 @@ declare const rpcResult: {
|
|
|
11630
11631
|
chain: "Ethereum";
|
|
11631
11632
|
asset: "USDC";
|
|
11632
11633
|
};
|
|
11633
|
-
} | null
|
|
11634
|
-
}
|
|
11634
|
+
} | null;
|
|
11635
|
+
};
|
|
11635
11636
|
}>;
|
|
11636
11637
|
}, "strip", z.ZodTypeAny, {
|
|
11637
11638
|
fees: {
|
|
@@ -12221,8 +12222,8 @@ declare const rpcResult: {
|
|
|
12221
12222
|
};
|
|
12222
12223
|
} | null;
|
|
12223
12224
|
};
|
|
12224
|
-
|
|
12225
|
-
|
|
12225
|
+
Solana: {
|
|
12226
|
+
USDC: {
|
|
12226
12227
|
limit_order_fee_hundredth_pips: number;
|
|
12227
12228
|
range_order_fee_hundredth_pips: number;
|
|
12228
12229
|
range_order_total_fees_earned: {
|
|
@@ -12246,9 +12247,7 @@ declare const rpcResult: {
|
|
|
12246
12247
|
asset: "USDC";
|
|
12247
12248
|
};
|
|
12248
12249
|
} | null;
|
|
12249
|
-
|
|
12250
|
-
Solana?: {
|
|
12251
|
-
USDC?: {
|
|
12250
|
+
SOL: {
|
|
12252
12251
|
limit_order_fee_hundredth_pips: number;
|
|
12253
12252
|
range_order_fee_hundredth_pips: number;
|
|
12254
12253
|
range_order_total_fees_earned: {
|
|
@@ -12271,8 +12270,10 @@ declare const rpcResult: {
|
|
|
12271
12270
|
chain: "Ethereum";
|
|
12272
12271
|
asset: "USDC";
|
|
12273
12272
|
};
|
|
12274
|
-
} | null
|
|
12275
|
-
|
|
12273
|
+
} | null;
|
|
12274
|
+
};
|
|
12275
|
+
Polkadot: {
|
|
12276
|
+
DOT: {
|
|
12276
12277
|
limit_order_fee_hundredth_pips: number;
|
|
12277
12278
|
range_order_fee_hundredth_pips: number;
|
|
12278
12279
|
range_order_total_fees_earned: {
|
|
@@ -12295,8 +12296,8 @@ declare const rpcResult: {
|
|
|
12295
12296
|
chain: "Ethereum";
|
|
12296
12297
|
asset: "USDC";
|
|
12297
12298
|
};
|
|
12298
|
-
} | null
|
|
12299
|
-
}
|
|
12299
|
+
} | null;
|
|
12300
|
+
};
|
|
12300
12301
|
};
|
|
12301
12302
|
}>;
|
|
12302
12303
|
readonly cf_supported_assets: z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
@@ -13556,16 +13557,16 @@ declare const rpcResult: {
|
|
|
13556
13557
|
ETH: string | number | null;
|
|
13557
13558
|
USDC: string | number | null;
|
|
13558
13559
|
}>;
|
|
13559
|
-
Solana: z.
|
|
13560
|
-
SOL: z.
|
|
13561
|
-
USDC: z.
|
|
13560
|
+
Solana: z.ZodObject<{
|
|
13561
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
13562
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
13562
13563
|
}, "strip", z.ZodTypeAny, {
|
|
13563
13564
|
USDC: bigint | null;
|
|
13564
13565
|
SOL: bigint | null;
|
|
13565
13566
|
}, {
|
|
13566
|
-
USDC
|
|
13567
|
-
SOL
|
|
13568
|
-
}
|
|
13567
|
+
USDC: string | number | null;
|
|
13568
|
+
SOL: string | number | null;
|
|
13569
|
+
}>;
|
|
13569
13570
|
}, "strip", z.ZodTypeAny, {
|
|
13570
13571
|
Bitcoin: {
|
|
13571
13572
|
BTC: bigint | null;
|
|
@@ -13601,13 +13602,13 @@ declare const rpcResult: {
|
|
|
13601
13602
|
ETH: string | number | null;
|
|
13602
13603
|
USDC: string | number | null;
|
|
13603
13604
|
};
|
|
13605
|
+
Solana: {
|
|
13606
|
+
USDC: string | number | null;
|
|
13607
|
+
SOL: string | number | null;
|
|
13608
|
+
};
|
|
13604
13609
|
Polkadot: {
|
|
13605
13610
|
DOT: string | number | null;
|
|
13606
13611
|
};
|
|
13607
|
-
Solana?: {
|
|
13608
|
-
USDC?: string | number | null | undefined;
|
|
13609
|
-
SOL?: string | number | null | undefined;
|
|
13610
|
-
} | undefined;
|
|
13611
13612
|
}>;
|
|
13612
13613
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
13613
13614
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13649,13 +13650,13 @@ declare const rpcResult: {
|
|
|
13649
13650
|
ETH: string | number | null;
|
|
13650
13651
|
USDC: string | number | null;
|
|
13651
13652
|
};
|
|
13653
|
+
Solana: {
|
|
13654
|
+
USDC: string | number | null;
|
|
13655
|
+
SOL: string | number | null;
|
|
13656
|
+
};
|
|
13652
13657
|
Polkadot: {
|
|
13653
13658
|
DOT: string | number | null;
|
|
13654
13659
|
};
|
|
13655
|
-
Solana?: {
|
|
13656
|
-
USDC?: string | number | null | undefined;
|
|
13657
|
-
SOL?: string | number | null | undefined;
|
|
13658
|
-
} | undefined;
|
|
13659
13660
|
};
|
|
13660
13661
|
network_fee_hundredth_pips: number;
|
|
13661
13662
|
}>;
|
|
@@ -14000,6 +14001,100 @@ declare const rpcResult: {
|
|
|
14000
14001
|
transactionVersion: number;
|
|
14001
14002
|
stateVersion: number;
|
|
14002
14003
|
}>;
|
|
14004
|
+
readonly lp_total_balances: z.ZodObject<{
|
|
14005
|
+
Bitcoin: z.ZodObject<{
|
|
14006
|
+
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14007
|
+
}, "strip", z.ZodTypeAny, {
|
|
14008
|
+
BTC: bigint;
|
|
14009
|
+
}, {
|
|
14010
|
+
BTC: string | number;
|
|
14011
|
+
}>;
|
|
14012
|
+
Ethereum: z.ZodObject<{
|
|
14013
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14014
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14015
|
+
FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14016
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14017
|
+
}, "strip", z.ZodTypeAny, {
|
|
14018
|
+
ETH: bigint;
|
|
14019
|
+
USDC: bigint;
|
|
14020
|
+
FLIP: bigint;
|
|
14021
|
+
USDT: bigint;
|
|
14022
|
+
}, {
|
|
14023
|
+
ETH: string | number;
|
|
14024
|
+
USDC: string | number;
|
|
14025
|
+
FLIP: string | number;
|
|
14026
|
+
USDT: string | number;
|
|
14027
|
+
}>;
|
|
14028
|
+
Polkadot: z.ZodObject<{
|
|
14029
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14030
|
+
}, "strip", z.ZodTypeAny, {
|
|
14031
|
+
DOT: bigint;
|
|
14032
|
+
}, {
|
|
14033
|
+
DOT: string | number;
|
|
14034
|
+
}>;
|
|
14035
|
+
Arbitrum: z.ZodObject<{
|
|
14036
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14037
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14038
|
+
}, "strip", z.ZodTypeAny, {
|
|
14039
|
+
ETH: bigint;
|
|
14040
|
+
USDC: bigint;
|
|
14041
|
+
}, {
|
|
14042
|
+
ETH: string | number;
|
|
14043
|
+
USDC: string | number;
|
|
14044
|
+
}>;
|
|
14045
|
+
Solana: z.ZodObject<{
|
|
14046
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14047
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
14048
|
+
}, "strip", z.ZodTypeAny, {
|
|
14049
|
+
USDC: bigint;
|
|
14050
|
+
SOL: bigint;
|
|
14051
|
+
}, {
|
|
14052
|
+
USDC: string | number;
|
|
14053
|
+
SOL: string | number;
|
|
14054
|
+
}>;
|
|
14055
|
+
}, "strip", z.ZodTypeAny, {
|
|
14056
|
+
Bitcoin: {
|
|
14057
|
+
BTC: bigint;
|
|
14058
|
+
};
|
|
14059
|
+
Ethereum: {
|
|
14060
|
+
ETH: bigint;
|
|
14061
|
+
USDC: bigint;
|
|
14062
|
+
FLIP: bigint;
|
|
14063
|
+
USDT: bigint;
|
|
14064
|
+
};
|
|
14065
|
+
Arbitrum: {
|
|
14066
|
+
ETH: bigint;
|
|
14067
|
+
USDC: bigint;
|
|
14068
|
+
};
|
|
14069
|
+
Solana: {
|
|
14070
|
+
USDC: bigint;
|
|
14071
|
+
SOL: bigint;
|
|
14072
|
+
};
|
|
14073
|
+
Polkadot: {
|
|
14074
|
+
DOT: bigint;
|
|
14075
|
+
};
|
|
14076
|
+
}, {
|
|
14077
|
+
Bitcoin: {
|
|
14078
|
+
BTC: string | number;
|
|
14079
|
+
};
|
|
14080
|
+
Ethereum: {
|
|
14081
|
+
ETH: string | number;
|
|
14082
|
+
USDC: string | number;
|
|
14083
|
+
FLIP: string | number;
|
|
14084
|
+
USDT: string | number;
|
|
14085
|
+
};
|
|
14086
|
+
Arbitrum: {
|
|
14087
|
+
ETH: string | number;
|
|
14088
|
+
USDC: string | number;
|
|
14089
|
+
};
|
|
14090
|
+
Solana: {
|
|
14091
|
+
USDC: string | number;
|
|
14092
|
+
SOL: string | number;
|
|
14093
|
+
};
|
|
14094
|
+
Polkadot: {
|
|
14095
|
+
DOT: string | number;
|
|
14096
|
+
};
|
|
14097
|
+
}>;
|
|
14003
14098
|
};
|
|
14004
14099
|
type RpcMethod = keyof RpcRequest;
|
|
14005
14100
|
type RpcResponse<T extends RpcMethod> = z.input<(typeof rpcResult)[T]>;
|