@chainflip/rpc 1.6.12 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common.cjs +2 -0
- package/dist/common.d.cts +523 -408
- package/dist/common.d.ts +523 -408
- package/dist/common.mjs +3 -1
- package/dist/parsers.cjs +34 -2
- package/dist/parsers.d.cts +545 -459
- package/dist/parsers.d.ts +545 -459
- package/dist/parsers.mjs +33 -1
- package/package.json +3 -3
package/dist/parsers.d.cts
CHANGED
|
@@ -1404,9 +1404,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1404
1404
|
FLIP: bigint;
|
|
1405
1405
|
USDT: bigint;
|
|
1406
1406
|
};
|
|
1407
|
-
Polkadot: {
|
|
1408
|
-
DOT: bigint;
|
|
1409
|
-
};
|
|
1410
1407
|
Arbitrum: {
|
|
1411
1408
|
ETH: bigint;
|
|
1412
1409
|
USDC: bigint;
|
|
@@ -1415,6 +1412,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1415
1412
|
USDC: bigint;
|
|
1416
1413
|
SOL: bigint;
|
|
1417
1414
|
};
|
|
1415
|
+
Polkadot: {
|
|
1416
|
+
DOT: bigint;
|
|
1417
|
+
};
|
|
1418
1418
|
}, {
|
|
1419
1419
|
Bitcoin: {
|
|
1420
1420
|
BTC: string | number;
|
|
@@ -1425,13 +1425,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1425
1425
|
FLIP: string | number;
|
|
1426
1426
|
USDT: string | number;
|
|
1427
1427
|
};
|
|
1428
|
-
Polkadot: {
|
|
1429
|
-
DOT: string | number;
|
|
1430
|
-
};
|
|
1431
1428
|
Arbitrum: {
|
|
1432
1429
|
ETH: string | number;
|
|
1433
1430
|
USDC: string | number;
|
|
1434
1431
|
};
|
|
1432
|
+
Polkadot: {
|
|
1433
|
+
DOT: string | number;
|
|
1434
|
+
};
|
|
1435
1435
|
Solana?: {
|
|
1436
1436
|
USDC?: string | number | undefined;
|
|
1437
1437
|
SOL?: string | number | undefined;
|
|
@@ -1498,9 +1498,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1498
1498
|
FLIP: bigint | null;
|
|
1499
1499
|
USDT: bigint | null;
|
|
1500
1500
|
};
|
|
1501
|
-
Polkadot: {
|
|
1502
|
-
DOT: bigint | null;
|
|
1503
|
-
};
|
|
1504
1501
|
Arbitrum: {
|
|
1505
1502
|
ETH: bigint | null;
|
|
1506
1503
|
USDC: bigint | null;
|
|
@@ -1509,6 +1506,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1509
1506
|
USDC: bigint | null;
|
|
1510
1507
|
SOL: bigint | null;
|
|
1511
1508
|
};
|
|
1509
|
+
Polkadot: {
|
|
1510
|
+
DOT: bigint | null;
|
|
1511
|
+
};
|
|
1512
1512
|
}, {
|
|
1513
1513
|
Bitcoin: {
|
|
1514
1514
|
BTC: string | number | null;
|
|
@@ -1519,13 +1519,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1519
1519
|
FLIP: string | number | null;
|
|
1520
1520
|
USDT: string | number | null;
|
|
1521
1521
|
};
|
|
1522
|
-
Polkadot: {
|
|
1523
|
-
DOT: string | number | null;
|
|
1524
|
-
};
|
|
1525
1522
|
Arbitrum: {
|
|
1526
1523
|
ETH: string | number | null;
|
|
1527
1524
|
USDC: string | number | null;
|
|
1528
1525
|
};
|
|
1526
|
+
Polkadot: {
|
|
1527
|
+
DOT: string | number | null;
|
|
1528
|
+
};
|
|
1529
1529
|
Solana?: {
|
|
1530
1530
|
USDC?: string | number | null | undefined;
|
|
1531
1531
|
SOL?: string | number | null | undefined;
|
|
@@ -1592,9 +1592,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1592
1592
|
FLIP: bigint | null;
|
|
1593
1593
|
USDT: bigint | null;
|
|
1594
1594
|
};
|
|
1595
|
-
Polkadot: {
|
|
1596
|
-
DOT: bigint | null;
|
|
1597
|
-
};
|
|
1598
1595
|
Arbitrum: {
|
|
1599
1596
|
ETH: bigint | null;
|
|
1600
1597
|
USDC: bigint | null;
|
|
@@ -1603,6 +1600,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1603
1600
|
USDC: bigint | null;
|
|
1604
1601
|
SOL: bigint | null;
|
|
1605
1602
|
};
|
|
1603
|
+
Polkadot: {
|
|
1604
|
+
DOT: bigint | null;
|
|
1605
|
+
};
|
|
1606
1606
|
}, {
|
|
1607
1607
|
Bitcoin: {
|
|
1608
1608
|
BTC: string | number | null;
|
|
@@ -1613,13 +1613,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1613
1613
|
FLIP: string | number | null;
|
|
1614
1614
|
USDT: string | number | null;
|
|
1615
1615
|
};
|
|
1616
|
-
Polkadot: {
|
|
1617
|
-
DOT: string | number | null;
|
|
1618
|
-
};
|
|
1619
1616
|
Arbitrum: {
|
|
1620
1617
|
ETH: string | number | null;
|
|
1621
1618
|
USDC: string | number | null;
|
|
1622
1619
|
};
|
|
1620
|
+
Polkadot: {
|
|
1621
|
+
DOT: string | number | null;
|
|
1622
|
+
};
|
|
1623
1623
|
Solana?: {
|
|
1624
1624
|
USDC?: string | number | null | undefined;
|
|
1625
1625
|
SOL?: string | number | null | undefined;
|
|
@@ -1634,14 +1634,14 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1634
1634
|
}, "strip", z.ZodTypeAny, {
|
|
1635
1635
|
Bitcoin: number | null;
|
|
1636
1636
|
Ethereum: number | null;
|
|
1637
|
-
Polkadot: number | null;
|
|
1638
1637
|
Arbitrum: number | null;
|
|
1639
1638
|
Solana: number | null;
|
|
1639
|
+
Polkadot: number | null;
|
|
1640
1640
|
}, {
|
|
1641
1641
|
Bitcoin: number | null;
|
|
1642
1642
|
Ethereum: number | null;
|
|
1643
|
-
Polkadot: number | null;
|
|
1644
1643
|
Arbitrum: number | null;
|
|
1644
|
+
Polkadot: number | null;
|
|
1645
1645
|
Solana?: number | null | undefined;
|
|
1646
1646
|
}>;
|
|
1647
1647
|
egress_dust_limits: z.ZodObject<{
|
|
@@ -1705,9 +1705,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1705
1705
|
FLIP: bigint;
|
|
1706
1706
|
USDT: bigint;
|
|
1707
1707
|
};
|
|
1708
|
-
Polkadot: {
|
|
1709
|
-
DOT: bigint;
|
|
1710
|
-
};
|
|
1711
1708
|
Arbitrum: {
|
|
1712
1709
|
ETH: bigint;
|
|
1713
1710
|
USDC: bigint;
|
|
@@ -1716,6 +1713,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1716
1713
|
USDC: bigint;
|
|
1717
1714
|
SOL: bigint;
|
|
1718
1715
|
};
|
|
1716
|
+
Polkadot: {
|
|
1717
|
+
DOT: bigint;
|
|
1718
|
+
};
|
|
1719
1719
|
}, {
|
|
1720
1720
|
Bitcoin: {
|
|
1721
1721
|
BTC: string | number;
|
|
@@ -1726,13 +1726,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1726
1726
|
FLIP: string | number;
|
|
1727
1727
|
USDT: string | number;
|
|
1728
1728
|
};
|
|
1729
|
-
Polkadot: {
|
|
1730
|
-
DOT: string | number;
|
|
1731
|
-
};
|
|
1732
1729
|
Arbitrum: {
|
|
1733
1730
|
ETH: string | number;
|
|
1734
1731
|
USDC: string | number;
|
|
1735
1732
|
};
|
|
1733
|
+
Polkadot: {
|
|
1734
|
+
DOT: string | number;
|
|
1735
|
+
};
|
|
1736
1736
|
Solana?: {
|
|
1737
1737
|
USDC?: string | number | undefined;
|
|
1738
1738
|
SOL?: string | number | undefined;
|
|
@@ -1747,14 +1747,14 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1747
1747
|
}, "strip", z.ZodTypeAny, {
|
|
1748
1748
|
Bitcoin: bigint;
|
|
1749
1749
|
Ethereum: bigint;
|
|
1750
|
-
Polkadot: bigint;
|
|
1751
1750
|
Arbitrum: bigint;
|
|
1752
1751
|
Solana: bigint;
|
|
1752
|
+
Polkadot: bigint;
|
|
1753
1753
|
}, {
|
|
1754
1754
|
Bitcoin: string | number;
|
|
1755
1755
|
Ethereum: string | number;
|
|
1756
|
-
Polkadot: string | number;
|
|
1757
1756
|
Arbitrum: string | number;
|
|
1757
|
+
Polkadot: string | number;
|
|
1758
1758
|
Solana?: string | number | undefined;
|
|
1759
1759
|
}>;
|
|
1760
1760
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
@@ -1766,14 +1766,14 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1766
1766
|
}, "strip", z.ZodTypeAny, {
|
|
1767
1767
|
Bitcoin: number;
|
|
1768
1768
|
Ethereum: number;
|
|
1769
|
-
Polkadot: number;
|
|
1770
1769
|
Arbitrum: number;
|
|
1771
1770
|
Solana: number;
|
|
1771
|
+
Polkadot: number;
|
|
1772
1772
|
}, {
|
|
1773
1773
|
Bitcoin: number;
|
|
1774
1774
|
Ethereum: number;
|
|
1775
|
-
Polkadot: number;
|
|
1776
1775
|
Arbitrum: number;
|
|
1776
|
+
Polkadot: number;
|
|
1777
1777
|
Solana?: number | undefined;
|
|
1778
1778
|
}>>>;
|
|
1779
1779
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1787,9 +1787,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1787
1787
|
FLIP: bigint;
|
|
1788
1788
|
USDT: bigint;
|
|
1789
1789
|
};
|
|
1790
|
-
Polkadot: {
|
|
1791
|
-
DOT: bigint;
|
|
1792
|
-
};
|
|
1793
1790
|
Arbitrum: {
|
|
1794
1791
|
ETH: bigint;
|
|
1795
1792
|
USDC: bigint;
|
|
@@ -1798,6 +1795,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1798
1795
|
USDC: bigint;
|
|
1799
1796
|
SOL: bigint;
|
|
1800
1797
|
};
|
|
1798
|
+
Polkadot: {
|
|
1799
|
+
DOT: bigint;
|
|
1800
|
+
};
|
|
1801
1801
|
};
|
|
1802
1802
|
ingress_fees: {
|
|
1803
1803
|
Bitcoin: {
|
|
@@ -1809,9 +1809,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1809
1809
|
FLIP: bigint | null;
|
|
1810
1810
|
USDT: bigint | null;
|
|
1811
1811
|
};
|
|
1812
|
-
Polkadot: {
|
|
1813
|
-
DOT: bigint | null;
|
|
1814
|
-
};
|
|
1815
1812
|
Arbitrum: {
|
|
1816
1813
|
ETH: bigint | null;
|
|
1817
1814
|
USDC: bigint | null;
|
|
@@ -1820,6 +1817,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1820
1817
|
USDC: bigint | null;
|
|
1821
1818
|
SOL: bigint | null;
|
|
1822
1819
|
};
|
|
1820
|
+
Polkadot: {
|
|
1821
|
+
DOT: bigint | null;
|
|
1822
|
+
};
|
|
1823
1823
|
};
|
|
1824
1824
|
egress_fees: {
|
|
1825
1825
|
Bitcoin: {
|
|
@@ -1831,9 +1831,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1831
1831
|
FLIP: bigint | null;
|
|
1832
1832
|
USDT: bigint | null;
|
|
1833
1833
|
};
|
|
1834
|
-
Polkadot: {
|
|
1835
|
-
DOT: bigint | null;
|
|
1836
|
-
};
|
|
1837
1834
|
Arbitrum: {
|
|
1838
1835
|
ETH: bigint | null;
|
|
1839
1836
|
USDC: bigint | null;
|
|
@@ -1842,13 +1839,16 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1842
1839
|
USDC: bigint | null;
|
|
1843
1840
|
SOL: bigint | null;
|
|
1844
1841
|
};
|
|
1842
|
+
Polkadot: {
|
|
1843
|
+
DOT: bigint | null;
|
|
1844
|
+
};
|
|
1845
1845
|
};
|
|
1846
1846
|
witness_safety_margins: {
|
|
1847
1847
|
Bitcoin: number | null;
|
|
1848
1848
|
Ethereum: number | null;
|
|
1849
|
-
Polkadot: number | null;
|
|
1850
1849
|
Arbitrum: number | null;
|
|
1851
1850
|
Solana: number | null;
|
|
1851
|
+
Polkadot: number | null;
|
|
1852
1852
|
};
|
|
1853
1853
|
egress_dust_limits: {
|
|
1854
1854
|
Bitcoin: {
|
|
@@ -1860,9 +1860,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1860
1860
|
FLIP: bigint;
|
|
1861
1861
|
USDT: bigint;
|
|
1862
1862
|
};
|
|
1863
|
-
Polkadot: {
|
|
1864
|
-
DOT: bigint;
|
|
1865
|
-
};
|
|
1866
1863
|
Arbitrum: {
|
|
1867
1864
|
ETH: bigint;
|
|
1868
1865
|
USDC: bigint;
|
|
@@ -1871,20 +1868,23 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1871
1868
|
USDC: bigint;
|
|
1872
1869
|
SOL: bigint;
|
|
1873
1870
|
};
|
|
1871
|
+
Polkadot: {
|
|
1872
|
+
DOT: bigint;
|
|
1873
|
+
};
|
|
1874
1874
|
};
|
|
1875
1875
|
channel_opening_fees: {
|
|
1876
1876
|
Bitcoin: bigint;
|
|
1877
1877
|
Ethereum: bigint;
|
|
1878
|
-
Polkadot: bigint;
|
|
1879
1878
|
Arbitrum: bigint;
|
|
1880
1879
|
Solana: bigint;
|
|
1880
|
+
Polkadot: bigint;
|
|
1881
1881
|
};
|
|
1882
1882
|
max_swap_retry_duration_blocks: {
|
|
1883
1883
|
Bitcoin: number;
|
|
1884
1884
|
Ethereum: number;
|
|
1885
|
-
Polkadot: number;
|
|
1886
1885
|
Arbitrum: number;
|
|
1887
1886
|
Solana: number;
|
|
1887
|
+
Polkadot: number;
|
|
1888
1888
|
};
|
|
1889
1889
|
}, {
|
|
1890
1890
|
minimum_deposit_amounts: {
|
|
@@ -1897,13 +1897,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1897
1897
|
FLIP: string | number;
|
|
1898
1898
|
USDT: string | number;
|
|
1899
1899
|
};
|
|
1900
|
-
Polkadot: {
|
|
1901
|
-
DOT: string | number;
|
|
1902
|
-
};
|
|
1903
1900
|
Arbitrum: {
|
|
1904
1901
|
ETH: string | number;
|
|
1905
1902
|
USDC: string | number;
|
|
1906
1903
|
};
|
|
1904
|
+
Polkadot: {
|
|
1905
|
+
DOT: string | number;
|
|
1906
|
+
};
|
|
1907
1907
|
Solana?: {
|
|
1908
1908
|
USDC?: string | number | undefined;
|
|
1909
1909
|
SOL?: string | number | undefined;
|
|
@@ -1919,13 +1919,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1919
1919
|
FLIP: string | number | null;
|
|
1920
1920
|
USDT: string | number | null;
|
|
1921
1921
|
};
|
|
1922
|
-
Polkadot: {
|
|
1923
|
-
DOT: string | number | null;
|
|
1924
|
-
};
|
|
1925
1922
|
Arbitrum: {
|
|
1926
1923
|
ETH: string | number | null;
|
|
1927
1924
|
USDC: string | number | null;
|
|
1928
1925
|
};
|
|
1926
|
+
Polkadot: {
|
|
1927
|
+
DOT: string | number | null;
|
|
1928
|
+
};
|
|
1929
1929
|
Solana?: {
|
|
1930
1930
|
USDC?: string | number | null | undefined;
|
|
1931
1931
|
SOL?: string | number | null | undefined;
|
|
@@ -1941,13 +1941,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1941
1941
|
FLIP: string | number | null;
|
|
1942
1942
|
USDT: string | number | null;
|
|
1943
1943
|
};
|
|
1944
|
-
Polkadot: {
|
|
1945
|
-
DOT: string | number | null;
|
|
1946
|
-
};
|
|
1947
1944
|
Arbitrum: {
|
|
1948
1945
|
ETH: string | number | null;
|
|
1949
1946
|
USDC: string | number | null;
|
|
1950
1947
|
};
|
|
1948
|
+
Polkadot: {
|
|
1949
|
+
DOT: string | number | null;
|
|
1950
|
+
};
|
|
1951
1951
|
Solana?: {
|
|
1952
1952
|
USDC?: string | number | null | undefined;
|
|
1953
1953
|
SOL?: string | number | null | undefined;
|
|
@@ -1956,8 +1956,8 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1956
1956
|
witness_safety_margins: {
|
|
1957
1957
|
Bitcoin: number | null;
|
|
1958
1958
|
Ethereum: number | null;
|
|
1959
|
-
Polkadot: number | null;
|
|
1960
1959
|
Arbitrum: number | null;
|
|
1960
|
+
Polkadot: number | null;
|
|
1961
1961
|
Solana?: number | null | undefined;
|
|
1962
1962
|
};
|
|
1963
1963
|
egress_dust_limits: {
|
|
@@ -1970,13 +1970,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1970
1970
|
FLIP: string | number;
|
|
1971
1971
|
USDT: string | number;
|
|
1972
1972
|
};
|
|
1973
|
-
Polkadot: {
|
|
1974
|
-
DOT: string | number;
|
|
1975
|
-
};
|
|
1976
1973
|
Arbitrum: {
|
|
1977
1974
|
ETH: string | number;
|
|
1978
1975
|
USDC: string | number;
|
|
1979
1976
|
};
|
|
1977
|
+
Polkadot: {
|
|
1978
|
+
DOT: string | number;
|
|
1979
|
+
};
|
|
1980
1980
|
Solana?: {
|
|
1981
1981
|
USDC?: string | number | undefined;
|
|
1982
1982
|
SOL?: string | number | undefined;
|
|
@@ -1985,15 +1985,15 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1985
1985
|
channel_opening_fees: {
|
|
1986
1986
|
Bitcoin: string | number;
|
|
1987
1987
|
Ethereum: string | number;
|
|
1988
|
-
Polkadot: string | number;
|
|
1989
1988
|
Arbitrum: string | number;
|
|
1989
|
+
Polkadot: string | number;
|
|
1990
1990
|
Solana?: string | number | undefined;
|
|
1991
1991
|
};
|
|
1992
1992
|
max_swap_retry_duration_blocks?: {
|
|
1993
1993
|
Bitcoin: number;
|
|
1994
1994
|
Ethereum: number;
|
|
1995
|
-
Polkadot: number;
|
|
1996
1995
|
Arbitrum: number;
|
|
1996
|
+
Polkadot: number;
|
|
1997
1997
|
Solana?: number | undefined;
|
|
1998
1998
|
} | undefined;
|
|
1999
1999
|
}>, Rename<{
|
|
@@ -2007,9 +2007,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2007
2007
|
FLIP: bigint;
|
|
2008
2008
|
USDT: bigint;
|
|
2009
2009
|
};
|
|
2010
|
-
Polkadot: {
|
|
2011
|
-
DOT: bigint;
|
|
2012
|
-
};
|
|
2013
2010
|
Arbitrum: {
|
|
2014
2011
|
ETH: bigint;
|
|
2015
2012
|
USDC: bigint;
|
|
@@ -2018,6 +2015,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2018
2015
|
USDC: bigint;
|
|
2019
2016
|
SOL: bigint;
|
|
2020
2017
|
};
|
|
2018
|
+
Polkadot: {
|
|
2019
|
+
DOT: bigint;
|
|
2020
|
+
};
|
|
2021
2021
|
};
|
|
2022
2022
|
ingress_fees: {
|
|
2023
2023
|
Bitcoin: {
|
|
@@ -2029,9 +2029,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2029
2029
|
FLIP: bigint | null;
|
|
2030
2030
|
USDT: bigint | null;
|
|
2031
2031
|
};
|
|
2032
|
-
Polkadot: {
|
|
2033
|
-
DOT: bigint | null;
|
|
2034
|
-
};
|
|
2035
2032
|
Arbitrum: {
|
|
2036
2033
|
ETH: bigint | null;
|
|
2037
2034
|
USDC: bigint | null;
|
|
@@ -2040,6 +2037,9 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2040
2037
|
USDC: bigint | null;
|
|
2041
2038
|
SOL: bigint | null;
|
|
2042
2039
|
};
|
|
2040
|
+
Polkadot: {
|
|
2041
|
+
DOT: bigint | null;
|
|
2042
|
+
};
|
|
2043
2043
|
};
|
|
2044
2044
|
egress_fees: {
|
|
2045
2045
|
Bitcoin: {
|
|
@@ -2051,9 +2051,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2051
2051
|
FLIP: bigint | null;
|
|
2052
2052
|
USDT: bigint | null;
|
|
2053
2053
|
};
|
|
2054
|
-
Polkadot: {
|
|
2055
|
-
DOT: bigint | null;
|
|
2056
|
-
};
|
|
2057
2054
|
Arbitrum: {
|
|
2058
2055
|
ETH: bigint | null;
|
|
2059
2056
|
USDC: bigint | null;
|
|
@@ -2062,13 +2059,16 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2062
2059
|
USDC: bigint | null;
|
|
2063
2060
|
SOL: bigint | null;
|
|
2064
2061
|
};
|
|
2062
|
+
Polkadot: {
|
|
2063
|
+
DOT: bigint | null;
|
|
2064
|
+
};
|
|
2065
2065
|
};
|
|
2066
2066
|
witness_safety_margins: {
|
|
2067
2067
|
Bitcoin: number | null;
|
|
2068
2068
|
Ethereum: number | null;
|
|
2069
|
-
Polkadot: number | null;
|
|
2070
2069
|
Arbitrum: number | null;
|
|
2071
2070
|
Solana: number | null;
|
|
2071
|
+
Polkadot: number | null;
|
|
2072
2072
|
};
|
|
2073
2073
|
egress_dust_limits: {
|
|
2074
2074
|
Bitcoin: {
|
|
@@ -2080,9 +2080,6 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2080
2080
|
FLIP: bigint;
|
|
2081
2081
|
USDT: bigint;
|
|
2082
2082
|
};
|
|
2083
|
-
Polkadot: {
|
|
2084
|
-
DOT: bigint;
|
|
2085
|
-
};
|
|
2086
2083
|
Arbitrum: {
|
|
2087
2084
|
ETH: bigint;
|
|
2088
2085
|
USDC: bigint;
|
|
@@ -2091,20 +2088,23 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2091
2088
|
USDC: bigint;
|
|
2092
2089
|
SOL: bigint;
|
|
2093
2090
|
};
|
|
2091
|
+
Polkadot: {
|
|
2092
|
+
DOT: bigint;
|
|
2093
|
+
};
|
|
2094
2094
|
};
|
|
2095
2095
|
channel_opening_fees: {
|
|
2096
2096
|
Bitcoin: bigint;
|
|
2097
2097
|
Ethereum: bigint;
|
|
2098
|
-
Polkadot: bigint;
|
|
2099
2098
|
Arbitrum: bigint;
|
|
2100
2099
|
Solana: bigint;
|
|
2100
|
+
Polkadot: bigint;
|
|
2101
2101
|
};
|
|
2102
2102
|
max_swap_retry_duration_blocks: {
|
|
2103
2103
|
Bitcoin: number;
|
|
2104
2104
|
Ethereum: number;
|
|
2105
|
-
Polkadot: number;
|
|
2106
2105
|
Arbitrum: number;
|
|
2107
2106
|
Solana: number;
|
|
2107
|
+
Polkadot: number;
|
|
2108
2108
|
};
|
|
2109
2109
|
}, {
|
|
2110
2110
|
readonly egress_dust_limits: "minimum_egress_amounts";
|
|
@@ -2119,13 +2119,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2119
2119
|
FLIP: string | number;
|
|
2120
2120
|
USDT: string | number;
|
|
2121
2121
|
};
|
|
2122
|
-
Polkadot: {
|
|
2123
|
-
DOT: string | number;
|
|
2124
|
-
};
|
|
2125
2122
|
Arbitrum: {
|
|
2126
2123
|
ETH: string | number;
|
|
2127
2124
|
USDC: string | number;
|
|
2128
2125
|
};
|
|
2126
|
+
Polkadot: {
|
|
2127
|
+
DOT: string | number;
|
|
2128
|
+
};
|
|
2129
2129
|
Solana?: {
|
|
2130
2130
|
USDC?: string | number | undefined;
|
|
2131
2131
|
SOL?: string | number | undefined;
|
|
@@ -2141,13 +2141,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2141
2141
|
FLIP: string | number | null;
|
|
2142
2142
|
USDT: string | number | null;
|
|
2143
2143
|
};
|
|
2144
|
-
Polkadot: {
|
|
2145
|
-
DOT: string | number | null;
|
|
2146
|
-
};
|
|
2147
2144
|
Arbitrum: {
|
|
2148
2145
|
ETH: string | number | null;
|
|
2149
2146
|
USDC: string | number | null;
|
|
2150
2147
|
};
|
|
2148
|
+
Polkadot: {
|
|
2149
|
+
DOT: string | number | null;
|
|
2150
|
+
};
|
|
2151
2151
|
Solana?: {
|
|
2152
2152
|
USDC?: string | number | null | undefined;
|
|
2153
2153
|
SOL?: string | number | null | undefined;
|
|
@@ -2163,13 +2163,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2163
2163
|
FLIP: string | number | null;
|
|
2164
2164
|
USDT: string | number | null;
|
|
2165
2165
|
};
|
|
2166
|
-
Polkadot: {
|
|
2167
|
-
DOT: string | number | null;
|
|
2168
|
-
};
|
|
2169
2166
|
Arbitrum: {
|
|
2170
2167
|
ETH: string | number | null;
|
|
2171
2168
|
USDC: string | number | null;
|
|
2172
2169
|
};
|
|
2170
|
+
Polkadot: {
|
|
2171
|
+
DOT: string | number | null;
|
|
2172
|
+
};
|
|
2173
2173
|
Solana?: {
|
|
2174
2174
|
USDC?: string | number | null | undefined;
|
|
2175
2175
|
SOL?: string | number | null | undefined;
|
|
@@ -2178,8 +2178,8 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2178
2178
|
witness_safety_margins: {
|
|
2179
2179
|
Bitcoin: number | null;
|
|
2180
2180
|
Ethereum: number | null;
|
|
2181
|
-
Polkadot: number | null;
|
|
2182
2181
|
Arbitrum: number | null;
|
|
2182
|
+
Polkadot: number | null;
|
|
2183
2183
|
Solana?: number | null | undefined;
|
|
2184
2184
|
};
|
|
2185
2185
|
egress_dust_limits: {
|
|
@@ -2192,13 +2192,13 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2192
2192
|
FLIP: string | number;
|
|
2193
2193
|
USDT: string | number;
|
|
2194
2194
|
};
|
|
2195
|
-
Polkadot: {
|
|
2196
|
-
DOT: string | number;
|
|
2197
|
-
};
|
|
2198
2195
|
Arbitrum: {
|
|
2199
2196
|
ETH: string | number;
|
|
2200
2197
|
USDC: string | number;
|
|
2201
2198
|
};
|
|
2199
|
+
Polkadot: {
|
|
2200
|
+
DOT: string | number;
|
|
2201
|
+
};
|
|
2202
2202
|
Solana?: {
|
|
2203
2203
|
USDC?: string | number | undefined;
|
|
2204
2204
|
SOL?: string | number | undefined;
|
|
@@ -2207,15 +2207,15 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2207
2207
|
channel_opening_fees: {
|
|
2208
2208
|
Bitcoin: string | number;
|
|
2209
2209
|
Ethereum: string | number;
|
|
2210
|
-
Polkadot: string | number;
|
|
2211
2210
|
Arbitrum: string | number;
|
|
2211
|
+
Polkadot: string | number;
|
|
2212
2212
|
Solana?: string | number | undefined;
|
|
2213
2213
|
};
|
|
2214
2214
|
max_swap_retry_duration_blocks?: {
|
|
2215
2215
|
Bitcoin: number;
|
|
2216
2216
|
Ethereum: number;
|
|
2217
|
-
Polkadot: number;
|
|
2218
2217
|
Arbitrum: number;
|
|
2218
|
+
Polkadot: number;
|
|
2219
2219
|
Solana?: number | undefined;
|
|
2220
2220
|
} | undefined;
|
|
2221
2221
|
}>;
|
|
@@ -2281,9 +2281,6 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2281
2281
|
FLIP: bigint | null;
|
|
2282
2282
|
USDT: bigint | null;
|
|
2283
2283
|
};
|
|
2284
|
-
Polkadot: {
|
|
2285
|
-
DOT: bigint | null;
|
|
2286
|
-
};
|
|
2287
2284
|
Arbitrum: {
|
|
2288
2285
|
ETH: bigint | null;
|
|
2289
2286
|
USDC: bigint | null;
|
|
@@ -2292,6 +2289,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2292
2289
|
USDC: bigint | null;
|
|
2293
2290
|
SOL: bigint | null;
|
|
2294
2291
|
};
|
|
2292
|
+
Polkadot: {
|
|
2293
|
+
DOT: bigint | null;
|
|
2294
|
+
};
|
|
2295
2295
|
}, {
|
|
2296
2296
|
Bitcoin: {
|
|
2297
2297
|
BTC: string | number | null;
|
|
@@ -2302,13 +2302,13 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2302
2302
|
FLIP: string | number | null;
|
|
2303
2303
|
USDT: string | number | null;
|
|
2304
2304
|
};
|
|
2305
|
-
Polkadot: {
|
|
2306
|
-
DOT: string | number | null;
|
|
2307
|
-
};
|
|
2308
2305
|
Arbitrum: {
|
|
2309
2306
|
ETH: string | number | null;
|
|
2310
2307
|
USDC: string | number | null;
|
|
2311
2308
|
};
|
|
2309
|
+
Polkadot: {
|
|
2310
|
+
DOT: string | number | null;
|
|
2311
|
+
};
|
|
2312
2312
|
Solana?: {
|
|
2313
2313
|
USDC?: string | number | null | undefined;
|
|
2314
2314
|
SOL?: string | number | null | undefined;
|
|
@@ -2326,9 +2326,6 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2326
2326
|
FLIP: bigint | null;
|
|
2327
2327
|
USDT: bigint | null;
|
|
2328
2328
|
};
|
|
2329
|
-
Polkadot: {
|
|
2330
|
-
DOT: bigint | null;
|
|
2331
|
-
};
|
|
2332
2329
|
Arbitrum: {
|
|
2333
2330
|
ETH: bigint | null;
|
|
2334
2331
|
USDC: bigint | null;
|
|
@@ -2337,6 +2334,9 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2337
2334
|
USDC: bigint | null;
|
|
2338
2335
|
SOL: bigint | null;
|
|
2339
2336
|
};
|
|
2337
|
+
Polkadot: {
|
|
2338
|
+
DOT: bigint | null;
|
|
2339
|
+
};
|
|
2340
2340
|
};
|
|
2341
2341
|
network_fee_hundredth_pips: number;
|
|
2342
2342
|
}, {
|
|
@@ -2350,13 +2350,13 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2350
2350
|
FLIP: string | number | null;
|
|
2351
2351
|
USDT: string | number | null;
|
|
2352
2352
|
};
|
|
2353
|
-
Polkadot: {
|
|
2354
|
-
DOT: string | number | null;
|
|
2355
|
-
};
|
|
2356
2353
|
Arbitrum: {
|
|
2357
2354
|
ETH: string | number | null;
|
|
2358
2355
|
USDC: string | number | null;
|
|
2359
2356
|
};
|
|
2357
|
+
Polkadot: {
|
|
2358
|
+
DOT: string | number | null;
|
|
2359
|
+
};
|
|
2360
2360
|
Solana?: {
|
|
2361
2361
|
USDC?: string | number | null | undefined;
|
|
2362
2362
|
SOL?: string | number | null | undefined;
|
|
@@ -4749,8 +4749,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4749
4749
|
};
|
|
4750
4750
|
};
|
|
4751
4751
|
};
|
|
4752
|
-
|
|
4753
|
-
|
|
4752
|
+
Arbitrum: {
|
|
4753
|
+
ETH: {
|
|
4754
4754
|
limit_order_fee_hundredth_pips: number;
|
|
4755
4755
|
range_order_fee_hundredth_pips: number;
|
|
4756
4756
|
range_order_total_fees_earned: {
|
|
@@ -4797,9 +4797,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4797
4797
|
readonly asset: "USDC";
|
|
4798
4798
|
};
|
|
4799
4799
|
};
|
|
4800
|
-
|
|
4801
|
-
Arbitrum: {
|
|
4802
|
-
ETH: {
|
|
4800
|
+
USDC: {
|
|
4803
4801
|
limit_order_fee_hundredth_pips: number;
|
|
4804
4802
|
range_order_fee_hundredth_pips: number;
|
|
4805
4803
|
range_order_total_fees_earned: {
|
|
@@ -4846,6 +4844,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4846
4844
|
readonly asset: "USDC";
|
|
4847
4845
|
};
|
|
4848
4846
|
};
|
|
4847
|
+
};
|
|
4848
|
+
Solana: {
|
|
4849
4849
|
USDC: {
|
|
4850
4850
|
limit_order_fee_hundredth_pips: number;
|
|
4851
4851
|
range_order_fee_hundredth_pips: number;
|
|
@@ -4893,9 +4893,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4893
4893
|
readonly asset: "USDC";
|
|
4894
4894
|
};
|
|
4895
4895
|
};
|
|
4896
|
-
|
|
4897
|
-
Solana: {
|
|
4898
|
-
USDC: {
|
|
4896
|
+
SOL: {
|
|
4899
4897
|
limit_order_fee_hundredth_pips: number;
|
|
4900
4898
|
range_order_fee_hundredth_pips: number;
|
|
4901
4899
|
range_order_total_fees_earned: {
|
|
@@ -4942,7 +4940,9 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
4942
4940
|
readonly asset: "USDC";
|
|
4943
4941
|
};
|
|
4944
4942
|
};
|
|
4945
|
-
|
|
4943
|
+
};
|
|
4944
|
+
Polkadot: {
|
|
4945
|
+
DOT: {
|
|
4946
4946
|
limit_order_fee_hundredth_pips: number;
|
|
4947
4947
|
range_order_fee_hundredth_pips: number;
|
|
4948
4948
|
range_order_total_fees_earned: {
|
|
@@ -5091,8 +5091,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5091
5091
|
};
|
|
5092
5092
|
} | null;
|
|
5093
5093
|
};
|
|
5094
|
-
|
|
5095
|
-
|
|
5094
|
+
Arbitrum: {
|
|
5095
|
+
ETH: {
|
|
5096
5096
|
limit_order_fee_hundredth_pips: number;
|
|
5097
5097
|
range_order_fee_hundredth_pips: number;
|
|
5098
5098
|
range_order_total_fees_earned: {
|
|
@@ -5116,9 +5116,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5116
5116
|
asset: "USDC";
|
|
5117
5117
|
};
|
|
5118
5118
|
} | null;
|
|
5119
|
-
|
|
5120
|
-
Arbitrum: {
|
|
5121
|
-
ETH: {
|
|
5119
|
+
USDC: {
|
|
5122
5120
|
limit_order_fee_hundredth_pips: number;
|
|
5123
5121
|
range_order_fee_hundredth_pips: number;
|
|
5124
5122
|
range_order_total_fees_earned: {
|
|
@@ -5142,7 +5140,9 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5142
5140
|
asset: "USDC";
|
|
5143
5141
|
};
|
|
5144
5142
|
} | null;
|
|
5145
|
-
|
|
5143
|
+
};
|
|
5144
|
+
Polkadot: {
|
|
5145
|
+
DOT: {
|
|
5146
5146
|
limit_order_fee_hundredth_pips: number;
|
|
5147
5147
|
range_order_fee_hundredth_pips: number;
|
|
5148
5148
|
range_order_total_fees_earned: {
|
|
@@ -5412,8 +5412,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5412
5412
|
};
|
|
5413
5413
|
};
|
|
5414
5414
|
};
|
|
5415
|
-
|
|
5416
|
-
|
|
5415
|
+
Arbitrum: {
|
|
5416
|
+
ETH: {
|
|
5417
5417
|
limit_order_fee_hundredth_pips: number;
|
|
5418
5418
|
range_order_fee_hundredth_pips: number;
|
|
5419
5419
|
range_order_total_fees_earned: {
|
|
@@ -5460,9 +5460,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5460
5460
|
readonly asset: "USDC";
|
|
5461
5461
|
};
|
|
5462
5462
|
};
|
|
5463
|
-
|
|
5464
|
-
Arbitrum: {
|
|
5465
|
-
ETH: {
|
|
5463
|
+
USDC: {
|
|
5466
5464
|
limit_order_fee_hundredth_pips: number;
|
|
5467
5465
|
range_order_fee_hundredth_pips: number;
|
|
5468
5466
|
range_order_total_fees_earned: {
|
|
@@ -5509,6 +5507,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5509
5507
|
readonly asset: "USDC";
|
|
5510
5508
|
};
|
|
5511
5509
|
};
|
|
5510
|
+
};
|
|
5511
|
+
Solana: {
|
|
5512
5512
|
USDC: {
|
|
5513
5513
|
limit_order_fee_hundredth_pips: number;
|
|
5514
5514
|
range_order_fee_hundredth_pips: number;
|
|
@@ -5556,9 +5556,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5556
5556
|
readonly asset: "USDC";
|
|
5557
5557
|
};
|
|
5558
5558
|
};
|
|
5559
|
-
|
|
5560
|
-
Solana: {
|
|
5561
|
-
USDC: {
|
|
5559
|
+
SOL: {
|
|
5562
5560
|
limit_order_fee_hundredth_pips: number;
|
|
5563
5561
|
range_order_fee_hundredth_pips: number;
|
|
5564
5562
|
range_order_total_fees_earned: {
|
|
@@ -5605,7 +5603,9 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5605
5603
|
readonly asset: "USDC";
|
|
5606
5604
|
};
|
|
5607
5605
|
};
|
|
5608
|
-
|
|
5606
|
+
};
|
|
5607
|
+
Polkadot: {
|
|
5608
|
+
DOT: {
|
|
5609
5609
|
limit_order_fee_hundredth_pips: number;
|
|
5610
5610
|
range_order_fee_hundredth_pips: number;
|
|
5611
5611
|
range_order_total_fees_earned: {
|
|
@@ -5756,8 +5756,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5756
5756
|
};
|
|
5757
5757
|
} | null;
|
|
5758
5758
|
};
|
|
5759
|
-
|
|
5760
|
-
|
|
5759
|
+
Arbitrum: {
|
|
5760
|
+
ETH: {
|
|
5761
5761
|
limit_order_fee_hundredth_pips: number;
|
|
5762
5762
|
range_order_fee_hundredth_pips: number;
|
|
5763
5763
|
range_order_total_fees_earned: {
|
|
@@ -5781,9 +5781,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5781
5781
|
asset: "USDC";
|
|
5782
5782
|
};
|
|
5783
5783
|
} | null;
|
|
5784
|
-
|
|
5785
|
-
Arbitrum: {
|
|
5786
|
-
ETH: {
|
|
5784
|
+
USDC: {
|
|
5787
5785
|
limit_order_fee_hundredth_pips: number;
|
|
5788
5786
|
range_order_fee_hundredth_pips: number;
|
|
5789
5787
|
range_order_total_fees_earned: {
|
|
@@ -5807,7 +5805,9 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5807
5805
|
asset: "USDC";
|
|
5808
5806
|
};
|
|
5809
5807
|
} | null;
|
|
5810
|
-
|
|
5808
|
+
};
|
|
5809
|
+
Polkadot: {
|
|
5810
|
+
DOT: {
|
|
5811
5811
|
limit_order_fee_hundredth_pips: number;
|
|
5812
5812
|
range_order_fee_hundredth_pips: number;
|
|
5813
5813
|
range_order_total_fees_earned: {
|
|
@@ -5947,9 +5947,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5947
5947
|
FLIP: bigint;
|
|
5948
5948
|
USDT: bigint;
|
|
5949
5949
|
};
|
|
5950
|
-
Polkadot: {
|
|
5951
|
-
DOT: bigint;
|
|
5952
|
-
};
|
|
5953
5950
|
Arbitrum: {
|
|
5954
5951
|
ETH: bigint;
|
|
5955
5952
|
USDC: bigint;
|
|
@@ -5958,6 +5955,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5958
5955
|
USDC: bigint;
|
|
5959
5956
|
SOL: bigint;
|
|
5960
5957
|
};
|
|
5958
|
+
Polkadot: {
|
|
5959
|
+
DOT: bigint;
|
|
5960
|
+
};
|
|
5961
5961
|
}, {
|
|
5962
5962
|
Bitcoin: {
|
|
5963
5963
|
BTC: string | number;
|
|
@@ -5968,13 +5968,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
5968
5968
|
FLIP: string | number;
|
|
5969
5969
|
USDT: string | number;
|
|
5970
5970
|
};
|
|
5971
|
-
Polkadot: {
|
|
5972
|
-
DOT: string | number;
|
|
5973
|
-
};
|
|
5974
5971
|
Arbitrum: {
|
|
5975
5972
|
ETH: string | number;
|
|
5976
5973
|
USDC: string | number;
|
|
5977
5974
|
};
|
|
5975
|
+
Polkadot: {
|
|
5976
|
+
DOT: string | number;
|
|
5977
|
+
};
|
|
5978
5978
|
Solana?: {
|
|
5979
5979
|
USDC?: string | number | undefined;
|
|
5980
5980
|
SOL?: string | number | undefined;
|
|
@@ -6041,9 +6041,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6041
6041
|
FLIP: bigint | null;
|
|
6042
6042
|
USDT: bigint | null;
|
|
6043
6043
|
};
|
|
6044
|
-
Polkadot: {
|
|
6045
|
-
DOT: bigint | null;
|
|
6046
|
-
};
|
|
6047
6044
|
Arbitrum: {
|
|
6048
6045
|
ETH: bigint | null;
|
|
6049
6046
|
USDC: bigint | null;
|
|
@@ -6052,6 +6049,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6052
6049
|
USDC: bigint | null;
|
|
6053
6050
|
SOL: bigint | null;
|
|
6054
6051
|
};
|
|
6052
|
+
Polkadot: {
|
|
6053
|
+
DOT: bigint | null;
|
|
6054
|
+
};
|
|
6055
6055
|
}, {
|
|
6056
6056
|
Bitcoin: {
|
|
6057
6057
|
BTC: string | number | null;
|
|
@@ -6062,13 +6062,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6062
6062
|
FLIP: string | number | null;
|
|
6063
6063
|
USDT: string | number | null;
|
|
6064
6064
|
};
|
|
6065
|
-
Polkadot: {
|
|
6066
|
-
DOT: string | number | null;
|
|
6067
|
-
};
|
|
6068
6065
|
Arbitrum: {
|
|
6069
6066
|
ETH: string | number | null;
|
|
6070
6067
|
USDC: string | number | null;
|
|
6071
6068
|
};
|
|
6069
|
+
Polkadot: {
|
|
6070
|
+
DOT: string | number | null;
|
|
6071
|
+
};
|
|
6072
6072
|
Solana?: {
|
|
6073
6073
|
USDC?: string | number | null | undefined;
|
|
6074
6074
|
SOL?: string | number | null | undefined;
|
|
@@ -6135,9 +6135,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6135
6135
|
FLIP: bigint | null;
|
|
6136
6136
|
USDT: bigint | null;
|
|
6137
6137
|
};
|
|
6138
|
-
Polkadot: {
|
|
6139
|
-
DOT: bigint | null;
|
|
6140
|
-
};
|
|
6141
6138
|
Arbitrum: {
|
|
6142
6139
|
ETH: bigint | null;
|
|
6143
6140
|
USDC: bigint | null;
|
|
@@ -6146,6 +6143,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6146
6143
|
USDC: bigint | null;
|
|
6147
6144
|
SOL: bigint | null;
|
|
6148
6145
|
};
|
|
6146
|
+
Polkadot: {
|
|
6147
|
+
DOT: bigint | null;
|
|
6148
|
+
};
|
|
6149
6149
|
}, {
|
|
6150
6150
|
Bitcoin: {
|
|
6151
6151
|
BTC: string | number | null;
|
|
@@ -6156,13 +6156,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6156
6156
|
FLIP: string | number | null;
|
|
6157
6157
|
USDT: string | number | null;
|
|
6158
6158
|
};
|
|
6159
|
-
Polkadot: {
|
|
6160
|
-
DOT: string | number | null;
|
|
6161
|
-
};
|
|
6162
6159
|
Arbitrum: {
|
|
6163
6160
|
ETH: string | number | null;
|
|
6164
6161
|
USDC: string | number | null;
|
|
6165
6162
|
};
|
|
6163
|
+
Polkadot: {
|
|
6164
|
+
DOT: string | number | null;
|
|
6165
|
+
};
|
|
6166
6166
|
Solana?: {
|
|
6167
6167
|
USDC?: string | number | null | undefined;
|
|
6168
6168
|
SOL?: string | number | null | undefined;
|
|
@@ -6177,14 +6177,14 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6177
6177
|
}, "strip", z.ZodTypeAny, {
|
|
6178
6178
|
Bitcoin: number | null;
|
|
6179
6179
|
Ethereum: number | null;
|
|
6180
|
-
Polkadot: number | null;
|
|
6181
6180
|
Arbitrum: number | null;
|
|
6182
6181
|
Solana: number | null;
|
|
6182
|
+
Polkadot: number | null;
|
|
6183
6183
|
}, {
|
|
6184
6184
|
Bitcoin: number | null;
|
|
6185
6185
|
Ethereum: number | null;
|
|
6186
|
-
Polkadot: number | null;
|
|
6187
6186
|
Arbitrum: number | null;
|
|
6187
|
+
Polkadot: number | null;
|
|
6188
6188
|
Solana?: number | null | undefined;
|
|
6189
6189
|
}>;
|
|
6190
6190
|
egress_dust_limits: z.ZodObject<{
|
|
@@ -6248,9 +6248,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6248
6248
|
FLIP: bigint;
|
|
6249
6249
|
USDT: bigint;
|
|
6250
6250
|
};
|
|
6251
|
-
Polkadot: {
|
|
6252
|
-
DOT: bigint;
|
|
6253
|
-
};
|
|
6254
6251
|
Arbitrum: {
|
|
6255
6252
|
ETH: bigint;
|
|
6256
6253
|
USDC: bigint;
|
|
@@ -6259,6 +6256,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6259
6256
|
USDC: bigint;
|
|
6260
6257
|
SOL: bigint;
|
|
6261
6258
|
};
|
|
6259
|
+
Polkadot: {
|
|
6260
|
+
DOT: bigint;
|
|
6261
|
+
};
|
|
6262
6262
|
}, {
|
|
6263
6263
|
Bitcoin: {
|
|
6264
6264
|
BTC: string | number;
|
|
@@ -6269,13 +6269,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6269
6269
|
FLIP: string | number;
|
|
6270
6270
|
USDT: string | number;
|
|
6271
6271
|
};
|
|
6272
|
-
Polkadot: {
|
|
6273
|
-
DOT: string | number;
|
|
6274
|
-
};
|
|
6275
6272
|
Arbitrum: {
|
|
6276
6273
|
ETH: string | number;
|
|
6277
6274
|
USDC: string | number;
|
|
6278
6275
|
};
|
|
6276
|
+
Polkadot: {
|
|
6277
|
+
DOT: string | number;
|
|
6278
|
+
};
|
|
6279
6279
|
Solana?: {
|
|
6280
6280
|
USDC?: string | number | undefined;
|
|
6281
6281
|
SOL?: string | number | undefined;
|
|
@@ -6290,14 +6290,14 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6290
6290
|
}, "strip", z.ZodTypeAny, {
|
|
6291
6291
|
Bitcoin: bigint;
|
|
6292
6292
|
Ethereum: bigint;
|
|
6293
|
-
Polkadot: bigint;
|
|
6294
6293
|
Arbitrum: bigint;
|
|
6295
6294
|
Solana: bigint;
|
|
6295
|
+
Polkadot: bigint;
|
|
6296
6296
|
}, {
|
|
6297
6297
|
Bitcoin: string | number;
|
|
6298
6298
|
Ethereum: string | number;
|
|
6299
|
-
Polkadot: string | number;
|
|
6300
6299
|
Arbitrum: string | number;
|
|
6300
|
+
Polkadot: string | number;
|
|
6301
6301
|
Solana?: string | number | undefined;
|
|
6302
6302
|
}>;
|
|
6303
6303
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
@@ -6309,14 +6309,14 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6309
6309
|
}, "strip", z.ZodTypeAny, {
|
|
6310
6310
|
Bitcoin: number;
|
|
6311
6311
|
Ethereum: number;
|
|
6312
|
-
Polkadot: number;
|
|
6313
6312
|
Arbitrum: number;
|
|
6314
6313
|
Solana: number;
|
|
6314
|
+
Polkadot: number;
|
|
6315
6315
|
}, {
|
|
6316
6316
|
Bitcoin: number;
|
|
6317
6317
|
Ethereum: number;
|
|
6318
|
-
Polkadot: number;
|
|
6319
6318
|
Arbitrum: number;
|
|
6319
|
+
Polkadot: number;
|
|
6320
6320
|
Solana?: number | undefined;
|
|
6321
6321
|
}>>>;
|
|
6322
6322
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6330,9 +6330,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6330
6330
|
FLIP: bigint;
|
|
6331
6331
|
USDT: bigint;
|
|
6332
6332
|
};
|
|
6333
|
-
Polkadot: {
|
|
6334
|
-
DOT: bigint;
|
|
6335
|
-
};
|
|
6336
6333
|
Arbitrum: {
|
|
6337
6334
|
ETH: bigint;
|
|
6338
6335
|
USDC: bigint;
|
|
@@ -6341,6 +6338,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6341
6338
|
USDC: bigint;
|
|
6342
6339
|
SOL: bigint;
|
|
6343
6340
|
};
|
|
6341
|
+
Polkadot: {
|
|
6342
|
+
DOT: bigint;
|
|
6343
|
+
};
|
|
6344
6344
|
};
|
|
6345
6345
|
ingress_fees: {
|
|
6346
6346
|
Bitcoin: {
|
|
@@ -6352,9 +6352,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6352
6352
|
FLIP: bigint | null;
|
|
6353
6353
|
USDT: bigint | null;
|
|
6354
6354
|
};
|
|
6355
|
-
Polkadot: {
|
|
6356
|
-
DOT: bigint | null;
|
|
6357
|
-
};
|
|
6358
6355
|
Arbitrum: {
|
|
6359
6356
|
ETH: bigint | null;
|
|
6360
6357
|
USDC: bigint | null;
|
|
@@ -6363,6 +6360,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6363
6360
|
USDC: bigint | null;
|
|
6364
6361
|
SOL: bigint | null;
|
|
6365
6362
|
};
|
|
6363
|
+
Polkadot: {
|
|
6364
|
+
DOT: bigint | null;
|
|
6365
|
+
};
|
|
6366
6366
|
};
|
|
6367
6367
|
egress_fees: {
|
|
6368
6368
|
Bitcoin: {
|
|
@@ -6374,9 +6374,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6374
6374
|
FLIP: bigint | null;
|
|
6375
6375
|
USDT: bigint | null;
|
|
6376
6376
|
};
|
|
6377
|
-
Polkadot: {
|
|
6378
|
-
DOT: bigint | null;
|
|
6379
|
-
};
|
|
6380
6377
|
Arbitrum: {
|
|
6381
6378
|
ETH: bigint | null;
|
|
6382
6379
|
USDC: bigint | null;
|
|
@@ -6385,13 +6382,16 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6385
6382
|
USDC: bigint | null;
|
|
6386
6383
|
SOL: bigint | null;
|
|
6387
6384
|
};
|
|
6385
|
+
Polkadot: {
|
|
6386
|
+
DOT: bigint | null;
|
|
6387
|
+
};
|
|
6388
6388
|
};
|
|
6389
6389
|
witness_safety_margins: {
|
|
6390
6390
|
Bitcoin: number | null;
|
|
6391
6391
|
Ethereum: number | null;
|
|
6392
|
-
Polkadot: number | null;
|
|
6393
6392
|
Arbitrum: number | null;
|
|
6394
6393
|
Solana: number | null;
|
|
6394
|
+
Polkadot: number | null;
|
|
6395
6395
|
};
|
|
6396
6396
|
egress_dust_limits: {
|
|
6397
6397
|
Bitcoin: {
|
|
@@ -6403,9 +6403,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6403
6403
|
FLIP: bigint;
|
|
6404
6404
|
USDT: bigint;
|
|
6405
6405
|
};
|
|
6406
|
-
Polkadot: {
|
|
6407
|
-
DOT: bigint;
|
|
6408
|
-
};
|
|
6409
6406
|
Arbitrum: {
|
|
6410
6407
|
ETH: bigint;
|
|
6411
6408
|
USDC: bigint;
|
|
@@ -6414,20 +6411,23 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6414
6411
|
USDC: bigint;
|
|
6415
6412
|
SOL: bigint;
|
|
6416
6413
|
};
|
|
6414
|
+
Polkadot: {
|
|
6415
|
+
DOT: bigint;
|
|
6416
|
+
};
|
|
6417
6417
|
};
|
|
6418
6418
|
channel_opening_fees: {
|
|
6419
6419
|
Bitcoin: bigint;
|
|
6420
6420
|
Ethereum: bigint;
|
|
6421
|
-
Polkadot: bigint;
|
|
6422
6421
|
Arbitrum: bigint;
|
|
6423
6422
|
Solana: bigint;
|
|
6423
|
+
Polkadot: bigint;
|
|
6424
6424
|
};
|
|
6425
6425
|
max_swap_retry_duration_blocks: {
|
|
6426
6426
|
Bitcoin: number;
|
|
6427
6427
|
Ethereum: number;
|
|
6428
|
-
Polkadot: number;
|
|
6429
6428
|
Arbitrum: number;
|
|
6430
6429
|
Solana: number;
|
|
6430
|
+
Polkadot: number;
|
|
6431
6431
|
};
|
|
6432
6432
|
}, {
|
|
6433
6433
|
minimum_deposit_amounts: {
|
|
@@ -6440,13 +6440,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6440
6440
|
FLIP: string | number;
|
|
6441
6441
|
USDT: string | number;
|
|
6442
6442
|
};
|
|
6443
|
-
Polkadot: {
|
|
6444
|
-
DOT: string | number;
|
|
6445
|
-
};
|
|
6446
6443
|
Arbitrum: {
|
|
6447
6444
|
ETH: string | number;
|
|
6448
6445
|
USDC: string | number;
|
|
6449
6446
|
};
|
|
6447
|
+
Polkadot: {
|
|
6448
|
+
DOT: string | number;
|
|
6449
|
+
};
|
|
6450
6450
|
Solana?: {
|
|
6451
6451
|
USDC?: string | number | undefined;
|
|
6452
6452
|
SOL?: string | number | undefined;
|
|
@@ -6462,13 +6462,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6462
6462
|
FLIP: string | number | null;
|
|
6463
6463
|
USDT: string | number | null;
|
|
6464
6464
|
};
|
|
6465
|
-
Polkadot: {
|
|
6466
|
-
DOT: string | number | null;
|
|
6467
|
-
};
|
|
6468
6465
|
Arbitrum: {
|
|
6469
6466
|
ETH: string | number | null;
|
|
6470
6467
|
USDC: string | number | null;
|
|
6471
6468
|
};
|
|
6469
|
+
Polkadot: {
|
|
6470
|
+
DOT: string | number | null;
|
|
6471
|
+
};
|
|
6472
6472
|
Solana?: {
|
|
6473
6473
|
USDC?: string | number | null | undefined;
|
|
6474
6474
|
SOL?: string | number | null | undefined;
|
|
@@ -6484,13 +6484,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6484
6484
|
FLIP: string | number | null;
|
|
6485
6485
|
USDT: string | number | null;
|
|
6486
6486
|
};
|
|
6487
|
-
Polkadot: {
|
|
6488
|
-
DOT: string | number | null;
|
|
6489
|
-
};
|
|
6490
6487
|
Arbitrum: {
|
|
6491
6488
|
ETH: string | number | null;
|
|
6492
6489
|
USDC: string | number | null;
|
|
6493
6490
|
};
|
|
6491
|
+
Polkadot: {
|
|
6492
|
+
DOT: string | number | null;
|
|
6493
|
+
};
|
|
6494
6494
|
Solana?: {
|
|
6495
6495
|
USDC?: string | number | null | undefined;
|
|
6496
6496
|
SOL?: string | number | null | undefined;
|
|
@@ -6499,8 +6499,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6499
6499
|
witness_safety_margins: {
|
|
6500
6500
|
Bitcoin: number | null;
|
|
6501
6501
|
Ethereum: number | null;
|
|
6502
|
-
Polkadot: number | null;
|
|
6503
6502
|
Arbitrum: number | null;
|
|
6503
|
+
Polkadot: number | null;
|
|
6504
6504
|
Solana?: number | null | undefined;
|
|
6505
6505
|
};
|
|
6506
6506
|
egress_dust_limits: {
|
|
@@ -6513,13 +6513,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6513
6513
|
FLIP: string | number;
|
|
6514
6514
|
USDT: string | number;
|
|
6515
6515
|
};
|
|
6516
|
-
Polkadot: {
|
|
6517
|
-
DOT: string | number;
|
|
6518
|
-
};
|
|
6519
6516
|
Arbitrum: {
|
|
6520
6517
|
ETH: string | number;
|
|
6521
6518
|
USDC: string | number;
|
|
6522
6519
|
};
|
|
6520
|
+
Polkadot: {
|
|
6521
|
+
DOT: string | number;
|
|
6522
|
+
};
|
|
6523
6523
|
Solana?: {
|
|
6524
6524
|
USDC?: string | number | undefined;
|
|
6525
6525
|
SOL?: string | number | undefined;
|
|
@@ -6528,15 +6528,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6528
6528
|
channel_opening_fees: {
|
|
6529
6529
|
Bitcoin: string | number;
|
|
6530
6530
|
Ethereum: string | number;
|
|
6531
|
-
Polkadot: string | number;
|
|
6532
6531
|
Arbitrum: string | number;
|
|
6532
|
+
Polkadot: string | number;
|
|
6533
6533
|
Solana?: string | number | undefined;
|
|
6534
6534
|
};
|
|
6535
6535
|
max_swap_retry_duration_blocks?: {
|
|
6536
6536
|
Bitcoin: number;
|
|
6537
6537
|
Ethereum: number;
|
|
6538
|
-
Polkadot: number;
|
|
6539
6538
|
Arbitrum: number;
|
|
6539
|
+
Polkadot: number;
|
|
6540
6540
|
Solana?: number | undefined;
|
|
6541
6541
|
} | undefined;
|
|
6542
6542
|
}>, Rename<{
|
|
@@ -6550,9 +6550,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6550
6550
|
FLIP: bigint;
|
|
6551
6551
|
USDT: bigint;
|
|
6552
6552
|
};
|
|
6553
|
-
Polkadot: {
|
|
6554
|
-
DOT: bigint;
|
|
6555
|
-
};
|
|
6556
6553
|
Arbitrum: {
|
|
6557
6554
|
ETH: bigint;
|
|
6558
6555
|
USDC: bigint;
|
|
@@ -6561,6 +6558,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6561
6558
|
USDC: bigint;
|
|
6562
6559
|
SOL: bigint;
|
|
6563
6560
|
};
|
|
6561
|
+
Polkadot: {
|
|
6562
|
+
DOT: bigint;
|
|
6563
|
+
};
|
|
6564
6564
|
};
|
|
6565
6565
|
ingress_fees: {
|
|
6566
6566
|
Bitcoin: {
|
|
@@ -6572,9 +6572,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6572
6572
|
FLIP: bigint | null;
|
|
6573
6573
|
USDT: bigint | null;
|
|
6574
6574
|
};
|
|
6575
|
-
Polkadot: {
|
|
6576
|
-
DOT: bigint | null;
|
|
6577
|
-
};
|
|
6578
6575
|
Arbitrum: {
|
|
6579
6576
|
ETH: bigint | null;
|
|
6580
6577
|
USDC: bigint | null;
|
|
@@ -6583,6 +6580,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6583
6580
|
USDC: bigint | null;
|
|
6584
6581
|
SOL: bigint | null;
|
|
6585
6582
|
};
|
|
6583
|
+
Polkadot: {
|
|
6584
|
+
DOT: bigint | null;
|
|
6585
|
+
};
|
|
6586
6586
|
};
|
|
6587
6587
|
egress_fees: {
|
|
6588
6588
|
Bitcoin: {
|
|
@@ -6594,9 +6594,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6594
6594
|
FLIP: bigint | null;
|
|
6595
6595
|
USDT: bigint | null;
|
|
6596
6596
|
};
|
|
6597
|
-
Polkadot: {
|
|
6598
|
-
DOT: bigint | null;
|
|
6599
|
-
};
|
|
6600
6597
|
Arbitrum: {
|
|
6601
6598
|
ETH: bigint | null;
|
|
6602
6599
|
USDC: bigint | null;
|
|
@@ -6605,13 +6602,16 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6605
6602
|
USDC: bigint | null;
|
|
6606
6603
|
SOL: bigint | null;
|
|
6607
6604
|
};
|
|
6605
|
+
Polkadot: {
|
|
6606
|
+
DOT: bigint | null;
|
|
6607
|
+
};
|
|
6608
6608
|
};
|
|
6609
6609
|
witness_safety_margins: {
|
|
6610
6610
|
Bitcoin: number | null;
|
|
6611
6611
|
Ethereum: number | null;
|
|
6612
|
-
Polkadot: number | null;
|
|
6613
6612
|
Arbitrum: number | null;
|
|
6614
6613
|
Solana: number | null;
|
|
6614
|
+
Polkadot: number | null;
|
|
6615
6615
|
};
|
|
6616
6616
|
egress_dust_limits: {
|
|
6617
6617
|
Bitcoin: {
|
|
@@ -6623,9 +6623,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6623
6623
|
FLIP: bigint;
|
|
6624
6624
|
USDT: bigint;
|
|
6625
6625
|
};
|
|
6626
|
-
Polkadot: {
|
|
6627
|
-
DOT: bigint;
|
|
6628
|
-
};
|
|
6629
6626
|
Arbitrum: {
|
|
6630
6627
|
ETH: bigint;
|
|
6631
6628
|
USDC: bigint;
|
|
@@ -6634,20 +6631,23 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6634
6631
|
USDC: bigint;
|
|
6635
6632
|
SOL: bigint;
|
|
6636
6633
|
};
|
|
6634
|
+
Polkadot: {
|
|
6635
|
+
DOT: bigint;
|
|
6636
|
+
};
|
|
6637
6637
|
};
|
|
6638
6638
|
channel_opening_fees: {
|
|
6639
6639
|
Bitcoin: bigint;
|
|
6640
6640
|
Ethereum: bigint;
|
|
6641
|
-
Polkadot: bigint;
|
|
6642
6641
|
Arbitrum: bigint;
|
|
6643
6642
|
Solana: bigint;
|
|
6643
|
+
Polkadot: bigint;
|
|
6644
6644
|
};
|
|
6645
6645
|
max_swap_retry_duration_blocks: {
|
|
6646
6646
|
Bitcoin: number;
|
|
6647
6647
|
Ethereum: number;
|
|
6648
|
-
Polkadot: number;
|
|
6649
6648
|
Arbitrum: number;
|
|
6650
6649
|
Solana: number;
|
|
6650
|
+
Polkadot: number;
|
|
6651
6651
|
};
|
|
6652
6652
|
}, {
|
|
6653
6653
|
readonly egress_dust_limits: "minimum_egress_amounts";
|
|
@@ -6662,13 +6662,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6662
6662
|
FLIP: string | number;
|
|
6663
6663
|
USDT: string | number;
|
|
6664
6664
|
};
|
|
6665
|
-
Polkadot: {
|
|
6666
|
-
DOT: string | number;
|
|
6667
|
-
};
|
|
6668
6665
|
Arbitrum: {
|
|
6669
6666
|
ETH: string | number;
|
|
6670
6667
|
USDC: string | number;
|
|
6671
6668
|
};
|
|
6669
|
+
Polkadot: {
|
|
6670
|
+
DOT: string | number;
|
|
6671
|
+
};
|
|
6672
6672
|
Solana?: {
|
|
6673
6673
|
USDC?: string | number | undefined;
|
|
6674
6674
|
SOL?: string | number | undefined;
|
|
@@ -6684,13 +6684,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6684
6684
|
FLIP: string | number | null;
|
|
6685
6685
|
USDT: string | number | null;
|
|
6686
6686
|
};
|
|
6687
|
-
Polkadot: {
|
|
6688
|
-
DOT: string | number | null;
|
|
6689
|
-
};
|
|
6690
6687
|
Arbitrum: {
|
|
6691
6688
|
ETH: string | number | null;
|
|
6692
6689
|
USDC: string | number | null;
|
|
6693
6690
|
};
|
|
6691
|
+
Polkadot: {
|
|
6692
|
+
DOT: string | number | null;
|
|
6693
|
+
};
|
|
6694
6694
|
Solana?: {
|
|
6695
6695
|
USDC?: string | number | null | undefined;
|
|
6696
6696
|
SOL?: string | number | null | undefined;
|
|
@@ -6706,13 +6706,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6706
6706
|
FLIP: string | number | null;
|
|
6707
6707
|
USDT: string | number | null;
|
|
6708
6708
|
};
|
|
6709
|
-
Polkadot: {
|
|
6710
|
-
DOT: string | number | null;
|
|
6711
|
-
};
|
|
6712
6709
|
Arbitrum: {
|
|
6713
6710
|
ETH: string | number | null;
|
|
6714
6711
|
USDC: string | number | null;
|
|
6715
6712
|
};
|
|
6713
|
+
Polkadot: {
|
|
6714
|
+
DOT: string | number | null;
|
|
6715
|
+
};
|
|
6716
6716
|
Solana?: {
|
|
6717
6717
|
USDC?: string | number | null | undefined;
|
|
6718
6718
|
SOL?: string | number | null | undefined;
|
|
@@ -6721,8 +6721,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6721
6721
|
witness_safety_margins: {
|
|
6722
6722
|
Bitcoin: number | null;
|
|
6723
6723
|
Ethereum: number | null;
|
|
6724
|
-
Polkadot: number | null;
|
|
6725
6724
|
Arbitrum: number | null;
|
|
6725
|
+
Polkadot: number | null;
|
|
6726
6726
|
Solana?: number | null | undefined;
|
|
6727
6727
|
};
|
|
6728
6728
|
egress_dust_limits: {
|
|
@@ -6735,13 +6735,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6735
6735
|
FLIP: string | number;
|
|
6736
6736
|
USDT: string | number;
|
|
6737
6737
|
};
|
|
6738
|
-
Polkadot: {
|
|
6739
|
-
DOT: string | number;
|
|
6740
|
-
};
|
|
6741
6738
|
Arbitrum: {
|
|
6742
6739
|
ETH: string | number;
|
|
6743
6740
|
USDC: string | number;
|
|
6744
6741
|
};
|
|
6742
|
+
Polkadot: {
|
|
6743
|
+
DOT: string | number;
|
|
6744
|
+
};
|
|
6745
6745
|
Solana?: {
|
|
6746
6746
|
USDC?: string | number | undefined;
|
|
6747
6747
|
SOL?: string | number | undefined;
|
|
@@ -6750,15 +6750,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6750
6750
|
channel_opening_fees: {
|
|
6751
6751
|
Bitcoin: string | number;
|
|
6752
6752
|
Ethereum: string | number;
|
|
6753
|
-
Polkadot: string | number;
|
|
6754
6753
|
Arbitrum: string | number;
|
|
6754
|
+
Polkadot: string | number;
|
|
6755
6755
|
Solana?: string | number | undefined;
|
|
6756
6756
|
};
|
|
6757
6757
|
max_swap_retry_duration_blocks?: {
|
|
6758
6758
|
Bitcoin: number;
|
|
6759
6759
|
Ethereum: number;
|
|
6760
|
-
Polkadot: number;
|
|
6761
6760
|
Arbitrum: number;
|
|
6761
|
+
Polkadot: number;
|
|
6762
6762
|
Solana?: number | undefined;
|
|
6763
6763
|
} | undefined;
|
|
6764
6764
|
}>;
|
|
@@ -6824,9 +6824,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6824
6824
|
FLIP: bigint | null;
|
|
6825
6825
|
USDT: bigint | null;
|
|
6826
6826
|
};
|
|
6827
|
-
Polkadot: {
|
|
6828
|
-
DOT: bigint | null;
|
|
6829
|
-
};
|
|
6830
6827
|
Arbitrum: {
|
|
6831
6828
|
ETH: bigint | null;
|
|
6832
6829
|
USDC: bigint | null;
|
|
@@ -6835,6 +6832,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6835
6832
|
USDC: bigint | null;
|
|
6836
6833
|
SOL: bigint | null;
|
|
6837
6834
|
};
|
|
6835
|
+
Polkadot: {
|
|
6836
|
+
DOT: bigint | null;
|
|
6837
|
+
};
|
|
6838
6838
|
}, {
|
|
6839
6839
|
Bitcoin: {
|
|
6840
6840
|
BTC: string | number | null;
|
|
@@ -6845,13 +6845,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6845
6845
|
FLIP: string | number | null;
|
|
6846
6846
|
USDT: string | number | null;
|
|
6847
6847
|
};
|
|
6848
|
-
Polkadot: {
|
|
6849
|
-
DOT: string | number | null;
|
|
6850
|
-
};
|
|
6851
6848
|
Arbitrum: {
|
|
6852
6849
|
ETH: string | number | null;
|
|
6853
6850
|
USDC: string | number | null;
|
|
6854
6851
|
};
|
|
6852
|
+
Polkadot: {
|
|
6853
|
+
DOT: string | number | null;
|
|
6854
|
+
};
|
|
6855
6855
|
Solana?: {
|
|
6856
6856
|
USDC?: string | number | null | undefined;
|
|
6857
6857
|
SOL?: string | number | null | undefined;
|
|
@@ -6869,9 +6869,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6869
6869
|
FLIP: bigint | null;
|
|
6870
6870
|
USDT: bigint | null;
|
|
6871
6871
|
};
|
|
6872
|
-
Polkadot: {
|
|
6873
|
-
DOT: bigint | null;
|
|
6874
|
-
};
|
|
6875
6872
|
Arbitrum: {
|
|
6876
6873
|
ETH: bigint | null;
|
|
6877
6874
|
USDC: bigint | null;
|
|
@@ -6880,6 +6877,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6880
6877
|
USDC: bigint | null;
|
|
6881
6878
|
SOL: bigint | null;
|
|
6882
6879
|
};
|
|
6880
|
+
Polkadot: {
|
|
6881
|
+
DOT: bigint | null;
|
|
6882
|
+
};
|
|
6883
6883
|
};
|
|
6884
6884
|
network_fee_hundredth_pips: number;
|
|
6885
6885
|
}, {
|
|
@@ -6893,13 +6893,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
6893
6893
|
FLIP: string | number | null;
|
|
6894
6894
|
USDT: string | number | null;
|
|
6895
6895
|
};
|
|
6896
|
-
Polkadot: {
|
|
6897
|
-
DOT: string | number | null;
|
|
6898
|
-
};
|
|
6899
6896
|
Arbitrum: {
|
|
6900
6897
|
ETH: string | number | null;
|
|
6901
6898
|
USDC: string | number | null;
|
|
6902
6899
|
};
|
|
6900
|
+
Polkadot: {
|
|
6901
|
+
DOT: string | number | null;
|
|
6902
|
+
};
|
|
6903
6903
|
Solana?: {
|
|
6904
6904
|
USDC?: string | number | null | undefined;
|
|
6905
6905
|
SOL?: string | number | null | undefined;
|
|
@@ -9292,8 +9292,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9292
9292
|
};
|
|
9293
9293
|
};
|
|
9294
9294
|
};
|
|
9295
|
-
|
|
9296
|
-
|
|
9295
|
+
Arbitrum: {
|
|
9296
|
+
ETH: {
|
|
9297
9297
|
limit_order_fee_hundredth_pips: number;
|
|
9298
9298
|
range_order_fee_hundredth_pips: number;
|
|
9299
9299
|
range_order_total_fees_earned: {
|
|
@@ -9340,9 +9340,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9340
9340
|
readonly asset: "USDC";
|
|
9341
9341
|
};
|
|
9342
9342
|
};
|
|
9343
|
-
|
|
9344
|
-
Arbitrum: {
|
|
9345
|
-
ETH: {
|
|
9343
|
+
USDC: {
|
|
9346
9344
|
limit_order_fee_hundredth_pips: number;
|
|
9347
9345
|
range_order_fee_hundredth_pips: number;
|
|
9348
9346
|
range_order_total_fees_earned: {
|
|
@@ -9389,6 +9387,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9389
9387
|
readonly asset: "USDC";
|
|
9390
9388
|
};
|
|
9391
9389
|
};
|
|
9390
|
+
};
|
|
9391
|
+
Solana: {
|
|
9392
9392
|
USDC: {
|
|
9393
9393
|
limit_order_fee_hundredth_pips: number;
|
|
9394
9394
|
range_order_fee_hundredth_pips: number;
|
|
@@ -9436,9 +9436,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9436
9436
|
readonly asset: "USDC";
|
|
9437
9437
|
};
|
|
9438
9438
|
};
|
|
9439
|
-
|
|
9440
|
-
Solana: {
|
|
9441
|
-
USDC: {
|
|
9439
|
+
SOL: {
|
|
9442
9440
|
limit_order_fee_hundredth_pips: number;
|
|
9443
9441
|
range_order_fee_hundredth_pips: number;
|
|
9444
9442
|
range_order_total_fees_earned: {
|
|
@@ -9485,7 +9483,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9485
9483
|
readonly asset: "USDC";
|
|
9486
9484
|
};
|
|
9487
9485
|
};
|
|
9488
|
-
|
|
9486
|
+
};
|
|
9487
|
+
Polkadot: {
|
|
9488
|
+
DOT: {
|
|
9489
9489
|
limit_order_fee_hundredth_pips: number;
|
|
9490
9490
|
range_order_fee_hundredth_pips: number;
|
|
9491
9491
|
range_order_total_fees_earned: {
|
|
@@ -9634,8 +9634,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9634
9634
|
};
|
|
9635
9635
|
} | null;
|
|
9636
9636
|
};
|
|
9637
|
-
|
|
9638
|
-
|
|
9637
|
+
Arbitrum: {
|
|
9638
|
+
ETH: {
|
|
9639
9639
|
limit_order_fee_hundredth_pips: number;
|
|
9640
9640
|
range_order_fee_hundredth_pips: number;
|
|
9641
9641
|
range_order_total_fees_earned: {
|
|
@@ -9659,9 +9659,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9659
9659
|
asset: "USDC";
|
|
9660
9660
|
};
|
|
9661
9661
|
} | null;
|
|
9662
|
-
|
|
9663
|
-
Arbitrum: {
|
|
9664
|
-
ETH: {
|
|
9662
|
+
USDC: {
|
|
9665
9663
|
limit_order_fee_hundredth_pips: number;
|
|
9666
9664
|
range_order_fee_hundredth_pips: number;
|
|
9667
9665
|
range_order_total_fees_earned: {
|
|
@@ -9685,7 +9683,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9685
9683
|
asset: "USDC";
|
|
9686
9684
|
};
|
|
9687
9685
|
} | null;
|
|
9688
|
-
|
|
9686
|
+
};
|
|
9687
|
+
Polkadot: {
|
|
9688
|
+
DOT: {
|
|
9689
9689
|
limit_order_fee_hundredth_pips: number;
|
|
9690
9690
|
range_order_fee_hundredth_pips: number;
|
|
9691
9691
|
range_order_total_fees_earned: {
|
|
@@ -9955,8 +9955,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
9955
9955
|
};
|
|
9956
9956
|
};
|
|
9957
9957
|
};
|
|
9958
|
-
|
|
9959
|
-
|
|
9958
|
+
Arbitrum: {
|
|
9959
|
+
ETH: {
|
|
9960
9960
|
limit_order_fee_hundredth_pips: number;
|
|
9961
9961
|
range_order_fee_hundredth_pips: number;
|
|
9962
9962
|
range_order_total_fees_earned: {
|
|
@@ -10003,9 +10003,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10003
10003
|
readonly asset: "USDC";
|
|
10004
10004
|
};
|
|
10005
10005
|
};
|
|
10006
|
-
|
|
10007
|
-
Arbitrum: {
|
|
10008
|
-
ETH: {
|
|
10006
|
+
USDC: {
|
|
10009
10007
|
limit_order_fee_hundredth_pips: number;
|
|
10010
10008
|
range_order_fee_hundredth_pips: number;
|
|
10011
10009
|
range_order_total_fees_earned: {
|
|
@@ -10052,6 +10050,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10052
10050
|
readonly asset: "USDC";
|
|
10053
10051
|
};
|
|
10054
10052
|
};
|
|
10053
|
+
};
|
|
10054
|
+
Solana: {
|
|
10055
10055
|
USDC: {
|
|
10056
10056
|
limit_order_fee_hundredth_pips: number;
|
|
10057
10057
|
range_order_fee_hundredth_pips: number;
|
|
@@ -10099,9 +10099,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10099
10099
|
readonly asset: "USDC";
|
|
10100
10100
|
};
|
|
10101
10101
|
};
|
|
10102
|
-
|
|
10103
|
-
Solana: {
|
|
10104
|
-
USDC: {
|
|
10102
|
+
SOL: {
|
|
10105
10103
|
limit_order_fee_hundredth_pips: number;
|
|
10106
10104
|
range_order_fee_hundredth_pips: number;
|
|
10107
10105
|
range_order_total_fees_earned: {
|
|
@@ -10148,7 +10146,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10148
10146
|
readonly asset: "USDC";
|
|
10149
10147
|
};
|
|
10150
10148
|
};
|
|
10151
|
-
|
|
10149
|
+
};
|
|
10150
|
+
Polkadot: {
|
|
10151
|
+
DOT: {
|
|
10152
10152
|
limit_order_fee_hundredth_pips: number;
|
|
10153
10153
|
range_order_fee_hundredth_pips: number;
|
|
10154
10154
|
range_order_total_fees_earned: {
|
|
@@ -10299,8 +10299,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10299
10299
|
};
|
|
10300
10300
|
} | null;
|
|
10301
10301
|
};
|
|
10302
|
-
|
|
10303
|
-
|
|
10302
|
+
Arbitrum: {
|
|
10303
|
+
ETH: {
|
|
10304
10304
|
limit_order_fee_hundredth_pips: number;
|
|
10305
10305
|
range_order_fee_hundredth_pips: number;
|
|
10306
10306
|
range_order_total_fees_earned: {
|
|
@@ -10324,9 +10324,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10324
10324
|
asset: "USDC";
|
|
10325
10325
|
};
|
|
10326
10326
|
} | null;
|
|
10327
|
-
|
|
10328
|
-
Arbitrum: {
|
|
10329
|
-
ETH: {
|
|
10327
|
+
USDC: {
|
|
10330
10328
|
limit_order_fee_hundredth_pips: number;
|
|
10331
10329
|
range_order_fee_hundredth_pips: number;
|
|
10332
10330
|
range_order_total_fees_earned: {
|
|
@@ -10350,7 +10348,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10350
10348
|
asset: "USDC";
|
|
10351
10349
|
};
|
|
10352
10350
|
} | null;
|
|
10353
|
-
|
|
10351
|
+
};
|
|
10352
|
+
Polkadot: {
|
|
10353
|
+
DOT: {
|
|
10354
10354
|
limit_order_fee_hundredth_pips: number;
|
|
10355
10355
|
range_order_fee_hundredth_pips: number;
|
|
10356
10356
|
range_order_total_fees_earned: {
|
|
@@ -10439,9 +10439,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10439
10439
|
FLIP: bigint;
|
|
10440
10440
|
USDT: bigint;
|
|
10441
10441
|
};
|
|
10442
|
-
Polkadot: {
|
|
10443
|
-
DOT: bigint;
|
|
10444
|
-
};
|
|
10445
10442
|
Arbitrum: {
|
|
10446
10443
|
ETH: bigint;
|
|
10447
10444
|
USDC: bigint;
|
|
@@ -10450,6 +10447,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10450
10447
|
USDC: bigint;
|
|
10451
10448
|
SOL: bigint;
|
|
10452
10449
|
};
|
|
10450
|
+
Polkadot: {
|
|
10451
|
+
DOT: bigint;
|
|
10452
|
+
};
|
|
10453
10453
|
};
|
|
10454
10454
|
ingress_fees: {
|
|
10455
10455
|
Bitcoin: {
|
|
@@ -10461,9 +10461,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10461
10461
|
FLIP: bigint | null;
|
|
10462
10462
|
USDT: bigint | null;
|
|
10463
10463
|
};
|
|
10464
|
-
Polkadot: {
|
|
10465
|
-
DOT: bigint | null;
|
|
10466
|
-
};
|
|
10467
10464
|
Arbitrum: {
|
|
10468
10465
|
ETH: bigint | null;
|
|
10469
10466
|
USDC: bigint | null;
|
|
@@ -10472,6 +10469,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10472
10469
|
USDC: bigint | null;
|
|
10473
10470
|
SOL: bigint | null;
|
|
10474
10471
|
};
|
|
10472
|
+
Polkadot: {
|
|
10473
|
+
DOT: bigint | null;
|
|
10474
|
+
};
|
|
10475
10475
|
};
|
|
10476
10476
|
egress_fees: {
|
|
10477
10477
|
Bitcoin: {
|
|
@@ -10483,9 +10483,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10483
10483
|
FLIP: bigint | null;
|
|
10484
10484
|
USDT: bigint | null;
|
|
10485
10485
|
};
|
|
10486
|
-
Polkadot: {
|
|
10487
|
-
DOT: bigint | null;
|
|
10488
|
-
};
|
|
10489
10486
|
Arbitrum: {
|
|
10490
10487
|
ETH: bigint | null;
|
|
10491
10488
|
USDC: bigint | null;
|
|
@@ -10494,13 +10491,16 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10494
10491
|
USDC: bigint | null;
|
|
10495
10492
|
SOL: bigint | null;
|
|
10496
10493
|
};
|
|
10494
|
+
Polkadot: {
|
|
10495
|
+
DOT: bigint | null;
|
|
10496
|
+
};
|
|
10497
10497
|
};
|
|
10498
10498
|
witness_safety_margins: {
|
|
10499
10499
|
Bitcoin: number | null;
|
|
10500
10500
|
Ethereum: number | null;
|
|
10501
|
-
Polkadot: number | null;
|
|
10502
10501
|
Arbitrum: number | null;
|
|
10503
10502
|
Solana: number | null;
|
|
10503
|
+
Polkadot: number | null;
|
|
10504
10504
|
};
|
|
10505
10505
|
egress_dust_limits: {
|
|
10506
10506
|
Bitcoin: {
|
|
@@ -10512,9 +10512,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10512
10512
|
FLIP: bigint;
|
|
10513
10513
|
USDT: bigint;
|
|
10514
10514
|
};
|
|
10515
|
-
Polkadot: {
|
|
10516
|
-
DOT: bigint;
|
|
10517
|
-
};
|
|
10518
10515
|
Arbitrum: {
|
|
10519
10516
|
ETH: bigint;
|
|
10520
10517
|
USDC: bigint;
|
|
@@ -10523,20 +10520,23 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10523
10520
|
USDC: bigint;
|
|
10524
10521
|
SOL: bigint;
|
|
10525
10522
|
};
|
|
10523
|
+
Polkadot: {
|
|
10524
|
+
DOT: bigint;
|
|
10525
|
+
};
|
|
10526
10526
|
};
|
|
10527
10527
|
channel_opening_fees: {
|
|
10528
10528
|
Bitcoin: bigint;
|
|
10529
10529
|
Ethereum: bigint;
|
|
10530
|
-
Polkadot: bigint;
|
|
10531
10530
|
Arbitrum: bigint;
|
|
10532
10531
|
Solana: bigint;
|
|
10532
|
+
Polkadot: bigint;
|
|
10533
10533
|
};
|
|
10534
10534
|
max_swap_retry_duration_blocks: {
|
|
10535
10535
|
Bitcoin: number;
|
|
10536
10536
|
Ethereum: number;
|
|
10537
|
-
Polkadot: number;
|
|
10538
10537
|
Arbitrum: number;
|
|
10539
10538
|
Solana: number;
|
|
10539
|
+
Polkadot: number;
|
|
10540
10540
|
};
|
|
10541
10541
|
}, "egress_dust_limits"> & {
|
|
10542
10542
|
readonly minimum_egress_amounts: {
|
|
@@ -10549,9 +10549,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10549
10549
|
FLIP: bigint;
|
|
10550
10550
|
USDT: bigint;
|
|
10551
10551
|
};
|
|
10552
|
-
Polkadot: {
|
|
10553
|
-
DOT: bigint;
|
|
10554
|
-
};
|
|
10555
10552
|
Arbitrum: {
|
|
10556
10553
|
ETH: bigint;
|
|
10557
10554
|
USDC: bigint;
|
|
@@ -10560,6 +10557,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10560
10557
|
USDC: bigint;
|
|
10561
10558
|
SOL: bigint;
|
|
10562
10559
|
};
|
|
10560
|
+
Polkadot: {
|
|
10561
|
+
DOT: bigint;
|
|
10562
|
+
};
|
|
10563
10563
|
};
|
|
10564
10564
|
};
|
|
10565
10565
|
swapping: {
|
|
@@ -10573,9 +10573,6 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10573
10573
|
FLIP: bigint | null;
|
|
10574
10574
|
USDT: bigint | null;
|
|
10575
10575
|
};
|
|
10576
|
-
Polkadot: {
|
|
10577
|
-
DOT: bigint | null;
|
|
10578
|
-
};
|
|
10579
10576
|
Arbitrum: {
|
|
10580
10577
|
ETH: bigint | null;
|
|
10581
10578
|
USDC: bigint | null;
|
|
@@ -10584,6 +10581,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10584
10581
|
USDC: bigint | null;
|
|
10585
10582
|
SOL: bigint | null;
|
|
10586
10583
|
};
|
|
10584
|
+
Polkadot: {
|
|
10585
|
+
DOT: bigint | null;
|
|
10586
|
+
};
|
|
10587
10587
|
};
|
|
10588
10588
|
network_fee_hundredth_pips: number;
|
|
10589
10589
|
};
|
|
@@ -10785,8 +10785,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10785
10785
|
};
|
|
10786
10786
|
};
|
|
10787
10787
|
};
|
|
10788
|
-
|
|
10789
|
-
|
|
10788
|
+
Arbitrum: {
|
|
10789
|
+
ETH: {
|
|
10790
10790
|
limit_order_fee_hundredth_pips: number;
|
|
10791
10791
|
range_order_fee_hundredth_pips: number;
|
|
10792
10792
|
range_order_total_fees_earned: {
|
|
@@ -10833,9 +10833,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10833
10833
|
readonly asset: "USDC";
|
|
10834
10834
|
};
|
|
10835
10835
|
};
|
|
10836
|
-
|
|
10837
|
-
Arbitrum: {
|
|
10838
|
-
ETH: {
|
|
10836
|
+
USDC: {
|
|
10839
10837
|
limit_order_fee_hundredth_pips: number;
|
|
10840
10838
|
range_order_fee_hundredth_pips: number;
|
|
10841
10839
|
range_order_total_fees_earned: {
|
|
@@ -10882,6 +10880,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10882
10880
|
readonly asset: "USDC";
|
|
10883
10881
|
};
|
|
10884
10882
|
};
|
|
10883
|
+
};
|
|
10884
|
+
Solana: {
|
|
10885
10885
|
USDC: {
|
|
10886
10886
|
limit_order_fee_hundredth_pips: number;
|
|
10887
10887
|
range_order_fee_hundredth_pips: number;
|
|
@@ -10929,9 +10929,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10929
10929
|
readonly asset: "USDC";
|
|
10930
10930
|
};
|
|
10931
10931
|
};
|
|
10932
|
-
|
|
10933
|
-
Solana: {
|
|
10934
|
-
USDC: {
|
|
10932
|
+
SOL: {
|
|
10935
10933
|
limit_order_fee_hundredth_pips: number;
|
|
10936
10934
|
range_order_fee_hundredth_pips: number;
|
|
10937
10935
|
range_order_total_fees_earned: {
|
|
@@ -10978,7 +10976,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
10978
10976
|
readonly asset: "USDC";
|
|
10979
10977
|
};
|
|
10980
10978
|
};
|
|
10981
|
-
|
|
10979
|
+
};
|
|
10980
|
+
Polkadot: {
|
|
10981
|
+
DOT: {
|
|
10982
10982
|
limit_order_fee_hundredth_pips: number;
|
|
10983
10983
|
range_order_fee_hundredth_pips: number;
|
|
10984
10984
|
range_order_total_fees_earned: {
|
|
@@ -11040,13 +11040,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11040
11040
|
FLIP: string | number;
|
|
11041
11041
|
USDT: string | number;
|
|
11042
11042
|
};
|
|
11043
|
-
Polkadot: {
|
|
11044
|
-
DOT: string | number;
|
|
11045
|
-
};
|
|
11046
11043
|
Arbitrum: {
|
|
11047
11044
|
ETH: string | number;
|
|
11048
11045
|
USDC: string | number;
|
|
11049
11046
|
};
|
|
11047
|
+
Polkadot: {
|
|
11048
|
+
DOT: string | number;
|
|
11049
|
+
};
|
|
11050
11050
|
Solana?: {
|
|
11051
11051
|
USDC?: string | number | undefined;
|
|
11052
11052
|
SOL?: string | number | undefined;
|
|
@@ -11062,13 +11062,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11062
11062
|
FLIP: string | number | null;
|
|
11063
11063
|
USDT: string | number | null;
|
|
11064
11064
|
};
|
|
11065
|
-
Polkadot: {
|
|
11066
|
-
DOT: string | number | null;
|
|
11067
|
-
};
|
|
11068
11065
|
Arbitrum: {
|
|
11069
11066
|
ETH: string | number | null;
|
|
11070
11067
|
USDC: string | number | null;
|
|
11071
11068
|
};
|
|
11069
|
+
Polkadot: {
|
|
11070
|
+
DOT: string | number | null;
|
|
11071
|
+
};
|
|
11072
11072
|
Solana?: {
|
|
11073
11073
|
USDC?: string | number | null | undefined;
|
|
11074
11074
|
SOL?: string | number | null | undefined;
|
|
@@ -11084,13 +11084,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11084
11084
|
FLIP: string | number | null;
|
|
11085
11085
|
USDT: string | number | null;
|
|
11086
11086
|
};
|
|
11087
|
-
Polkadot: {
|
|
11088
|
-
DOT: string | number | null;
|
|
11089
|
-
};
|
|
11090
11087
|
Arbitrum: {
|
|
11091
11088
|
ETH: string | number | null;
|
|
11092
11089
|
USDC: string | number | null;
|
|
11093
11090
|
};
|
|
11091
|
+
Polkadot: {
|
|
11092
|
+
DOT: string | number | null;
|
|
11093
|
+
};
|
|
11094
11094
|
Solana?: {
|
|
11095
11095
|
USDC?: string | number | null | undefined;
|
|
11096
11096
|
SOL?: string | number | null | undefined;
|
|
@@ -11099,8 +11099,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11099
11099
|
witness_safety_margins: {
|
|
11100
11100
|
Bitcoin: number | null;
|
|
11101
11101
|
Ethereum: number | null;
|
|
11102
|
-
Polkadot: number | null;
|
|
11103
11102
|
Arbitrum: number | null;
|
|
11103
|
+
Polkadot: number | null;
|
|
11104
11104
|
Solana?: number | null | undefined;
|
|
11105
11105
|
};
|
|
11106
11106
|
egress_dust_limits: {
|
|
@@ -11113,13 +11113,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11113
11113
|
FLIP: string | number;
|
|
11114
11114
|
USDT: string | number;
|
|
11115
11115
|
};
|
|
11116
|
-
Polkadot: {
|
|
11117
|
-
DOT: string | number;
|
|
11118
|
-
};
|
|
11119
11116
|
Arbitrum: {
|
|
11120
11117
|
ETH: string | number;
|
|
11121
11118
|
USDC: string | number;
|
|
11122
11119
|
};
|
|
11120
|
+
Polkadot: {
|
|
11121
|
+
DOT: string | number;
|
|
11122
|
+
};
|
|
11123
11123
|
Solana?: {
|
|
11124
11124
|
USDC?: string | number | undefined;
|
|
11125
11125
|
SOL?: string | number | undefined;
|
|
@@ -11128,15 +11128,15 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11128
11128
|
channel_opening_fees: {
|
|
11129
11129
|
Bitcoin: string | number;
|
|
11130
11130
|
Ethereum: string | number;
|
|
11131
|
-
Polkadot: string | number;
|
|
11132
11131
|
Arbitrum: string | number;
|
|
11132
|
+
Polkadot: string | number;
|
|
11133
11133
|
Solana?: string | number | undefined;
|
|
11134
11134
|
};
|
|
11135
11135
|
max_swap_retry_duration_blocks?: {
|
|
11136
11136
|
Bitcoin: number;
|
|
11137
11137
|
Ethereum: number;
|
|
11138
|
-
Polkadot: number;
|
|
11139
11138
|
Arbitrum: number;
|
|
11139
|
+
Polkadot: number;
|
|
11140
11140
|
Solana?: number | undefined;
|
|
11141
11141
|
} | undefined;
|
|
11142
11142
|
};
|
|
@@ -11151,13 +11151,13 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11151
11151
|
FLIP: string | number | null;
|
|
11152
11152
|
USDT: string | number | null;
|
|
11153
11153
|
};
|
|
11154
|
-
Polkadot: {
|
|
11155
|
-
DOT: string | number | null;
|
|
11156
|
-
};
|
|
11157
11154
|
Arbitrum: {
|
|
11158
11155
|
ETH: string | number | null;
|
|
11159
11156
|
USDC: string | number | null;
|
|
11160
11157
|
};
|
|
11158
|
+
Polkadot: {
|
|
11159
|
+
DOT: string | number | null;
|
|
11160
|
+
};
|
|
11161
11161
|
Solana?: {
|
|
11162
11162
|
USDC?: string | number | null | undefined;
|
|
11163
11163
|
SOL?: string | number | null | undefined;
|
|
@@ -11271,8 +11271,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11271
11271
|
};
|
|
11272
11272
|
} | null;
|
|
11273
11273
|
};
|
|
11274
|
-
|
|
11275
|
-
|
|
11274
|
+
Arbitrum: {
|
|
11275
|
+
ETH: {
|
|
11276
11276
|
limit_order_fee_hundredth_pips: number;
|
|
11277
11277
|
range_order_fee_hundredth_pips: number;
|
|
11278
11278
|
range_order_total_fees_earned: {
|
|
@@ -11296,9 +11296,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11296
11296
|
asset: "USDC";
|
|
11297
11297
|
};
|
|
11298
11298
|
} | null;
|
|
11299
|
-
|
|
11300
|
-
Arbitrum: {
|
|
11301
|
-
ETH: {
|
|
11299
|
+
USDC: {
|
|
11302
11300
|
limit_order_fee_hundredth_pips: number;
|
|
11303
11301
|
range_order_fee_hundredth_pips: number;
|
|
11304
11302
|
range_order_total_fees_earned: {
|
|
@@ -11322,7 +11320,9 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11322
11320
|
asset: "USDC";
|
|
11323
11321
|
};
|
|
11324
11322
|
} | null;
|
|
11325
|
-
|
|
11323
|
+
};
|
|
11324
|
+
Polkadot: {
|
|
11325
|
+
DOT: {
|
|
11326
11326
|
limit_order_fee_hundredth_pips: number;
|
|
11327
11327
|
range_order_fee_hundredth_pips: number;
|
|
11328
11328
|
range_order_total_fees_earned: {
|
|
@@ -11686,6 +11686,86 @@ declare const brokerRequestSwapDepositAddress: z.ZodObject<{
|
|
|
11686
11686
|
source_chain_expiry_block: string | number;
|
|
11687
11687
|
channel_opening_fee: string;
|
|
11688
11688
|
}>;
|
|
11689
|
+
declare const brokerRequestSwapParameterEncoding: z.ZodDiscriminatedUnion<"chain", [z.ZodObject<{
|
|
11690
|
+
chain: z.ZodLiteral<"Bitcoin">;
|
|
11691
|
+
nulldata_payload: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11692
|
+
deposit_address: z.ZodString;
|
|
11693
|
+
}, "strip", z.ZodTypeAny, {
|
|
11694
|
+
chain: "Bitcoin";
|
|
11695
|
+
nulldata_payload: `0x${string}`;
|
|
11696
|
+
deposit_address: string;
|
|
11697
|
+
}, {
|
|
11698
|
+
chain: "Bitcoin";
|
|
11699
|
+
nulldata_payload: string;
|
|
11700
|
+
deposit_address: string;
|
|
11701
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11702
|
+
to: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11703
|
+
calldata: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11704
|
+
value: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
11705
|
+
}, {
|
|
11706
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
11707
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11708
|
+
value: bigint;
|
|
11709
|
+
chain: "Ethereum";
|
|
11710
|
+
to: `0x${string}`;
|
|
11711
|
+
calldata: `0x${string}`;
|
|
11712
|
+
}, {
|
|
11713
|
+
value: string | number;
|
|
11714
|
+
chain: "Ethereum";
|
|
11715
|
+
to: string;
|
|
11716
|
+
calldata: string;
|
|
11717
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11718
|
+
to: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11719
|
+
calldata: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11720
|
+
value: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
11721
|
+
}, {
|
|
11722
|
+
chain: z.ZodLiteral<"Arbitrum">;
|
|
11723
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11724
|
+
value: bigint;
|
|
11725
|
+
chain: "Arbitrum";
|
|
11726
|
+
to: `0x${string}`;
|
|
11727
|
+
calldata: `0x${string}`;
|
|
11728
|
+
}, {
|
|
11729
|
+
value: string | number;
|
|
11730
|
+
chain: "Arbitrum";
|
|
11731
|
+
to: string;
|
|
11732
|
+
calldata: string;
|
|
11733
|
+
}>, z.ZodObject<{
|
|
11734
|
+
chain: z.ZodLiteral<"Solana">;
|
|
11735
|
+
program_id: z.ZodString;
|
|
11736
|
+
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11737
|
+
accounts: z.ZodArray<z.ZodObject<{
|
|
11738
|
+
pubkey: z.ZodString;
|
|
11739
|
+
is_signer: z.ZodBoolean;
|
|
11740
|
+
is_writable: z.ZodBoolean;
|
|
11741
|
+
}, "strip", z.ZodTypeAny, {
|
|
11742
|
+
pubkey: string;
|
|
11743
|
+
is_signer: boolean;
|
|
11744
|
+
is_writable: boolean;
|
|
11745
|
+
}, {
|
|
11746
|
+
pubkey: string;
|
|
11747
|
+
is_signer: boolean;
|
|
11748
|
+
is_writable: boolean;
|
|
11749
|
+
}>, "many">;
|
|
11750
|
+
}, "strip", z.ZodTypeAny, {
|
|
11751
|
+
chain: "Solana";
|
|
11752
|
+
program_id: string;
|
|
11753
|
+
data: `0x${string}`;
|
|
11754
|
+
accounts: {
|
|
11755
|
+
pubkey: string;
|
|
11756
|
+
is_signer: boolean;
|
|
11757
|
+
is_writable: boolean;
|
|
11758
|
+
}[];
|
|
11759
|
+
}, {
|
|
11760
|
+
chain: "Solana";
|
|
11761
|
+
program_id: string;
|
|
11762
|
+
data: string;
|
|
11763
|
+
accounts: {
|
|
11764
|
+
pubkey: string;
|
|
11765
|
+
is_signer: boolean;
|
|
11766
|
+
is_writable: boolean;
|
|
11767
|
+
}[];
|
|
11768
|
+
}>]>;
|
|
11689
11769
|
declare const unregistered: z.ZodObject<{
|
|
11690
11770
|
role: z.ZodLiteral<"unregistered">;
|
|
11691
11771
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
@@ -11760,9 +11840,6 @@ declare const broker: z.ZodObject<{
|
|
|
11760
11840
|
FLIP: bigint;
|
|
11761
11841
|
USDT: bigint;
|
|
11762
11842
|
};
|
|
11763
|
-
Polkadot: {
|
|
11764
|
-
DOT: bigint;
|
|
11765
|
-
};
|
|
11766
11843
|
Arbitrum: {
|
|
11767
11844
|
ETH: bigint;
|
|
11768
11845
|
USDC: bigint;
|
|
@@ -11771,6 +11848,9 @@ declare const broker: z.ZodObject<{
|
|
|
11771
11848
|
USDC: bigint;
|
|
11772
11849
|
SOL: bigint;
|
|
11773
11850
|
};
|
|
11851
|
+
Polkadot: {
|
|
11852
|
+
DOT: bigint;
|
|
11853
|
+
};
|
|
11774
11854
|
}, {
|
|
11775
11855
|
Bitcoin: {
|
|
11776
11856
|
BTC: string | number;
|
|
@@ -11781,18 +11861,19 @@ declare const broker: z.ZodObject<{
|
|
|
11781
11861
|
FLIP: string | number;
|
|
11782
11862
|
USDT: string | number;
|
|
11783
11863
|
};
|
|
11784
|
-
Polkadot: {
|
|
11785
|
-
DOT: string | number;
|
|
11786
|
-
};
|
|
11787
11864
|
Arbitrum: {
|
|
11788
11865
|
ETH: string | number;
|
|
11789
11866
|
USDC: string | number;
|
|
11790
11867
|
};
|
|
11868
|
+
Polkadot: {
|
|
11869
|
+
DOT: string | number;
|
|
11870
|
+
};
|
|
11791
11871
|
Solana?: {
|
|
11792
11872
|
USDC?: string | number | undefined;
|
|
11793
11873
|
SOL?: string | number | undefined;
|
|
11794
11874
|
} | undefined;
|
|
11795
11875
|
}>;
|
|
11876
|
+
btc_vault_deposit_address: z.ZodNullable<z.ZodString>;
|
|
11796
11877
|
}, "strip", z.ZodTypeAny, {
|
|
11797
11878
|
role: "broker";
|
|
11798
11879
|
flip_balance: bigint;
|
|
@@ -11806,9 +11887,6 @@ declare const broker: z.ZodObject<{
|
|
|
11806
11887
|
FLIP: bigint;
|
|
11807
11888
|
USDT: bigint;
|
|
11808
11889
|
};
|
|
11809
|
-
Polkadot: {
|
|
11810
|
-
DOT: bigint;
|
|
11811
|
-
};
|
|
11812
11890
|
Arbitrum: {
|
|
11813
11891
|
ETH: bigint;
|
|
11814
11892
|
USDC: bigint;
|
|
@@ -11817,7 +11895,11 @@ declare const broker: z.ZodObject<{
|
|
|
11817
11895
|
USDC: bigint;
|
|
11818
11896
|
SOL: bigint;
|
|
11819
11897
|
};
|
|
11898
|
+
Polkadot: {
|
|
11899
|
+
DOT: bigint;
|
|
11900
|
+
};
|
|
11820
11901
|
};
|
|
11902
|
+
btc_vault_deposit_address: string | null;
|
|
11821
11903
|
}, {
|
|
11822
11904
|
role: "broker";
|
|
11823
11905
|
flip_balance: string | number;
|
|
@@ -11831,18 +11913,19 @@ declare const broker: z.ZodObject<{
|
|
|
11831
11913
|
FLIP: string | number;
|
|
11832
11914
|
USDT: string | number;
|
|
11833
11915
|
};
|
|
11834
|
-
Polkadot: {
|
|
11835
|
-
DOT: string | number;
|
|
11836
|
-
};
|
|
11837
11916
|
Arbitrum: {
|
|
11838
11917
|
ETH: string | number;
|
|
11839
11918
|
USDC: string | number;
|
|
11840
11919
|
};
|
|
11920
|
+
Polkadot: {
|
|
11921
|
+
DOT: string | number;
|
|
11922
|
+
};
|
|
11841
11923
|
Solana?: {
|
|
11842
11924
|
USDC?: string | number | undefined;
|
|
11843
11925
|
SOL?: string | number | undefined;
|
|
11844
11926
|
} | undefined;
|
|
11845
11927
|
};
|
|
11928
|
+
btc_vault_deposit_address: string | null;
|
|
11846
11929
|
}>;
|
|
11847
11930
|
declare const liquidityProvider: z.ZodObject<{
|
|
11848
11931
|
role: z.ZodLiteral<"liquidity_provider">;
|
|
@@ -11907,9 +11990,6 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
11907
11990
|
FLIP: bigint;
|
|
11908
11991
|
USDT: bigint;
|
|
11909
11992
|
};
|
|
11910
|
-
Polkadot: {
|
|
11911
|
-
DOT: bigint;
|
|
11912
|
-
};
|
|
11913
11993
|
Arbitrum: {
|
|
11914
11994
|
ETH: bigint;
|
|
11915
11995
|
USDC: bigint;
|
|
@@ -11918,6 +11998,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
11918
11998
|
USDC: bigint;
|
|
11919
11999
|
SOL: bigint;
|
|
11920
12000
|
};
|
|
12001
|
+
Polkadot: {
|
|
12002
|
+
DOT: bigint;
|
|
12003
|
+
};
|
|
11921
12004
|
}, {
|
|
11922
12005
|
Bitcoin: {
|
|
11923
12006
|
BTC: string | number;
|
|
@@ -11928,13 +12011,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
11928
12011
|
FLIP: string | number;
|
|
11929
12012
|
USDT: string | number;
|
|
11930
12013
|
};
|
|
11931
|
-
Polkadot: {
|
|
11932
|
-
DOT: string | number;
|
|
11933
|
-
};
|
|
11934
12014
|
Arbitrum: {
|
|
11935
12015
|
ETH: string | number;
|
|
11936
12016
|
USDC: string | number;
|
|
11937
12017
|
};
|
|
12018
|
+
Polkadot: {
|
|
12019
|
+
DOT: string | number;
|
|
12020
|
+
};
|
|
11938
12021
|
Solana?: {
|
|
11939
12022
|
USDC?: string | number | undefined;
|
|
11940
12023
|
SOL?: string | number | undefined;
|
|
@@ -11949,14 +12032,14 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
11949
12032
|
}, "strip", z.ZodTypeAny, {
|
|
11950
12033
|
Bitcoin: string | null;
|
|
11951
12034
|
Ethereum: string | null;
|
|
11952
|
-
Polkadot: string | null;
|
|
11953
12035
|
Arbitrum: string | null;
|
|
11954
12036
|
Solana: string | null;
|
|
12037
|
+
Polkadot: string | null;
|
|
11955
12038
|
}, {
|
|
11956
12039
|
Bitcoin: string | null;
|
|
11957
12040
|
Ethereum: string | null;
|
|
11958
|
-
Polkadot: string | null;
|
|
11959
12041
|
Arbitrum: string | null;
|
|
12042
|
+
Polkadot: string | null;
|
|
11960
12043
|
Solana?: string | null | undefined;
|
|
11961
12044
|
}>;
|
|
11962
12045
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
@@ -12021,9 +12104,6 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12021
12104
|
FLIP: bigint;
|
|
12022
12105
|
USDT: bigint;
|
|
12023
12106
|
};
|
|
12024
|
-
Polkadot: {
|
|
12025
|
-
DOT: bigint;
|
|
12026
|
-
};
|
|
12027
12107
|
Arbitrum: {
|
|
12028
12108
|
ETH: bigint;
|
|
12029
12109
|
USDC: bigint;
|
|
@@ -12032,6 +12112,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12032
12112
|
USDC: bigint;
|
|
12033
12113
|
SOL: bigint;
|
|
12034
12114
|
};
|
|
12115
|
+
Polkadot: {
|
|
12116
|
+
DOT: bigint;
|
|
12117
|
+
};
|
|
12035
12118
|
}, {
|
|
12036
12119
|
Bitcoin: {
|
|
12037
12120
|
BTC: string | number;
|
|
@@ -12042,13 +12125,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12042
12125
|
FLIP: string | number;
|
|
12043
12126
|
USDT: string | number;
|
|
12044
12127
|
};
|
|
12045
|
-
Polkadot: {
|
|
12046
|
-
DOT: string | number;
|
|
12047
|
-
};
|
|
12048
12128
|
Arbitrum: {
|
|
12049
12129
|
ETH: string | number;
|
|
12050
12130
|
USDC: string | number;
|
|
12051
12131
|
};
|
|
12132
|
+
Polkadot: {
|
|
12133
|
+
DOT: string | number;
|
|
12134
|
+
};
|
|
12052
12135
|
Solana?: {
|
|
12053
12136
|
USDC?: string | number | undefined;
|
|
12054
12137
|
SOL?: string | number | undefined;
|
|
@@ -12445,15 +12528,6 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12445
12528
|
is_withdrawing: boolean;
|
|
12446
12529
|
}[];
|
|
12447
12530
|
};
|
|
12448
|
-
Polkadot: {
|
|
12449
|
-
DOT: {
|
|
12450
|
-
fee_tier: number;
|
|
12451
|
-
total_balance: bigint;
|
|
12452
|
-
available_balance: bigint;
|
|
12453
|
-
in_use_balance: bigint;
|
|
12454
|
-
is_withdrawing: boolean;
|
|
12455
|
-
}[];
|
|
12456
|
-
};
|
|
12457
12531
|
Arbitrum: {
|
|
12458
12532
|
ETH: {
|
|
12459
12533
|
fee_tier: number;
|
|
@@ -12486,6 +12560,15 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12486
12560
|
is_withdrawing: boolean;
|
|
12487
12561
|
}[];
|
|
12488
12562
|
};
|
|
12563
|
+
Polkadot: {
|
|
12564
|
+
DOT: {
|
|
12565
|
+
fee_tier: number;
|
|
12566
|
+
total_balance: bigint;
|
|
12567
|
+
available_balance: bigint;
|
|
12568
|
+
in_use_balance: bigint;
|
|
12569
|
+
is_withdrawing: boolean;
|
|
12570
|
+
}[];
|
|
12571
|
+
};
|
|
12489
12572
|
}, {
|
|
12490
12573
|
Bitcoin: {
|
|
12491
12574
|
BTC: {
|
|
@@ -12526,24 +12609,24 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12526
12609
|
is_withdrawing: boolean;
|
|
12527
12610
|
}[];
|
|
12528
12611
|
};
|
|
12529
|
-
|
|
12530
|
-
|
|
12612
|
+
Arbitrum: {
|
|
12613
|
+
ETH: {
|
|
12531
12614
|
fee_tier: number;
|
|
12532
12615
|
total_balance: string;
|
|
12533
12616
|
available_balance: string;
|
|
12534
12617
|
in_use_balance: string;
|
|
12535
12618
|
is_withdrawing: boolean;
|
|
12536
12619
|
}[];
|
|
12537
|
-
|
|
12538
|
-
Arbitrum: {
|
|
12539
|
-
ETH: {
|
|
12620
|
+
USDC: {
|
|
12540
12621
|
fee_tier: number;
|
|
12541
12622
|
total_balance: string;
|
|
12542
12623
|
available_balance: string;
|
|
12543
12624
|
in_use_balance: string;
|
|
12544
12625
|
is_withdrawing: boolean;
|
|
12545
12626
|
}[];
|
|
12546
|
-
|
|
12627
|
+
};
|
|
12628
|
+
Polkadot: {
|
|
12629
|
+
DOT: {
|
|
12547
12630
|
fee_tier: number;
|
|
12548
12631
|
total_balance: string;
|
|
12549
12632
|
available_balance: string;
|
|
@@ -12581,9 +12664,6 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12581
12664
|
FLIP: bigint;
|
|
12582
12665
|
USDT: bigint;
|
|
12583
12666
|
};
|
|
12584
|
-
Polkadot: {
|
|
12585
|
-
DOT: bigint;
|
|
12586
|
-
};
|
|
12587
12667
|
Arbitrum: {
|
|
12588
12668
|
ETH: bigint;
|
|
12589
12669
|
USDC: bigint;
|
|
@@ -12592,6 +12672,9 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12592
12672
|
USDC: bigint;
|
|
12593
12673
|
SOL: bigint;
|
|
12594
12674
|
};
|
|
12675
|
+
Polkadot: {
|
|
12676
|
+
DOT: bigint;
|
|
12677
|
+
};
|
|
12595
12678
|
};
|
|
12596
12679
|
balances: {
|
|
12597
12680
|
Bitcoin: {
|
|
@@ -12603,9 +12686,6 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12603
12686
|
FLIP: bigint;
|
|
12604
12687
|
USDT: bigint;
|
|
12605
12688
|
};
|
|
12606
|
-
Polkadot: {
|
|
12607
|
-
DOT: bigint;
|
|
12608
|
-
};
|
|
12609
12689
|
Arbitrum: {
|
|
12610
12690
|
ETH: bigint;
|
|
12611
12691
|
USDC: bigint;
|
|
@@ -12614,13 +12694,16 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12614
12694
|
USDC: bigint;
|
|
12615
12695
|
SOL: bigint;
|
|
12616
12696
|
};
|
|
12697
|
+
Polkadot: {
|
|
12698
|
+
DOT: bigint;
|
|
12699
|
+
};
|
|
12617
12700
|
};
|
|
12618
12701
|
refund_addresses: {
|
|
12619
12702
|
Bitcoin: string | null;
|
|
12620
12703
|
Ethereum: string | null;
|
|
12621
|
-
Polkadot: string | null;
|
|
12622
12704
|
Arbitrum: string | null;
|
|
12623
12705
|
Solana: string | null;
|
|
12706
|
+
Polkadot: string | null;
|
|
12624
12707
|
};
|
|
12625
12708
|
boost_balances: {
|
|
12626
12709
|
Bitcoin: {
|
|
@@ -12662,15 +12745,6 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12662
12745
|
is_withdrawing: boolean;
|
|
12663
12746
|
}[];
|
|
12664
12747
|
};
|
|
12665
|
-
Polkadot: {
|
|
12666
|
-
DOT: {
|
|
12667
|
-
fee_tier: number;
|
|
12668
|
-
total_balance: bigint;
|
|
12669
|
-
available_balance: bigint;
|
|
12670
|
-
in_use_balance: bigint;
|
|
12671
|
-
is_withdrawing: boolean;
|
|
12672
|
-
}[];
|
|
12673
|
-
};
|
|
12674
12748
|
Arbitrum: {
|
|
12675
12749
|
ETH: {
|
|
12676
12750
|
fee_tier: number;
|
|
@@ -12703,6 +12777,15 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12703
12777
|
is_withdrawing: boolean;
|
|
12704
12778
|
}[];
|
|
12705
12779
|
};
|
|
12780
|
+
Polkadot: {
|
|
12781
|
+
DOT: {
|
|
12782
|
+
fee_tier: number;
|
|
12783
|
+
total_balance: bigint;
|
|
12784
|
+
available_balance: bigint;
|
|
12785
|
+
in_use_balance: bigint;
|
|
12786
|
+
is_withdrawing: boolean;
|
|
12787
|
+
}[];
|
|
12788
|
+
};
|
|
12706
12789
|
};
|
|
12707
12790
|
}, {
|
|
12708
12791
|
role: "liquidity_provider";
|
|
@@ -12717,13 +12800,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12717
12800
|
FLIP: string | number;
|
|
12718
12801
|
USDT: string | number;
|
|
12719
12802
|
};
|
|
12720
|
-
Polkadot: {
|
|
12721
|
-
DOT: string | number;
|
|
12722
|
-
};
|
|
12723
12803
|
Arbitrum: {
|
|
12724
12804
|
ETH: string | number;
|
|
12725
12805
|
USDC: string | number;
|
|
12726
12806
|
};
|
|
12807
|
+
Polkadot: {
|
|
12808
|
+
DOT: string | number;
|
|
12809
|
+
};
|
|
12727
12810
|
Solana?: {
|
|
12728
12811
|
USDC?: string | number | undefined;
|
|
12729
12812
|
SOL?: string | number | undefined;
|
|
@@ -12739,13 +12822,13 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12739
12822
|
FLIP: string | number;
|
|
12740
12823
|
USDT: string | number;
|
|
12741
12824
|
};
|
|
12742
|
-
Polkadot: {
|
|
12743
|
-
DOT: string | number;
|
|
12744
|
-
};
|
|
12745
12825
|
Arbitrum: {
|
|
12746
12826
|
ETH: string | number;
|
|
12747
12827
|
USDC: string | number;
|
|
12748
12828
|
};
|
|
12829
|
+
Polkadot: {
|
|
12830
|
+
DOT: string | number;
|
|
12831
|
+
};
|
|
12749
12832
|
Solana?: {
|
|
12750
12833
|
USDC?: string | number | undefined;
|
|
12751
12834
|
SOL?: string | number | undefined;
|
|
@@ -12754,8 +12837,8 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12754
12837
|
refund_addresses: {
|
|
12755
12838
|
Bitcoin: string | null;
|
|
12756
12839
|
Ethereum: string | null;
|
|
12757
|
-
Polkadot: string | null;
|
|
12758
12840
|
Arbitrum: string | null;
|
|
12841
|
+
Polkadot: string | null;
|
|
12759
12842
|
Solana?: string | null | undefined;
|
|
12760
12843
|
};
|
|
12761
12844
|
boost_balances: {
|
|
@@ -12798,24 +12881,24 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
12798
12881
|
is_withdrawing: boolean;
|
|
12799
12882
|
}[];
|
|
12800
12883
|
};
|
|
12801
|
-
|
|
12802
|
-
|
|
12884
|
+
Arbitrum: {
|
|
12885
|
+
ETH: {
|
|
12803
12886
|
fee_tier: number;
|
|
12804
12887
|
total_balance: string;
|
|
12805
12888
|
available_balance: string;
|
|
12806
12889
|
in_use_balance: string;
|
|
12807
12890
|
is_withdrawing: boolean;
|
|
12808
12891
|
}[];
|
|
12809
|
-
|
|
12810
|
-
Arbitrum: {
|
|
12811
|
-
ETH: {
|
|
12892
|
+
USDC: {
|
|
12812
12893
|
fee_tier: number;
|
|
12813
12894
|
total_balance: string;
|
|
12814
12895
|
available_balance: string;
|
|
12815
12896
|
in_use_balance: string;
|
|
12816
12897
|
is_withdrawing: boolean;
|
|
12817
12898
|
}[];
|
|
12818
|
-
|
|
12899
|
+
};
|
|
12900
|
+
Polkadot: {
|
|
12901
|
+
DOT: {
|
|
12819
12902
|
fee_tier: number;
|
|
12820
12903
|
total_balance: string;
|
|
12821
12904
|
available_balance: string;
|
|
@@ -12960,9 +13043,6 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
12960
13043
|
FLIP: bigint;
|
|
12961
13044
|
USDT: bigint;
|
|
12962
13045
|
};
|
|
12963
|
-
Polkadot: {
|
|
12964
|
-
DOT: bigint;
|
|
12965
|
-
};
|
|
12966
13046
|
Arbitrum: {
|
|
12967
13047
|
ETH: bigint;
|
|
12968
13048
|
USDC: bigint;
|
|
@@ -12971,6 +13051,9 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
12971
13051
|
USDC: bigint;
|
|
12972
13052
|
SOL: bigint;
|
|
12973
13053
|
};
|
|
13054
|
+
Polkadot: {
|
|
13055
|
+
DOT: bigint;
|
|
13056
|
+
};
|
|
12974
13057
|
}, {
|
|
12975
13058
|
Bitcoin: {
|
|
12976
13059
|
BTC: string | number;
|
|
@@ -12981,18 +13064,19 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
12981
13064
|
FLIP: string | number;
|
|
12982
13065
|
USDT: string | number;
|
|
12983
13066
|
};
|
|
12984
|
-
Polkadot: {
|
|
12985
|
-
DOT: string | number;
|
|
12986
|
-
};
|
|
12987
13067
|
Arbitrum: {
|
|
12988
13068
|
ETH: string | number;
|
|
12989
13069
|
USDC: string | number;
|
|
12990
13070
|
};
|
|
13071
|
+
Polkadot: {
|
|
13072
|
+
DOT: string | number;
|
|
13073
|
+
};
|
|
12991
13074
|
Solana?: {
|
|
12992
13075
|
USDC?: string | number | undefined;
|
|
12993
13076
|
SOL?: string | number | undefined;
|
|
12994
13077
|
} | undefined;
|
|
12995
13078
|
}>;
|
|
13079
|
+
btc_vault_deposit_address: z.ZodNullable<z.ZodString>;
|
|
12996
13080
|
}, "strip", z.ZodTypeAny, {
|
|
12997
13081
|
role: "broker";
|
|
12998
13082
|
flip_balance: bigint;
|
|
@@ -13006,9 +13090,6 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13006
13090
|
FLIP: bigint;
|
|
13007
13091
|
USDT: bigint;
|
|
13008
13092
|
};
|
|
13009
|
-
Polkadot: {
|
|
13010
|
-
DOT: bigint;
|
|
13011
|
-
};
|
|
13012
13093
|
Arbitrum: {
|
|
13013
13094
|
ETH: bigint;
|
|
13014
13095
|
USDC: bigint;
|
|
@@ -13017,7 +13098,11 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13017
13098
|
USDC: bigint;
|
|
13018
13099
|
SOL: bigint;
|
|
13019
13100
|
};
|
|
13101
|
+
Polkadot: {
|
|
13102
|
+
DOT: bigint;
|
|
13103
|
+
};
|
|
13020
13104
|
};
|
|
13105
|
+
btc_vault_deposit_address: string | null;
|
|
13021
13106
|
}, {
|
|
13022
13107
|
role: "broker";
|
|
13023
13108
|
flip_balance: string | number;
|
|
@@ -13031,18 +13116,19 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13031
13116
|
FLIP: string | number;
|
|
13032
13117
|
USDT: string | number;
|
|
13033
13118
|
};
|
|
13034
|
-
Polkadot: {
|
|
13035
|
-
DOT: string | number;
|
|
13036
|
-
};
|
|
13037
13119
|
Arbitrum: {
|
|
13038
13120
|
ETH: string | number;
|
|
13039
13121
|
USDC: string | number;
|
|
13040
13122
|
};
|
|
13123
|
+
Polkadot: {
|
|
13124
|
+
DOT: string | number;
|
|
13125
|
+
};
|
|
13041
13126
|
Solana?: {
|
|
13042
13127
|
USDC?: string | number | undefined;
|
|
13043
13128
|
SOL?: string | number | undefined;
|
|
13044
13129
|
} | undefined;
|
|
13045
13130
|
};
|
|
13131
|
+
btc_vault_deposit_address: string | null;
|
|
13046
13132
|
}>, z.ZodObject<{
|
|
13047
13133
|
role: z.ZodLiteral<"liquidity_provider">;
|
|
13048
13134
|
balances: z.ZodObject<{
|
|
@@ -13106,9 +13192,6 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13106
13192
|
FLIP: bigint;
|
|
13107
13193
|
USDT: bigint;
|
|
13108
13194
|
};
|
|
13109
|
-
Polkadot: {
|
|
13110
|
-
DOT: bigint;
|
|
13111
|
-
};
|
|
13112
13195
|
Arbitrum: {
|
|
13113
13196
|
ETH: bigint;
|
|
13114
13197
|
USDC: bigint;
|
|
@@ -13117,6 +13200,9 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13117
13200
|
USDC: bigint;
|
|
13118
13201
|
SOL: bigint;
|
|
13119
13202
|
};
|
|
13203
|
+
Polkadot: {
|
|
13204
|
+
DOT: bigint;
|
|
13205
|
+
};
|
|
13120
13206
|
}, {
|
|
13121
13207
|
Bitcoin: {
|
|
13122
13208
|
BTC: string | number;
|
|
@@ -13127,13 +13213,13 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13127
13213
|
FLIP: string | number;
|
|
13128
13214
|
USDT: string | number;
|
|
13129
13215
|
};
|
|
13130
|
-
Polkadot: {
|
|
13131
|
-
DOT: string | number;
|
|
13132
|
-
};
|
|
13133
13216
|
Arbitrum: {
|
|
13134
13217
|
ETH: string | number;
|
|
13135
13218
|
USDC: string | number;
|
|
13136
13219
|
};
|
|
13220
|
+
Polkadot: {
|
|
13221
|
+
DOT: string | number;
|
|
13222
|
+
};
|
|
13137
13223
|
Solana?: {
|
|
13138
13224
|
USDC?: string | number | undefined;
|
|
13139
13225
|
SOL?: string | number | undefined;
|
|
@@ -13148,14 +13234,14 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13148
13234
|
}, "strip", z.ZodTypeAny, {
|
|
13149
13235
|
Bitcoin: string | null;
|
|
13150
13236
|
Ethereum: string | null;
|
|
13151
|
-
Polkadot: string | null;
|
|
13152
13237
|
Arbitrum: string | null;
|
|
13153
13238
|
Solana: string | null;
|
|
13239
|
+
Polkadot: string | null;
|
|
13154
13240
|
}, {
|
|
13155
13241
|
Bitcoin: string | null;
|
|
13156
13242
|
Ethereum: string | null;
|
|
13157
|
-
Polkadot: string | null;
|
|
13158
13243
|
Arbitrum: string | null;
|
|
13244
|
+
Polkadot: string | null;
|
|
13159
13245
|
Solana?: string | null | undefined;
|
|
13160
13246
|
}>;
|
|
13161
13247
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
@@ -13220,9 +13306,6 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13220
13306
|
FLIP: bigint;
|
|
13221
13307
|
USDT: bigint;
|
|
13222
13308
|
};
|
|
13223
|
-
Polkadot: {
|
|
13224
|
-
DOT: bigint;
|
|
13225
|
-
};
|
|
13226
13309
|
Arbitrum: {
|
|
13227
13310
|
ETH: bigint;
|
|
13228
13311
|
USDC: bigint;
|
|
@@ -13231,6 +13314,9 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13231
13314
|
USDC: bigint;
|
|
13232
13315
|
SOL: bigint;
|
|
13233
13316
|
};
|
|
13317
|
+
Polkadot: {
|
|
13318
|
+
DOT: bigint;
|
|
13319
|
+
};
|
|
13234
13320
|
}, {
|
|
13235
13321
|
Bitcoin: {
|
|
13236
13322
|
BTC: string | number;
|
|
@@ -13241,13 +13327,13 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13241
13327
|
FLIP: string | number;
|
|
13242
13328
|
USDT: string | number;
|
|
13243
13329
|
};
|
|
13244
|
-
Polkadot: {
|
|
13245
|
-
DOT: string | number;
|
|
13246
|
-
};
|
|
13247
13330
|
Arbitrum: {
|
|
13248
13331
|
ETH: string | number;
|
|
13249
13332
|
USDC: string | number;
|
|
13250
13333
|
};
|
|
13334
|
+
Polkadot: {
|
|
13335
|
+
DOT: string | number;
|
|
13336
|
+
};
|
|
13251
13337
|
Solana?: {
|
|
13252
13338
|
USDC?: string | number | undefined;
|
|
13253
13339
|
SOL?: string | number | undefined;
|
|
@@ -13644,15 +13730,6 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13644
13730
|
is_withdrawing: boolean;
|
|
13645
13731
|
}[];
|
|
13646
13732
|
};
|
|
13647
|
-
Polkadot: {
|
|
13648
|
-
DOT: {
|
|
13649
|
-
fee_tier: number;
|
|
13650
|
-
total_balance: bigint;
|
|
13651
|
-
available_balance: bigint;
|
|
13652
|
-
in_use_balance: bigint;
|
|
13653
|
-
is_withdrawing: boolean;
|
|
13654
|
-
}[];
|
|
13655
|
-
};
|
|
13656
13733
|
Arbitrum: {
|
|
13657
13734
|
ETH: {
|
|
13658
13735
|
fee_tier: number;
|
|
@@ -13685,6 +13762,15 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13685
13762
|
is_withdrawing: boolean;
|
|
13686
13763
|
}[];
|
|
13687
13764
|
};
|
|
13765
|
+
Polkadot: {
|
|
13766
|
+
DOT: {
|
|
13767
|
+
fee_tier: number;
|
|
13768
|
+
total_balance: bigint;
|
|
13769
|
+
available_balance: bigint;
|
|
13770
|
+
in_use_balance: bigint;
|
|
13771
|
+
is_withdrawing: boolean;
|
|
13772
|
+
}[];
|
|
13773
|
+
};
|
|
13688
13774
|
}, {
|
|
13689
13775
|
Bitcoin: {
|
|
13690
13776
|
BTC: {
|
|
@@ -13725,24 +13811,24 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13725
13811
|
is_withdrawing: boolean;
|
|
13726
13812
|
}[];
|
|
13727
13813
|
};
|
|
13728
|
-
|
|
13729
|
-
|
|
13814
|
+
Arbitrum: {
|
|
13815
|
+
ETH: {
|
|
13730
13816
|
fee_tier: number;
|
|
13731
13817
|
total_balance: string;
|
|
13732
13818
|
available_balance: string;
|
|
13733
13819
|
in_use_balance: string;
|
|
13734
13820
|
is_withdrawing: boolean;
|
|
13735
13821
|
}[];
|
|
13736
|
-
|
|
13737
|
-
Arbitrum: {
|
|
13738
|
-
ETH: {
|
|
13822
|
+
USDC: {
|
|
13739
13823
|
fee_tier: number;
|
|
13740
13824
|
total_balance: string;
|
|
13741
13825
|
available_balance: string;
|
|
13742
13826
|
in_use_balance: string;
|
|
13743
13827
|
is_withdrawing: boolean;
|
|
13744
13828
|
}[];
|
|
13745
|
-
|
|
13829
|
+
};
|
|
13830
|
+
Polkadot: {
|
|
13831
|
+
DOT: {
|
|
13746
13832
|
fee_tier: number;
|
|
13747
13833
|
total_balance: string;
|
|
13748
13834
|
available_balance: string;
|
|
@@ -13780,9 +13866,6 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13780
13866
|
FLIP: bigint;
|
|
13781
13867
|
USDT: bigint;
|
|
13782
13868
|
};
|
|
13783
|
-
Polkadot: {
|
|
13784
|
-
DOT: bigint;
|
|
13785
|
-
};
|
|
13786
13869
|
Arbitrum: {
|
|
13787
13870
|
ETH: bigint;
|
|
13788
13871
|
USDC: bigint;
|
|
@@ -13791,6 +13874,9 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13791
13874
|
USDC: bigint;
|
|
13792
13875
|
SOL: bigint;
|
|
13793
13876
|
};
|
|
13877
|
+
Polkadot: {
|
|
13878
|
+
DOT: bigint;
|
|
13879
|
+
};
|
|
13794
13880
|
};
|
|
13795
13881
|
balances: {
|
|
13796
13882
|
Bitcoin: {
|
|
@@ -13802,9 +13888,6 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13802
13888
|
FLIP: bigint;
|
|
13803
13889
|
USDT: bigint;
|
|
13804
13890
|
};
|
|
13805
|
-
Polkadot: {
|
|
13806
|
-
DOT: bigint;
|
|
13807
|
-
};
|
|
13808
13891
|
Arbitrum: {
|
|
13809
13892
|
ETH: bigint;
|
|
13810
13893
|
USDC: bigint;
|
|
@@ -13813,13 +13896,16 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13813
13896
|
USDC: bigint;
|
|
13814
13897
|
SOL: bigint;
|
|
13815
13898
|
};
|
|
13899
|
+
Polkadot: {
|
|
13900
|
+
DOT: bigint;
|
|
13901
|
+
};
|
|
13816
13902
|
};
|
|
13817
13903
|
refund_addresses: {
|
|
13818
13904
|
Bitcoin: string | null;
|
|
13819
13905
|
Ethereum: string | null;
|
|
13820
|
-
Polkadot: string | null;
|
|
13821
13906
|
Arbitrum: string | null;
|
|
13822
13907
|
Solana: string | null;
|
|
13908
|
+
Polkadot: string | null;
|
|
13823
13909
|
};
|
|
13824
13910
|
boost_balances: {
|
|
13825
13911
|
Bitcoin: {
|
|
@@ -13861,15 +13947,6 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13861
13947
|
is_withdrawing: boolean;
|
|
13862
13948
|
}[];
|
|
13863
13949
|
};
|
|
13864
|
-
Polkadot: {
|
|
13865
|
-
DOT: {
|
|
13866
|
-
fee_tier: number;
|
|
13867
|
-
total_balance: bigint;
|
|
13868
|
-
available_balance: bigint;
|
|
13869
|
-
in_use_balance: bigint;
|
|
13870
|
-
is_withdrawing: boolean;
|
|
13871
|
-
}[];
|
|
13872
|
-
};
|
|
13873
13950
|
Arbitrum: {
|
|
13874
13951
|
ETH: {
|
|
13875
13952
|
fee_tier: number;
|
|
@@ -13902,6 +13979,15 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13902
13979
|
is_withdrawing: boolean;
|
|
13903
13980
|
}[];
|
|
13904
13981
|
};
|
|
13982
|
+
Polkadot: {
|
|
13983
|
+
DOT: {
|
|
13984
|
+
fee_tier: number;
|
|
13985
|
+
total_balance: bigint;
|
|
13986
|
+
available_balance: bigint;
|
|
13987
|
+
in_use_balance: bigint;
|
|
13988
|
+
is_withdrawing: boolean;
|
|
13989
|
+
}[];
|
|
13990
|
+
};
|
|
13905
13991
|
};
|
|
13906
13992
|
}, {
|
|
13907
13993
|
role: "liquidity_provider";
|
|
@@ -13916,13 +14002,13 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13916
14002
|
FLIP: string | number;
|
|
13917
14003
|
USDT: string | number;
|
|
13918
14004
|
};
|
|
13919
|
-
Polkadot: {
|
|
13920
|
-
DOT: string | number;
|
|
13921
|
-
};
|
|
13922
14005
|
Arbitrum: {
|
|
13923
14006
|
ETH: string | number;
|
|
13924
14007
|
USDC: string | number;
|
|
13925
14008
|
};
|
|
14009
|
+
Polkadot: {
|
|
14010
|
+
DOT: string | number;
|
|
14011
|
+
};
|
|
13926
14012
|
Solana?: {
|
|
13927
14013
|
USDC?: string | number | undefined;
|
|
13928
14014
|
SOL?: string | number | undefined;
|
|
@@ -13938,13 +14024,13 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13938
14024
|
FLIP: string | number;
|
|
13939
14025
|
USDT: string | number;
|
|
13940
14026
|
};
|
|
13941
|
-
Polkadot: {
|
|
13942
|
-
DOT: string | number;
|
|
13943
|
-
};
|
|
13944
14027
|
Arbitrum: {
|
|
13945
14028
|
ETH: string | number;
|
|
13946
14029
|
USDC: string | number;
|
|
13947
14030
|
};
|
|
14031
|
+
Polkadot: {
|
|
14032
|
+
DOT: string | number;
|
|
14033
|
+
};
|
|
13948
14034
|
Solana?: {
|
|
13949
14035
|
USDC?: string | number | undefined;
|
|
13950
14036
|
SOL?: string | number | undefined;
|
|
@@ -13953,8 +14039,8 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13953
14039
|
refund_addresses: {
|
|
13954
14040
|
Bitcoin: string | null;
|
|
13955
14041
|
Ethereum: string | null;
|
|
13956
|
-
Polkadot: string | null;
|
|
13957
14042
|
Arbitrum: string | null;
|
|
14043
|
+
Polkadot: string | null;
|
|
13958
14044
|
Solana?: string | null | undefined;
|
|
13959
14045
|
};
|
|
13960
14046
|
boost_balances: {
|
|
@@ -13997,24 +14083,24 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodObject<{
|
|
|
13997
14083
|
is_withdrawing: boolean;
|
|
13998
14084
|
}[];
|
|
13999
14085
|
};
|
|
14000
|
-
|
|
14001
|
-
|
|
14086
|
+
Arbitrum: {
|
|
14087
|
+
ETH: {
|
|
14002
14088
|
fee_tier: number;
|
|
14003
14089
|
total_balance: string;
|
|
14004
14090
|
available_balance: string;
|
|
14005
14091
|
in_use_balance: string;
|
|
14006
14092
|
is_withdrawing: boolean;
|
|
14007
14093
|
}[];
|
|
14008
|
-
|
|
14009
|
-
Arbitrum: {
|
|
14010
|
-
ETH: {
|
|
14094
|
+
USDC: {
|
|
14011
14095
|
fee_tier: number;
|
|
14012
14096
|
total_balance: string;
|
|
14013
14097
|
available_balance: string;
|
|
14014
14098
|
in_use_balance: string;
|
|
14015
14099
|
is_withdrawing: boolean;
|
|
14016
14100
|
}[];
|
|
14017
|
-
|
|
14101
|
+
};
|
|
14102
|
+
Polkadot: {
|
|
14103
|
+
DOT: {
|
|
14018
14104
|
fee_tier: number;
|
|
14019
14105
|
total_balance: string;
|
|
14020
14106
|
available_balance: string;
|
|
@@ -15119,4 +15205,4 @@ declare const cfBoostPoolPendingFees: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z
|
|
|
15119
15205
|
}[];
|
|
15120
15206
|
}>>, "many">;
|
|
15121
15207
|
|
|
15122
|
-
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, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };
|
|
15208
|
+
export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, broker, brokerRequestSwapDepositAddress, brokerRequestSwapParameterEncoding, cfAccountInfo, cfAccounts, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFundingEnvironment, cfIngressEgressEnvironment, cfPoolDepth, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, chainGetBlockHash, hexString, liquidityProvider, numberOrHex, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };
|