@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/parsers.d.cts
CHANGED
|
@@ -1384,16 +1384,16 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1384
1384
|
ETH: string | number;
|
|
1385
1385
|
USDC: string | number;
|
|
1386
1386
|
}>;
|
|
1387
|
-
Solana: z.
|
|
1388
|
-
SOL: z.
|
|
1389
|
-
USDC: z.
|
|
1387
|
+
Solana: z.ZodObject<{
|
|
1388
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1389
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1390
1390
|
}, "strip", z.ZodTypeAny, {
|
|
1391
1391
|
USDC: bigint;
|
|
1392
1392
|
SOL: bigint;
|
|
1393
1393
|
}, {
|
|
1394
|
-
USDC
|
|
1395
|
-
SOL
|
|
1396
|
-
}
|
|
1394
|
+
USDC: string | number;
|
|
1395
|
+
SOL: string | number;
|
|
1396
|
+
}>;
|
|
1397
1397
|
}, "strip", z.ZodTypeAny, {
|
|
1398
1398
|
Bitcoin: {
|
|
1399
1399
|
BTC: bigint;
|
|
@@ -1429,13 +1429,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1429
1429
|
ETH: string | number;
|
|
1430
1430
|
USDC: string | number;
|
|
1431
1431
|
};
|
|
1432
|
+
Solana: {
|
|
1433
|
+
USDC: string | number;
|
|
1434
|
+
SOL: string | number;
|
|
1435
|
+
};
|
|
1432
1436
|
Polkadot: {
|
|
1433
1437
|
DOT: string | number;
|
|
1434
1438
|
};
|
|
1435
|
-
Solana?: {
|
|
1436
|
-
USDC?: string | number | undefined;
|
|
1437
|
-
SOL?: string | number | undefined;
|
|
1438
|
-
} | undefined;
|
|
1439
1439
|
}>;
|
|
1440
1440
|
ingress_fees: z.ZodObject<{
|
|
1441
1441
|
Bitcoin: z.ZodObject<{
|
|
@@ -1478,16 +1478,16 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1478
1478
|
ETH: string | number | null;
|
|
1479
1479
|
USDC: string | number | null;
|
|
1480
1480
|
}>;
|
|
1481
|
-
Solana: z.
|
|
1482
|
-
SOL: z.
|
|
1483
|
-
USDC: z.
|
|
1481
|
+
Solana: z.ZodObject<{
|
|
1482
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1483
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1484
1484
|
}, "strip", z.ZodTypeAny, {
|
|
1485
1485
|
USDC: bigint | null;
|
|
1486
1486
|
SOL: bigint | null;
|
|
1487
1487
|
}, {
|
|
1488
|
-
USDC
|
|
1489
|
-
SOL
|
|
1490
|
-
}
|
|
1488
|
+
USDC: string | number | null;
|
|
1489
|
+
SOL: string | number | null;
|
|
1490
|
+
}>;
|
|
1491
1491
|
}, "strip", z.ZodTypeAny, {
|
|
1492
1492
|
Bitcoin: {
|
|
1493
1493
|
BTC: bigint | null;
|
|
@@ -1523,13 +1523,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1523
1523
|
ETH: string | number | null;
|
|
1524
1524
|
USDC: string | number | null;
|
|
1525
1525
|
};
|
|
1526
|
+
Solana: {
|
|
1527
|
+
USDC: string | number | null;
|
|
1528
|
+
SOL: string | number | null;
|
|
1529
|
+
};
|
|
1526
1530
|
Polkadot: {
|
|
1527
1531
|
DOT: string | number | null;
|
|
1528
1532
|
};
|
|
1529
|
-
Solana?: {
|
|
1530
|
-
USDC?: string | number | null | undefined;
|
|
1531
|
-
SOL?: string | number | null | undefined;
|
|
1532
|
-
} | undefined;
|
|
1533
1533
|
}>;
|
|
1534
1534
|
egress_fees: z.ZodObject<{
|
|
1535
1535
|
Bitcoin: z.ZodObject<{
|
|
@@ -1572,16 +1572,16 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1572
1572
|
ETH: string | number | null;
|
|
1573
1573
|
USDC: string | number | null;
|
|
1574
1574
|
}>;
|
|
1575
|
-
Solana: z.
|
|
1576
|
-
SOL: z.
|
|
1577
|
-
USDC: z.
|
|
1575
|
+
Solana: z.ZodObject<{
|
|
1576
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1577
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1578
1578
|
}, "strip", z.ZodTypeAny, {
|
|
1579
1579
|
USDC: bigint | null;
|
|
1580
1580
|
SOL: bigint | null;
|
|
1581
1581
|
}, {
|
|
1582
|
-
USDC
|
|
1583
|
-
SOL
|
|
1584
|
-
}
|
|
1582
|
+
USDC: string | number | null;
|
|
1583
|
+
SOL: string | number | null;
|
|
1584
|
+
}>;
|
|
1585
1585
|
}, "strip", z.ZodTypeAny, {
|
|
1586
1586
|
Bitcoin: {
|
|
1587
1587
|
BTC: bigint | null;
|
|
@@ -1617,20 +1617,20 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1617
1617
|
ETH: string | number | null;
|
|
1618
1618
|
USDC: string | number | null;
|
|
1619
1619
|
};
|
|
1620
|
+
Solana: {
|
|
1621
|
+
USDC: string | number | null;
|
|
1622
|
+
SOL: string | number | null;
|
|
1623
|
+
};
|
|
1620
1624
|
Polkadot: {
|
|
1621
1625
|
DOT: string | number | null;
|
|
1622
1626
|
};
|
|
1623
|
-
Solana?: {
|
|
1624
|
-
USDC?: string | number | null | undefined;
|
|
1625
|
-
SOL?: string | number | null | undefined;
|
|
1626
|
-
} | undefined;
|
|
1627
1627
|
}>;
|
|
1628
1628
|
witness_safety_margins: z.ZodObject<{
|
|
1629
1629
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
1630
1630
|
Ethereum: z.ZodNullable<z.ZodNumber>;
|
|
1631
1631
|
Polkadot: z.ZodNullable<z.ZodNumber>;
|
|
1632
1632
|
Arbitrum: z.ZodNullable<z.ZodNumber>;
|
|
1633
|
-
Solana: z.
|
|
1633
|
+
Solana: z.ZodNullable<z.ZodNumber>;
|
|
1634
1634
|
}, "strip", z.ZodTypeAny, {
|
|
1635
1635
|
Bitcoin: number | null;
|
|
1636
1636
|
Ethereum: number | null;
|
|
@@ -1641,8 +1641,8 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1641
1641
|
Bitcoin: number | null;
|
|
1642
1642
|
Ethereum: number | null;
|
|
1643
1643
|
Arbitrum: number | null;
|
|
1644
|
+
Solana: number | null;
|
|
1644
1645
|
Polkadot: number | null;
|
|
1645
|
-
Solana?: number | null | undefined;
|
|
1646
1646
|
}>;
|
|
1647
1647
|
egress_dust_limits: z.ZodObject<{
|
|
1648
1648
|
Bitcoin: z.ZodObject<{
|
|
@@ -1685,16 +1685,16 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1685
1685
|
ETH: string | number;
|
|
1686
1686
|
USDC: string | number;
|
|
1687
1687
|
}>;
|
|
1688
|
-
Solana: z.
|
|
1689
|
-
SOL: z.
|
|
1690
|
-
USDC: z.
|
|
1688
|
+
Solana: z.ZodObject<{
|
|
1689
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1690
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1691
1691
|
}, "strip", z.ZodTypeAny, {
|
|
1692
1692
|
USDC: bigint;
|
|
1693
1693
|
SOL: bigint;
|
|
1694
1694
|
}, {
|
|
1695
|
-
USDC
|
|
1696
|
-
SOL
|
|
1697
|
-
}
|
|
1695
|
+
USDC: string | number;
|
|
1696
|
+
SOL: string | number;
|
|
1697
|
+
}>;
|
|
1698
1698
|
}, "strip", z.ZodTypeAny, {
|
|
1699
1699
|
Bitcoin: {
|
|
1700
1700
|
BTC: bigint;
|
|
@@ -1730,20 +1730,20 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1730
1730
|
ETH: string | number;
|
|
1731
1731
|
USDC: string | number;
|
|
1732
1732
|
};
|
|
1733
|
+
Solana: {
|
|
1734
|
+
USDC: string | number;
|
|
1735
|
+
SOL: string | number;
|
|
1736
|
+
};
|
|
1733
1737
|
Polkadot: {
|
|
1734
1738
|
DOT: string | number;
|
|
1735
1739
|
};
|
|
1736
|
-
Solana?: {
|
|
1737
|
-
USDC?: string | number | undefined;
|
|
1738
|
-
SOL?: string | number | undefined;
|
|
1739
|
-
} | undefined;
|
|
1740
1740
|
}>;
|
|
1741
1741
|
channel_opening_fees: z.ZodObject<{
|
|
1742
1742
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1743
1743
|
Ethereum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1744
1744
|
Polkadot: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1745
1745
|
Arbitrum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1746
|
-
Solana: z.
|
|
1746
|
+
Solana: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1747
1747
|
}, "strip", z.ZodTypeAny, {
|
|
1748
1748
|
Bitcoin: bigint;
|
|
1749
1749
|
Ethereum: bigint;
|
|
@@ -1754,15 +1754,15 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1754
1754
|
Bitcoin: string | number;
|
|
1755
1755
|
Ethereum: string | number;
|
|
1756
1756
|
Arbitrum: string | number;
|
|
1757
|
+
Solana: string | number;
|
|
1757
1758
|
Polkadot: string | number;
|
|
1758
|
-
Solana?: string | number | undefined;
|
|
1759
1759
|
}>;
|
|
1760
1760
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1761
1761
|
Bitcoin: z.ZodNumber;
|
|
1762
1762
|
Ethereum: z.ZodNumber;
|
|
1763
1763
|
Polkadot: z.ZodNumber;
|
|
1764
1764
|
Arbitrum: z.ZodNumber;
|
|
1765
|
-
Solana: z.
|
|
1765
|
+
Solana: z.ZodNumber;
|
|
1766
1766
|
}, "strip", z.ZodTypeAny, {
|
|
1767
1767
|
Bitcoin: number;
|
|
1768
1768
|
Ethereum: number;
|
|
@@ -1773,8 +1773,8 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1773
1773
|
Bitcoin: number;
|
|
1774
1774
|
Ethereum: number;
|
|
1775
1775
|
Arbitrum: number;
|
|
1776
|
+
Solana: number;
|
|
1776
1777
|
Polkadot: number;
|
|
1777
|
-
Solana?: number | undefined;
|
|
1778
1778
|
}>>>;
|
|
1779
1779
|
}, "strip", z.ZodTypeAny, {
|
|
1780
1780
|
minimum_deposit_amounts: {
|
|
@@ -1901,13 +1901,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1901
1901
|
ETH: string | number;
|
|
1902
1902
|
USDC: string | number;
|
|
1903
1903
|
};
|
|
1904
|
+
Solana: {
|
|
1905
|
+
USDC: string | number;
|
|
1906
|
+
SOL: string | number;
|
|
1907
|
+
};
|
|
1904
1908
|
Polkadot: {
|
|
1905
1909
|
DOT: string | number;
|
|
1906
1910
|
};
|
|
1907
|
-
Solana?: {
|
|
1908
|
-
USDC?: string | number | undefined;
|
|
1909
|
-
SOL?: string | number | undefined;
|
|
1910
|
-
} | undefined;
|
|
1911
1911
|
};
|
|
1912
1912
|
ingress_fees: {
|
|
1913
1913
|
Bitcoin: {
|
|
@@ -1923,13 +1923,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1923
1923
|
ETH: string | number | null;
|
|
1924
1924
|
USDC: string | number | null;
|
|
1925
1925
|
};
|
|
1926
|
+
Solana: {
|
|
1927
|
+
USDC: string | number | null;
|
|
1928
|
+
SOL: string | number | null;
|
|
1929
|
+
};
|
|
1926
1930
|
Polkadot: {
|
|
1927
1931
|
DOT: string | number | null;
|
|
1928
1932
|
};
|
|
1929
|
-
Solana?: {
|
|
1930
|
-
USDC?: string | number | null | undefined;
|
|
1931
|
-
SOL?: string | number | null | undefined;
|
|
1932
|
-
} | undefined;
|
|
1933
1933
|
};
|
|
1934
1934
|
egress_fees: {
|
|
1935
1935
|
Bitcoin: {
|
|
@@ -1945,20 +1945,20 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1945
1945
|
ETH: string | number | null;
|
|
1946
1946
|
USDC: string | number | null;
|
|
1947
1947
|
};
|
|
1948
|
+
Solana: {
|
|
1949
|
+
USDC: string | number | null;
|
|
1950
|
+
SOL: string | number | null;
|
|
1951
|
+
};
|
|
1948
1952
|
Polkadot: {
|
|
1949
1953
|
DOT: string | number | null;
|
|
1950
1954
|
};
|
|
1951
|
-
Solana?: {
|
|
1952
|
-
USDC?: string | number | null | undefined;
|
|
1953
|
-
SOL?: string | number | null | undefined;
|
|
1954
|
-
} | undefined;
|
|
1955
1955
|
};
|
|
1956
1956
|
witness_safety_margins: {
|
|
1957
1957
|
Bitcoin: number | null;
|
|
1958
1958
|
Ethereum: number | null;
|
|
1959
1959
|
Arbitrum: number | null;
|
|
1960
|
+
Solana: number | null;
|
|
1960
1961
|
Polkadot: number | null;
|
|
1961
|
-
Solana?: number | null | undefined;
|
|
1962
1962
|
};
|
|
1963
1963
|
egress_dust_limits: {
|
|
1964
1964
|
Bitcoin: {
|
|
@@ -1974,27 +1974,27 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1974
1974
|
ETH: string | number;
|
|
1975
1975
|
USDC: string | number;
|
|
1976
1976
|
};
|
|
1977
|
+
Solana: {
|
|
1978
|
+
USDC: string | number;
|
|
1979
|
+
SOL: string | number;
|
|
1980
|
+
};
|
|
1977
1981
|
Polkadot: {
|
|
1978
1982
|
DOT: string | number;
|
|
1979
1983
|
};
|
|
1980
|
-
Solana?: {
|
|
1981
|
-
USDC?: string | number | undefined;
|
|
1982
|
-
SOL?: string | number | undefined;
|
|
1983
|
-
} | undefined;
|
|
1984
1984
|
};
|
|
1985
1985
|
channel_opening_fees: {
|
|
1986
1986
|
Bitcoin: string | number;
|
|
1987
1987
|
Ethereum: string | number;
|
|
1988
1988
|
Arbitrum: string | number;
|
|
1989
|
+
Solana: string | number;
|
|
1989
1990
|
Polkadot: string | number;
|
|
1990
|
-
Solana?: string | number | undefined;
|
|
1991
1991
|
};
|
|
1992
1992
|
max_swap_retry_duration_blocks?: {
|
|
1993
1993
|
Bitcoin: number;
|
|
1994
1994
|
Ethereum: number;
|
|
1995
1995
|
Arbitrum: number;
|
|
1996
|
+
Solana: number;
|
|
1996
1997
|
Polkadot: number;
|
|
1997
|
-
Solana?: number | undefined;
|
|
1998
1998
|
} | undefined;
|
|
1999
1999
|
}>, Rename<{
|
|
2000
2000
|
minimum_deposit_amounts: {
|
|
@@ -2123,13 +2123,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2123
2123
|
ETH: string | number;
|
|
2124
2124
|
USDC: string | number;
|
|
2125
2125
|
};
|
|
2126
|
+
Solana: {
|
|
2127
|
+
USDC: string | number;
|
|
2128
|
+
SOL: string | number;
|
|
2129
|
+
};
|
|
2126
2130
|
Polkadot: {
|
|
2127
2131
|
DOT: string | number;
|
|
2128
2132
|
};
|
|
2129
|
-
Solana?: {
|
|
2130
|
-
USDC?: string | number | undefined;
|
|
2131
|
-
SOL?: string | number | undefined;
|
|
2132
|
-
} | undefined;
|
|
2133
2133
|
};
|
|
2134
2134
|
ingress_fees: {
|
|
2135
2135
|
Bitcoin: {
|
|
@@ -2145,13 +2145,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2145
2145
|
ETH: string | number | null;
|
|
2146
2146
|
USDC: string | number | null;
|
|
2147
2147
|
};
|
|
2148
|
+
Solana: {
|
|
2149
|
+
USDC: string | number | null;
|
|
2150
|
+
SOL: string | number | null;
|
|
2151
|
+
};
|
|
2148
2152
|
Polkadot: {
|
|
2149
2153
|
DOT: string | number | null;
|
|
2150
2154
|
};
|
|
2151
|
-
Solana?: {
|
|
2152
|
-
USDC?: string | number | null | undefined;
|
|
2153
|
-
SOL?: string | number | null | undefined;
|
|
2154
|
-
} | undefined;
|
|
2155
2155
|
};
|
|
2156
2156
|
egress_fees: {
|
|
2157
2157
|
Bitcoin: {
|
|
@@ -2167,20 +2167,20 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2167
2167
|
ETH: string | number | null;
|
|
2168
2168
|
USDC: string | number | null;
|
|
2169
2169
|
};
|
|
2170
|
+
Solana: {
|
|
2171
|
+
USDC: string | number | null;
|
|
2172
|
+
SOL: string | number | null;
|
|
2173
|
+
};
|
|
2170
2174
|
Polkadot: {
|
|
2171
2175
|
DOT: string | number | null;
|
|
2172
2176
|
};
|
|
2173
|
-
Solana?: {
|
|
2174
|
-
USDC?: string | number | null | undefined;
|
|
2175
|
-
SOL?: string | number | null | undefined;
|
|
2176
|
-
} | undefined;
|
|
2177
2177
|
};
|
|
2178
2178
|
witness_safety_margins: {
|
|
2179
2179
|
Bitcoin: number | null;
|
|
2180
2180
|
Ethereum: number | null;
|
|
2181
2181
|
Arbitrum: number | null;
|
|
2182
|
+
Solana: number | null;
|
|
2182
2183
|
Polkadot: number | null;
|
|
2183
|
-
Solana?: number | null | undefined;
|
|
2184
2184
|
};
|
|
2185
2185
|
egress_dust_limits: {
|
|
2186
2186
|
Bitcoin: {
|
|
@@ -2196,27 +2196,27 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2196
2196
|
ETH: string | number;
|
|
2197
2197
|
USDC: string | number;
|
|
2198
2198
|
};
|
|
2199
|
+
Solana: {
|
|
2200
|
+
USDC: string | number;
|
|
2201
|
+
SOL: string | number;
|
|
2202
|
+
};
|
|
2199
2203
|
Polkadot: {
|
|
2200
2204
|
DOT: string | number;
|
|
2201
2205
|
};
|
|
2202
|
-
Solana?: {
|
|
2203
|
-
USDC?: string | number | undefined;
|
|
2204
|
-
SOL?: string | number | undefined;
|
|
2205
|
-
} | undefined;
|
|
2206
2206
|
};
|
|
2207
2207
|
channel_opening_fees: {
|
|
2208
2208
|
Bitcoin: string | number;
|
|
2209
2209
|
Ethereum: string | number;
|
|
2210
2210
|
Arbitrum: string | number;
|
|
2211
|
+
Solana: string | number;
|
|
2211
2212
|
Polkadot: string | number;
|
|
2212
|
-
Solana?: string | number | undefined;
|
|
2213
2213
|
};
|
|
2214
2214
|
max_swap_retry_duration_blocks?: {
|
|
2215
2215
|
Bitcoin: number;
|
|
2216
2216
|
Ethereum: number;
|
|
2217
2217
|
Arbitrum: number;
|
|
2218
|
+
Solana: number;
|
|
2218
2219
|
Polkadot: number;
|
|
2219
|
-
Solana?: number | undefined;
|
|
2220
2220
|
} | undefined;
|
|
2221
2221
|
}>;
|
|
2222
2222
|
declare const cfSwappingEnvironment: z.ZodObject<{
|
|
@@ -2261,16 +2261,16 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2261
2261
|
ETH: string | number | null;
|
|
2262
2262
|
USDC: string | number | null;
|
|
2263
2263
|
}>;
|
|
2264
|
-
Solana: z.
|
|
2265
|
-
SOL: z.
|
|
2266
|
-
USDC: z.
|
|
2264
|
+
Solana: z.ZodObject<{
|
|
2265
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2266
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2267
2267
|
}, "strip", z.ZodTypeAny, {
|
|
2268
2268
|
USDC: bigint | null;
|
|
2269
2269
|
SOL: bigint | null;
|
|
2270
2270
|
}, {
|
|
2271
|
-
USDC
|
|
2272
|
-
SOL
|
|
2273
|
-
}
|
|
2271
|
+
USDC: string | number | null;
|
|
2272
|
+
SOL: string | number | null;
|
|
2273
|
+
}>;
|
|
2274
2274
|
}, "strip", z.ZodTypeAny, {
|
|
2275
2275
|
Bitcoin: {
|
|
2276
2276
|
BTC: bigint | null;
|
|
@@ -2306,13 +2306,13 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2306
2306
|
ETH: string | number | null;
|
|
2307
2307
|
USDC: string | number | null;
|
|
2308
2308
|
};
|
|
2309
|
+
Solana: {
|
|
2310
|
+
USDC: string | number | null;
|
|
2311
|
+
SOL: string | number | null;
|
|
2312
|
+
};
|
|
2309
2313
|
Polkadot: {
|
|
2310
2314
|
DOT: string | number | null;
|
|
2311
2315
|
};
|
|
2312
|
-
Solana?: {
|
|
2313
|
-
USDC?: string | number | null | undefined;
|
|
2314
|
-
SOL?: string | number | null | undefined;
|
|
2315
|
-
} | undefined;
|
|
2316
2316
|
}>;
|
|
2317
2317
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
2318
2318
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2354,13 +2354,13 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2354
2354
|
ETH: string | number | null;
|
|
2355
2355
|
USDC: string | number | null;
|
|
2356
2356
|
};
|
|
2357
|
+
Solana: {
|
|
2358
|
+
USDC: string | number | null;
|
|
2359
|
+
SOL: string | number | null;
|
|
2360
|
+
};
|
|
2357
2361
|
Polkadot: {
|
|
2358
2362
|
DOT: string | number | null;
|
|
2359
2363
|
};
|
|
2360
|
-
Solana?: {
|
|
2361
|
-
USDC?: string | number | null | undefined;
|
|
2362
|
-
SOL?: string | number | null | undefined;
|
|
2363
|
-
} | undefined;
|
|
2364
2364
|
};
|
|
2365
2365
|
network_fee_hundredth_pips: number;
|
|
2366
2366
|
}>;
|
|
@@ -4072,8 +4072,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4072
4072
|
};
|
|
4073
4073
|
} | null;
|
|
4074
4074
|
}>;
|
|
4075
|
-
Solana: z.
|
|
4076
|
-
SOL: z.
|
|
4075
|
+
Solana: z.ZodObject<{
|
|
4076
|
+
SOL: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
4077
4077
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
4078
4078
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
4079
4079
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -4241,8 +4241,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4241
4241
|
chain: "Ethereum";
|
|
4242
4242
|
asset: "USDC";
|
|
4243
4243
|
};
|
|
4244
|
-
} | null
|
|
4245
|
-
USDC: z.
|
|
4244
|
+
} | null>;
|
|
4245
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
4246
4246
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
4247
4247
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
4248
4248
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -4410,7 +4410,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4410
4410
|
chain: "Ethereum";
|
|
4411
4411
|
asset: "USDC";
|
|
4412
4412
|
};
|
|
4413
|
-
} | null
|
|
4413
|
+
} | null>;
|
|
4414
4414
|
}, "strip", z.ZodTypeAny, {
|
|
4415
4415
|
USDC: {
|
|
4416
4416
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -4507,7 +4507,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4507
4507
|
};
|
|
4508
4508
|
};
|
|
4509
4509
|
}, {
|
|
4510
|
-
USDC
|
|
4510
|
+
USDC: {
|
|
4511
4511
|
limit_order_fee_hundredth_pips: number;
|
|
4512
4512
|
range_order_fee_hundredth_pips: number;
|
|
4513
4513
|
range_order_total_fees_earned: {
|
|
@@ -4530,8 +4530,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4530
4530
|
chain: "Ethereum";
|
|
4531
4531
|
asset: "USDC";
|
|
4532
4532
|
};
|
|
4533
|
-
} | null
|
|
4534
|
-
SOL
|
|
4533
|
+
} | null;
|
|
4534
|
+
SOL: {
|
|
4535
4535
|
limit_order_fee_hundredth_pips: number;
|
|
4536
4536
|
range_order_fee_hundredth_pips: number;
|
|
4537
4537
|
range_order_total_fees_earned: {
|
|
@@ -4554,8 +4554,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4554
4554
|
chain: "Ethereum";
|
|
4555
4555
|
asset: "USDC";
|
|
4556
4556
|
};
|
|
4557
|
-
} | null
|
|
4558
|
-
}
|
|
4557
|
+
} | null;
|
|
4558
|
+
}>;
|
|
4559
4559
|
}, "strip", z.ZodTypeAny, {
|
|
4560
4560
|
Bitcoin: {
|
|
4561
4561
|
BTC: {
|
|
@@ -5141,8 +5141,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5141
5141
|
};
|
|
5142
5142
|
} | null;
|
|
5143
5143
|
};
|
|
5144
|
-
|
|
5145
|
-
|
|
5144
|
+
Solana: {
|
|
5145
|
+
USDC: {
|
|
5146
5146
|
limit_order_fee_hundredth_pips: number;
|
|
5147
5147
|
range_order_fee_hundredth_pips: number;
|
|
5148
5148
|
range_order_total_fees_earned: {
|
|
@@ -5166,9 +5166,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5166
5166
|
asset: "USDC";
|
|
5167
5167
|
};
|
|
5168
5168
|
} | null;
|
|
5169
|
-
|
|
5170
|
-
Solana?: {
|
|
5171
|
-
USDC?: {
|
|
5169
|
+
SOL: {
|
|
5172
5170
|
limit_order_fee_hundredth_pips: number;
|
|
5173
5171
|
range_order_fee_hundredth_pips: number;
|
|
5174
5172
|
range_order_total_fees_earned: {
|
|
@@ -5191,8 +5189,10 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5191
5189
|
chain: "Ethereum";
|
|
5192
5190
|
asset: "USDC";
|
|
5193
5191
|
};
|
|
5194
|
-
} | null
|
|
5195
|
-
|
|
5192
|
+
} | null;
|
|
5193
|
+
};
|
|
5194
|
+
Polkadot: {
|
|
5195
|
+
DOT: {
|
|
5196
5196
|
limit_order_fee_hundredth_pips: number;
|
|
5197
5197
|
range_order_fee_hundredth_pips: number;
|
|
5198
5198
|
range_order_total_fees_earned: {
|
|
@@ -5215,8 +5215,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5215
5215
|
chain: "Ethereum";
|
|
5216
5216
|
asset: "USDC";
|
|
5217
5217
|
};
|
|
5218
|
-
} | null
|
|
5219
|
-
}
|
|
5218
|
+
} | null;
|
|
5219
|
+
};
|
|
5220
5220
|
}>;
|
|
5221
5221
|
}, "strip", z.ZodTypeAny, {
|
|
5222
5222
|
fees: {
|
|
@@ -5806,8 +5806,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5806
5806
|
};
|
|
5807
5807
|
} | null;
|
|
5808
5808
|
};
|
|
5809
|
-
|
|
5810
|
-
|
|
5809
|
+
Solana: {
|
|
5810
|
+
USDC: {
|
|
5811
5811
|
limit_order_fee_hundredth_pips: number;
|
|
5812
5812
|
range_order_fee_hundredth_pips: number;
|
|
5813
5813
|
range_order_total_fees_earned: {
|
|
@@ -5831,9 +5831,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5831
5831
|
asset: "USDC";
|
|
5832
5832
|
};
|
|
5833
5833
|
} | null;
|
|
5834
|
-
|
|
5835
|
-
Solana?: {
|
|
5836
|
-
USDC?: {
|
|
5834
|
+
SOL: {
|
|
5837
5835
|
limit_order_fee_hundredth_pips: number;
|
|
5838
5836
|
range_order_fee_hundredth_pips: number;
|
|
5839
5837
|
range_order_total_fees_earned: {
|
|
@@ -5856,8 +5854,10 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5856
5854
|
chain: "Ethereum";
|
|
5857
5855
|
asset: "USDC";
|
|
5858
5856
|
};
|
|
5859
|
-
} | null
|
|
5860
|
-
|
|
5857
|
+
} | null;
|
|
5858
|
+
};
|
|
5859
|
+
Polkadot: {
|
|
5860
|
+
DOT: {
|
|
5861
5861
|
limit_order_fee_hundredth_pips: number;
|
|
5862
5862
|
range_order_fee_hundredth_pips: number;
|
|
5863
5863
|
range_order_total_fees_earned: {
|
|
@@ -5880,8 +5880,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5880
5880
|
chain: "Ethereum";
|
|
5881
5881
|
asset: "USDC";
|
|
5882
5882
|
};
|
|
5883
|
-
} | null
|
|
5884
|
-
}
|
|
5883
|
+
} | null;
|
|
5884
|
+
};
|
|
5885
5885
|
};
|
|
5886
5886
|
}>;
|
|
5887
5887
|
declare const cfEnvironment: z.ZodObject<{
|
|
@@ -5927,16 +5927,16 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5927
5927
|
ETH: string | number;
|
|
5928
5928
|
USDC: string | number;
|
|
5929
5929
|
}>;
|
|
5930
|
-
Solana: z.
|
|
5931
|
-
SOL: z.
|
|
5932
|
-
USDC: z.
|
|
5930
|
+
Solana: z.ZodObject<{
|
|
5931
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
5932
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
5933
5933
|
}, "strip", z.ZodTypeAny, {
|
|
5934
5934
|
USDC: bigint;
|
|
5935
5935
|
SOL: bigint;
|
|
5936
5936
|
}, {
|
|
5937
|
-
USDC
|
|
5938
|
-
SOL
|
|
5939
|
-
}
|
|
5937
|
+
USDC: string | number;
|
|
5938
|
+
SOL: string | number;
|
|
5939
|
+
}>;
|
|
5940
5940
|
}, "strip", z.ZodTypeAny, {
|
|
5941
5941
|
Bitcoin: {
|
|
5942
5942
|
BTC: bigint;
|
|
@@ -5972,13 +5972,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5972
5972
|
ETH: string | number;
|
|
5973
5973
|
USDC: string | number;
|
|
5974
5974
|
};
|
|
5975
|
+
Solana: {
|
|
5976
|
+
USDC: string | number;
|
|
5977
|
+
SOL: string | number;
|
|
5978
|
+
};
|
|
5975
5979
|
Polkadot: {
|
|
5976
5980
|
DOT: string | number;
|
|
5977
5981
|
};
|
|
5978
|
-
Solana?: {
|
|
5979
|
-
USDC?: string | number | undefined;
|
|
5980
|
-
SOL?: string | number | undefined;
|
|
5981
|
-
} | undefined;
|
|
5982
5982
|
}>;
|
|
5983
5983
|
ingress_fees: z.ZodObject<{
|
|
5984
5984
|
Bitcoin: z.ZodObject<{
|
|
@@ -6021,16 +6021,16 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6021
6021
|
ETH: string | number | null;
|
|
6022
6022
|
USDC: string | number | null;
|
|
6023
6023
|
}>;
|
|
6024
|
-
Solana: z.
|
|
6025
|
-
SOL: z.
|
|
6026
|
-
USDC: z.
|
|
6024
|
+
Solana: z.ZodObject<{
|
|
6025
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
6026
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
6027
6027
|
}, "strip", z.ZodTypeAny, {
|
|
6028
6028
|
USDC: bigint | null;
|
|
6029
6029
|
SOL: bigint | null;
|
|
6030
6030
|
}, {
|
|
6031
|
-
USDC
|
|
6032
|
-
SOL
|
|
6033
|
-
}
|
|
6031
|
+
USDC: string | number | null;
|
|
6032
|
+
SOL: string | number | null;
|
|
6033
|
+
}>;
|
|
6034
6034
|
}, "strip", z.ZodTypeAny, {
|
|
6035
6035
|
Bitcoin: {
|
|
6036
6036
|
BTC: bigint | null;
|
|
@@ -6066,13 +6066,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6066
6066
|
ETH: string | number | null;
|
|
6067
6067
|
USDC: string | number | null;
|
|
6068
6068
|
};
|
|
6069
|
+
Solana: {
|
|
6070
|
+
USDC: string | number | null;
|
|
6071
|
+
SOL: string | number | null;
|
|
6072
|
+
};
|
|
6069
6073
|
Polkadot: {
|
|
6070
6074
|
DOT: string | number | null;
|
|
6071
6075
|
};
|
|
6072
|
-
Solana?: {
|
|
6073
|
-
USDC?: string | number | null | undefined;
|
|
6074
|
-
SOL?: string | number | null | undefined;
|
|
6075
|
-
} | undefined;
|
|
6076
6076
|
}>;
|
|
6077
6077
|
egress_fees: z.ZodObject<{
|
|
6078
6078
|
Bitcoin: z.ZodObject<{
|
|
@@ -6115,16 +6115,16 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6115
6115
|
ETH: string | number | null;
|
|
6116
6116
|
USDC: string | number | null;
|
|
6117
6117
|
}>;
|
|
6118
|
-
Solana: z.
|
|
6119
|
-
SOL: z.
|
|
6120
|
-
USDC: z.
|
|
6118
|
+
Solana: z.ZodObject<{
|
|
6119
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
6120
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
6121
6121
|
}, "strip", z.ZodTypeAny, {
|
|
6122
6122
|
USDC: bigint | null;
|
|
6123
6123
|
SOL: bigint | null;
|
|
6124
6124
|
}, {
|
|
6125
|
-
USDC
|
|
6126
|
-
SOL
|
|
6127
|
-
}
|
|
6125
|
+
USDC: string | number | null;
|
|
6126
|
+
SOL: string | number | null;
|
|
6127
|
+
}>;
|
|
6128
6128
|
}, "strip", z.ZodTypeAny, {
|
|
6129
6129
|
Bitcoin: {
|
|
6130
6130
|
BTC: bigint | null;
|
|
@@ -6160,20 +6160,20 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6160
6160
|
ETH: string | number | null;
|
|
6161
6161
|
USDC: string | number | null;
|
|
6162
6162
|
};
|
|
6163
|
+
Solana: {
|
|
6164
|
+
USDC: string | number | null;
|
|
6165
|
+
SOL: string | number | null;
|
|
6166
|
+
};
|
|
6163
6167
|
Polkadot: {
|
|
6164
6168
|
DOT: string | number | null;
|
|
6165
6169
|
};
|
|
6166
|
-
Solana?: {
|
|
6167
|
-
USDC?: string | number | null | undefined;
|
|
6168
|
-
SOL?: string | number | null | undefined;
|
|
6169
|
-
} | undefined;
|
|
6170
6170
|
}>;
|
|
6171
6171
|
witness_safety_margins: z.ZodObject<{
|
|
6172
6172
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
6173
6173
|
Ethereum: z.ZodNullable<z.ZodNumber>;
|
|
6174
6174
|
Polkadot: z.ZodNullable<z.ZodNumber>;
|
|
6175
6175
|
Arbitrum: z.ZodNullable<z.ZodNumber>;
|
|
6176
|
-
Solana: z.
|
|
6176
|
+
Solana: z.ZodNullable<z.ZodNumber>;
|
|
6177
6177
|
}, "strip", z.ZodTypeAny, {
|
|
6178
6178
|
Bitcoin: number | null;
|
|
6179
6179
|
Ethereum: number | null;
|
|
@@ -6184,8 +6184,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6184
6184
|
Bitcoin: number | null;
|
|
6185
6185
|
Ethereum: number | null;
|
|
6186
6186
|
Arbitrum: number | null;
|
|
6187
|
+
Solana: number | null;
|
|
6187
6188
|
Polkadot: number | null;
|
|
6188
|
-
Solana?: number | null | undefined;
|
|
6189
6189
|
}>;
|
|
6190
6190
|
egress_dust_limits: z.ZodObject<{
|
|
6191
6191
|
Bitcoin: z.ZodObject<{
|
|
@@ -6228,16 +6228,16 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6228
6228
|
ETH: string | number;
|
|
6229
6229
|
USDC: string | number;
|
|
6230
6230
|
}>;
|
|
6231
|
-
Solana: z.
|
|
6232
|
-
SOL: z.
|
|
6233
|
-
USDC: z.
|
|
6231
|
+
Solana: z.ZodObject<{
|
|
6232
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
6233
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
6234
6234
|
}, "strip", z.ZodTypeAny, {
|
|
6235
6235
|
USDC: bigint;
|
|
6236
6236
|
SOL: bigint;
|
|
6237
6237
|
}, {
|
|
6238
|
-
USDC
|
|
6239
|
-
SOL
|
|
6240
|
-
}
|
|
6238
|
+
USDC: string | number;
|
|
6239
|
+
SOL: string | number;
|
|
6240
|
+
}>;
|
|
6241
6241
|
}, "strip", z.ZodTypeAny, {
|
|
6242
6242
|
Bitcoin: {
|
|
6243
6243
|
BTC: bigint;
|
|
@@ -6273,20 +6273,20 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6273
6273
|
ETH: string | number;
|
|
6274
6274
|
USDC: string | number;
|
|
6275
6275
|
};
|
|
6276
|
+
Solana: {
|
|
6277
|
+
USDC: string | number;
|
|
6278
|
+
SOL: string | number;
|
|
6279
|
+
};
|
|
6276
6280
|
Polkadot: {
|
|
6277
6281
|
DOT: string | number;
|
|
6278
6282
|
};
|
|
6279
|
-
Solana?: {
|
|
6280
|
-
USDC?: string | number | undefined;
|
|
6281
|
-
SOL?: string | number | undefined;
|
|
6282
|
-
} | undefined;
|
|
6283
6283
|
}>;
|
|
6284
6284
|
channel_opening_fees: z.ZodObject<{
|
|
6285
6285
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
6286
6286
|
Ethereum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
6287
6287
|
Polkadot: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
6288
6288
|
Arbitrum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
6289
|
-
Solana: z.
|
|
6289
|
+
Solana: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
6290
6290
|
}, "strip", z.ZodTypeAny, {
|
|
6291
6291
|
Bitcoin: bigint;
|
|
6292
6292
|
Ethereum: bigint;
|
|
@@ -6297,15 +6297,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6297
6297
|
Bitcoin: string | number;
|
|
6298
6298
|
Ethereum: string | number;
|
|
6299
6299
|
Arbitrum: string | number;
|
|
6300
|
+
Solana: string | number;
|
|
6300
6301
|
Polkadot: string | number;
|
|
6301
|
-
Solana?: string | number | undefined;
|
|
6302
6302
|
}>;
|
|
6303
6303
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
6304
6304
|
Bitcoin: z.ZodNumber;
|
|
6305
6305
|
Ethereum: z.ZodNumber;
|
|
6306
6306
|
Polkadot: z.ZodNumber;
|
|
6307
6307
|
Arbitrum: z.ZodNumber;
|
|
6308
|
-
Solana: z.
|
|
6308
|
+
Solana: z.ZodNumber;
|
|
6309
6309
|
}, "strip", z.ZodTypeAny, {
|
|
6310
6310
|
Bitcoin: number;
|
|
6311
6311
|
Ethereum: number;
|
|
@@ -6316,8 +6316,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6316
6316
|
Bitcoin: number;
|
|
6317
6317
|
Ethereum: number;
|
|
6318
6318
|
Arbitrum: number;
|
|
6319
|
+
Solana: number;
|
|
6319
6320
|
Polkadot: number;
|
|
6320
|
-
Solana?: number | undefined;
|
|
6321
6321
|
}>>>;
|
|
6322
6322
|
}, "strip", z.ZodTypeAny, {
|
|
6323
6323
|
minimum_deposit_amounts: {
|
|
@@ -6444,13 +6444,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6444
6444
|
ETH: string | number;
|
|
6445
6445
|
USDC: string | number;
|
|
6446
6446
|
};
|
|
6447
|
+
Solana: {
|
|
6448
|
+
USDC: string | number;
|
|
6449
|
+
SOL: string | number;
|
|
6450
|
+
};
|
|
6447
6451
|
Polkadot: {
|
|
6448
6452
|
DOT: string | number;
|
|
6449
6453
|
};
|
|
6450
|
-
Solana?: {
|
|
6451
|
-
USDC?: string | number | undefined;
|
|
6452
|
-
SOL?: string | number | undefined;
|
|
6453
|
-
} | undefined;
|
|
6454
6454
|
};
|
|
6455
6455
|
ingress_fees: {
|
|
6456
6456
|
Bitcoin: {
|
|
@@ -6466,13 +6466,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6466
6466
|
ETH: string | number | null;
|
|
6467
6467
|
USDC: string | number | null;
|
|
6468
6468
|
};
|
|
6469
|
+
Solana: {
|
|
6470
|
+
USDC: string | number | null;
|
|
6471
|
+
SOL: string | number | null;
|
|
6472
|
+
};
|
|
6469
6473
|
Polkadot: {
|
|
6470
6474
|
DOT: string | number | null;
|
|
6471
6475
|
};
|
|
6472
|
-
Solana?: {
|
|
6473
|
-
USDC?: string | number | null | undefined;
|
|
6474
|
-
SOL?: string | number | null | undefined;
|
|
6475
|
-
} | undefined;
|
|
6476
6476
|
};
|
|
6477
6477
|
egress_fees: {
|
|
6478
6478
|
Bitcoin: {
|
|
@@ -6488,20 +6488,20 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6488
6488
|
ETH: string | number | null;
|
|
6489
6489
|
USDC: string | number | null;
|
|
6490
6490
|
};
|
|
6491
|
+
Solana: {
|
|
6492
|
+
USDC: string | number | null;
|
|
6493
|
+
SOL: string | number | null;
|
|
6494
|
+
};
|
|
6491
6495
|
Polkadot: {
|
|
6492
6496
|
DOT: string | number | null;
|
|
6493
6497
|
};
|
|
6494
|
-
Solana?: {
|
|
6495
|
-
USDC?: string | number | null | undefined;
|
|
6496
|
-
SOL?: string | number | null | undefined;
|
|
6497
|
-
} | undefined;
|
|
6498
6498
|
};
|
|
6499
6499
|
witness_safety_margins: {
|
|
6500
6500
|
Bitcoin: number | null;
|
|
6501
6501
|
Ethereum: number | null;
|
|
6502
6502
|
Arbitrum: number | null;
|
|
6503
|
+
Solana: number | null;
|
|
6503
6504
|
Polkadot: number | null;
|
|
6504
|
-
Solana?: number | null | undefined;
|
|
6505
6505
|
};
|
|
6506
6506
|
egress_dust_limits: {
|
|
6507
6507
|
Bitcoin: {
|
|
@@ -6517,27 +6517,27 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6517
6517
|
ETH: string | number;
|
|
6518
6518
|
USDC: string | number;
|
|
6519
6519
|
};
|
|
6520
|
+
Solana: {
|
|
6521
|
+
USDC: string | number;
|
|
6522
|
+
SOL: string | number;
|
|
6523
|
+
};
|
|
6520
6524
|
Polkadot: {
|
|
6521
6525
|
DOT: string | number;
|
|
6522
6526
|
};
|
|
6523
|
-
Solana?: {
|
|
6524
|
-
USDC?: string | number | undefined;
|
|
6525
|
-
SOL?: string | number | undefined;
|
|
6526
|
-
} | undefined;
|
|
6527
6527
|
};
|
|
6528
6528
|
channel_opening_fees: {
|
|
6529
6529
|
Bitcoin: string | number;
|
|
6530
6530
|
Ethereum: string | number;
|
|
6531
6531
|
Arbitrum: string | number;
|
|
6532
|
+
Solana: string | number;
|
|
6532
6533
|
Polkadot: string | number;
|
|
6533
|
-
Solana?: string | number | undefined;
|
|
6534
6534
|
};
|
|
6535
6535
|
max_swap_retry_duration_blocks?: {
|
|
6536
6536
|
Bitcoin: number;
|
|
6537
6537
|
Ethereum: number;
|
|
6538
6538
|
Arbitrum: number;
|
|
6539
|
+
Solana: number;
|
|
6539
6540
|
Polkadot: number;
|
|
6540
|
-
Solana?: number | undefined;
|
|
6541
6541
|
} | undefined;
|
|
6542
6542
|
}>, Rename<{
|
|
6543
6543
|
minimum_deposit_amounts: {
|
|
@@ -6666,13 +6666,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6666
6666
|
ETH: string | number;
|
|
6667
6667
|
USDC: string | number;
|
|
6668
6668
|
};
|
|
6669
|
+
Solana: {
|
|
6670
|
+
USDC: string | number;
|
|
6671
|
+
SOL: string | number;
|
|
6672
|
+
};
|
|
6669
6673
|
Polkadot: {
|
|
6670
6674
|
DOT: string | number;
|
|
6671
6675
|
};
|
|
6672
|
-
Solana?: {
|
|
6673
|
-
USDC?: string | number | undefined;
|
|
6674
|
-
SOL?: string | number | undefined;
|
|
6675
|
-
} | undefined;
|
|
6676
6676
|
};
|
|
6677
6677
|
ingress_fees: {
|
|
6678
6678
|
Bitcoin: {
|
|
@@ -6688,13 +6688,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6688
6688
|
ETH: string | number | null;
|
|
6689
6689
|
USDC: string | number | null;
|
|
6690
6690
|
};
|
|
6691
|
+
Solana: {
|
|
6692
|
+
USDC: string | number | null;
|
|
6693
|
+
SOL: string | number | null;
|
|
6694
|
+
};
|
|
6691
6695
|
Polkadot: {
|
|
6692
6696
|
DOT: string | number | null;
|
|
6693
6697
|
};
|
|
6694
|
-
Solana?: {
|
|
6695
|
-
USDC?: string | number | null | undefined;
|
|
6696
|
-
SOL?: string | number | null | undefined;
|
|
6697
|
-
} | undefined;
|
|
6698
6698
|
};
|
|
6699
6699
|
egress_fees: {
|
|
6700
6700
|
Bitcoin: {
|
|
@@ -6710,20 +6710,20 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6710
6710
|
ETH: string | number | null;
|
|
6711
6711
|
USDC: string | number | null;
|
|
6712
6712
|
};
|
|
6713
|
+
Solana: {
|
|
6714
|
+
USDC: string | number | null;
|
|
6715
|
+
SOL: string | number | null;
|
|
6716
|
+
};
|
|
6713
6717
|
Polkadot: {
|
|
6714
6718
|
DOT: string | number | null;
|
|
6715
6719
|
};
|
|
6716
|
-
Solana?: {
|
|
6717
|
-
USDC?: string | number | null | undefined;
|
|
6718
|
-
SOL?: string | number | null | undefined;
|
|
6719
|
-
} | undefined;
|
|
6720
6720
|
};
|
|
6721
6721
|
witness_safety_margins: {
|
|
6722
6722
|
Bitcoin: number | null;
|
|
6723
6723
|
Ethereum: number | null;
|
|
6724
6724
|
Arbitrum: number | null;
|
|
6725
|
+
Solana: number | null;
|
|
6725
6726
|
Polkadot: number | null;
|
|
6726
|
-
Solana?: number | null | undefined;
|
|
6727
6727
|
};
|
|
6728
6728
|
egress_dust_limits: {
|
|
6729
6729
|
Bitcoin: {
|
|
@@ -6739,27 +6739,27 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6739
6739
|
ETH: string | number;
|
|
6740
6740
|
USDC: string | number;
|
|
6741
6741
|
};
|
|
6742
|
+
Solana: {
|
|
6743
|
+
USDC: string | number;
|
|
6744
|
+
SOL: string | number;
|
|
6745
|
+
};
|
|
6742
6746
|
Polkadot: {
|
|
6743
6747
|
DOT: string | number;
|
|
6744
6748
|
};
|
|
6745
|
-
Solana?: {
|
|
6746
|
-
USDC?: string | number | undefined;
|
|
6747
|
-
SOL?: string | number | undefined;
|
|
6748
|
-
} | undefined;
|
|
6749
6749
|
};
|
|
6750
6750
|
channel_opening_fees: {
|
|
6751
6751
|
Bitcoin: string | number;
|
|
6752
6752
|
Ethereum: string | number;
|
|
6753
6753
|
Arbitrum: string | number;
|
|
6754
|
+
Solana: string | number;
|
|
6754
6755
|
Polkadot: string | number;
|
|
6755
|
-
Solana?: string | number | undefined;
|
|
6756
6756
|
};
|
|
6757
6757
|
max_swap_retry_duration_blocks?: {
|
|
6758
6758
|
Bitcoin: number;
|
|
6759
6759
|
Ethereum: number;
|
|
6760
6760
|
Arbitrum: number;
|
|
6761
|
+
Solana: number;
|
|
6761
6762
|
Polkadot: number;
|
|
6762
|
-
Solana?: number | undefined;
|
|
6763
6763
|
} | undefined;
|
|
6764
6764
|
}>;
|
|
6765
6765
|
swapping: z.ZodObject<{
|
|
@@ -6804,16 +6804,16 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6804
6804
|
ETH: string | number | null;
|
|
6805
6805
|
USDC: string | number | null;
|
|
6806
6806
|
}>;
|
|
6807
|
-
Solana: z.
|
|
6808
|
-
SOL: z.
|
|
6809
|
-
USDC: z.
|
|
6807
|
+
Solana: z.ZodObject<{
|
|
6808
|
+
SOL: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
6809
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
6810
6810
|
}, "strip", z.ZodTypeAny, {
|
|
6811
6811
|
USDC: bigint | null;
|
|
6812
6812
|
SOL: bigint | null;
|
|
6813
6813
|
}, {
|
|
6814
|
-
USDC
|
|
6815
|
-
SOL
|
|
6816
|
-
}
|
|
6814
|
+
USDC: string | number | null;
|
|
6815
|
+
SOL: string | number | null;
|
|
6816
|
+
}>;
|
|
6817
6817
|
}, "strip", z.ZodTypeAny, {
|
|
6818
6818
|
Bitcoin: {
|
|
6819
6819
|
BTC: bigint | null;
|
|
@@ -6849,13 +6849,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6849
6849
|
ETH: string | number | null;
|
|
6850
6850
|
USDC: string | number | null;
|
|
6851
6851
|
};
|
|
6852
|
+
Solana: {
|
|
6853
|
+
USDC: string | number | null;
|
|
6854
|
+
SOL: string | number | null;
|
|
6855
|
+
};
|
|
6852
6856
|
Polkadot: {
|
|
6853
6857
|
DOT: string | number | null;
|
|
6854
6858
|
};
|
|
6855
|
-
Solana?: {
|
|
6856
|
-
USDC?: string | number | null | undefined;
|
|
6857
|
-
SOL?: string | number | null | undefined;
|
|
6858
|
-
} | undefined;
|
|
6859
6859
|
}>;
|
|
6860
6860
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
6861
6861
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6897,13 +6897,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6897
6897
|
ETH: string | number | null;
|
|
6898
6898
|
USDC: string | number | null;
|
|
6899
6899
|
};
|
|
6900
|
+
Solana: {
|
|
6901
|
+
USDC: string | number | null;
|
|
6902
|
+
SOL: string | number | null;
|
|
6903
|
+
};
|
|
6900
6904
|
Polkadot: {
|
|
6901
6905
|
DOT: string | number | null;
|
|
6902
6906
|
};
|
|
6903
|
-
Solana?: {
|
|
6904
|
-
USDC?: string | number | null | undefined;
|
|
6905
|
-
SOL?: string | number | null | undefined;
|
|
6906
|
-
} | undefined;
|
|
6907
6907
|
};
|
|
6908
6908
|
network_fee_hundredth_pips: number;
|
|
6909
6909
|
}>;
|
|
@@ -8615,8 +8615,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8615
8615
|
};
|
|
8616
8616
|
} | null;
|
|
8617
8617
|
}>;
|
|
8618
|
-
Solana: z.
|
|
8619
|
-
SOL: z.
|
|
8618
|
+
Solana: z.ZodObject<{
|
|
8619
|
+
SOL: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
8620
8620
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
8621
8621
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
8622
8622
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -8784,8 +8784,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8784
8784
|
chain: "Ethereum";
|
|
8785
8785
|
asset: "USDC";
|
|
8786
8786
|
};
|
|
8787
|
-
} | null
|
|
8788
|
-
USDC: z.
|
|
8787
|
+
} | null>;
|
|
8788
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
8789
8789
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
8790
8790
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
8791
8791
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -8953,7 +8953,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8953
8953
|
chain: "Ethereum";
|
|
8954
8954
|
asset: "USDC";
|
|
8955
8955
|
};
|
|
8956
|
-
} | null
|
|
8956
|
+
} | null>;
|
|
8957
8957
|
}, "strip", z.ZodTypeAny, {
|
|
8958
8958
|
USDC: {
|
|
8959
8959
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -9050,7 +9050,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9050
9050
|
};
|
|
9051
9051
|
};
|
|
9052
9052
|
}, {
|
|
9053
|
-
USDC
|
|
9053
|
+
USDC: {
|
|
9054
9054
|
limit_order_fee_hundredth_pips: number;
|
|
9055
9055
|
range_order_fee_hundredth_pips: number;
|
|
9056
9056
|
range_order_total_fees_earned: {
|
|
@@ -9073,8 +9073,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9073
9073
|
chain: "Ethereum";
|
|
9074
9074
|
asset: "USDC";
|
|
9075
9075
|
};
|
|
9076
|
-
} | null
|
|
9077
|
-
SOL
|
|
9076
|
+
} | null;
|
|
9077
|
+
SOL: {
|
|
9078
9078
|
limit_order_fee_hundredth_pips: number;
|
|
9079
9079
|
range_order_fee_hundredth_pips: number;
|
|
9080
9080
|
range_order_total_fees_earned: {
|
|
@@ -9097,8 +9097,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9097
9097
|
chain: "Ethereum";
|
|
9098
9098
|
asset: "USDC";
|
|
9099
9099
|
};
|
|
9100
|
-
} | null
|
|
9101
|
-
}
|
|
9100
|
+
} | null;
|
|
9101
|
+
}>;
|
|
9102
9102
|
}, "strip", z.ZodTypeAny, {
|
|
9103
9103
|
Bitcoin: {
|
|
9104
9104
|
BTC: {
|
|
@@ -9684,8 +9684,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9684
9684
|
};
|
|
9685
9685
|
} | null;
|
|
9686
9686
|
};
|
|
9687
|
-
|
|
9688
|
-
|
|
9687
|
+
Solana: {
|
|
9688
|
+
USDC: {
|
|
9689
9689
|
limit_order_fee_hundredth_pips: number;
|
|
9690
9690
|
range_order_fee_hundredth_pips: number;
|
|
9691
9691
|
range_order_total_fees_earned: {
|
|
@@ -9709,9 +9709,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9709
9709
|
asset: "USDC";
|
|
9710
9710
|
};
|
|
9711
9711
|
} | null;
|
|
9712
|
-
|
|
9713
|
-
Solana?: {
|
|
9714
|
-
USDC?: {
|
|
9712
|
+
SOL: {
|
|
9715
9713
|
limit_order_fee_hundredth_pips: number;
|
|
9716
9714
|
range_order_fee_hundredth_pips: number;
|
|
9717
9715
|
range_order_total_fees_earned: {
|
|
@@ -9734,8 +9732,10 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9734
9732
|
chain: "Ethereum";
|
|
9735
9733
|
asset: "USDC";
|
|
9736
9734
|
};
|
|
9737
|
-
} | null
|
|
9738
|
-
|
|
9735
|
+
} | null;
|
|
9736
|
+
};
|
|
9737
|
+
Polkadot: {
|
|
9738
|
+
DOT: {
|
|
9739
9739
|
limit_order_fee_hundredth_pips: number;
|
|
9740
9740
|
range_order_fee_hundredth_pips: number;
|
|
9741
9741
|
range_order_total_fees_earned: {
|
|
@@ -9758,8 +9758,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9758
9758
|
chain: "Ethereum";
|
|
9759
9759
|
asset: "USDC";
|
|
9760
9760
|
};
|
|
9761
|
-
} | null
|
|
9762
|
-
}
|
|
9761
|
+
} | null;
|
|
9762
|
+
};
|
|
9763
9763
|
}>;
|
|
9764
9764
|
}, "strip", z.ZodTypeAny, {
|
|
9765
9765
|
fees: {
|
|
@@ -10349,8 +10349,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10349
10349
|
};
|
|
10350
10350
|
} | null;
|
|
10351
10351
|
};
|
|
10352
|
-
|
|
10353
|
-
|
|
10352
|
+
Solana: {
|
|
10353
|
+
USDC: {
|
|
10354
10354
|
limit_order_fee_hundredth_pips: number;
|
|
10355
10355
|
range_order_fee_hundredth_pips: number;
|
|
10356
10356
|
range_order_total_fees_earned: {
|
|
@@ -10374,9 +10374,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10374
10374
|
asset: "USDC";
|
|
10375
10375
|
};
|
|
10376
10376
|
} | null;
|
|
10377
|
-
|
|
10378
|
-
Solana?: {
|
|
10379
|
-
USDC?: {
|
|
10377
|
+
SOL: {
|
|
10380
10378
|
limit_order_fee_hundredth_pips: number;
|
|
10381
10379
|
range_order_fee_hundredth_pips: number;
|
|
10382
10380
|
range_order_total_fees_earned: {
|
|
@@ -10399,8 +10397,10 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10399
10397
|
chain: "Ethereum";
|
|
10400
10398
|
asset: "USDC";
|
|
10401
10399
|
};
|
|
10402
|
-
} | null
|
|
10403
|
-
|
|
10400
|
+
} | null;
|
|
10401
|
+
};
|
|
10402
|
+
Polkadot: {
|
|
10403
|
+
DOT: {
|
|
10404
10404
|
limit_order_fee_hundredth_pips: number;
|
|
10405
10405
|
range_order_fee_hundredth_pips: number;
|
|
10406
10406
|
range_order_total_fees_earned: {
|
|
@@ -10423,8 +10423,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10423
10423
|
chain: "Ethereum";
|
|
10424
10424
|
asset: "USDC";
|
|
10425
10425
|
};
|
|
10426
|
-
} | null
|
|
10427
|
-
}
|
|
10426
|
+
} | null;
|
|
10427
|
+
};
|
|
10428
10428
|
};
|
|
10429
10429
|
}>;
|
|
10430
10430
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11044,13 +11044,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11044
11044
|
ETH: string | number;
|
|
11045
11045
|
USDC: string | number;
|
|
11046
11046
|
};
|
|
11047
|
+
Solana: {
|
|
11048
|
+
USDC: string | number;
|
|
11049
|
+
SOL: string | number;
|
|
11050
|
+
};
|
|
11047
11051
|
Polkadot: {
|
|
11048
11052
|
DOT: string | number;
|
|
11049
11053
|
};
|
|
11050
|
-
Solana?: {
|
|
11051
|
-
USDC?: string | number | undefined;
|
|
11052
|
-
SOL?: string | number | undefined;
|
|
11053
|
-
} | undefined;
|
|
11054
11054
|
};
|
|
11055
11055
|
ingress_fees: {
|
|
11056
11056
|
Bitcoin: {
|
|
@@ -11066,13 +11066,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11066
11066
|
ETH: string | number | null;
|
|
11067
11067
|
USDC: string | number | null;
|
|
11068
11068
|
};
|
|
11069
|
+
Solana: {
|
|
11070
|
+
USDC: string | number | null;
|
|
11071
|
+
SOL: string | number | null;
|
|
11072
|
+
};
|
|
11069
11073
|
Polkadot: {
|
|
11070
11074
|
DOT: string | number | null;
|
|
11071
11075
|
};
|
|
11072
|
-
Solana?: {
|
|
11073
|
-
USDC?: string | number | null | undefined;
|
|
11074
|
-
SOL?: string | number | null | undefined;
|
|
11075
|
-
} | undefined;
|
|
11076
11076
|
};
|
|
11077
11077
|
egress_fees: {
|
|
11078
11078
|
Bitcoin: {
|
|
@@ -11088,20 +11088,20 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11088
11088
|
ETH: string | number | null;
|
|
11089
11089
|
USDC: string | number | null;
|
|
11090
11090
|
};
|
|
11091
|
+
Solana: {
|
|
11092
|
+
USDC: string | number | null;
|
|
11093
|
+
SOL: string | number | null;
|
|
11094
|
+
};
|
|
11091
11095
|
Polkadot: {
|
|
11092
11096
|
DOT: string | number | null;
|
|
11093
11097
|
};
|
|
11094
|
-
Solana?: {
|
|
11095
|
-
USDC?: string | number | null | undefined;
|
|
11096
|
-
SOL?: string | number | null | undefined;
|
|
11097
|
-
} | undefined;
|
|
11098
11098
|
};
|
|
11099
11099
|
witness_safety_margins: {
|
|
11100
11100
|
Bitcoin: number | null;
|
|
11101
11101
|
Ethereum: number | null;
|
|
11102
11102
|
Arbitrum: number | null;
|
|
11103
|
+
Solana: number | null;
|
|
11103
11104
|
Polkadot: number | null;
|
|
11104
|
-
Solana?: number | null | undefined;
|
|
11105
11105
|
};
|
|
11106
11106
|
egress_dust_limits: {
|
|
11107
11107
|
Bitcoin: {
|
|
@@ -11117,27 +11117,27 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11117
11117
|
ETH: string | number;
|
|
11118
11118
|
USDC: string | number;
|
|
11119
11119
|
};
|
|
11120
|
+
Solana: {
|
|
11121
|
+
USDC: string | number;
|
|
11122
|
+
SOL: string | number;
|
|
11123
|
+
};
|
|
11120
11124
|
Polkadot: {
|
|
11121
11125
|
DOT: string | number;
|
|
11122
11126
|
};
|
|
11123
|
-
Solana?: {
|
|
11124
|
-
USDC?: string | number | undefined;
|
|
11125
|
-
SOL?: string | number | undefined;
|
|
11126
|
-
} | undefined;
|
|
11127
11127
|
};
|
|
11128
11128
|
channel_opening_fees: {
|
|
11129
11129
|
Bitcoin: string | number;
|
|
11130
11130
|
Ethereum: string | number;
|
|
11131
11131
|
Arbitrum: string | number;
|
|
11132
|
+
Solana: string | number;
|
|
11132
11133
|
Polkadot: string | number;
|
|
11133
|
-
Solana?: string | number | undefined;
|
|
11134
11134
|
};
|
|
11135
11135
|
max_swap_retry_duration_blocks?: {
|
|
11136
11136
|
Bitcoin: number;
|
|
11137
11137
|
Ethereum: number;
|
|
11138
11138
|
Arbitrum: number;
|
|
11139
|
+
Solana: number;
|
|
11139
11140
|
Polkadot: number;
|
|
11140
|
-
Solana?: number | undefined;
|
|
11141
11141
|
} | undefined;
|
|
11142
11142
|
};
|
|
11143
11143
|
swapping: {
|
|
@@ -11155,13 +11155,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11155
11155
|
ETH: string | number | null;
|
|
11156
11156
|
USDC: string | number | null;
|
|
11157
11157
|
};
|
|
11158
|
+
Solana: {
|
|
11159
|
+
USDC: string | number | null;
|
|
11160
|
+
SOL: string | number | null;
|
|
11161
|
+
};
|
|
11158
11162
|
Polkadot: {
|
|
11159
11163
|
DOT: string | number | null;
|
|
11160
11164
|
};
|
|
11161
|
-
Solana?: {
|
|
11162
|
-
USDC?: string | number | null | undefined;
|
|
11163
|
-
SOL?: string | number | null | undefined;
|
|
11164
|
-
} | undefined;
|
|
11165
11165
|
};
|
|
11166
11166
|
network_fee_hundredth_pips: number;
|
|
11167
11167
|
};
|
|
@@ -11321,8 +11321,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11321
11321
|
};
|
|
11322
11322
|
} | null;
|
|
11323
11323
|
};
|
|
11324
|
-
|
|
11325
|
-
|
|
11324
|
+
Solana: {
|
|
11325
|
+
USDC: {
|
|
11326
11326
|
limit_order_fee_hundredth_pips: number;
|
|
11327
11327
|
range_order_fee_hundredth_pips: number;
|
|
11328
11328
|
range_order_total_fees_earned: {
|
|
@@ -11346,9 +11346,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11346
11346
|
asset: "USDC";
|
|
11347
11347
|
};
|
|
11348
11348
|
} | null;
|
|
11349
|
-
|
|
11350
|
-
Solana?: {
|
|
11351
|
-
USDC?: {
|
|
11349
|
+
SOL: {
|
|
11352
11350
|
limit_order_fee_hundredth_pips: number;
|
|
11353
11351
|
range_order_fee_hundredth_pips: number;
|
|
11354
11352
|
range_order_total_fees_earned: {
|
|
@@ -11371,8 +11369,10 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11371
11369
|
chain: "Ethereum";
|
|
11372
11370
|
asset: "USDC";
|
|
11373
11371
|
};
|
|
11374
|
-
} | null
|
|
11375
|
-
|
|
11372
|
+
} | null;
|
|
11373
|
+
};
|
|
11374
|
+
Polkadot: {
|
|
11375
|
+
DOT: {
|
|
11376
11376
|
limit_order_fee_hundredth_pips: number;
|
|
11377
11377
|
range_order_fee_hundredth_pips: number;
|
|
11378
11378
|
range_order_total_fees_earned: {
|
|
@@ -11395,8 +11395,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11395
11395
|
chain: "Ethereum";
|
|
11396
11396
|
asset: "USDC";
|
|
11397
11397
|
};
|
|
11398
|
-
} | null
|
|
11399
|
-
}
|
|
11398
|
+
} | null;
|
|
11399
|
+
};
|
|
11400
11400
|
};
|
|
11401
11401
|
};
|
|
11402
11402
|
}>;
|
|
@@ -11826,16 +11826,16 @@ declare const broker: z.ZodObject<{
|
|
|
11826
11826
|
ETH: string | number;
|
|
11827
11827
|
USDC: string | number;
|
|
11828
11828
|
}>;
|
|
11829
|
-
Solana: z.
|
|
11830
|
-
SOL: z.
|
|
11831
|
-
USDC: z.
|
|
11829
|
+
Solana: z.ZodObject<{
|
|
11830
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
11831
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
11832
11832
|
}, "strip", z.ZodTypeAny, {
|
|
11833
11833
|
USDC: bigint;
|
|
11834
11834
|
SOL: bigint;
|
|
11835
11835
|
}, {
|
|
11836
|
-
USDC
|
|
11837
|
-
SOL
|
|
11838
|
-
}
|
|
11836
|
+
USDC: string | number;
|
|
11837
|
+
SOL: string | number;
|
|
11838
|
+
}>;
|
|
11839
11839
|
}, "strip", z.ZodTypeAny, {
|
|
11840
11840
|
Bitcoin: {
|
|
11841
11841
|
BTC: bigint;
|
|
@@ -11871,13 +11871,13 @@ declare const broker: z.ZodObject<{
|
|
|
11871
11871
|
ETH: string | number;
|
|
11872
11872
|
USDC: string | number;
|
|
11873
11873
|
};
|
|
11874
|
+
Solana: {
|
|
11875
|
+
USDC: string | number;
|
|
11876
|
+
SOL: string | number;
|
|
11877
|
+
};
|
|
11874
11878
|
Polkadot: {
|
|
11875
11879
|
DOT: string | number;
|
|
11876
11880
|
};
|
|
11877
|
-
Solana?: {
|
|
11878
|
-
USDC?: string | number | undefined;
|
|
11879
|
-
SOL?: string | number | undefined;
|
|
11880
|
-
} | undefined;
|
|
11881
11881
|
}>;
|
|
11882
11882
|
btc_vault_deposit_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11883
11883
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11923,13 +11923,13 @@ declare const broker: z.ZodObject<{
|
|
|
11923
11923
|
ETH: string | number;
|
|
11924
11924
|
USDC: string | number;
|
|
11925
11925
|
};
|
|
11926
|
+
Solana: {
|
|
11927
|
+
USDC: string | number;
|
|
11928
|
+
SOL: string | number;
|
|
11929
|
+
};
|
|
11926
11930
|
Polkadot: {
|
|
11927
11931
|
DOT: string | number;
|
|
11928
11932
|
};
|
|
11929
|
-
Solana?: {
|
|
11930
|
-
USDC?: string | number | undefined;
|
|
11931
|
-
SOL?: string | number | undefined;
|
|
11932
|
-
} | undefined;
|
|
11933
11933
|
};
|
|
11934
11934
|
btc_vault_deposit_address?: string | null | undefined;
|
|
11935
11935
|
}>;
|
|
@@ -11976,16 +11976,16 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
11976
11976
|
ETH: string | number;
|
|
11977
11977
|
USDC: string | number;
|
|
11978
11978
|
}>;
|
|
11979
|
-
Solana: z.
|
|
11980
|
-
SOL: z.
|
|
11981
|
-
USDC: z.
|
|
11979
|
+
Solana: z.ZodObject<{
|
|
11980
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
11981
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
11982
11982
|
}, "strip", z.ZodTypeAny, {
|
|
11983
11983
|
USDC: bigint;
|
|
11984
11984
|
SOL: bigint;
|
|
11985
11985
|
}, {
|
|
11986
|
-
USDC
|
|
11987
|
-
SOL
|
|
11988
|
-
}
|
|
11986
|
+
USDC: string | number;
|
|
11987
|
+
SOL: string | number;
|
|
11988
|
+
}>;
|
|
11989
11989
|
}, "strip", z.ZodTypeAny, {
|
|
11990
11990
|
Bitcoin: {
|
|
11991
11991
|
BTC: bigint;
|
|
@@ -12021,20 +12021,20 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12021
12021
|
ETH: string | number;
|
|
12022
12022
|
USDC: string | number;
|
|
12023
12023
|
};
|
|
12024
|
+
Solana: {
|
|
12025
|
+
USDC: string | number;
|
|
12026
|
+
SOL: string | number;
|
|
12027
|
+
};
|
|
12024
12028
|
Polkadot: {
|
|
12025
12029
|
DOT: string | number;
|
|
12026
12030
|
};
|
|
12027
|
-
Solana?: {
|
|
12028
|
-
USDC?: string | number | undefined;
|
|
12029
|
-
SOL?: string | number | undefined;
|
|
12030
|
-
} | undefined;
|
|
12031
12031
|
}>;
|
|
12032
12032
|
refund_addresses: z.ZodObject<{
|
|
12033
12033
|
Bitcoin: z.ZodNullable<z.ZodString>;
|
|
12034
12034
|
Ethereum: z.ZodNullable<z.ZodString>;
|
|
12035
12035
|
Polkadot: z.ZodNullable<z.ZodString>;
|
|
12036
12036
|
Arbitrum: z.ZodNullable<z.ZodString>;
|
|
12037
|
-
Solana: z.
|
|
12037
|
+
Solana: z.ZodNullable<z.ZodString>;
|
|
12038
12038
|
}, "strip", z.ZodTypeAny, {
|
|
12039
12039
|
Bitcoin: string | null;
|
|
12040
12040
|
Ethereum: string | null;
|
|
@@ -12045,8 +12045,8 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12045
12045
|
Bitcoin: string | null;
|
|
12046
12046
|
Ethereum: string | null;
|
|
12047
12047
|
Arbitrum: string | null;
|
|
12048
|
+
Solana: string | null;
|
|
12048
12049
|
Polkadot: string | null;
|
|
12049
|
-
Solana?: string | null | undefined;
|
|
12050
12050
|
}>;
|
|
12051
12051
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
12052
12052
|
earned_fees: z.ZodObject<{
|
|
@@ -12090,16 +12090,16 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12090
12090
|
ETH: string | number;
|
|
12091
12091
|
USDC: string | number;
|
|
12092
12092
|
}>;
|
|
12093
|
-
Solana: z.
|
|
12094
|
-
SOL: z.
|
|
12095
|
-
USDC: z.
|
|
12093
|
+
Solana: z.ZodObject<{
|
|
12094
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
12095
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
12096
12096
|
}, "strip", z.ZodTypeAny, {
|
|
12097
12097
|
USDC: bigint;
|
|
12098
12098
|
SOL: bigint;
|
|
12099
12099
|
}, {
|
|
12100
|
-
USDC
|
|
12101
|
-
SOL
|
|
12102
|
-
}
|
|
12100
|
+
USDC: string | number;
|
|
12101
|
+
SOL: string | number;
|
|
12102
|
+
}>;
|
|
12103
12103
|
}, "strip", z.ZodTypeAny, {
|
|
12104
12104
|
Bitcoin: {
|
|
12105
12105
|
BTC: bigint;
|
|
@@ -12135,13 +12135,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12135
12135
|
ETH: string | number;
|
|
12136
12136
|
USDC: string | number;
|
|
12137
12137
|
};
|
|
12138
|
+
Solana: {
|
|
12139
|
+
USDC: string | number;
|
|
12140
|
+
SOL: string | number;
|
|
12141
|
+
};
|
|
12138
12142
|
Polkadot: {
|
|
12139
12143
|
DOT: string | number;
|
|
12140
12144
|
};
|
|
12141
|
-
Solana?: {
|
|
12142
|
-
USDC?: string | number | undefined;
|
|
12143
|
-
SOL?: string | number | undefined;
|
|
12144
|
-
} | undefined;
|
|
12145
12145
|
}>;
|
|
12146
12146
|
boost_balances: z.ZodObject<{
|
|
12147
12147
|
Bitcoin: z.ZodObject<{
|
|
@@ -12424,8 +12424,8 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12424
12424
|
is_withdrawing: boolean;
|
|
12425
12425
|
}[];
|
|
12426
12426
|
}>;
|
|
12427
|
-
Solana: z.
|
|
12428
|
-
SOL: z.
|
|
12427
|
+
Solana: z.ZodObject<{
|
|
12428
|
+
SOL: z.ZodArray<z.ZodObject<{
|
|
12429
12429
|
fee_tier: z.ZodNumber;
|
|
12430
12430
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
12431
12431
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -12443,8 +12443,8 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12443
12443
|
available_balance: string;
|
|
12444
12444
|
in_use_balance: string;
|
|
12445
12445
|
is_withdrawing: boolean;
|
|
12446
|
-
}>, "many"
|
|
12447
|
-
USDC: z.
|
|
12446
|
+
}>, "many">;
|
|
12447
|
+
USDC: z.ZodArray<z.ZodObject<{
|
|
12448
12448
|
fee_tier: z.ZodNumber;
|
|
12449
12449
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
12450
12450
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -12462,7 +12462,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12462
12462
|
available_balance: string;
|
|
12463
12463
|
in_use_balance: string;
|
|
12464
12464
|
is_withdrawing: boolean;
|
|
12465
|
-
}>, "many"
|
|
12465
|
+
}>, "many">;
|
|
12466
12466
|
}, "strip", z.ZodTypeAny, {
|
|
12467
12467
|
USDC: {
|
|
12468
12468
|
fee_tier: number;
|
|
@@ -12479,21 +12479,21 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12479
12479
|
is_withdrawing: boolean;
|
|
12480
12480
|
}[];
|
|
12481
12481
|
}, {
|
|
12482
|
-
USDC
|
|
12482
|
+
USDC: {
|
|
12483
12483
|
fee_tier: number;
|
|
12484
12484
|
total_balance: string;
|
|
12485
12485
|
available_balance: string;
|
|
12486
12486
|
in_use_balance: string;
|
|
12487
12487
|
is_withdrawing: boolean;
|
|
12488
|
-
}[]
|
|
12489
|
-
SOL
|
|
12488
|
+
}[];
|
|
12489
|
+
SOL: {
|
|
12490
12490
|
fee_tier: number;
|
|
12491
12491
|
total_balance: string;
|
|
12492
12492
|
available_balance: string;
|
|
12493
12493
|
in_use_balance: string;
|
|
12494
12494
|
is_withdrawing: boolean;
|
|
12495
|
-
}[]
|
|
12496
|
-
}
|
|
12495
|
+
}[];
|
|
12496
|
+
}>;
|
|
12497
12497
|
}, "strip", z.ZodTypeAny, {
|
|
12498
12498
|
Bitcoin: {
|
|
12499
12499
|
BTC: {
|
|
@@ -12631,31 +12631,31 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12631
12631
|
is_withdrawing: boolean;
|
|
12632
12632
|
}[];
|
|
12633
12633
|
};
|
|
12634
|
-
|
|
12635
|
-
|
|
12634
|
+
Solana: {
|
|
12635
|
+
USDC: {
|
|
12636
12636
|
fee_tier: number;
|
|
12637
12637
|
total_balance: string;
|
|
12638
12638
|
available_balance: string;
|
|
12639
12639
|
in_use_balance: string;
|
|
12640
12640
|
is_withdrawing: boolean;
|
|
12641
12641
|
}[];
|
|
12642
|
-
|
|
12643
|
-
Solana?: {
|
|
12644
|
-
USDC?: {
|
|
12642
|
+
SOL: {
|
|
12645
12643
|
fee_tier: number;
|
|
12646
12644
|
total_balance: string;
|
|
12647
12645
|
available_balance: string;
|
|
12648
12646
|
in_use_balance: string;
|
|
12649
12647
|
is_withdrawing: boolean;
|
|
12650
|
-
}[]
|
|
12651
|
-
|
|
12648
|
+
}[];
|
|
12649
|
+
};
|
|
12650
|
+
Polkadot: {
|
|
12651
|
+
DOT: {
|
|
12652
12652
|
fee_tier: number;
|
|
12653
12653
|
total_balance: string;
|
|
12654
12654
|
available_balance: string;
|
|
12655
12655
|
in_use_balance: string;
|
|
12656
12656
|
is_withdrawing: boolean;
|
|
12657
|
-
}[]
|
|
12658
|
-
}
|
|
12657
|
+
}[];
|
|
12658
|
+
};
|
|
12659
12659
|
}>;
|
|
12660
12660
|
}, "strip", z.ZodTypeAny, {
|
|
12661
12661
|
role: "liquidity_provider";
|
|
@@ -12810,13 +12810,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12810
12810
|
ETH: string | number;
|
|
12811
12811
|
USDC: string | number;
|
|
12812
12812
|
};
|
|
12813
|
+
Solana: {
|
|
12814
|
+
USDC: string | number;
|
|
12815
|
+
SOL: string | number;
|
|
12816
|
+
};
|
|
12813
12817
|
Polkadot: {
|
|
12814
12818
|
DOT: string | number;
|
|
12815
12819
|
};
|
|
12816
|
-
Solana?: {
|
|
12817
|
-
USDC?: string | number | undefined;
|
|
12818
|
-
SOL?: string | number | undefined;
|
|
12819
|
-
} | undefined;
|
|
12820
12820
|
};
|
|
12821
12821
|
balances: {
|
|
12822
12822
|
Bitcoin: {
|
|
@@ -12832,20 +12832,20 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12832
12832
|
ETH: string | number;
|
|
12833
12833
|
USDC: string | number;
|
|
12834
12834
|
};
|
|
12835
|
+
Solana: {
|
|
12836
|
+
USDC: string | number;
|
|
12837
|
+
SOL: string | number;
|
|
12838
|
+
};
|
|
12835
12839
|
Polkadot: {
|
|
12836
12840
|
DOT: string | number;
|
|
12837
12841
|
};
|
|
12838
|
-
Solana?: {
|
|
12839
|
-
USDC?: string | number | undefined;
|
|
12840
|
-
SOL?: string | number | undefined;
|
|
12841
|
-
} | undefined;
|
|
12842
12842
|
};
|
|
12843
12843
|
refund_addresses: {
|
|
12844
12844
|
Bitcoin: string | null;
|
|
12845
12845
|
Ethereum: string | null;
|
|
12846
12846
|
Arbitrum: string | null;
|
|
12847
|
+
Solana: string | null;
|
|
12847
12848
|
Polkadot: string | null;
|
|
12848
|
-
Solana?: string | null | undefined;
|
|
12849
12849
|
};
|
|
12850
12850
|
boost_balances: {
|
|
12851
12851
|
Bitcoin: {
|
|
@@ -12903,31 +12903,31 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12903
12903
|
is_withdrawing: boolean;
|
|
12904
12904
|
}[];
|
|
12905
12905
|
};
|
|
12906
|
-
|
|
12907
|
-
|
|
12906
|
+
Solana: {
|
|
12907
|
+
USDC: {
|
|
12908
12908
|
fee_tier: number;
|
|
12909
12909
|
total_balance: string;
|
|
12910
12910
|
available_balance: string;
|
|
12911
12911
|
in_use_balance: string;
|
|
12912
12912
|
is_withdrawing: boolean;
|
|
12913
12913
|
}[];
|
|
12914
|
-
|
|
12915
|
-
Solana?: {
|
|
12916
|
-
USDC?: {
|
|
12914
|
+
SOL: {
|
|
12917
12915
|
fee_tier: number;
|
|
12918
12916
|
total_balance: string;
|
|
12919
12917
|
available_balance: string;
|
|
12920
12918
|
in_use_balance: string;
|
|
12921
12919
|
is_withdrawing: boolean;
|
|
12922
|
-
}[]
|
|
12923
|
-
|
|
12920
|
+
}[];
|
|
12921
|
+
};
|
|
12922
|
+
Polkadot: {
|
|
12923
|
+
DOT: {
|
|
12924
12924
|
fee_tier: number;
|
|
12925
12925
|
total_balance: string;
|
|
12926
12926
|
available_balance: string;
|
|
12927
12927
|
in_use_balance: string;
|
|
12928
12928
|
is_withdrawing: boolean;
|
|
12929
|
-
}[]
|
|
12930
|
-
}
|
|
12929
|
+
}[];
|
|
12930
|
+
};
|
|
12931
12931
|
};
|
|
12932
12932
|
}>;
|
|
12933
12933
|
declare const validator: z.ZodObject<{
|
|
@@ -13029,16 +13029,16 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13029
13029
|
ETH: string | number;
|
|
13030
13030
|
USDC: string | number;
|
|
13031
13031
|
}>;
|
|
13032
|
-
Solana: z.
|
|
13033
|
-
SOL: z.
|
|
13034
|
-
USDC: z.
|
|
13032
|
+
Solana: z.ZodObject<{
|
|
13033
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
13034
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
13035
13035
|
}, "strip", z.ZodTypeAny, {
|
|
13036
13036
|
USDC: bigint;
|
|
13037
13037
|
SOL: bigint;
|
|
13038
13038
|
}, {
|
|
13039
|
-
USDC
|
|
13040
|
-
SOL
|
|
13041
|
-
}
|
|
13039
|
+
USDC: string | number;
|
|
13040
|
+
SOL: string | number;
|
|
13041
|
+
}>;
|
|
13042
13042
|
}, "strip", z.ZodTypeAny, {
|
|
13043
13043
|
Bitcoin: {
|
|
13044
13044
|
BTC: bigint;
|
|
@@ -13074,13 +13074,13 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13074
13074
|
ETH: string | number;
|
|
13075
13075
|
USDC: string | number;
|
|
13076
13076
|
};
|
|
13077
|
+
Solana: {
|
|
13078
|
+
USDC: string | number;
|
|
13079
|
+
SOL: string | number;
|
|
13080
|
+
};
|
|
13077
13081
|
Polkadot: {
|
|
13078
13082
|
DOT: string | number;
|
|
13079
13083
|
};
|
|
13080
|
-
Solana?: {
|
|
13081
|
-
USDC?: string | number | undefined;
|
|
13082
|
-
SOL?: string | number | undefined;
|
|
13083
|
-
} | undefined;
|
|
13084
13084
|
}>;
|
|
13085
13085
|
btc_vault_deposit_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13086
13086
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13126,13 +13126,13 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13126
13126
|
ETH: string | number;
|
|
13127
13127
|
USDC: string | number;
|
|
13128
13128
|
};
|
|
13129
|
+
Solana: {
|
|
13130
|
+
USDC: string | number;
|
|
13131
|
+
SOL: string | number;
|
|
13132
|
+
};
|
|
13129
13133
|
Polkadot: {
|
|
13130
13134
|
DOT: string | number;
|
|
13131
13135
|
};
|
|
13132
|
-
Solana?: {
|
|
13133
|
-
USDC?: string | number | undefined;
|
|
13134
|
-
SOL?: string | number | undefined;
|
|
13135
|
-
} | undefined;
|
|
13136
13136
|
};
|
|
13137
13137
|
btc_vault_deposit_address?: string | null | undefined;
|
|
13138
13138
|
}>, z.ZodObject<{
|
|
@@ -13178,16 +13178,16 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13178
13178
|
ETH: string | number;
|
|
13179
13179
|
USDC: string | number;
|
|
13180
13180
|
}>;
|
|
13181
|
-
Solana: z.
|
|
13182
|
-
SOL: z.
|
|
13183
|
-
USDC: z.
|
|
13181
|
+
Solana: z.ZodObject<{
|
|
13182
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
13183
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
13184
13184
|
}, "strip", z.ZodTypeAny, {
|
|
13185
13185
|
USDC: bigint;
|
|
13186
13186
|
SOL: bigint;
|
|
13187
13187
|
}, {
|
|
13188
|
-
USDC
|
|
13189
|
-
SOL
|
|
13190
|
-
}
|
|
13188
|
+
USDC: string | number;
|
|
13189
|
+
SOL: string | number;
|
|
13190
|
+
}>;
|
|
13191
13191
|
}, "strip", z.ZodTypeAny, {
|
|
13192
13192
|
Bitcoin: {
|
|
13193
13193
|
BTC: bigint;
|
|
@@ -13223,20 +13223,20 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13223
13223
|
ETH: string | number;
|
|
13224
13224
|
USDC: string | number;
|
|
13225
13225
|
};
|
|
13226
|
+
Solana: {
|
|
13227
|
+
USDC: string | number;
|
|
13228
|
+
SOL: string | number;
|
|
13229
|
+
};
|
|
13226
13230
|
Polkadot: {
|
|
13227
13231
|
DOT: string | number;
|
|
13228
13232
|
};
|
|
13229
|
-
Solana?: {
|
|
13230
|
-
USDC?: string | number | undefined;
|
|
13231
|
-
SOL?: string | number | undefined;
|
|
13232
|
-
} | undefined;
|
|
13233
13233
|
}>;
|
|
13234
13234
|
refund_addresses: z.ZodObject<{
|
|
13235
13235
|
Bitcoin: z.ZodNullable<z.ZodString>;
|
|
13236
13236
|
Ethereum: z.ZodNullable<z.ZodString>;
|
|
13237
13237
|
Polkadot: z.ZodNullable<z.ZodString>;
|
|
13238
13238
|
Arbitrum: z.ZodNullable<z.ZodString>;
|
|
13239
|
-
Solana: z.
|
|
13239
|
+
Solana: z.ZodNullable<z.ZodString>;
|
|
13240
13240
|
}, "strip", z.ZodTypeAny, {
|
|
13241
13241
|
Bitcoin: string | null;
|
|
13242
13242
|
Ethereum: string | null;
|
|
@@ -13247,8 +13247,8 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13247
13247
|
Bitcoin: string | null;
|
|
13248
13248
|
Ethereum: string | null;
|
|
13249
13249
|
Arbitrum: string | null;
|
|
13250
|
+
Solana: string | null;
|
|
13250
13251
|
Polkadot: string | null;
|
|
13251
|
-
Solana?: string | null | undefined;
|
|
13252
13252
|
}>;
|
|
13253
13253
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
13254
13254
|
earned_fees: z.ZodObject<{
|
|
@@ -13292,16 +13292,16 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13292
13292
|
ETH: string | number;
|
|
13293
13293
|
USDC: string | number;
|
|
13294
13294
|
}>;
|
|
13295
|
-
Solana: z.
|
|
13296
|
-
SOL: z.
|
|
13297
|
-
USDC: z.
|
|
13295
|
+
Solana: z.ZodObject<{
|
|
13296
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
13297
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
13298
13298
|
}, "strip", z.ZodTypeAny, {
|
|
13299
13299
|
USDC: bigint;
|
|
13300
13300
|
SOL: bigint;
|
|
13301
13301
|
}, {
|
|
13302
|
-
USDC
|
|
13303
|
-
SOL
|
|
13304
|
-
}
|
|
13302
|
+
USDC: string | number;
|
|
13303
|
+
SOL: string | number;
|
|
13304
|
+
}>;
|
|
13305
13305
|
}, "strip", z.ZodTypeAny, {
|
|
13306
13306
|
Bitcoin: {
|
|
13307
13307
|
BTC: bigint;
|
|
@@ -13337,13 +13337,13 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13337
13337
|
ETH: string | number;
|
|
13338
13338
|
USDC: string | number;
|
|
13339
13339
|
};
|
|
13340
|
+
Solana: {
|
|
13341
|
+
USDC: string | number;
|
|
13342
|
+
SOL: string | number;
|
|
13343
|
+
};
|
|
13340
13344
|
Polkadot: {
|
|
13341
13345
|
DOT: string | number;
|
|
13342
13346
|
};
|
|
13343
|
-
Solana?: {
|
|
13344
|
-
USDC?: string | number | undefined;
|
|
13345
|
-
SOL?: string | number | undefined;
|
|
13346
|
-
} | undefined;
|
|
13347
13347
|
}>;
|
|
13348
13348
|
boost_balances: z.ZodObject<{
|
|
13349
13349
|
Bitcoin: z.ZodObject<{
|
|
@@ -13626,8 +13626,8 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13626
13626
|
is_withdrawing: boolean;
|
|
13627
13627
|
}[];
|
|
13628
13628
|
}>;
|
|
13629
|
-
Solana: z.
|
|
13630
|
-
SOL: z.
|
|
13629
|
+
Solana: z.ZodObject<{
|
|
13630
|
+
SOL: z.ZodArray<z.ZodObject<{
|
|
13631
13631
|
fee_tier: z.ZodNumber;
|
|
13632
13632
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
13633
13633
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -13645,8 +13645,8 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13645
13645
|
available_balance: string;
|
|
13646
13646
|
in_use_balance: string;
|
|
13647
13647
|
is_withdrawing: boolean;
|
|
13648
|
-
}>, "many"
|
|
13649
|
-
USDC: z.
|
|
13648
|
+
}>, "many">;
|
|
13649
|
+
USDC: z.ZodArray<z.ZodObject<{
|
|
13650
13650
|
fee_tier: z.ZodNumber;
|
|
13651
13651
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
13652
13652
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -13664,7 +13664,7 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13664
13664
|
available_balance: string;
|
|
13665
13665
|
in_use_balance: string;
|
|
13666
13666
|
is_withdrawing: boolean;
|
|
13667
|
-
}>, "many"
|
|
13667
|
+
}>, "many">;
|
|
13668
13668
|
}, "strip", z.ZodTypeAny, {
|
|
13669
13669
|
USDC: {
|
|
13670
13670
|
fee_tier: number;
|
|
@@ -13681,21 +13681,21 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13681
13681
|
is_withdrawing: boolean;
|
|
13682
13682
|
}[];
|
|
13683
13683
|
}, {
|
|
13684
|
-
USDC
|
|
13684
|
+
USDC: {
|
|
13685
13685
|
fee_tier: number;
|
|
13686
13686
|
total_balance: string;
|
|
13687
13687
|
available_balance: string;
|
|
13688
13688
|
in_use_balance: string;
|
|
13689
13689
|
is_withdrawing: boolean;
|
|
13690
|
-
}[]
|
|
13691
|
-
SOL
|
|
13690
|
+
}[];
|
|
13691
|
+
SOL: {
|
|
13692
13692
|
fee_tier: number;
|
|
13693
13693
|
total_balance: string;
|
|
13694
13694
|
available_balance: string;
|
|
13695
13695
|
in_use_balance: string;
|
|
13696
13696
|
is_withdrawing: boolean;
|
|
13697
|
-
}[]
|
|
13698
|
-
}
|
|
13697
|
+
}[];
|
|
13698
|
+
}>;
|
|
13699
13699
|
}, "strip", z.ZodTypeAny, {
|
|
13700
13700
|
Bitcoin: {
|
|
13701
13701
|
BTC: {
|
|
@@ -13833,31 +13833,31 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
13833
13833
|
is_withdrawing: boolean;
|
|
13834
13834
|
}[];
|
|
13835
13835
|
};
|
|
13836
|
-
|
|
13837
|
-
|
|
13836
|
+
Solana: {
|
|
13837
|
+
USDC: {
|
|
13838
13838
|
fee_tier: number;
|
|
13839
13839
|
total_balance: string;
|
|
13840
13840
|
available_balance: string;
|
|
13841
13841
|
in_use_balance: string;
|
|
13842
13842
|
is_withdrawing: boolean;
|
|
13843
13843
|
}[];
|
|
13844
|
-
|
|
13845
|
-
Solana?: {
|
|
13846
|
-
USDC?: {
|
|
13844
|
+
SOL: {
|
|
13847
13845
|
fee_tier: number;
|
|
13848
13846
|
total_balance: string;
|
|
13849
13847
|
available_balance: string;
|
|
13850
13848
|
in_use_balance: string;
|
|
13851
13849
|
is_withdrawing: boolean;
|
|
13852
|
-
}[]
|
|
13853
|
-
|
|
13850
|
+
}[];
|
|
13851
|
+
};
|
|
13852
|
+
Polkadot: {
|
|
13853
|
+
DOT: {
|
|
13854
13854
|
fee_tier: number;
|
|
13855
13855
|
total_balance: string;
|
|
13856
13856
|
available_balance: string;
|
|
13857
13857
|
in_use_balance: string;
|
|
13858
13858
|
is_withdrawing: boolean;
|
|
13859
|
-
}[]
|
|
13860
|
-
}
|
|
13859
|
+
}[];
|
|
13860
|
+
};
|
|
13861
13861
|
}>;
|
|
13862
13862
|
}, "strip", z.ZodTypeAny, {
|
|
13863
13863
|
role: "liquidity_provider";
|
|
@@ -14012,13 +14012,13 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
14012
14012
|
ETH: string | number;
|
|
14013
14013
|
USDC: string | number;
|
|
14014
14014
|
};
|
|
14015
|
+
Solana: {
|
|
14016
|
+
USDC: string | number;
|
|
14017
|
+
SOL: string | number;
|
|
14018
|
+
};
|
|
14015
14019
|
Polkadot: {
|
|
14016
14020
|
DOT: string | number;
|
|
14017
14021
|
};
|
|
14018
|
-
Solana?: {
|
|
14019
|
-
USDC?: string | number | undefined;
|
|
14020
|
-
SOL?: string | number | undefined;
|
|
14021
|
-
} | undefined;
|
|
14022
14022
|
};
|
|
14023
14023
|
balances: {
|
|
14024
14024
|
Bitcoin: {
|
|
@@ -14034,20 +14034,20 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
14034
14034
|
ETH: string | number;
|
|
14035
14035
|
USDC: string | number;
|
|
14036
14036
|
};
|
|
14037
|
+
Solana: {
|
|
14038
|
+
USDC: string | number;
|
|
14039
|
+
SOL: string | number;
|
|
14040
|
+
};
|
|
14037
14041
|
Polkadot: {
|
|
14038
14042
|
DOT: string | number;
|
|
14039
14043
|
};
|
|
14040
|
-
Solana?: {
|
|
14041
|
-
USDC?: string | number | undefined;
|
|
14042
|
-
SOL?: string | number | undefined;
|
|
14043
|
-
} | undefined;
|
|
14044
14044
|
};
|
|
14045
14045
|
refund_addresses: {
|
|
14046
14046
|
Bitcoin: string | null;
|
|
14047
14047
|
Ethereum: string | null;
|
|
14048
14048
|
Arbitrum: string | null;
|
|
14049
|
+
Solana: string | null;
|
|
14049
14050
|
Polkadot: string | null;
|
|
14050
|
-
Solana?: string | null | undefined;
|
|
14051
14051
|
};
|
|
14052
14052
|
boost_balances: {
|
|
14053
14053
|
Bitcoin: {
|
|
@@ -14105,31 +14105,31 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
14105
14105
|
is_withdrawing: boolean;
|
|
14106
14106
|
}[];
|
|
14107
14107
|
};
|
|
14108
|
-
|
|
14109
|
-
|
|
14108
|
+
Solana: {
|
|
14109
|
+
USDC: {
|
|
14110
14110
|
fee_tier: number;
|
|
14111
14111
|
total_balance: string;
|
|
14112
14112
|
available_balance: string;
|
|
14113
14113
|
in_use_balance: string;
|
|
14114
14114
|
is_withdrawing: boolean;
|
|
14115
14115
|
}[];
|
|
14116
|
-
|
|
14117
|
-
Solana?: {
|
|
14118
|
-
USDC?: {
|
|
14116
|
+
SOL: {
|
|
14119
14117
|
fee_tier: number;
|
|
14120
14118
|
total_balance: string;
|
|
14121
14119
|
available_balance: string;
|
|
14122
14120
|
in_use_balance: string;
|
|
14123
14121
|
is_withdrawing: boolean;
|
|
14124
|
-
}[]
|
|
14125
|
-
|
|
14122
|
+
}[];
|
|
14123
|
+
};
|
|
14124
|
+
Polkadot: {
|
|
14125
|
+
DOT: {
|
|
14126
14126
|
fee_tier: number;
|
|
14127
14127
|
total_balance: string;
|
|
14128
14128
|
available_balance: string;
|
|
14129
14129
|
in_use_balance: string;
|
|
14130
14130
|
is_withdrawing: boolean;
|
|
14131
|
-
}[]
|
|
14132
|
-
}
|
|
14131
|
+
}[];
|
|
14132
|
+
};
|
|
14133
14133
|
};
|
|
14134
14134
|
}>, z.ZodObject<{
|
|
14135
14135
|
role: z.ZodLiteral<"validator">;
|
|
@@ -15213,5 +15213,99 @@ declare const cfBoostPoolPendingFees: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z
|
|
|
15213
15213
|
deposit_id: number;
|
|
15214
15214
|
}[];
|
|
15215
15215
|
}>>, "many">;
|
|
15216
|
+
declare const lpTotalBalances: z.ZodObject<{
|
|
15217
|
+
Bitcoin: z.ZodObject<{
|
|
15218
|
+
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15219
|
+
}, "strip", z.ZodTypeAny, {
|
|
15220
|
+
BTC: bigint;
|
|
15221
|
+
}, {
|
|
15222
|
+
BTC: string | number;
|
|
15223
|
+
}>;
|
|
15224
|
+
Ethereum: z.ZodObject<{
|
|
15225
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15226
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15227
|
+
FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15228
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15229
|
+
}, "strip", z.ZodTypeAny, {
|
|
15230
|
+
ETH: bigint;
|
|
15231
|
+
USDC: bigint;
|
|
15232
|
+
FLIP: bigint;
|
|
15233
|
+
USDT: bigint;
|
|
15234
|
+
}, {
|
|
15235
|
+
ETH: string | number;
|
|
15236
|
+
USDC: string | number;
|
|
15237
|
+
FLIP: string | number;
|
|
15238
|
+
USDT: string | number;
|
|
15239
|
+
}>;
|
|
15240
|
+
Polkadot: z.ZodObject<{
|
|
15241
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15242
|
+
}, "strip", z.ZodTypeAny, {
|
|
15243
|
+
DOT: bigint;
|
|
15244
|
+
}, {
|
|
15245
|
+
DOT: string | number;
|
|
15246
|
+
}>;
|
|
15247
|
+
Arbitrum: z.ZodObject<{
|
|
15248
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15249
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15250
|
+
}, "strip", z.ZodTypeAny, {
|
|
15251
|
+
ETH: bigint;
|
|
15252
|
+
USDC: bigint;
|
|
15253
|
+
}, {
|
|
15254
|
+
ETH: string | number;
|
|
15255
|
+
USDC: string | number;
|
|
15256
|
+
}>;
|
|
15257
|
+
Solana: z.ZodObject<{
|
|
15258
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15259
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15260
|
+
}, "strip", z.ZodTypeAny, {
|
|
15261
|
+
USDC: bigint;
|
|
15262
|
+
SOL: bigint;
|
|
15263
|
+
}, {
|
|
15264
|
+
USDC: string | number;
|
|
15265
|
+
SOL: string | number;
|
|
15266
|
+
}>;
|
|
15267
|
+
}, "strip", z.ZodTypeAny, {
|
|
15268
|
+
Bitcoin: {
|
|
15269
|
+
BTC: bigint;
|
|
15270
|
+
};
|
|
15271
|
+
Ethereum: {
|
|
15272
|
+
ETH: bigint;
|
|
15273
|
+
USDC: bigint;
|
|
15274
|
+
FLIP: bigint;
|
|
15275
|
+
USDT: bigint;
|
|
15276
|
+
};
|
|
15277
|
+
Arbitrum: {
|
|
15278
|
+
ETH: bigint;
|
|
15279
|
+
USDC: bigint;
|
|
15280
|
+
};
|
|
15281
|
+
Solana: {
|
|
15282
|
+
USDC: bigint;
|
|
15283
|
+
SOL: bigint;
|
|
15284
|
+
};
|
|
15285
|
+
Polkadot: {
|
|
15286
|
+
DOT: bigint;
|
|
15287
|
+
};
|
|
15288
|
+
}, {
|
|
15289
|
+
Bitcoin: {
|
|
15290
|
+
BTC: string | number;
|
|
15291
|
+
};
|
|
15292
|
+
Ethereum: {
|
|
15293
|
+
ETH: string | number;
|
|
15294
|
+
USDC: string | number;
|
|
15295
|
+
FLIP: string | number;
|
|
15296
|
+
USDT: string | number;
|
|
15297
|
+
};
|
|
15298
|
+
Arbitrum: {
|
|
15299
|
+
ETH: string | number;
|
|
15300
|
+
USDC: string | number;
|
|
15301
|
+
};
|
|
15302
|
+
Solana: {
|
|
15303
|
+
USDC: string | number;
|
|
15304
|
+
SOL: string | number;
|
|
15305
|
+
};
|
|
15306
|
+
Polkadot: {
|
|
15307
|
+
DOT: string | number;
|
|
15308
|
+
};
|
|
15309
|
+
}>;
|
|
15216
15310
|
|
|
15217
|
-
export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, broker, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFundingEnvironment, cfIngressEgressEnvironment, cfPoolDepth, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, chainGetBlockHash, hexString, liquidityProvider, numberOrHex, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };
|
|
15311
|
+
export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, broker, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFundingEnvironment, cfIngressEgressEnvironment, cfPoolDepth, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, chainGetBlockHash, hexString, liquidityProvider, lpTotalBalances, numberOrHex, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };
|