@chainflip/rpc 1.9.0-assethub.2 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common.cjs +17 -1
- package/dist/common.d.cts +763 -457
- package/dist/common.d.ts +763 -457
- package/dist/common.mjs +18 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/parsers.cjs +42 -19
- package/dist/parsers.d.cts +1070 -583
- package/dist/parsers.d.ts +1070 -583
- package/dist/parsers.mjs +42 -19
- package/dist/types.d.cts +19 -7
- package/dist/types.d.ts +19 -7
- package/package.json +2 -2
package/dist/parsers.d.cts
CHANGED
|
@@ -1736,19 +1736,19 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1736
1736
|
USDC: string | number;
|
|
1737
1737
|
SOL: string | number;
|
|
1738
1738
|
}>;
|
|
1739
|
-
Assethub: z.ZodObject<{
|
|
1740
|
-
DOT: z.
|
|
1741
|
-
USDC: z.
|
|
1742
|
-
USDT: z.
|
|
1739
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
1740
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1741
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1742
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
1743
1743
|
}, "strip", z.ZodTypeAny, {
|
|
1744
1744
|
USDC: bigint;
|
|
1745
1745
|
USDT: bigint;
|
|
1746
1746
|
DOT: bigint;
|
|
1747
1747
|
}, {
|
|
1748
|
-
USDC
|
|
1749
|
-
USDT
|
|
1750
|
-
DOT
|
|
1751
|
-
}
|
|
1748
|
+
USDC: string | number;
|
|
1749
|
+
USDT: string | number;
|
|
1750
|
+
DOT: string | number;
|
|
1751
|
+
}>>;
|
|
1752
1752
|
}, "strip", z.ZodTypeAny, {
|
|
1753
1753
|
Bitcoin: {
|
|
1754
1754
|
BTC: bigint;
|
|
@@ -1796,11 +1796,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1796
1796
|
Polkadot: {
|
|
1797
1797
|
DOT: string | number;
|
|
1798
1798
|
};
|
|
1799
|
-
Assethub
|
|
1800
|
-
USDC
|
|
1801
|
-
USDT
|
|
1802
|
-
DOT
|
|
1803
|
-
};
|
|
1799
|
+
Assethub?: {
|
|
1800
|
+
USDC: string | number;
|
|
1801
|
+
USDT: string | number;
|
|
1802
|
+
DOT: string | number;
|
|
1803
|
+
} | undefined;
|
|
1804
1804
|
}>;
|
|
1805
1805
|
ingress_fees: z.ZodObject<{
|
|
1806
1806
|
Bitcoin: z.ZodObject<{
|
|
@@ -1853,19 +1853,19 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1853
1853
|
USDC: string | number | null;
|
|
1854
1854
|
SOL: string | number | null;
|
|
1855
1855
|
}>;
|
|
1856
|
-
Assethub: z.ZodObject<{
|
|
1857
|
-
DOT: z.
|
|
1858
|
-
USDC: z.
|
|
1859
|
-
USDT: z.
|
|
1856
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
1857
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1858
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1859
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1860
1860
|
}, "strip", z.ZodTypeAny, {
|
|
1861
1861
|
USDC: bigint | null;
|
|
1862
1862
|
USDT: bigint | null;
|
|
1863
1863
|
DOT: bigint | null;
|
|
1864
1864
|
}, {
|
|
1865
|
-
USDC
|
|
1866
|
-
USDT
|
|
1867
|
-
DOT
|
|
1868
|
-
}
|
|
1865
|
+
USDC: string | number | null;
|
|
1866
|
+
USDT: string | number | null;
|
|
1867
|
+
DOT: string | number | null;
|
|
1868
|
+
}>>;
|
|
1869
1869
|
}, "strip", z.ZodTypeAny, {
|
|
1870
1870
|
Bitcoin: {
|
|
1871
1871
|
BTC: bigint | null;
|
|
@@ -1913,11 +1913,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1913
1913
|
Polkadot: {
|
|
1914
1914
|
DOT: string | number | null;
|
|
1915
1915
|
};
|
|
1916
|
-
Assethub
|
|
1917
|
-
USDC
|
|
1918
|
-
USDT
|
|
1919
|
-
DOT
|
|
1920
|
-
};
|
|
1916
|
+
Assethub?: {
|
|
1917
|
+
USDC: string | number | null;
|
|
1918
|
+
USDT: string | number | null;
|
|
1919
|
+
DOT: string | number | null;
|
|
1920
|
+
} | undefined;
|
|
1921
1921
|
}>;
|
|
1922
1922
|
egress_fees: z.ZodObject<{
|
|
1923
1923
|
Bitcoin: z.ZodObject<{
|
|
@@ -1970,19 +1970,19 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
1970
1970
|
USDC: string | number | null;
|
|
1971
1971
|
SOL: string | number | null;
|
|
1972
1972
|
}>;
|
|
1973
|
-
Assethub: z.ZodObject<{
|
|
1974
|
-
DOT: z.
|
|
1975
|
-
USDC: z.
|
|
1976
|
-
USDT: z.
|
|
1973
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
1974
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1975
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1976
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
1977
1977
|
}, "strip", z.ZodTypeAny, {
|
|
1978
1978
|
USDC: bigint | null;
|
|
1979
1979
|
USDT: bigint | null;
|
|
1980
1980
|
DOT: bigint | null;
|
|
1981
1981
|
}, {
|
|
1982
|
-
USDC
|
|
1983
|
-
USDT
|
|
1984
|
-
DOT
|
|
1985
|
-
}
|
|
1982
|
+
USDC: string | number | null;
|
|
1983
|
+
USDT: string | number | null;
|
|
1984
|
+
DOT: string | number | null;
|
|
1985
|
+
}>>;
|
|
1986
1986
|
}, "strip", z.ZodTypeAny, {
|
|
1987
1987
|
Bitcoin: {
|
|
1988
1988
|
BTC: bigint | null;
|
|
@@ -2030,11 +2030,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2030
2030
|
Polkadot: {
|
|
2031
2031
|
DOT: string | number | null;
|
|
2032
2032
|
};
|
|
2033
|
-
Assethub
|
|
2034
|
-
USDC
|
|
2035
|
-
USDT
|
|
2036
|
-
DOT
|
|
2037
|
-
};
|
|
2033
|
+
Assethub?: {
|
|
2034
|
+
USDC: string | number | null;
|
|
2035
|
+
USDT: string | number | null;
|
|
2036
|
+
DOT: string | number | null;
|
|
2037
|
+
} | undefined;
|
|
2038
2038
|
}>;
|
|
2039
2039
|
witness_safety_margins: z.ZodObject<{
|
|
2040
2040
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2109,19 +2109,19 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2109
2109
|
USDC: string | number;
|
|
2110
2110
|
SOL: string | number;
|
|
2111
2111
|
}>;
|
|
2112
|
-
Assethub: z.ZodObject<{
|
|
2113
|
-
DOT: z.
|
|
2114
|
-
USDC: z.
|
|
2115
|
-
USDT: z.
|
|
2112
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
2113
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2114
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2115
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
2116
2116
|
}, "strip", z.ZodTypeAny, {
|
|
2117
2117
|
USDC: bigint;
|
|
2118
2118
|
USDT: bigint;
|
|
2119
2119
|
DOT: bigint;
|
|
2120
2120
|
}, {
|
|
2121
|
-
USDC
|
|
2122
|
-
USDT
|
|
2123
|
-
DOT
|
|
2124
|
-
}
|
|
2121
|
+
USDC: string | number;
|
|
2122
|
+
USDT: string | number;
|
|
2123
|
+
DOT: string | number;
|
|
2124
|
+
}>>;
|
|
2125
2125
|
}, "strip", z.ZodTypeAny, {
|
|
2126
2126
|
Bitcoin: {
|
|
2127
2127
|
BTC: bigint;
|
|
@@ -2169,11 +2169,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2169
2169
|
Polkadot: {
|
|
2170
2170
|
DOT: string | number;
|
|
2171
2171
|
};
|
|
2172
|
-
Assethub
|
|
2173
|
-
USDC
|
|
2174
|
-
USDT
|
|
2175
|
-
DOT
|
|
2176
|
-
};
|
|
2172
|
+
Assethub?: {
|
|
2173
|
+
USDC: string | number;
|
|
2174
|
+
USDT: string | number;
|
|
2175
|
+
DOT: string | number;
|
|
2176
|
+
} | undefined;
|
|
2177
2177
|
}>;
|
|
2178
2178
|
channel_opening_fees: z.ZodObject<{
|
|
2179
2179
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
@@ -2197,7 +2197,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2197
2197
|
Polkadot: string | number;
|
|
2198
2198
|
Assethub?: string | number | undefined;
|
|
2199
2199
|
}>;
|
|
2200
|
-
max_swap_retry_duration_blocks: z.
|
|
2200
|
+
max_swap_retry_duration_blocks: z.ZodObject<{
|
|
2201
2201
|
Bitcoin: z.ZodNumber;
|
|
2202
2202
|
Ethereum: z.ZodNumber;
|
|
2203
2203
|
Polkadot: z.ZodNumber;
|
|
@@ -2218,7 +2218,7 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2218
2218
|
Solana: number;
|
|
2219
2219
|
Polkadot: number;
|
|
2220
2220
|
Assethub?: number | undefined;
|
|
2221
|
-
}
|
|
2221
|
+
}>;
|
|
2222
2222
|
}, "strip", z.ZodTypeAny, {
|
|
2223
2223
|
minimum_deposit_amounts: {
|
|
2224
2224
|
Bitcoin: {
|
|
@@ -2374,11 +2374,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2374
2374
|
Polkadot: {
|
|
2375
2375
|
DOT: string | number;
|
|
2376
2376
|
};
|
|
2377
|
-
Assethub
|
|
2378
|
-
USDC
|
|
2379
|
-
USDT
|
|
2380
|
-
DOT
|
|
2381
|
-
};
|
|
2377
|
+
Assethub?: {
|
|
2378
|
+
USDC: string | number;
|
|
2379
|
+
USDT: string | number;
|
|
2380
|
+
DOT: string | number;
|
|
2381
|
+
} | undefined;
|
|
2382
2382
|
};
|
|
2383
2383
|
ingress_fees: {
|
|
2384
2384
|
Bitcoin: {
|
|
@@ -2401,11 +2401,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2401
2401
|
Polkadot: {
|
|
2402
2402
|
DOT: string | number | null;
|
|
2403
2403
|
};
|
|
2404
|
-
Assethub
|
|
2405
|
-
USDC
|
|
2406
|
-
USDT
|
|
2407
|
-
DOT
|
|
2408
|
-
};
|
|
2404
|
+
Assethub?: {
|
|
2405
|
+
USDC: string | number | null;
|
|
2406
|
+
USDT: string | number | null;
|
|
2407
|
+
DOT: string | number | null;
|
|
2408
|
+
} | undefined;
|
|
2409
2409
|
};
|
|
2410
2410
|
egress_fees: {
|
|
2411
2411
|
Bitcoin: {
|
|
@@ -2428,11 +2428,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2428
2428
|
Polkadot: {
|
|
2429
2429
|
DOT: string | number | null;
|
|
2430
2430
|
};
|
|
2431
|
-
Assethub
|
|
2432
|
-
USDC
|
|
2433
|
-
USDT
|
|
2434
|
-
DOT
|
|
2435
|
-
};
|
|
2431
|
+
Assethub?: {
|
|
2432
|
+
USDC: string | number | null;
|
|
2433
|
+
USDT: string | number | null;
|
|
2434
|
+
DOT: string | number | null;
|
|
2435
|
+
} | undefined;
|
|
2436
2436
|
};
|
|
2437
2437
|
witness_safety_margins: {
|
|
2438
2438
|
Bitcoin: number | null;
|
|
@@ -2463,11 +2463,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2463
2463
|
Polkadot: {
|
|
2464
2464
|
DOT: string | number;
|
|
2465
2465
|
};
|
|
2466
|
-
Assethub
|
|
2467
|
-
USDC
|
|
2468
|
-
USDT
|
|
2469
|
-
DOT
|
|
2470
|
-
};
|
|
2466
|
+
Assethub?: {
|
|
2467
|
+
USDC: string | number;
|
|
2468
|
+
USDT: string | number;
|
|
2469
|
+
DOT: string | number;
|
|
2470
|
+
} | undefined;
|
|
2471
2471
|
};
|
|
2472
2472
|
channel_opening_fees: {
|
|
2473
2473
|
Bitcoin: string | number;
|
|
@@ -2477,14 +2477,14 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2477
2477
|
Polkadot: string | number;
|
|
2478
2478
|
Assethub?: string | number | undefined;
|
|
2479
2479
|
};
|
|
2480
|
-
max_swap_retry_duration_blocks
|
|
2480
|
+
max_swap_retry_duration_blocks: {
|
|
2481
2481
|
Bitcoin: number;
|
|
2482
2482
|
Ethereum: number;
|
|
2483
2483
|
Arbitrum: number;
|
|
2484
2484
|
Solana: number;
|
|
2485
2485
|
Polkadot: number;
|
|
2486
2486
|
Assethub?: number | undefined;
|
|
2487
|
-
}
|
|
2487
|
+
};
|
|
2488
2488
|
}>, Rename<{
|
|
2489
2489
|
minimum_deposit_amounts: {
|
|
2490
2490
|
Bitcoin: {
|
|
@@ -2642,11 +2642,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2642
2642
|
Polkadot: {
|
|
2643
2643
|
DOT: string | number;
|
|
2644
2644
|
};
|
|
2645
|
-
Assethub
|
|
2646
|
-
USDC
|
|
2647
|
-
USDT
|
|
2648
|
-
DOT
|
|
2649
|
-
};
|
|
2645
|
+
Assethub?: {
|
|
2646
|
+
USDC: string | number;
|
|
2647
|
+
USDT: string | number;
|
|
2648
|
+
DOT: string | number;
|
|
2649
|
+
} | undefined;
|
|
2650
2650
|
};
|
|
2651
2651
|
ingress_fees: {
|
|
2652
2652
|
Bitcoin: {
|
|
@@ -2669,11 +2669,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2669
2669
|
Polkadot: {
|
|
2670
2670
|
DOT: string | number | null;
|
|
2671
2671
|
};
|
|
2672
|
-
Assethub
|
|
2673
|
-
USDC
|
|
2674
|
-
USDT
|
|
2675
|
-
DOT
|
|
2676
|
-
};
|
|
2672
|
+
Assethub?: {
|
|
2673
|
+
USDC: string | number | null;
|
|
2674
|
+
USDT: string | number | null;
|
|
2675
|
+
DOT: string | number | null;
|
|
2676
|
+
} | undefined;
|
|
2677
2677
|
};
|
|
2678
2678
|
egress_fees: {
|
|
2679
2679
|
Bitcoin: {
|
|
@@ -2696,11 +2696,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2696
2696
|
Polkadot: {
|
|
2697
2697
|
DOT: string | number | null;
|
|
2698
2698
|
};
|
|
2699
|
-
Assethub
|
|
2700
|
-
USDC
|
|
2701
|
-
USDT
|
|
2702
|
-
DOT
|
|
2703
|
-
};
|
|
2699
|
+
Assethub?: {
|
|
2700
|
+
USDC: string | number | null;
|
|
2701
|
+
USDT: string | number | null;
|
|
2702
|
+
DOT: string | number | null;
|
|
2703
|
+
} | undefined;
|
|
2704
2704
|
};
|
|
2705
2705
|
witness_safety_margins: {
|
|
2706
2706
|
Bitcoin: number | null;
|
|
@@ -2731,11 +2731,11 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2731
2731
|
Polkadot: {
|
|
2732
2732
|
DOT: string | number;
|
|
2733
2733
|
};
|
|
2734
|
-
Assethub
|
|
2735
|
-
USDC
|
|
2736
|
-
USDT
|
|
2737
|
-
DOT
|
|
2738
|
-
};
|
|
2734
|
+
Assethub?: {
|
|
2735
|
+
USDC: string | number;
|
|
2736
|
+
USDT: string | number;
|
|
2737
|
+
DOT: string | number;
|
|
2738
|
+
} | undefined;
|
|
2739
2739
|
};
|
|
2740
2740
|
channel_opening_fees: {
|
|
2741
2741
|
Bitcoin: string | number;
|
|
@@ -2745,14 +2745,14 @@ declare const cfIngressEgressEnvironment: z.ZodEffects<z.ZodObject<{
|
|
|
2745
2745
|
Polkadot: string | number;
|
|
2746
2746
|
Assethub?: string | number | undefined;
|
|
2747
2747
|
};
|
|
2748
|
-
max_swap_retry_duration_blocks
|
|
2748
|
+
max_swap_retry_duration_blocks: {
|
|
2749
2749
|
Bitcoin: number;
|
|
2750
2750
|
Ethereum: number;
|
|
2751
2751
|
Arbitrum: number;
|
|
2752
2752
|
Solana: number;
|
|
2753
2753
|
Polkadot: number;
|
|
2754
2754
|
Assethub?: number | undefined;
|
|
2755
|
-
}
|
|
2755
|
+
};
|
|
2756
2756
|
}>;
|
|
2757
2757
|
declare const cfSwappingEnvironment: z.ZodObject<{
|
|
2758
2758
|
maximum_swap_amounts: z.ZodObject<{
|
|
@@ -2806,19 +2806,19 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2806
2806
|
USDC: string | number | null;
|
|
2807
2807
|
SOL: string | number | null;
|
|
2808
2808
|
}>;
|
|
2809
|
-
Assethub: z.ZodObject<{
|
|
2810
|
-
DOT: z.
|
|
2811
|
-
USDC: z.
|
|
2812
|
-
USDT: z.
|
|
2809
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
2810
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2811
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2812
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
2813
2813
|
}, "strip", z.ZodTypeAny, {
|
|
2814
2814
|
USDC: bigint | null;
|
|
2815
2815
|
USDT: bigint | null;
|
|
2816
2816
|
DOT: bigint | null;
|
|
2817
2817
|
}, {
|
|
2818
|
-
USDC
|
|
2819
|
-
USDT
|
|
2820
|
-
DOT
|
|
2821
|
-
}
|
|
2818
|
+
USDC: string | number | null;
|
|
2819
|
+
USDT: string | number | null;
|
|
2820
|
+
DOT: string | number | null;
|
|
2821
|
+
}>>;
|
|
2822
2822
|
}, "strip", z.ZodTypeAny, {
|
|
2823
2823
|
Bitcoin: {
|
|
2824
2824
|
BTC: bigint | null;
|
|
@@ -2866,11 +2866,11 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2866
2866
|
Polkadot: {
|
|
2867
2867
|
DOT: string | number | null;
|
|
2868
2868
|
};
|
|
2869
|
-
Assethub
|
|
2870
|
-
USDC
|
|
2871
|
-
USDT
|
|
2872
|
-
DOT
|
|
2873
|
-
};
|
|
2869
|
+
Assethub?: {
|
|
2870
|
+
USDC: string | number | null;
|
|
2871
|
+
USDT: string | number | null;
|
|
2872
|
+
DOT: string | number | null;
|
|
2873
|
+
} | undefined;
|
|
2874
2874
|
}>;
|
|
2875
2875
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
2876
2876
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2924,11 +2924,11 @@ declare const cfSwappingEnvironment: z.ZodObject<{
|
|
|
2924
2924
|
Polkadot: {
|
|
2925
2925
|
DOT: string | number | null;
|
|
2926
2926
|
};
|
|
2927
|
-
Assethub
|
|
2928
|
-
USDC
|
|
2929
|
-
USDT
|
|
2930
|
-
DOT
|
|
2931
|
-
};
|
|
2927
|
+
Assethub?: {
|
|
2928
|
+
USDC: string | number | null;
|
|
2929
|
+
USDT: string | number | null;
|
|
2930
|
+
DOT: string | number | null;
|
|
2931
|
+
} | undefined;
|
|
2932
2932
|
};
|
|
2933
2933
|
network_fee_hundredth_pips: number;
|
|
2934
2934
|
}>;
|
|
@@ -5124,8 +5124,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5124
5124
|
};
|
|
5125
5125
|
} | null;
|
|
5126
5126
|
}>;
|
|
5127
|
-
Assethub: z.ZodObject<{
|
|
5128
|
-
DOT: z.
|
|
5127
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
5128
|
+
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5129
5129
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5130
5130
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5131
5131
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5293,8 +5293,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5293
5293
|
chain: "Ethereum";
|
|
5294
5294
|
asset: "USDC";
|
|
5295
5295
|
};
|
|
5296
|
-
} | null
|
|
5297
|
-
USDC: z.
|
|
5296
|
+
} | null>;
|
|
5297
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5298
5298
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5299
5299
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5300
5300
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5462,8 +5462,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5462
5462
|
chain: "Ethereum";
|
|
5463
5463
|
asset: "USDC";
|
|
5464
5464
|
};
|
|
5465
|
-
} | null
|
|
5466
|
-
USDT: z.
|
|
5465
|
+
} | null>;
|
|
5466
|
+
USDT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
5467
5467
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
5468
5468
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
5469
5469
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -5631,7 +5631,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5631
5631
|
chain: "Ethereum";
|
|
5632
5632
|
asset: "USDC";
|
|
5633
5633
|
};
|
|
5634
|
-
} | null
|
|
5634
|
+
} | null>;
|
|
5635
5635
|
}, "strip", z.ZodTypeAny, {
|
|
5636
5636
|
USDC: {
|
|
5637
5637
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -5775,7 +5775,7 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5775
5775
|
};
|
|
5776
5776
|
};
|
|
5777
5777
|
}, {
|
|
5778
|
-
USDC
|
|
5778
|
+
USDC: {
|
|
5779
5779
|
limit_order_fee_hundredth_pips: number;
|
|
5780
5780
|
range_order_fee_hundredth_pips: number;
|
|
5781
5781
|
range_order_total_fees_earned: {
|
|
@@ -5798,8 +5798,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5798
5798
|
chain: "Ethereum";
|
|
5799
5799
|
asset: "USDC";
|
|
5800
5800
|
};
|
|
5801
|
-
} | null
|
|
5802
|
-
USDT
|
|
5801
|
+
} | null;
|
|
5802
|
+
USDT: {
|
|
5803
5803
|
limit_order_fee_hundredth_pips: number;
|
|
5804
5804
|
range_order_fee_hundredth_pips: number;
|
|
5805
5805
|
range_order_total_fees_earned: {
|
|
@@ -5822,8 +5822,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5822
5822
|
chain: "Ethereum";
|
|
5823
5823
|
asset: "USDC";
|
|
5824
5824
|
};
|
|
5825
|
-
} | null
|
|
5826
|
-
DOT
|
|
5825
|
+
} | null;
|
|
5826
|
+
DOT: {
|
|
5827
5827
|
limit_order_fee_hundredth_pips: number;
|
|
5828
5828
|
range_order_fee_hundredth_pips: number;
|
|
5829
5829
|
range_order_total_fees_earned: {
|
|
@@ -5846,8 +5846,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
5846
5846
|
chain: "Ethereum";
|
|
5847
5847
|
asset: "USDC";
|
|
5848
5848
|
};
|
|
5849
|
-
} | null
|
|
5850
|
-
}
|
|
5849
|
+
} | null;
|
|
5850
|
+
}>>;
|
|
5851
5851
|
}, "strip", z.ZodTypeAny, {
|
|
5852
5852
|
Bitcoin: {
|
|
5853
5853
|
BTC: {
|
|
@@ -6652,8 +6652,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
6652
6652
|
};
|
|
6653
6653
|
} | null;
|
|
6654
6654
|
};
|
|
6655
|
-
Assethub
|
|
6656
|
-
USDC
|
|
6655
|
+
Assethub?: {
|
|
6656
|
+
USDC: {
|
|
6657
6657
|
limit_order_fee_hundredth_pips: number;
|
|
6658
6658
|
range_order_fee_hundredth_pips: number;
|
|
6659
6659
|
range_order_total_fees_earned: {
|
|
@@ -6676,8 +6676,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
6676
6676
|
chain: "Ethereum";
|
|
6677
6677
|
asset: "USDC";
|
|
6678
6678
|
};
|
|
6679
|
-
} | null
|
|
6680
|
-
USDT
|
|
6679
|
+
} | null;
|
|
6680
|
+
USDT: {
|
|
6681
6681
|
limit_order_fee_hundredth_pips: number;
|
|
6682
6682
|
range_order_fee_hundredth_pips: number;
|
|
6683
6683
|
range_order_total_fees_earned: {
|
|
@@ -6700,8 +6700,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
6700
6700
|
chain: "Ethereum";
|
|
6701
6701
|
asset: "USDC";
|
|
6702
6702
|
};
|
|
6703
|
-
} | null
|
|
6704
|
-
DOT
|
|
6703
|
+
} | null;
|
|
6704
|
+
DOT: {
|
|
6705
6705
|
limit_order_fee_hundredth_pips: number;
|
|
6706
6706
|
range_order_fee_hundredth_pips: number;
|
|
6707
6707
|
range_order_total_fees_earned: {
|
|
@@ -6724,8 +6724,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
6724
6724
|
chain: "Ethereum";
|
|
6725
6725
|
asset: "USDC";
|
|
6726
6726
|
};
|
|
6727
|
-
} | null
|
|
6728
|
-
};
|
|
6727
|
+
} | null;
|
|
6728
|
+
} | undefined;
|
|
6729
6729
|
}>;
|
|
6730
6730
|
}, "strip", z.ZodTypeAny, {
|
|
6731
6731
|
fees: {
|
|
@@ -7534,8 +7534,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7534
7534
|
};
|
|
7535
7535
|
} | null;
|
|
7536
7536
|
};
|
|
7537
|
-
Assethub
|
|
7538
|
-
USDC
|
|
7537
|
+
Assethub?: {
|
|
7538
|
+
USDC: {
|
|
7539
7539
|
limit_order_fee_hundredth_pips: number;
|
|
7540
7540
|
range_order_fee_hundredth_pips: number;
|
|
7541
7541
|
range_order_total_fees_earned: {
|
|
@@ -7558,8 +7558,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7558
7558
|
chain: "Ethereum";
|
|
7559
7559
|
asset: "USDC";
|
|
7560
7560
|
};
|
|
7561
|
-
} | null
|
|
7562
|
-
USDT
|
|
7561
|
+
} | null;
|
|
7562
|
+
USDT: {
|
|
7563
7563
|
limit_order_fee_hundredth_pips: number;
|
|
7564
7564
|
range_order_fee_hundredth_pips: number;
|
|
7565
7565
|
range_order_total_fees_earned: {
|
|
@@ -7582,8 +7582,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7582
7582
|
chain: "Ethereum";
|
|
7583
7583
|
asset: "USDC";
|
|
7584
7584
|
};
|
|
7585
|
-
} | null
|
|
7586
|
-
DOT
|
|
7585
|
+
} | null;
|
|
7586
|
+
DOT: {
|
|
7587
7587
|
limit_order_fee_hundredth_pips: number;
|
|
7588
7588
|
range_order_fee_hundredth_pips: number;
|
|
7589
7589
|
range_order_total_fees_earned: {
|
|
@@ -7606,8 +7606,8 @@ declare const cfPoolsEnvironment: z.ZodObject<{
|
|
|
7606
7606
|
chain: "Ethereum";
|
|
7607
7607
|
asset: "USDC";
|
|
7608
7608
|
};
|
|
7609
|
-
} | null
|
|
7610
|
-
};
|
|
7609
|
+
} | null;
|
|
7610
|
+
} | undefined;
|
|
7611
7611
|
};
|
|
7612
7612
|
}>;
|
|
7613
7613
|
declare const cfEnvironment: z.ZodObject<{
|
|
@@ -7663,19 +7663,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7663
7663
|
USDC: string | number;
|
|
7664
7664
|
SOL: string | number;
|
|
7665
7665
|
}>;
|
|
7666
|
-
Assethub: z.ZodObject<{
|
|
7667
|
-
DOT: z.
|
|
7668
|
-
USDC: z.
|
|
7669
|
-
USDT: z.
|
|
7666
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
7667
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7668
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7669
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
7670
7670
|
}, "strip", z.ZodTypeAny, {
|
|
7671
7671
|
USDC: bigint;
|
|
7672
7672
|
USDT: bigint;
|
|
7673
7673
|
DOT: bigint;
|
|
7674
7674
|
}, {
|
|
7675
|
-
USDC
|
|
7676
|
-
USDT
|
|
7677
|
-
DOT
|
|
7678
|
-
}
|
|
7675
|
+
USDC: string | number;
|
|
7676
|
+
USDT: string | number;
|
|
7677
|
+
DOT: string | number;
|
|
7678
|
+
}>>;
|
|
7679
7679
|
}, "strip", z.ZodTypeAny, {
|
|
7680
7680
|
Bitcoin: {
|
|
7681
7681
|
BTC: bigint;
|
|
@@ -7723,11 +7723,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7723
7723
|
Polkadot: {
|
|
7724
7724
|
DOT: string | number;
|
|
7725
7725
|
};
|
|
7726
|
-
Assethub
|
|
7727
|
-
USDC
|
|
7728
|
-
USDT
|
|
7729
|
-
DOT
|
|
7730
|
-
};
|
|
7726
|
+
Assethub?: {
|
|
7727
|
+
USDC: string | number;
|
|
7728
|
+
USDT: string | number;
|
|
7729
|
+
DOT: string | number;
|
|
7730
|
+
} | undefined;
|
|
7731
7731
|
}>;
|
|
7732
7732
|
ingress_fees: z.ZodObject<{
|
|
7733
7733
|
Bitcoin: z.ZodObject<{
|
|
@@ -7780,19 +7780,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7780
7780
|
USDC: string | number | null;
|
|
7781
7781
|
SOL: string | number | null;
|
|
7782
7782
|
}>;
|
|
7783
|
-
Assethub: z.ZodObject<{
|
|
7784
|
-
DOT: z.
|
|
7785
|
-
USDC: z.
|
|
7786
|
-
USDT: z.
|
|
7783
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
7784
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7785
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7786
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7787
7787
|
}, "strip", z.ZodTypeAny, {
|
|
7788
7788
|
USDC: bigint | null;
|
|
7789
7789
|
USDT: bigint | null;
|
|
7790
7790
|
DOT: bigint | null;
|
|
7791
7791
|
}, {
|
|
7792
|
-
USDC
|
|
7793
|
-
USDT
|
|
7794
|
-
DOT
|
|
7795
|
-
}
|
|
7792
|
+
USDC: string | number | null;
|
|
7793
|
+
USDT: string | number | null;
|
|
7794
|
+
DOT: string | number | null;
|
|
7795
|
+
}>>;
|
|
7796
7796
|
}, "strip", z.ZodTypeAny, {
|
|
7797
7797
|
Bitcoin: {
|
|
7798
7798
|
BTC: bigint | null;
|
|
@@ -7840,11 +7840,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7840
7840
|
Polkadot: {
|
|
7841
7841
|
DOT: string | number | null;
|
|
7842
7842
|
};
|
|
7843
|
-
Assethub
|
|
7844
|
-
USDC
|
|
7845
|
-
USDT
|
|
7846
|
-
DOT
|
|
7847
|
-
};
|
|
7843
|
+
Assethub?: {
|
|
7844
|
+
USDC: string | number | null;
|
|
7845
|
+
USDT: string | number | null;
|
|
7846
|
+
DOT: string | number | null;
|
|
7847
|
+
} | undefined;
|
|
7848
7848
|
}>;
|
|
7849
7849
|
egress_fees: z.ZodObject<{
|
|
7850
7850
|
Bitcoin: z.ZodObject<{
|
|
@@ -7897,19 +7897,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7897
7897
|
USDC: string | number | null;
|
|
7898
7898
|
SOL: string | number | null;
|
|
7899
7899
|
}>;
|
|
7900
|
-
Assethub: z.ZodObject<{
|
|
7901
|
-
DOT: z.
|
|
7902
|
-
USDC: z.
|
|
7903
|
-
USDT: z.
|
|
7900
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
7901
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7902
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7903
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
7904
7904
|
}, "strip", z.ZodTypeAny, {
|
|
7905
7905
|
USDC: bigint | null;
|
|
7906
7906
|
USDT: bigint | null;
|
|
7907
7907
|
DOT: bigint | null;
|
|
7908
7908
|
}, {
|
|
7909
|
-
USDC
|
|
7910
|
-
USDT
|
|
7911
|
-
DOT
|
|
7912
|
-
}
|
|
7909
|
+
USDC: string | number | null;
|
|
7910
|
+
USDT: string | number | null;
|
|
7911
|
+
DOT: string | number | null;
|
|
7912
|
+
}>>;
|
|
7913
7913
|
}, "strip", z.ZodTypeAny, {
|
|
7914
7914
|
Bitcoin: {
|
|
7915
7915
|
BTC: bigint | null;
|
|
@@ -7957,11 +7957,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
7957
7957
|
Polkadot: {
|
|
7958
7958
|
DOT: string | number | null;
|
|
7959
7959
|
};
|
|
7960
|
-
Assethub
|
|
7961
|
-
USDC
|
|
7962
|
-
USDT
|
|
7963
|
-
DOT
|
|
7964
|
-
};
|
|
7960
|
+
Assethub?: {
|
|
7961
|
+
USDC: string | number | null;
|
|
7962
|
+
USDT: string | number | null;
|
|
7963
|
+
DOT: string | number | null;
|
|
7964
|
+
} | undefined;
|
|
7965
7965
|
}>;
|
|
7966
7966
|
witness_safety_margins: z.ZodObject<{
|
|
7967
7967
|
Bitcoin: z.ZodNullable<z.ZodNumber>;
|
|
@@ -8036,19 +8036,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8036
8036
|
USDC: string | number;
|
|
8037
8037
|
SOL: string | number;
|
|
8038
8038
|
}>;
|
|
8039
|
-
Assethub: z.ZodObject<{
|
|
8040
|
-
DOT: z.
|
|
8041
|
-
USDC: z.
|
|
8042
|
-
USDT: z.
|
|
8039
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
8040
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
8041
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
8042
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
8043
8043
|
}, "strip", z.ZodTypeAny, {
|
|
8044
8044
|
USDC: bigint;
|
|
8045
8045
|
USDT: bigint;
|
|
8046
8046
|
DOT: bigint;
|
|
8047
8047
|
}, {
|
|
8048
|
-
USDC
|
|
8049
|
-
USDT
|
|
8050
|
-
DOT
|
|
8051
|
-
}
|
|
8048
|
+
USDC: string | number;
|
|
8049
|
+
USDT: string | number;
|
|
8050
|
+
DOT: string | number;
|
|
8051
|
+
}>>;
|
|
8052
8052
|
}, "strip", z.ZodTypeAny, {
|
|
8053
8053
|
Bitcoin: {
|
|
8054
8054
|
BTC: bigint;
|
|
@@ -8096,11 +8096,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8096
8096
|
Polkadot: {
|
|
8097
8097
|
DOT: string | number;
|
|
8098
8098
|
};
|
|
8099
|
-
Assethub
|
|
8100
|
-
USDC
|
|
8101
|
-
USDT
|
|
8102
|
-
DOT
|
|
8103
|
-
};
|
|
8099
|
+
Assethub?: {
|
|
8100
|
+
USDC: string | number;
|
|
8101
|
+
USDT: string | number;
|
|
8102
|
+
DOT: string | number;
|
|
8103
|
+
} | undefined;
|
|
8104
8104
|
}>;
|
|
8105
8105
|
channel_opening_fees: z.ZodObject<{
|
|
8106
8106
|
Bitcoin: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
@@ -8124,7 +8124,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8124
8124
|
Polkadot: string | number;
|
|
8125
8125
|
Assethub?: string | number | undefined;
|
|
8126
8126
|
}>;
|
|
8127
|
-
max_swap_retry_duration_blocks: z.
|
|
8127
|
+
max_swap_retry_duration_blocks: z.ZodObject<{
|
|
8128
8128
|
Bitcoin: z.ZodNumber;
|
|
8129
8129
|
Ethereum: z.ZodNumber;
|
|
8130
8130
|
Polkadot: z.ZodNumber;
|
|
@@ -8145,7 +8145,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8145
8145
|
Solana: number;
|
|
8146
8146
|
Polkadot: number;
|
|
8147
8147
|
Assethub?: number | undefined;
|
|
8148
|
-
}
|
|
8148
|
+
}>;
|
|
8149
8149
|
}, "strip", z.ZodTypeAny, {
|
|
8150
8150
|
minimum_deposit_amounts: {
|
|
8151
8151
|
Bitcoin: {
|
|
@@ -8301,11 +8301,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8301
8301
|
Polkadot: {
|
|
8302
8302
|
DOT: string | number;
|
|
8303
8303
|
};
|
|
8304
|
-
Assethub
|
|
8305
|
-
USDC
|
|
8306
|
-
USDT
|
|
8307
|
-
DOT
|
|
8308
|
-
};
|
|
8304
|
+
Assethub?: {
|
|
8305
|
+
USDC: string | number;
|
|
8306
|
+
USDT: string | number;
|
|
8307
|
+
DOT: string | number;
|
|
8308
|
+
} | undefined;
|
|
8309
8309
|
};
|
|
8310
8310
|
ingress_fees: {
|
|
8311
8311
|
Bitcoin: {
|
|
@@ -8328,11 +8328,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8328
8328
|
Polkadot: {
|
|
8329
8329
|
DOT: string | number | null;
|
|
8330
8330
|
};
|
|
8331
|
-
Assethub
|
|
8332
|
-
USDC
|
|
8333
|
-
USDT
|
|
8334
|
-
DOT
|
|
8335
|
-
};
|
|
8331
|
+
Assethub?: {
|
|
8332
|
+
USDC: string | number | null;
|
|
8333
|
+
USDT: string | number | null;
|
|
8334
|
+
DOT: string | number | null;
|
|
8335
|
+
} | undefined;
|
|
8336
8336
|
};
|
|
8337
8337
|
egress_fees: {
|
|
8338
8338
|
Bitcoin: {
|
|
@@ -8355,11 +8355,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8355
8355
|
Polkadot: {
|
|
8356
8356
|
DOT: string | number | null;
|
|
8357
8357
|
};
|
|
8358
|
-
Assethub
|
|
8359
|
-
USDC
|
|
8360
|
-
USDT
|
|
8361
|
-
DOT
|
|
8362
|
-
};
|
|
8358
|
+
Assethub?: {
|
|
8359
|
+
USDC: string | number | null;
|
|
8360
|
+
USDT: string | number | null;
|
|
8361
|
+
DOT: string | number | null;
|
|
8362
|
+
} | undefined;
|
|
8363
8363
|
};
|
|
8364
8364
|
witness_safety_margins: {
|
|
8365
8365
|
Bitcoin: number | null;
|
|
@@ -8390,11 +8390,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8390
8390
|
Polkadot: {
|
|
8391
8391
|
DOT: string | number;
|
|
8392
8392
|
};
|
|
8393
|
-
Assethub
|
|
8394
|
-
USDC
|
|
8395
|
-
USDT
|
|
8396
|
-
DOT
|
|
8397
|
-
};
|
|
8393
|
+
Assethub?: {
|
|
8394
|
+
USDC: string | number;
|
|
8395
|
+
USDT: string | number;
|
|
8396
|
+
DOT: string | number;
|
|
8397
|
+
} | undefined;
|
|
8398
8398
|
};
|
|
8399
8399
|
channel_opening_fees: {
|
|
8400
8400
|
Bitcoin: string | number;
|
|
@@ -8404,14 +8404,14 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8404
8404
|
Polkadot: string | number;
|
|
8405
8405
|
Assethub?: string | number | undefined;
|
|
8406
8406
|
};
|
|
8407
|
-
max_swap_retry_duration_blocks
|
|
8407
|
+
max_swap_retry_duration_blocks: {
|
|
8408
8408
|
Bitcoin: number;
|
|
8409
8409
|
Ethereum: number;
|
|
8410
8410
|
Arbitrum: number;
|
|
8411
8411
|
Solana: number;
|
|
8412
8412
|
Polkadot: number;
|
|
8413
8413
|
Assethub?: number | undefined;
|
|
8414
|
-
}
|
|
8414
|
+
};
|
|
8415
8415
|
}>, Rename<{
|
|
8416
8416
|
minimum_deposit_amounts: {
|
|
8417
8417
|
Bitcoin: {
|
|
@@ -8569,11 +8569,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8569
8569
|
Polkadot: {
|
|
8570
8570
|
DOT: string | number;
|
|
8571
8571
|
};
|
|
8572
|
-
Assethub
|
|
8573
|
-
USDC
|
|
8574
|
-
USDT
|
|
8575
|
-
DOT
|
|
8576
|
-
};
|
|
8572
|
+
Assethub?: {
|
|
8573
|
+
USDC: string | number;
|
|
8574
|
+
USDT: string | number;
|
|
8575
|
+
DOT: string | number;
|
|
8576
|
+
} | undefined;
|
|
8577
8577
|
};
|
|
8578
8578
|
ingress_fees: {
|
|
8579
8579
|
Bitcoin: {
|
|
@@ -8596,11 +8596,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8596
8596
|
Polkadot: {
|
|
8597
8597
|
DOT: string | number | null;
|
|
8598
8598
|
};
|
|
8599
|
-
Assethub
|
|
8600
|
-
USDC
|
|
8601
|
-
USDT
|
|
8602
|
-
DOT
|
|
8603
|
-
};
|
|
8599
|
+
Assethub?: {
|
|
8600
|
+
USDC: string | number | null;
|
|
8601
|
+
USDT: string | number | null;
|
|
8602
|
+
DOT: string | number | null;
|
|
8603
|
+
} | undefined;
|
|
8604
8604
|
};
|
|
8605
8605
|
egress_fees: {
|
|
8606
8606
|
Bitcoin: {
|
|
@@ -8623,11 +8623,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8623
8623
|
Polkadot: {
|
|
8624
8624
|
DOT: string | number | null;
|
|
8625
8625
|
};
|
|
8626
|
-
Assethub
|
|
8627
|
-
USDC
|
|
8628
|
-
USDT
|
|
8629
|
-
DOT
|
|
8630
|
-
};
|
|
8626
|
+
Assethub?: {
|
|
8627
|
+
USDC: string | number | null;
|
|
8628
|
+
USDT: string | number | null;
|
|
8629
|
+
DOT: string | number | null;
|
|
8630
|
+
} | undefined;
|
|
8631
8631
|
};
|
|
8632
8632
|
witness_safety_margins: {
|
|
8633
8633
|
Bitcoin: number | null;
|
|
@@ -8658,11 +8658,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8658
8658
|
Polkadot: {
|
|
8659
8659
|
DOT: string | number;
|
|
8660
8660
|
};
|
|
8661
|
-
Assethub
|
|
8662
|
-
USDC
|
|
8663
|
-
USDT
|
|
8664
|
-
DOT
|
|
8665
|
-
};
|
|
8661
|
+
Assethub?: {
|
|
8662
|
+
USDC: string | number;
|
|
8663
|
+
USDT: string | number;
|
|
8664
|
+
DOT: string | number;
|
|
8665
|
+
} | undefined;
|
|
8666
8666
|
};
|
|
8667
8667
|
channel_opening_fees: {
|
|
8668
8668
|
Bitcoin: string | number;
|
|
@@ -8672,14 +8672,14 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8672
8672
|
Polkadot: string | number;
|
|
8673
8673
|
Assethub?: string | number | undefined;
|
|
8674
8674
|
};
|
|
8675
|
-
max_swap_retry_duration_blocks
|
|
8675
|
+
max_swap_retry_duration_blocks: {
|
|
8676
8676
|
Bitcoin: number;
|
|
8677
8677
|
Ethereum: number;
|
|
8678
8678
|
Arbitrum: number;
|
|
8679
8679
|
Solana: number;
|
|
8680
8680
|
Polkadot: number;
|
|
8681
8681
|
Assethub?: number | undefined;
|
|
8682
|
-
}
|
|
8682
|
+
};
|
|
8683
8683
|
}>;
|
|
8684
8684
|
swapping: z.ZodObject<{
|
|
8685
8685
|
maximum_swap_amounts: z.ZodObject<{
|
|
@@ -8733,19 +8733,19 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8733
8733
|
USDC: string | number | null;
|
|
8734
8734
|
SOL: string | number | null;
|
|
8735
8735
|
}>;
|
|
8736
|
-
Assethub: z.ZodObject<{
|
|
8737
|
-
DOT: z.
|
|
8738
|
-
USDC: z.
|
|
8739
|
-
USDT: z.
|
|
8736
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
8737
|
+
DOT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
8738
|
+
USDC: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
8739
|
+
USDT: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
|
|
8740
8740
|
}, "strip", z.ZodTypeAny, {
|
|
8741
8741
|
USDC: bigint | null;
|
|
8742
8742
|
USDT: bigint | null;
|
|
8743
8743
|
DOT: bigint | null;
|
|
8744
8744
|
}, {
|
|
8745
|
-
USDC
|
|
8746
|
-
USDT
|
|
8747
|
-
DOT
|
|
8748
|
-
}
|
|
8745
|
+
USDC: string | number | null;
|
|
8746
|
+
USDT: string | number | null;
|
|
8747
|
+
DOT: string | number | null;
|
|
8748
|
+
}>>;
|
|
8749
8749
|
}, "strip", z.ZodTypeAny, {
|
|
8750
8750
|
Bitcoin: {
|
|
8751
8751
|
BTC: bigint | null;
|
|
@@ -8793,11 +8793,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8793
8793
|
Polkadot: {
|
|
8794
8794
|
DOT: string | number | null;
|
|
8795
8795
|
};
|
|
8796
|
-
Assethub
|
|
8797
|
-
USDC
|
|
8798
|
-
USDT
|
|
8799
|
-
DOT
|
|
8800
|
-
};
|
|
8796
|
+
Assethub?: {
|
|
8797
|
+
USDC: string | number | null;
|
|
8798
|
+
USDT: string | number | null;
|
|
8799
|
+
DOT: string | number | null;
|
|
8800
|
+
} | undefined;
|
|
8801
8801
|
}>;
|
|
8802
8802
|
network_fee_hundredth_pips: z.ZodNumber;
|
|
8803
8803
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8851,11 +8851,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
8851
8851
|
Polkadot: {
|
|
8852
8852
|
DOT: string | number | null;
|
|
8853
8853
|
};
|
|
8854
|
-
Assethub
|
|
8855
|
-
USDC
|
|
8856
|
-
USDT
|
|
8857
|
-
DOT
|
|
8858
|
-
};
|
|
8854
|
+
Assethub?: {
|
|
8855
|
+
USDC: string | number | null;
|
|
8856
|
+
USDT: string | number | null;
|
|
8857
|
+
DOT: string | number | null;
|
|
8858
|
+
} | undefined;
|
|
8859
8859
|
};
|
|
8860
8860
|
network_fee_hundredth_pips: number;
|
|
8861
8861
|
}>;
|
|
@@ -11051,8 +11051,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11051
11051
|
};
|
|
11052
11052
|
} | null;
|
|
11053
11053
|
}>;
|
|
11054
|
-
Assethub: z.ZodObject<{
|
|
11055
|
-
DOT: z.
|
|
11054
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
11055
|
+
DOT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
11056
11056
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
11057
11057
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
11058
11058
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -11220,8 +11220,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11220
11220
|
chain: "Ethereum";
|
|
11221
11221
|
asset: "USDC";
|
|
11222
11222
|
};
|
|
11223
|
-
} | null
|
|
11224
|
-
USDC: z.
|
|
11223
|
+
} | null>;
|
|
11224
|
+
USDC: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
11225
11225
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
11226
11226
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
11227
11227
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -11389,8 +11389,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11389
11389
|
chain: "Ethereum";
|
|
11390
11390
|
asset: "USDC";
|
|
11391
11391
|
};
|
|
11392
|
-
} | null
|
|
11393
|
-
USDT: z.
|
|
11392
|
+
} | null>;
|
|
11393
|
+
USDT: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
11394
11394
|
limit_order_fee_hundredth_pips: z.ZodNumber;
|
|
11395
11395
|
range_order_fee_hundredth_pips: z.ZodNumber;
|
|
11396
11396
|
range_order_total_fees_earned: z.ZodObject<{
|
|
@@ -11558,7 +11558,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11558
11558
|
chain: "Ethereum";
|
|
11559
11559
|
asset: "USDC";
|
|
11560
11560
|
};
|
|
11561
|
-
} | null
|
|
11561
|
+
} | null>;
|
|
11562
11562
|
}, "strip", z.ZodTypeAny, {
|
|
11563
11563
|
USDC: {
|
|
11564
11564
|
limit_order_fee_hundredth_pips: number;
|
|
@@ -11702,7 +11702,7 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11702
11702
|
};
|
|
11703
11703
|
};
|
|
11704
11704
|
}, {
|
|
11705
|
-
USDC
|
|
11705
|
+
USDC: {
|
|
11706
11706
|
limit_order_fee_hundredth_pips: number;
|
|
11707
11707
|
range_order_fee_hundredth_pips: number;
|
|
11708
11708
|
range_order_total_fees_earned: {
|
|
@@ -11725,8 +11725,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11725
11725
|
chain: "Ethereum";
|
|
11726
11726
|
asset: "USDC";
|
|
11727
11727
|
};
|
|
11728
|
-
} | null
|
|
11729
|
-
USDT
|
|
11728
|
+
} | null;
|
|
11729
|
+
USDT: {
|
|
11730
11730
|
limit_order_fee_hundredth_pips: number;
|
|
11731
11731
|
range_order_fee_hundredth_pips: number;
|
|
11732
11732
|
range_order_total_fees_earned: {
|
|
@@ -11749,8 +11749,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11749
11749
|
chain: "Ethereum";
|
|
11750
11750
|
asset: "USDC";
|
|
11751
11751
|
};
|
|
11752
|
-
} | null
|
|
11753
|
-
DOT
|
|
11752
|
+
} | null;
|
|
11753
|
+
DOT: {
|
|
11754
11754
|
limit_order_fee_hundredth_pips: number;
|
|
11755
11755
|
range_order_fee_hundredth_pips: number;
|
|
11756
11756
|
range_order_total_fees_earned: {
|
|
@@ -11773,8 +11773,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
11773
11773
|
chain: "Ethereum";
|
|
11774
11774
|
asset: "USDC";
|
|
11775
11775
|
};
|
|
11776
|
-
} | null
|
|
11777
|
-
}
|
|
11776
|
+
} | null;
|
|
11777
|
+
}>>;
|
|
11778
11778
|
}, "strip", z.ZodTypeAny, {
|
|
11779
11779
|
Bitcoin: {
|
|
11780
11780
|
BTC: {
|
|
@@ -12579,8 +12579,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
12579
12579
|
};
|
|
12580
12580
|
} | null;
|
|
12581
12581
|
};
|
|
12582
|
-
Assethub
|
|
12583
|
-
USDC
|
|
12582
|
+
Assethub?: {
|
|
12583
|
+
USDC: {
|
|
12584
12584
|
limit_order_fee_hundredth_pips: number;
|
|
12585
12585
|
range_order_fee_hundredth_pips: number;
|
|
12586
12586
|
range_order_total_fees_earned: {
|
|
@@ -12603,8 +12603,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
12603
12603
|
chain: "Ethereum";
|
|
12604
12604
|
asset: "USDC";
|
|
12605
12605
|
};
|
|
12606
|
-
} | null
|
|
12607
|
-
USDT
|
|
12606
|
+
} | null;
|
|
12607
|
+
USDT: {
|
|
12608
12608
|
limit_order_fee_hundredth_pips: number;
|
|
12609
12609
|
range_order_fee_hundredth_pips: number;
|
|
12610
12610
|
range_order_total_fees_earned: {
|
|
@@ -12627,8 +12627,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
12627
12627
|
chain: "Ethereum";
|
|
12628
12628
|
asset: "USDC";
|
|
12629
12629
|
};
|
|
12630
|
-
} | null
|
|
12631
|
-
DOT
|
|
12630
|
+
} | null;
|
|
12631
|
+
DOT: {
|
|
12632
12632
|
limit_order_fee_hundredth_pips: number;
|
|
12633
12633
|
range_order_fee_hundredth_pips: number;
|
|
12634
12634
|
range_order_total_fees_earned: {
|
|
@@ -12651,8 +12651,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
12651
12651
|
chain: "Ethereum";
|
|
12652
12652
|
asset: "USDC";
|
|
12653
12653
|
};
|
|
12654
|
-
} | null
|
|
12655
|
-
};
|
|
12654
|
+
} | null;
|
|
12655
|
+
} | undefined;
|
|
12656
12656
|
}>;
|
|
12657
12657
|
}, "strip", z.ZodTypeAny, {
|
|
12658
12658
|
fees: {
|
|
@@ -13461,8 +13461,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
13461
13461
|
};
|
|
13462
13462
|
} | null;
|
|
13463
13463
|
};
|
|
13464
|
-
Assethub
|
|
13465
|
-
USDC
|
|
13464
|
+
Assethub?: {
|
|
13465
|
+
USDC: {
|
|
13466
13466
|
limit_order_fee_hundredth_pips: number;
|
|
13467
13467
|
range_order_fee_hundredth_pips: number;
|
|
13468
13468
|
range_order_total_fees_earned: {
|
|
@@ -13485,8 +13485,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
13485
13485
|
chain: "Ethereum";
|
|
13486
13486
|
asset: "USDC";
|
|
13487
13487
|
};
|
|
13488
|
-
} | null
|
|
13489
|
-
USDT
|
|
13488
|
+
} | null;
|
|
13489
|
+
USDT: {
|
|
13490
13490
|
limit_order_fee_hundredth_pips: number;
|
|
13491
13491
|
range_order_fee_hundredth_pips: number;
|
|
13492
13492
|
range_order_total_fees_earned: {
|
|
@@ -13509,8 +13509,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
13509
13509
|
chain: "Ethereum";
|
|
13510
13510
|
asset: "USDC";
|
|
13511
13511
|
};
|
|
13512
|
-
} | null
|
|
13513
|
-
DOT
|
|
13512
|
+
} | null;
|
|
13513
|
+
DOT: {
|
|
13514
13514
|
limit_order_fee_hundredth_pips: number;
|
|
13515
13515
|
range_order_fee_hundredth_pips: number;
|
|
13516
13516
|
range_order_total_fees_earned: {
|
|
@@ -13533,8 +13533,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
13533
13533
|
chain: "Ethereum";
|
|
13534
13534
|
asset: "USDC";
|
|
13535
13535
|
};
|
|
13536
|
-
} | null
|
|
13537
|
-
};
|
|
13536
|
+
} | null;
|
|
13537
|
+
} | undefined;
|
|
13538
13538
|
};
|
|
13539
13539
|
}>;
|
|
13540
13540
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14337,11 +14337,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14337
14337
|
Polkadot: {
|
|
14338
14338
|
DOT: string | number;
|
|
14339
14339
|
};
|
|
14340
|
-
Assethub
|
|
14341
|
-
USDC
|
|
14342
|
-
USDT
|
|
14343
|
-
DOT
|
|
14344
|
-
};
|
|
14340
|
+
Assethub?: {
|
|
14341
|
+
USDC: string | number;
|
|
14342
|
+
USDT: string | number;
|
|
14343
|
+
DOT: string | number;
|
|
14344
|
+
} | undefined;
|
|
14345
14345
|
};
|
|
14346
14346
|
ingress_fees: {
|
|
14347
14347
|
Bitcoin: {
|
|
@@ -14364,11 +14364,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14364
14364
|
Polkadot: {
|
|
14365
14365
|
DOT: string | number | null;
|
|
14366
14366
|
};
|
|
14367
|
-
Assethub
|
|
14368
|
-
USDC
|
|
14369
|
-
USDT
|
|
14370
|
-
DOT
|
|
14371
|
-
};
|
|
14367
|
+
Assethub?: {
|
|
14368
|
+
USDC: string | number | null;
|
|
14369
|
+
USDT: string | number | null;
|
|
14370
|
+
DOT: string | number | null;
|
|
14371
|
+
} | undefined;
|
|
14372
14372
|
};
|
|
14373
14373
|
egress_fees: {
|
|
14374
14374
|
Bitcoin: {
|
|
@@ -14391,11 +14391,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14391
14391
|
Polkadot: {
|
|
14392
14392
|
DOT: string | number | null;
|
|
14393
14393
|
};
|
|
14394
|
-
Assethub
|
|
14395
|
-
USDC
|
|
14396
|
-
USDT
|
|
14397
|
-
DOT
|
|
14398
|
-
};
|
|
14394
|
+
Assethub?: {
|
|
14395
|
+
USDC: string | number | null;
|
|
14396
|
+
USDT: string | number | null;
|
|
14397
|
+
DOT: string | number | null;
|
|
14398
|
+
} | undefined;
|
|
14399
14399
|
};
|
|
14400
14400
|
witness_safety_margins: {
|
|
14401
14401
|
Bitcoin: number | null;
|
|
@@ -14426,11 +14426,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14426
14426
|
Polkadot: {
|
|
14427
14427
|
DOT: string | number;
|
|
14428
14428
|
};
|
|
14429
|
-
Assethub
|
|
14430
|
-
USDC
|
|
14431
|
-
USDT
|
|
14432
|
-
DOT
|
|
14433
|
-
};
|
|
14429
|
+
Assethub?: {
|
|
14430
|
+
USDC: string | number;
|
|
14431
|
+
USDT: string | number;
|
|
14432
|
+
DOT: string | number;
|
|
14433
|
+
} | undefined;
|
|
14434
14434
|
};
|
|
14435
14435
|
channel_opening_fees: {
|
|
14436
14436
|
Bitcoin: string | number;
|
|
@@ -14440,14 +14440,14 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14440
14440
|
Polkadot: string | number;
|
|
14441
14441
|
Assethub?: string | number | undefined;
|
|
14442
14442
|
};
|
|
14443
|
-
max_swap_retry_duration_blocks
|
|
14443
|
+
max_swap_retry_duration_blocks: {
|
|
14444
14444
|
Bitcoin: number;
|
|
14445
14445
|
Ethereum: number;
|
|
14446
14446
|
Arbitrum: number;
|
|
14447
14447
|
Solana: number;
|
|
14448
14448
|
Polkadot: number;
|
|
14449
14449
|
Assethub?: number | undefined;
|
|
14450
|
-
}
|
|
14450
|
+
};
|
|
14451
14451
|
};
|
|
14452
14452
|
swapping: {
|
|
14453
14453
|
maximum_swap_amounts: {
|
|
@@ -14471,11 +14471,11 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14471
14471
|
Polkadot: {
|
|
14472
14472
|
DOT: string | number | null;
|
|
14473
14473
|
};
|
|
14474
|
-
Assethub
|
|
14475
|
-
USDC
|
|
14476
|
-
USDT
|
|
14477
|
-
DOT
|
|
14478
|
-
};
|
|
14474
|
+
Assethub?: {
|
|
14475
|
+
USDC: string | number | null;
|
|
14476
|
+
USDT: string | number | null;
|
|
14477
|
+
DOT: string | number | null;
|
|
14478
|
+
} | undefined;
|
|
14479
14479
|
};
|
|
14480
14480
|
network_fee_hundredth_pips: number;
|
|
14481
14481
|
};
|
|
@@ -14711,8 +14711,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14711
14711
|
};
|
|
14712
14712
|
} | null;
|
|
14713
14713
|
};
|
|
14714
|
-
Assethub
|
|
14715
|
-
USDC
|
|
14714
|
+
Assethub?: {
|
|
14715
|
+
USDC: {
|
|
14716
14716
|
limit_order_fee_hundredth_pips: number;
|
|
14717
14717
|
range_order_fee_hundredth_pips: number;
|
|
14718
14718
|
range_order_total_fees_earned: {
|
|
@@ -14735,8 +14735,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14735
14735
|
chain: "Ethereum";
|
|
14736
14736
|
asset: "USDC";
|
|
14737
14737
|
};
|
|
14738
|
-
} | null
|
|
14739
|
-
USDT
|
|
14738
|
+
} | null;
|
|
14739
|
+
USDT: {
|
|
14740
14740
|
limit_order_fee_hundredth_pips: number;
|
|
14741
14741
|
range_order_fee_hundredth_pips: number;
|
|
14742
14742
|
range_order_total_fees_earned: {
|
|
@@ -14759,8 +14759,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14759
14759
|
chain: "Ethereum";
|
|
14760
14760
|
asset: "USDC";
|
|
14761
14761
|
};
|
|
14762
|
-
} | null
|
|
14763
|
-
DOT
|
|
14762
|
+
} | null;
|
|
14763
|
+
DOT: {
|
|
14764
14764
|
limit_order_fee_hundredth_pips: number;
|
|
14765
14765
|
range_order_fee_hundredth_pips: number;
|
|
14766
14766
|
range_order_total_fees_earned: {
|
|
@@ -14783,8 +14783,8 @@ declare const cfEnvironment: z.ZodObject<{
|
|
|
14783
14783
|
chain: "Ethereum";
|
|
14784
14784
|
asset: "USDC";
|
|
14785
14785
|
};
|
|
14786
|
-
} | null
|
|
14787
|
-
};
|
|
14786
|
+
} | null;
|
|
14787
|
+
} | undefined;
|
|
14788
14788
|
};
|
|
14789
14789
|
};
|
|
14790
14790
|
}>;
|
|
@@ -15199,17 +15199,7 @@ declare const requestSwapParameterEncoding: z.ZodDiscriminatedUnion<"chain", [z.
|
|
|
15199
15199
|
declare const unregistered: z.ZodObject<{
|
|
15200
15200
|
role: z.ZodLiteral<"unregistered">;
|
|
15201
15201
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15202
|
-
|
|
15203
|
-
role: "unregistered";
|
|
15204
|
-
flip_balance: bigint;
|
|
15205
|
-
}, {
|
|
15206
|
-
role: "unregistered";
|
|
15207
|
-
flip_balance: string | number;
|
|
15208
|
-
}>;
|
|
15209
|
-
declare const broker: z.ZodObject<{
|
|
15210
|
-
role: z.ZodLiteral<"broker">;
|
|
15211
|
-
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15212
|
-
earned_fees: z.ZodObject<{
|
|
15202
|
+
asset_balances: z.ZodObject<{
|
|
15213
15203
|
Bitcoin: z.ZodObject<{
|
|
15214
15204
|
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15215
15205
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15260,19 +15250,19 @@ declare const broker: z.ZodObject<{
|
|
|
15260
15250
|
USDC: string | number;
|
|
15261
15251
|
SOL: string | number;
|
|
15262
15252
|
}>;
|
|
15263
|
-
Assethub: z.ZodObject<{
|
|
15264
|
-
DOT: z.
|
|
15265
|
-
USDC: z.
|
|
15266
|
-
USDT: z.
|
|
15253
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
15254
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15255
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15256
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15267
15257
|
}, "strip", z.ZodTypeAny, {
|
|
15268
15258
|
USDC: bigint;
|
|
15269
15259
|
USDT: bigint;
|
|
15270
15260
|
DOT: bigint;
|
|
15271
15261
|
}, {
|
|
15272
|
-
USDC
|
|
15273
|
-
USDT
|
|
15274
|
-
DOT
|
|
15275
|
-
}
|
|
15262
|
+
USDC: string | number;
|
|
15263
|
+
USDT: string | number;
|
|
15264
|
+
DOT: string | number;
|
|
15265
|
+
}>>;
|
|
15276
15266
|
}, "strip", z.ZodTypeAny, {
|
|
15277
15267
|
Bitcoin: {
|
|
15278
15268
|
BTC: bigint;
|
|
@@ -15320,17 +15310,16 @@ declare const broker: z.ZodObject<{
|
|
|
15320
15310
|
Polkadot: {
|
|
15321
15311
|
DOT: string | number;
|
|
15322
15312
|
};
|
|
15323
|
-
Assethub
|
|
15324
|
-
USDC
|
|
15325
|
-
USDT
|
|
15326
|
-
DOT
|
|
15327
|
-
};
|
|
15313
|
+
Assethub?: {
|
|
15314
|
+
USDC: string | number;
|
|
15315
|
+
USDT: string | number;
|
|
15316
|
+
DOT: string | number;
|
|
15317
|
+
} | undefined;
|
|
15328
15318
|
}>;
|
|
15329
|
-
btc_vault_deposit_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15330
15319
|
}, "strip", z.ZodTypeAny, {
|
|
15331
|
-
role: "
|
|
15320
|
+
role: "unregistered";
|
|
15332
15321
|
flip_balance: bigint;
|
|
15333
|
-
|
|
15322
|
+
asset_balances: {
|
|
15334
15323
|
Bitcoin: {
|
|
15335
15324
|
BTC: bigint;
|
|
15336
15325
|
};
|
|
@@ -15357,11 +15346,10 @@ declare const broker: z.ZodObject<{
|
|
|
15357
15346
|
DOT: bigint;
|
|
15358
15347
|
};
|
|
15359
15348
|
};
|
|
15360
|
-
btc_vault_deposit_address?: string | null | undefined;
|
|
15361
15349
|
}, {
|
|
15362
|
-
role: "
|
|
15350
|
+
role: "unregistered";
|
|
15363
15351
|
flip_balance: string | number;
|
|
15364
|
-
|
|
15352
|
+
asset_balances: {
|
|
15365
15353
|
Bitcoin: {
|
|
15366
15354
|
BTC: string | number;
|
|
15367
15355
|
};
|
|
@@ -15382,17 +15370,18 @@ declare const broker: z.ZodObject<{
|
|
|
15382
15370
|
Polkadot: {
|
|
15383
15371
|
DOT: string | number;
|
|
15384
15372
|
};
|
|
15385
|
-
Assethub
|
|
15386
|
-
USDC
|
|
15387
|
-
USDT
|
|
15388
|
-
DOT
|
|
15389
|
-
};
|
|
15373
|
+
Assethub?: {
|
|
15374
|
+
USDC: string | number;
|
|
15375
|
+
USDT: string | number;
|
|
15376
|
+
DOT: string | number;
|
|
15377
|
+
} | undefined;
|
|
15390
15378
|
};
|
|
15391
|
-
btc_vault_deposit_address?: string | null | undefined;
|
|
15392
15379
|
}>;
|
|
15393
|
-
declare const
|
|
15394
|
-
role: z.ZodLiteral<"
|
|
15395
|
-
|
|
15380
|
+
declare const broker: z.ZodObject<{
|
|
15381
|
+
role: z.ZodLiteral<"broker">;
|
|
15382
|
+
bond: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15383
|
+
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15384
|
+
earned_fees: z.ZodObject<{
|
|
15396
15385
|
Bitcoin: z.ZodObject<{
|
|
15397
15386
|
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15398
15387
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15443,19 +15432,19 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
15443
15432
|
USDC: string | number;
|
|
15444
15433
|
SOL: string | number;
|
|
15445
15434
|
}>;
|
|
15446
|
-
Assethub: z.ZodObject<{
|
|
15447
|
-
DOT: z.
|
|
15448
|
-
USDC: z.
|
|
15449
|
-
USDT: z.
|
|
15435
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
15436
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15437
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15438
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15450
15439
|
}, "strip", z.ZodTypeAny, {
|
|
15451
15440
|
USDC: bigint;
|
|
15452
15441
|
USDT: bigint;
|
|
15453
15442
|
DOT: bigint;
|
|
15454
15443
|
}, {
|
|
15455
|
-
USDC
|
|
15456
|
-
USDT
|
|
15457
|
-
DOT
|
|
15458
|
-
}
|
|
15444
|
+
USDC: string | number;
|
|
15445
|
+
USDT: string | number;
|
|
15446
|
+
DOT: string | number;
|
|
15447
|
+
}>>;
|
|
15459
15448
|
}, "strip", z.ZodTypeAny, {
|
|
15460
15449
|
Bitcoin: {
|
|
15461
15450
|
BTC: bigint;
|
|
@@ -15503,36 +15492,104 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
15503
15492
|
Polkadot: {
|
|
15504
15493
|
DOT: string | number;
|
|
15505
15494
|
};
|
|
15506
|
-
Assethub
|
|
15507
|
-
USDC
|
|
15508
|
-
USDT
|
|
15509
|
-
DOT
|
|
15510
|
-
};
|
|
15495
|
+
Assethub?: {
|
|
15496
|
+
USDC: string | number;
|
|
15497
|
+
USDT: string | number;
|
|
15498
|
+
DOT: string | number;
|
|
15499
|
+
} | undefined;
|
|
15511
15500
|
}>;
|
|
15512
|
-
|
|
15513
|
-
|
|
15514
|
-
|
|
15515
|
-
|
|
15516
|
-
|
|
15517
|
-
Solana: z.ZodNullable<z.ZodString>;
|
|
15518
|
-
Assethub: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
15501
|
+
btc_vault_deposit_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15502
|
+
affiliates: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15503
|
+
account_id: z.ZodString;
|
|
15504
|
+
short_id: z.ZodNumber;
|
|
15505
|
+
withdrawal_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
15519
15506
|
}, "strip", z.ZodTypeAny, {
|
|
15520
|
-
|
|
15521
|
-
|
|
15522
|
-
|
|
15523
|
-
Solana: string | null;
|
|
15524
|
-
Polkadot: string | null;
|
|
15525
|
-
Assethub: string | null;
|
|
15507
|
+
account_id: string;
|
|
15508
|
+
short_id: number;
|
|
15509
|
+
withdrawal_address: `0x${string}`;
|
|
15526
15510
|
}, {
|
|
15527
|
-
|
|
15528
|
-
|
|
15529
|
-
|
|
15530
|
-
|
|
15531
|
-
|
|
15532
|
-
|
|
15533
|
-
|
|
15534
|
-
|
|
15535
|
-
earned_fees:
|
|
15511
|
+
account_id: string;
|
|
15512
|
+
short_id: number;
|
|
15513
|
+
withdrawal_address: string;
|
|
15514
|
+
}>, "many">>>;
|
|
15515
|
+
}, "strip", z.ZodTypeAny, {
|
|
15516
|
+
role: "broker";
|
|
15517
|
+
flip_balance: bigint;
|
|
15518
|
+
bond: bigint;
|
|
15519
|
+
earned_fees: {
|
|
15520
|
+
Bitcoin: {
|
|
15521
|
+
BTC: bigint;
|
|
15522
|
+
};
|
|
15523
|
+
Ethereum: {
|
|
15524
|
+
ETH: bigint;
|
|
15525
|
+
USDC: bigint;
|
|
15526
|
+
FLIP: bigint;
|
|
15527
|
+
USDT: bigint;
|
|
15528
|
+
};
|
|
15529
|
+
Arbitrum: {
|
|
15530
|
+
ETH: bigint;
|
|
15531
|
+
USDC: bigint;
|
|
15532
|
+
};
|
|
15533
|
+
Solana: {
|
|
15534
|
+
USDC: bigint;
|
|
15535
|
+
SOL: bigint;
|
|
15536
|
+
};
|
|
15537
|
+
Polkadot: {
|
|
15538
|
+
DOT: bigint;
|
|
15539
|
+
};
|
|
15540
|
+
Assethub: {
|
|
15541
|
+
USDC: bigint;
|
|
15542
|
+
USDT: bigint;
|
|
15543
|
+
DOT: bigint;
|
|
15544
|
+
};
|
|
15545
|
+
};
|
|
15546
|
+
affiliates: {
|
|
15547
|
+
account_id: string;
|
|
15548
|
+
short_id: number;
|
|
15549
|
+
withdrawal_address: `0x${string}`;
|
|
15550
|
+
}[];
|
|
15551
|
+
btc_vault_deposit_address?: string | null | undefined;
|
|
15552
|
+
}, {
|
|
15553
|
+
role: "broker";
|
|
15554
|
+
flip_balance: string | number;
|
|
15555
|
+
bond: string | number;
|
|
15556
|
+
earned_fees: {
|
|
15557
|
+
Bitcoin: {
|
|
15558
|
+
BTC: string | number;
|
|
15559
|
+
};
|
|
15560
|
+
Ethereum: {
|
|
15561
|
+
ETH: string | number;
|
|
15562
|
+
USDC: string | number;
|
|
15563
|
+
FLIP: string | number;
|
|
15564
|
+
USDT: string | number;
|
|
15565
|
+
};
|
|
15566
|
+
Arbitrum: {
|
|
15567
|
+
ETH: string | number;
|
|
15568
|
+
USDC: string | number;
|
|
15569
|
+
};
|
|
15570
|
+
Solana: {
|
|
15571
|
+
USDC: string | number;
|
|
15572
|
+
SOL: string | number;
|
|
15573
|
+
};
|
|
15574
|
+
Polkadot: {
|
|
15575
|
+
DOT: string | number;
|
|
15576
|
+
};
|
|
15577
|
+
Assethub?: {
|
|
15578
|
+
USDC: string | number;
|
|
15579
|
+
USDT: string | number;
|
|
15580
|
+
DOT: string | number;
|
|
15581
|
+
} | undefined;
|
|
15582
|
+
};
|
|
15583
|
+
btc_vault_deposit_address?: string | null | undefined;
|
|
15584
|
+
affiliates?: {
|
|
15585
|
+
account_id: string;
|
|
15586
|
+
short_id: number;
|
|
15587
|
+
withdrawal_address: string;
|
|
15588
|
+
}[] | undefined;
|
|
15589
|
+
}>;
|
|
15590
|
+
declare const liquidityProvider: z.ZodObject<{
|
|
15591
|
+
role: z.ZodLiteral<"liquidity_provider">;
|
|
15592
|
+
balances: z.ZodObject<{
|
|
15536
15593
|
Bitcoin: z.ZodObject<{
|
|
15537
15594
|
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15538
15595
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15583,19 +15640,19 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
15583
15640
|
USDC: string | number;
|
|
15584
15641
|
SOL: string | number;
|
|
15585
15642
|
}>;
|
|
15586
|
-
Assethub: z.ZodObject<{
|
|
15587
|
-
DOT: z.
|
|
15588
|
-
USDC: z.
|
|
15589
|
-
USDT: z.
|
|
15643
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
15644
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15645
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15646
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15590
15647
|
}, "strip", z.ZodTypeAny, {
|
|
15591
15648
|
USDC: bigint;
|
|
15592
15649
|
USDT: bigint;
|
|
15593
15650
|
DOT: bigint;
|
|
15594
15651
|
}, {
|
|
15595
|
-
USDC
|
|
15596
|
-
USDT
|
|
15597
|
-
DOT
|
|
15598
|
-
}
|
|
15652
|
+
USDC: string | number;
|
|
15653
|
+
USDT: string | number;
|
|
15654
|
+
DOT: string | number;
|
|
15655
|
+
}>>;
|
|
15599
15656
|
}, "strip", z.ZodTypeAny, {
|
|
15600
15657
|
Bitcoin: {
|
|
15601
15658
|
BTC: bigint;
|
|
@@ -15643,21 +15700,161 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
15643
15700
|
Polkadot: {
|
|
15644
15701
|
DOT: string | number;
|
|
15645
15702
|
};
|
|
15646
|
-
Assethub
|
|
15647
|
-
USDC
|
|
15648
|
-
USDT
|
|
15649
|
-
DOT
|
|
15650
|
-
};
|
|
15703
|
+
Assethub?: {
|
|
15704
|
+
USDC: string | number;
|
|
15705
|
+
USDT: string | number;
|
|
15706
|
+
DOT: string | number;
|
|
15707
|
+
} | undefined;
|
|
15651
15708
|
}>;
|
|
15652
|
-
|
|
15653
|
-
Bitcoin: z.
|
|
15654
|
-
|
|
15655
|
-
|
|
15656
|
-
|
|
15657
|
-
|
|
15658
|
-
|
|
15659
|
-
|
|
15660
|
-
|
|
15709
|
+
refund_addresses: z.ZodObject<{
|
|
15710
|
+
Bitcoin: z.ZodNullable<z.ZodString>;
|
|
15711
|
+
Ethereum: z.ZodNullable<z.ZodString>;
|
|
15712
|
+
Polkadot: z.ZodNullable<z.ZodString>;
|
|
15713
|
+
Arbitrum: z.ZodNullable<z.ZodString>;
|
|
15714
|
+
Solana: z.ZodNullable<z.ZodString>;
|
|
15715
|
+
Assethub: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
15716
|
+
}, "strip", z.ZodTypeAny, {
|
|
15717
|
+
Bitcoin: string | null;
|
|
15718
|
+
Ethereum: string | null;
|
|
15719
|
+
Arbitrum: string | null;
|
|
15720
|
+
Solana: string | null;
|
|
15721
|
+
Polkadot: string | null;
|
|
15722
|
+
Assethub: string | null;
|
|
15723
|
+
}, {
|
|
15724
|
+
Bitcoin: string | null;
|
|
15725
|
+
Ethereum: string | null;
|
|
15726
|
+
Arbitrum: string | null;
|
|
15727
|
+
Solana: string | null;
|
|
15728
|
+
Polkadot: string | null;
|
|
15729
|
+
Assethub?: string | null | undefined;
|
|
15730
|
+
}>;
|
|
15731
|
+
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15732
|
+
earned_fees: z.ZodObject<{
|
|
15733
|
+
Bitcoin: z.ZodObject<{
|
|
15734
|
+
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15735
|
+
}, "strip", z.ZodTypeAny, {
|
|
15736
|
+
BTC: bigint;
|
|
15737
|
+
}, {
|
|
15738
|
+
BTC: string | number;
|
|
15739
|
+
}>;
|
|
15740
|
+
Ethereum: z.ZodObject<{
|
|
15741
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15742
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15743
|
+
FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15744
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15745
|
+
}, "strip", z.ZodTypeAny, {
|
|
15746
|
+
ETH: bigint;
|
|
15747
|
+
USDC: bigint;
|
|
15748
|
+
FLIP: bigint;
|
|
15749
|
+
USDT: bigint;
|
|
15750
|
+
}, {
|
|
15751
|
+
ETH: string | number;
|
|
15752
|
+
USDC: string | number;
|
|
15753
|
+
FLIP: string | number;
|
|
15754
|
+
USDT: string | number;
|
|
15755
|
+
}>;
|
|
15756
|
+
Polkadot: z.ZodObject<{
|
|
15757
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15758
|
+
}, "strip", z.ZodTypeAny, {
|
|
15759
|
+
DOT: bigint;
|
|
15760
|
+
}, {
|
|
15761
|
+
DOT: string | number;
|
|
15762
|
+
}>;
|
|
15763
|
+
Arbitrum: z.ZodObject<{
|
|
15764
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15765
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15766
|
+
}, "strip", z.ZodTypeAny, {
|
|
15767
|
+
ETH: bigint;
|
|
15768
|
+
USDC: bigint;
|
|
15769
|
+
}, {
|
|
15770
|
+
ETH: string | number;
|
|
15771
|
+
USDC: string | number;
|
|
15772
|
+
}>;
|
|
15773
|
+
Solana: z.ZodObject<{
|
|
15774
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15775
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15776
|
+
}, "strip", z.ZodTypeAny, {
|
|
15777
|
+
USDC: bigint;
|
|
15778
|
+
SOL: bigint;
|
|
15779
|
+
}, {
|
|
15780
|
+
USDC: string | number;
|
|
15781
|
+
SOL: string | number;
|
|
15782
|
+
}>;
|
|
15783
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
15784
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15785
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15786
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
15787
|
+
}, "strip", z.ZodTypeAny, {
|
|
15788
|
+
USDC: bigint;
|
|
15789
|
+
USDT: bigint;
|
|
15790
|
+
DOT: bigint;
|
|
15791
|
+
}, {
|
|
15792
|
+
USDC: string | number;
|
|
15793
|
+
USDT: string | number;
|
|
15794
|
+
DOT: string | number;
|
|
15795
|
+
}>>;
|
|
15796
|
+
}, "strip", z.ZodTypeAny, {
|
|
15797
|
+
Bitcoin: {
|
|
15798
|
+
BTC: bigint;
|
|
15799
|
+
};
|
|
15800
|
+
Ethereum: {
|
|
15801
|
+
ETH: bigint;
|
|
15802
|
+
USDC: bigint;
|
|
15803
|
+
FLIP: bigint;
|
|
15804
|
+
USDT: bigint;
|
|
15805
|
+
};
|
|
15806
|
+
Arbitrum: {
|
|
15807
|
+
ETH: bigint;
|
|
15808
|
+
USDC: bigint;
|
|
15809
|
+
};
|
|
15810
|
+
Solana: {
|
|
15811
|
+
USDC: bigint;
|
|
15812
|
+
SOL: bigint;
|
|
15813
|
+
};
|
|
15814
|
+
Polkadot: {
|
|
15815
|
+
DOT: bigint;
|
|
15816
|
+
};
|
|
15817
|
+
Assethub: {
|
|
15818
|
+
USDC: bigint;
|
|
15819
|
+
USDT: bigint;
|
|
15820
|
+
DOT: bigint;
|
|
15821
|
+
};
|
|
15822
|
+
}, {
|
|
15823
|
+
Bitcoin: {
|
|
15824
|
+
BTC: string | number;
|
|
15825
|
+
};
|
|
15826
|
+
Ethereum: {
|
|
15827
|
+
ETH: string | number;
|
|
15828
|
+
USDC: string | number;
|
|
15829
|
+
FLIP: string | number;
|
|
15830
|
+
USDT: string | number;
|
|
15831
|
+
};
|
|
15832
|
+
Arbitrum: {
|
|
15833
|
+
ETH: string | number;
|
|
15834
|
+
USDC: string | number;
|
|
15835
|
+
};
|
|
15836
|
+
Solana: {
|
|
15837
|
+
USDC: string | number;
|
|
15838
|
+
SOL: string | number;
|
|
15839
|
+
};
|
|
15840
|
+
Polkadot: {
|
|
15841
|
+
DOT: string | number;
|
|
15842
|
+
};
|
|
15843
|
+
Assethub?: {
|
|
15844
|
+
USDC: string | number;
|
|
15845
|
+
USDT: string | number;
|
|
15846
|
+
DOT: string | number;
|
|
15847
|
+
} | undefined;
|
|
15848
|
+
}>;
|
|
15849
|
+
boost_balances: z.ZodObject<{
|
|
15850
|
+
Bitcoin: z.ZodObject<{
|
|
15851
|
+
BTC: z.ZodArray<z.ZodObject<{
|
|
15852
|
+
fee_tier: z.ZodNumber;
|
|
15853
|
+
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
15854
|
+
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
15855
|
+
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
15856
|
+
is_withdrawing: z.ZodBoolean;
|
|
15857
|
+
}, "strip", z.ZodTypeAny, {
|
|
15661
15858
|
fee_tier: number;
|
|
15662
15859
|
total_balance: bigint;
|
|
15663
15860
|
available_balance: bigint;
|
|
@@ -16000,8 +16197,8 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
16000
16197
|
is_withdrawing: boolean;
|
|
16001
16198
|
}[];
|
|
16002
16199
|
}>;
|
|
16003
|
-
Assethub: z.ZodObject<{
|
|
16004
|
-
DOT: z.
|
|
16200
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
16201
|
+
DOT: z.ZodArray<z.ZodObject<{
|
|
16005
16202
|
fee_tier: z.ZodNumber;
|
|
16006
16203
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
16007
16204
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -16019,8 +16216,8 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
16019
16216
|
available_balance: string;
|
|
16020
16217
|
in_use_balance: string;
|
|
16021
16218
|
is_withdrawing: boolean;
|
|
16022
|
-
}>, "many"
|
|
16023
|
-
USDC: z.
|
|
16219
|
+
}>, "many">;
|
|
16220
|
+
USDC: z.ZodArray<z.ZodObject<{
|
|
16024
16221
|
fee_tier: z.ZodNumber;
|
|
16025
16222
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
16026
16223
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -16038,8 +16235,8 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
16038
16235
|
available_balance: string;
|
|
16039
16236
|
in_use_balance: string;
|
|
16040
16237
|
is_withdrawing: boolean;
|
|
16041
|
-
}>, "many"
|
|
16042
|
-
USDT: z.
|
|
16238
|
+
}>, "many">;
|
|
16239
|
+
USDT: z.ZodArray<z.ZodObject<{
|
|
16043
16240
|
fee_tier: z.ZodNumber;
|
|
16044
16241
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
16045
16242
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -16057,7 +16254,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
16057
16254
|
available_balance: string;
|
|
16058
16255
|
in_use_balance: string;
|
|
16059
16256
|
is_withdrawing: boolean;
|
|
16060
|
-
}>, "many"
|
|
16257
|
+
}>, "many">;
|
|
16061
16258
|
}, "strip", z.ZodTypeAny, {
|
|
16062
16259
|
USDC: {
|
|
16063
16260
|
fee_tier: number;
|
|
@@ -16081,28 +16278,28 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
16081
16278
|
is_withdrawing: boolean;
|
|
16082
16279
|
}[];
|
|
16083
16280
|
}, {
|
|
16084
|
-
USDC
|
|
16281
|
+
USDC: {
|
|
16085
16282
|
fee_tier: number;
|
|
16086
16283
|
total_balance: string;
|
|
16087
16284
|
available_balance: string;
|
|
16088
16285
|
in_use_balance: string;
|
|
16089
16286
|
is_withdrawing: boolean;
|
|
16090
|
-
}[]
|
|
16091
|
-
USDT
|
|
16287
|
+
}[];
|
|
16288
|
+
USDT: {
|
|
16092
16289
|
fee_tier: number;
|
|
16093
16290
|
total_balance: string;
|
|
16094
16291
|
available_balance: string;
|
|
16095
16292
|
in_use_balance: string;
|
|
16096
16293
|
is_withdrawing: boolean;
|
|
16097
|
-
}[]
|
|
16098
|
-
DOT
|
|
16294
|
+
}[];
|
|
16295
|
+
DOT: {
|
|
16099
16296
|
fee_tier: number;
|
|
16100
16297
|
total_balance: string;
|
|
16101
16298
|
available_balance: string;
|
|
16102
16299
|
in_use_balance: string;
|
|
16103
16300
|
is_withdrawing: boolean;
|
|
16104
|
-
}[]
|
|
16105
|
-
}
|
|
16301
|
+
}[];
|
|
16302
|
+
}>>;
|
|
16106
16303
|
}, "strip", z.ZodTypeAny, {
|
|
16107
16304
|
Bitcoin: {
|
|
16108
16305
|
BTC: {
|
|
@@ -16288,29 +16485,29 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
16288
16485
|
is_withdrawing: boolean;
|
|
16289
16486
|
}[];
|
|
16290
16487
|
};
|
|
16291
|
-
Assethub
|
|
16292
|
-
USDC
|
|
16488
|
+
Assethub?: {
|
|
16489
|
+
USDC: {
|
|
16293
16490
|
fee_tier: number;
|
|
16294
16491
|
total_balance: string;
|
|
16295
16492
|
available_balance: string;
|
|
16296
16493
|
in_use_balance: string;
|
|
16297
16494
|
is_withdrawing: boolean;
|
|
16298
|
-
}[]
|
|
16299
|
-
USDT
|
|
16495
|
+
}[];
|
|
16496
|
+
USDT: {
|
|
16300
16497
|
fee_tier: number;
|
|
16301
16498
|
total_balance: string;
|
|
16302
16499
|
available_balance: string;
|
|
16303
16500
|
in_use_balance: string;
|
|
16304
16501
|
is_withdrawing: boolean;
|
|
16305
|
-
}[]
|
|
16306
|
-
DOT
|
|
16502
|
+
}[];
|
|
16503
|
+
DOT: {
|
|
16307
16504
|
fee_tier: number;
|
|
16308
16505
|
total_balance: string;
|
|
16309
16506
|
available_balance: string;
|
|
16310
16507
|
in_use_balance: string;
|
|
16311
16508
|
is_withdrawing: boolean;
|
|
16312
|
-
}[]
|
|
16313
|
-
};
|
|
16509
|
+
}[];
|
|
16510
|
+
} | undefined;
|
|
16314
16511
|
}>;
|
|
16315
16512
|
}, "strip", z.ZodTypeAny, {
|
|
16316
16513
|
role: "liquidity_provider";
|
|
@@ -16506,11 +16703,11 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
16506
16703
|
Polkadot: {
|
|
16507
16704
|
DOT: string | number;
|
|
16508
16705
|
};
|
|
16509
|
-
Assethub
|
|
16510
|
-
USDC
|
|
16511
|
-
USDT
|
|
16512
|
-
DOT
|
|
16513
|
-
};
|
|
16706
|
+
Assethub?: {
|
|
16707
|
+
USDC: string | number;
|
|
16708
|
+
USDT: string | number;
|
|
16709
|
+
DOT: string | number;
|
|
16710
|
+
} | undefined;
|
|
16514
16711
|
};
|
|
16515
16712
|
balances: {
|
|
16516
16713
|
Bitcoin: {
|
|
@@ -16533,11 +16730,11 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
16533
16730
|
Polkadot: {
|
|
16534
16731
|
DOT: string | number;
|
|
16535
16732
|
};
|
|
16536
|
-
Assethub
|
|
16537
|
-
USDC
|
|
16538
|
-
USDT
|
|
16539
|
-
DOT
|
|
16540
|
-
};
|
|
16733
|
+
Assethub?: {
|
|
16734
|
+
USDC: string | number;
|
|
16735
|
+
USDT: string | number;
|
|
16736
|
+
DOT: string | number;
|
|
16737
|
+
} | undefined;
|
|
16541
16738
|
};
|
|
16542
16739
|
refund_addresses: {
|
|
16543
16740
|
Bitcoin: string | null;
|
|
@@ -16628,29 +16825,29 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
16628
16825
|
is_withdrawing: boolean;
|
|
16629
16826
|
}[];
|
|
16630
16827
|
};
|
|
16631
|
-
Assethub
|
|
16632
|
-
USDC
|
|
16828
|
+
Assethub?: {
|
|
16829
|
+
USDC: {
|
|
16633
16830
|
fee_tier: number;
|
|
16634
16831
|
total_balance: string;
|
|
16635
16832
|
available_balance: string;
|
|
16636
16833
|
in_use_balance: string;
|
|
16637
16834
|
is_withdrawing: boolean;
|
|
16638
|
-
}[]
|
|
16639
|
-
USDT
|
|
16835
|
+
}[];
|
|
16836
|
+
USDT: {
|
|
16640
16837
|
fee_tier: number;
|
|
16641
16838
|
total_balance: string;
|
|
16642
16839
|
available_balance: string;
|
|
16643
16840
|
in_use_balance: string;
|
|
16644
16841
|
is_withdrawing: boolean;
|
|
16645
|
-
}[]
|
|
16646
|
-
DOT
|
|
16842
|
+
}[];
|
|
16843
|
+
DOT: {
|
|
16647
16844
|
fee_tier: number;
|
|
16648
16845
|
total_balance: string;
|
|
16649
16846
|
available_balance: string;
|
|
16650
16847
|
in_use_balance: string;
|
|
16651
16848
|
is_withdrawing: boolean;
|
|
16652
|
-
}[]
|
|
16653
|
-
};
|
|
16849
|
+
}[];
|
|
16850
|
+
} | undefined;
|
|
16654
16851
|
};
|
|
16655
16852
|
}>;
|
|
16656
16853
|
declare const validator: z.ZodObject<{
|
|
@@ -16702,14 +16899,186 @@ declare const validator: z.ZodObject<{
|
|
|
16702
16899
|
declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
16703
16900
|
role: z.ZodLiteral<"unregistered">;
|
|
16704
16901
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16902
|
+
asset_balances: z.ZodObject<{
|
|
16903
|
+
Bitcoin: z.ZodObject<{
|
|
16904
|
+
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16905
|
+
}, "strip", z.ZodTypeAny, {
|
|
16906
|
+
BTC: bigint;
|
|
16907
|
+
}, {
|
|
16908
|
+
BTC: string | number;
|
|
16909
|
+
}>;
|
|
16910
|
+
Ethereum: z.ZodObject<{
|
|
16911
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16912
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16913
|
+
FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16914
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16915
|
+
}, "strip", z.ZodTypeAny, {
|
|
16916
|
+
ETH: bigint;
|
|
16917
|
+
USDC: bigint;
|
|
16918
|
+
FLIP: bigint;
|
|
16919
|
+
USDT: bigint;
|
|
16920
|
+
}, {
|
|
16921
|
+
ETH: string | number;
|
|
16922
|
+
USDC: string | number;
|
|
16923
|
+
FLIP: string | number;
|
|
16924
|
+
USDT: string | number;
|
|
16925
|
+
}>;
|
|
16926
|
+
Polkadot: z.ZodObject<{
|
|
16927
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16928
|
+
}, "strip", z.ZodTypeAny, {
|
|
16929
|
+
DOT: bigint;
|
|
16930
|
+
}, {
|
|
16931
|
+
DOT: string | number;
|
|
16932
|
+
}>;
|
|
16933
|
+
Arbitrum: z.ZodObject<{
|
|
16934
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16935
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16936
|
+
}, "strip", z.ZodTypeAny, {
|
|
16937
|
+
ETH: bigint;
|
|
16938
|
+
USDC: bigint;
|
|
16939
|
+
}, {
|
|
16940
|
+
ETH: string | number;
|
|
16941
|
+
USDC: string | number;
|
|
16942
|
+
}>;
|
|
16943
|
+
Solana: z.ZodObject<{
|
|
16944
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16945
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16946
|
+
}, "strip", z.ZodTypeAny, {
|
|
16947
|
+
USDC: bigint;
|
|
16948
|
+
SOL: bigint;
|
|
16949
|
+
}, {
|
|
16950
|
+
USDC: string | number;
|
|
16951
|
+
SOL: string | number;
|
|
16952
|
+
}>;
|
|
16953
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
16954
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16955
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16956
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16957
|
+
}, "strip", z.ZodTypeAny, {
|
|
16958
|
+
USDC: bigint;
|
|
16959
|
+
USDT: bigint;
|
|
16960
|
+
DOT: bigint;
|
|
16961
|
+
}, {
|
|
16962
|
+
USDC: string | number;
|
|
16963
|
+
USDT: string | number;
|
|
16964
|
+
DOT: string | number;
|
|
16965
|
+
}>>;
|
|
16966
|
+
}, "strip", z.ZodTypeAny, {
|
|
16967
|
+
Bitcoin: {
|
|
16968
|
+
BTC: bigint;
|
|
16969
|
+
};
|
|
16970
|
+
Ethereum: {
|
|
16971
|
+
ETH: bigint;
|
|
16972
|
+
USDC: bigint;
|
|
16973
|
+
FLIP: bigint;
|
|
16974
|
+
USDT: bigint;
|
|
16975
|
+
};
|
|
16976
|
+
Arbitrum: {
|
|
16977
|
+
ETH: bigint;
|
|
16978
|
+
USDC: bigint;
|
|
16979
|
+
};
|
|
16980
|
+
Solana: {
|
|
16981
|
+
USDC: bigint;
|
|
16982
|
+
SOL: bigint;
|
|
16983
|
+
};
|
|
16984
|
+
Polkadot: {
|
|
16985
|
+
DOT: bigint;
|
|
16986
|
+
};
|
|
16987
|
+
Assethub: {
|
|
16988
|
+
USDC: bigint;
|
|
16989
|
+
USDT: bigint;
|
|
16990
|
+
DOT: bigint;
|
|
16991
|
+
};
|
|
16992
|
+
}, {
|
|
16993
|
+
Bitcoin: {
|
|
16994
|
+
BTC: string | number;
|
|
16995
|
+
};
|
|
16996
|
+
Ethereum: {
|
|
16997
|
+
ETH: string | number;
|
|
16998
|
+
USDC: string | number;
|
|
16999
|
+
FLIP: string | number;
|
|
17000
|
+
USDT: string | number;
|
|
17001
|
+
};
|
|
17002
|
+
Arbitrum: {
|
|
17003
|
+
ETH: string | number;
|
|
17004
|
+
USDC: string | number;
|
|
17005
|
+
};
|
|
17006
|
+
Solana: {
|
|
17007
|
+
USDC: string | number;
|
|
17008
|
+
SOL: string | number;
|
|
17009
|
+
};
|
|
17010
|
+
Polkadot: {
|
|
17011
|
+
DOT: string | number;
|
|
17012
|
+
};
|
|
17013
|
+
Assethub?: {
|
|
17014
|
+
USDC: string | number;
|
|
17015
|
+
USDT: string | number;
|
|
17016
|
+
DOT: string | number;
|
|
17017
|
+
} | undefined;
|
|
17018
|
+
}>;
|
|
16705
17019
|
}, "strip", z.ZodTypeAny, {
|
|
16706
17020
|
role: "unregistered";
|
|
16707
17021
|
flip_balance: bigint;
|
|
17022
|
+
asset_balances: {
|
|
17023
|
+
Bitcoin: {
|
|
17024
|
+
BTC: bigint;
|
|
17025
|
+
};
|
|
17026
|
+
Ethereum: {
|
|
17027
|
+
ETH: bigint;
|
|
17028
|
+
USDC: bigint;
|
|
17029
|
+
FLIP: bigint;
|
|
17030
|
+
USDT: bigint;
|
|
17031
|
+
};
|
|
17032
|
+
Arbitrum: {
|
|
17033
|
+
ETH: bigint;
|
|
17034
|
+
USDC: bigint;
|
|
17035
|
+
};
|
|
17036
|
+
Solana: {
|
|
17037
|
+
USDC: bigint;
|
|
17038
|
+
SOL: bigint;
|
|
17039
|
+
};
|
|
17040
|
+
Polkadot: {
|
|
17041
|
+
DOT: bigint;
|
|
17042
|
+
};
|
|
17043
|
+
Assethub: {
|
|
17044
|
+
USDC: bigint;
|
|
17045
|
+
USDT: bigint;
|
|
17046
|
+
DOT: bigint;
|
|
17047
|
+
};
|
|
17048
|
+
};
|
|
16708
17049
|
}, {
|
|
16709
17050
|
role: "unregistered";
|
|
16710
17051
|
flip_balance: string | number;
|
|
17052
|
+
asset_balances: {
|
|
17053
|
+
Bitcoin: {
|
|
17054
|
+
BTC: string | number;
|
|
17055
|
+
};
|
|
17056
|
+
Ethereum: {
|
|
17057
|
+
ETH: string | number;
|
|
17058
|
+
USDC: string | number;
|
|
17059
|
+
FLIP: string | number;
|
|
17060
|
+
USDT: string | number;
|
|
17061
|
+
};
|
|
17062
|
+
Arbitrum: {
|
|
17063
|
+
ETH: string | number;
|
|
17064
|
+
USDC: string | number;
|
|
17065
|
+
};
|
|
17066
|
+
Solana: {
|
|
17067
|
+
USDC: string | number;
|
|
17068
|
+
SOL: string | number;
|
|
17069
|
+
};
|
|
17070
|
+
Polkadot: {
|
|
17071
|
+
DOT: string | number;
|
|
17072
|
+
};
|
|
17073
|
+
Assethub?: {
|
|
17074
|
+
USDC: string | number;
|
|
17075
|
+
USDT: string | number;
|
|
17076
|
+
DOT: string | number;
|
|
17077
|
+
} | undefined;
|
|
17078
|
+
};
|
|
16711
17079
|
}>, z.ZodObject<{
|
|
16712
17080
|
role: z.ZodLiteral<"broker">;
|
|
17081
|
+
bond: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16713
17082
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16714
17083
|
earned_fees: z.ZodObject<{
|
|
16715
17084
|
Bitcoin: z.ZodObject<{
|
|
@@ -16762,19 +17131,19 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
16762
17131
|
USDC: string | number;
|
|
16763
17132
|
SOL: string | number;
|
|
16764
17133
|
}>;
|
|
16765
|
-
Assethub: z.ZodObject<{
|
|
16766
|
-
DOT: z.
|
|
16767
|
-
USDC: z.
|
|
16768
|
-
USDT: z.
|
|
17134
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
17135
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17136
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17137
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16769
17138
|
}, "strip", z.ZodTypeAny, {
|
|
16770
17139
|
USDC: bigint;
|
|
16771
17140
|
USDT: bigint;
|
|
16772
17141
|
DOT: bigint;
|
|
16773
17142
|
}, {
|
|
16774
|
-
USDC
|
|
16775
|
-
USDT
|
|
16776
|
-
DOT
|
|
16777
|
-
}
|
|
17143
|
+
USDC: string | number;
|
|
17144
|
+
USDT: string | number;
|
|
17145
|
+
DOT: string | number;
|
|
17146
|
+
}>>;
|
|
16778
17147
|
}, "strip", z.ZodTypeAny, {
|
|
16779
17148
|
Bitcoin: {
|
|
16780
17149
|
BTC: bigint;
|
|
@@ -16822,16 +17191,30 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
16822
17191
|
Polkadot: {
|
|
16823
17192
|
DOT: string | number;
|
|
16824
17193
|
};
|
|
16825
|
-
Assethub
|
|
16826
|
-
USDC
|
|
16827
|
-
USDT
|
|
16828
|
-
DOT
|
|
16829
|
-
};
|
|
17194
|
+
Assethub?: {
|
|
17195
|
+
USDC: string | number;
|
|
17196
|
+
USDT: string | number;
|
|
17197
|
+
DOT: string | number;
|
|
17198
|
+
} | undefined;
|
|
16830
17199
|
}>;
|
|
16831
17200
|
btc_vault_deposit_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17201
|
+
affiliates: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17202
|
+
account_id: z.ZodString;
|
|
17203
|
+
short_id: z.ZodNumber;
|
|
17204
|
+
withdrawal_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
17205
|
+
}, "strip", z.ZodTypeAny, {
|
|
17206
|
+
account_id: string;
|
|
17207
|
+
short_id: number;
|
|
17208
|
+
withdrawal_address: `0x${string}`;
|
|
17209
|
+
}, {
|
|
17210
|
+
account_id: string;
|
|
17211
|
+
short_id: number;
|
|
17212
|
+
withdrawal_address: string;
|
|
17213
|
+
}>, "many">>>;
|
|
16832
17214
|
}, "strip", z.ZodTypeAny, {
|
|
16833
17215
|
role: "broker";
|
|
16834
17216
|
flip_balance: bigint;
|
|
17217
|
+
bond: bigint;
|
|
16835
17218
|
earned_fees: {
|
|
16836
17219
|
Bitcoin: {
|
|
16837
17220
|
BTC: bigint;
|
|
@@ -16859,10 +17242,16 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
16859
17242
|
DOT: bigint;
|
|
16860
17243
|
};
|
|
16861
17244
|
};
|
|
17245
|
+
affiliates: {
|
|
17246
|
+
account_id: string;
|
|
17247
|
+
short_id: number;
|
|
17248
|
+
withdrawal_address: `0x${string}`;
|
|
17249
|
+
}[];
|
|
16862
17250
|
btc_vault_deposit_address?: string | null | undefined;
|
|
16863
17251
|
}, {
|
|
16864
17252
|
role: "broker";
|
|
16865
17253
|
flip_balance: string | number;
|
|
17254
|
+
bond: string | number;
|
|
16866
17255
|
earned_fees: {
|
|
16867
17256
|
Bitcoin: {
|
|
16868
17257
|
BTC: string | number;
|
|
@@ -16884,13 +17273,18 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
16884
17273
|
Polkadot: {
|
|
16885
17274
|
DOT: string | number;
|
|
16886
17275
|
};
|
|
16887
|
-
Assethub
|
|
16888
|
-
USDC
|
|
16889
|
-
USDT
|
|
16890
|
-
DOT
|
|
16891
|
-
};
|
|
17276
|
+
Assethub?: {
|
|
17277
|
+
USDC: string | number;
|
|
17278
|
+
USDT: string | number;
|
|
17279
|
+
DOT: string | number;
|
|
17280
|
+
} | undefined;
|
|
16892
17281
|
};
|
|
16893
17282
|
btc_vault_deposit_address?: string | null | undefined;
|
|
17283
|
+
affiliates?: {
|
|
17284
|
+
account_id: string;
|
|
17285
|
+
short_id: number;
|
|
17286
|
+
withdrawal_address: string;
|
|
17287
|
+
}[] | undefined;
|
|
16894
17288
|
}>, z.ZodObject<{
|
|
16895
17289
|
role: z.ZodLiteral<"liquidity_provider">;
|
|
16896
17290
|
balances: z.ZodObject<{
|
|
@@ -16944,19 +17338,19 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
16944
17338
|
USDC: string | number;
|
|
16945
17339
|
SOL: string | number;
|
|
16946
17340
|
}>;
|
|
16947
|
-
Assethub: z.ZodObject<{
|
|
16948
|
-
DOT: z.
|
|
16949
|
-
USDC: z.
|
|
16950
|
-
USDT: z.
|
|
17341
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
17342
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17343
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17344
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16951
17345
|
}, "strip", z.ZodTypeAny, {
|
|
16952
17346
|
USDC: bigint;
|
|
16953
17347
|
USDT: bigint;
|
|
16954
17348
|
DOT: bigint;
|
|
16955
17349
|
}, {
|
|
16956
|
-
USDC
|
|
16957
|
-
USDT
|
|
16958
|
-
DOT
|
|
16959
|
-
}
|
|
17350
|
+
USDC: string | number;
|
|
17351
|
+
USDT: string | number;
|
|
17352
|
+
DOT: string | number;
|
|
17353
|
+
}>>;
|
|
16960
17354
|
}, "strip", z.ZodTypeAny, {
|
|
16961
17355
|
Bitcoin: {
|
|
16962
17356
|
BTC: bigint;
|
|
@@ -17004,11 +17398,11 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
17004
17398
|
Polkadot: {
|
|
17005
17399
|
DOT: string | number;
|
|
17006
17400
|
};
|
|
17007
|
-
Assethub
|
|
17008
|
-
USDC
|
|
17009
|
-
USDT
|
|
17010
|
-
DOT
|
|
17011
|
-
};
|
|
17401
|
+
Assethub?: {
|
|
17402
|
+
USDC: string | number;
|
|
17403
|
+
USDT: string | number;
|
|
17404
|
+
DOT: string | number;
|
|
17405
|
+
} | undefined;
|
|
17012
17406
|
}>;
|
|
17013
17407
|
refund_addresses: z.ZodObject<{
|
|
17014
17408
|
Bitcoin: z.ZodNullable<z.ZodString>;
|
|
@@ -17084,19 +17478,19 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
17084
17478
|
USDC: string | number;
|
|
17085
17479
|
SOL: string | number;
|
|
17086
17480
|
}>;
|
|
17087
|
-
Assethub: z.ZodObject<{
|
|
17088
|
-
DOT: z.
|
|
17089
|
-
USDC: z.
|
|
17090
|
-
USDT: z.
|
|
17481
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
17482
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17483
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17484
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17091
17485
|
}, "strip", z.ZodTypeAny, {
|
|
17092
17486
|
USDC: bigint;
|
|
17093
17487
|
USDT: bigint;
|
|
17094
17488
|
DOT: bigint;
|
|
17095
17489
|
}, {
|
|
17096
|
-
USDC
|
|
17097
|
-
USDT
|
|
17098
|
-
DOT
|
|
17099
|
-
}
|
|
17490
|
+
USDC: string | number;
|
|
17491
|
+
USDT: string | number;
|
|
17492
|
+
DOT: string | number;
|
|
17493
|
+
}>>;
|
|
17100
17494
|
}, "strip", z.ZodTypeAny, {
|
|
17101
17495
|
Bitcoin: {
|
|
17102
17496
|
BTC: bigint;
|
|
@@ -17144,11 +17538,11 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
17144
17538
|
Polkadot: {
|
|
17145
17539
|
DOT: string | number;
|
|
17146
17540
|
};
|
|
17147
|
-
Assethub
|
|
17148
|
-
USDC
|
|
17149
|
-
USDT
|
|
17150
|
-
DOT
|
|
17151
|
-
};
|
|
17541
|
+
Assethub?: {
|
|
17542
|
+
USDC: string | number;
|
|
17543
|
+
USDT: string | number;
|
|
17544
|
+
DOT: string | number;
|
|
17545
|
+
} | undefined;
|
|
17152
17546
|
}>;
|
|
17153
17547
|
boost_balances: z.ZodObject<{
|
|
17154
17548
|
Bitcoin: z.ZodObject<{
|
|
@@ -17501,8 +17895,8 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
17501
17895
|
is_withdrawing: boolean;
|
|
17502
17896
|
}[];
|
|
17503
17897
|
}>;
|
|
17504
|
-
Assethub: z.ZodObject<{
|
|
17505
|
-
DOT: z.
|
|
17898
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
17899
|
+
DOT: z.ZodArray<z.ZodObject<{
|
|
17506
17900
|
fee_tier: z.ZodNumber;
|
|
17507
17901
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
17508
17902
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -17520,8 +17914,8 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
17520
17914
|
available_balance: string;
|
|
17521
17915
|
in_use_balance: string;
|
|
17522
17916
|
is_withdrawing: boolean;
|
|
17523
|
-
}>, "many"
|
|
17524
|
-
USDC: z.
|
|
17917
|
+
}>, "many">;
|
|
17918
|
+
USDC: z.ZodArray<z.ZodObject<{
|
|
17525
17919
|
fee_tier: z.ZodNumber;
|
|
17526
17920
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
17527
17921
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -17539,8 +17933,8 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
17539
17933
|
available_balance: string;
|
|
17540
17934
|
in_use_balance: string;
|
|
17541
17935
|
is_withdrawing: boolean;
|
|
17542
|
-
}>, "many"
|
|
17543
|
-
USDT: z.
|
|
17936
|
+
}>, "many">;
|
|
17937
|
+
USDT: z.ZodArray<z.ZodObject<{
|
|
17544
17938
|
fee_tier: z.ZodNumber;
|
|
17545
17939
|
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
17546
17940
|
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
@@ -17558,7 +17952,7 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
17558
17952
|
available_balance: string;
|
|
17559
17953
|
in_use_balance: string;
|
|
17560
17954
|
is_withdrawing: boolean;
|
|
17561
|
-
}>, "many"
|
|
17955
|
+
}>, "many">;
|
|
17562
17956
|
}, "strip", z.ZodTypeAny, {
|
|
17563
17957
|
USDC: {
|
|
17564
17958
|
fee_tier: number;
|
|
@@ -17582,28 +17976,28 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
17582
17976
|
is_withdrawing: boolean;
|
|
17583
17977
|
}[];
|
|
17584
17978
|
}, {
|
|
17585
|
-
USDC
|
|
17979
|
+
USDC: {
|
|
17586
17980
|
fee_tier: number;
|
|
17587
17981
|
total_balance: string;
|
|
17588
17982
|
available_balance: string;
|
|
17589
17983
|
in_use_balance: string;
|
|
17590
17984
|
is_withdrawing: boolean;
|
|
17591
|
-
}[]
|
|
17592
|
-
USDT
|
|
17985
|
+
}[];
|
|
17986
|
+
USDT: {
|
|
17593
17987
|
fee_tier: number;
|
|
17594
17988
|
total_balance: string;
|
|
17595
17989
|
available_balance: string;
|
|
17596
17990
|
in_use_balance: string;
|
|
17597
17991
|
is_withdrawing: boolean;
|
|
17598
|
-
}[]
|
|
17599
|
-
DOT
|
|
17992
|
+
}[];
|
|
17993
|
+
DOT: {
|
|
17600
17994
|
fee_tier: number;
|
|
17601
17995
|
total_balance: string;
|
|
17602
17996
|
available_balance: string;
|
|
17603
17997
|
in_use_balance: string;
|
|
17604
17998
|
is_withdrawing: boolean;
|
|
17605
|
-
}[]
|
|
17606
|
-
}
|
|
17999
|
+
}[];
|
|
18000
|
+
}>>;
|
|
17607
18001
|
}, "strip", z.ZodTypeAny, {
|
|
17608
18002
|
Bitcoin: {
|
|
17609
18003
|
BTC: {
|
|
@@ -17789,29 +18183,29 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
17789
18183
|
is_withdrawing: boolean;
|
|
17790
18184
|
}[];
|
|
17791
18185
|
};
|
|
17792
|
-
Assethub
|
|
17793
|
-
USDC
|
|
18186
|
+
Assethub?: {
|
|
18187
|
+
USDC: {
|
|
17794
18188
|
fee_tier: number;
|
|
17795
18189
|
total_balance: string;
|
|
17796
18190
|
available_balance: string;
|
|
17797
18191
|
in_use_balance: string;
|
|
17798
18192
|
is_withdrawing: boolean;
|
|
17799
|
-
}[]
|
|
17800
|
-
USDT
|
|
18193
|
+
}[];
|
|
18194
|
+
USDT: {
|
|
17801
18195
|
fee_tier: number;
|
|
17802
18196
|
total_balance: string;
|
|
17803
18197
|
available_balance: string;
|
|
17804
18198
|
in_use_balance: string;
|
|
17805
18199
|
is_withdrawing: boolean;
|
|
17806
|
-
}[]
|
|
17807
|
-
DOT
|
|
18200
|
+
}[];
|
|
18201
|
+
DOT: {
|
|
17808
18202
|
fee_tier: number;
|
|
17809
18203
|
total_balance: string;
|
|
17810
18204
|
available_balance: string;
|
|
17811
18205
|
in_use_balance: string;
|
|
17812
18206
|
is_withdrawing: boolean;
|
|
17813
|
-
}[]
|
|
17814
|
-
};
|
|
18207
|
+
}[];
|
|
18208
|
+
} | undefined;
|
|
17815
18209
|
}>;
|
|
17816
18210
|
}, "strip", z.ZodTypeAny, {
|
|
17817
18211
|
role: "liquidity_provider";
|
|
@@ -18007,11 +18401,11 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
18007
18401
|
Polkadot: {
|
|
18008
18402
|
DOT: string | number;
|
|
18009
18403
|
};
|
|
18010
|
-
Assethub
|
|
18011
|
-
USDC
|
|
18012
|
-
USDT
|
|
18013
|
-
DOT
|
|
18014
|
-
};
|
|
18404
|
+
Assethub?: {
|
|
18405
|
+
USDC: string | number;
|
|
18406
|
+
USDT: string | number;
|
|
18407
|
+
DOT: string | number;
|
|
18408
|
+
} | undefined;
|
|
18015
18409
|
};
|
|
18016
18410
|
balances: {
|
|
18017
18411
|
Bitcoin: {
|
|
@@ -18034,11 +18428,11 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
18034
18428
|
Polkadot: {
|
|
18035
18429
|
DOT: string | number;
|
|
18036
18430
|
};
|
|
18037
|
-
Assethub
|
|
18038
|
-
USDC
|
|
18039
|
-
USDT
|
|
18040
|
-
DOT
|
|
18041
|
-
};
|
|
18431
|
+
Assethub?: {
|
|
18432
|
+
USDC: string | number;
|
|
18433
|
+
USDT: string | number;
|
|
18434
|
+
DOT: string | number;
|
|
18435
|
+
} | undefined;
|
|
18042
18436
|
};
|
|
18043
18437
|
refund_addresses: {
|
|
18044
18438
|
Bitcoin: string | null;
|
|
@@ -18129,29 +18523,29 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
18129
18523
|
is_withdrawing: boolean;
|
|
18130
18524
|
}[];
|
|
18131
18525
|
};
|
|
18132
|
-
Assethub
|
|
18133
|
-
USDC
|
|
18526
|
+
Assethub?: {
|
|
18527
|
+
USDC: {
|
|
18134
18528
|
fee_tier: number;
|
|
18135
18529
|
total_balance: string;
|
|
18136
18530
|
available_balance: string;
|
|
18137
18531
|
in_use_balance: string;
|
|
18138
18532
|
is_withdrawing: boolean;
|
|
18139
|
-
}[]
|
|
18140
|
-
USDT
|
|
18533
|
+
}[];
|
|
18534
|
+
USDT: {
|
|
18141
18535
|
fee_tier: number;
|
|
18142
18536
|
total_balance: string;
|
|
18143
18537
|
available_balance: string;
|
|
18144
18538
|
in_use_balance: string;
|
|
18145
18539
|
is_withdrawing: boolean;
|
|
18146
|
-
}[]
|
|
18147
|
-
DOT
|
|
18540
|
+
}[];
|
|
18541
|
+
DOT: {
|
|
18148
18542
|
fee_tier: number;
|
|
18149
18543
|
total_balance: string;
|
|
18150
18544
|
available_balance: string;
|
|
18151
18545
|
in_use_balance: string;
|
|
18152
18546
|
is_withdrawing: boolean;
|
|
18153
|
-
}[]
|
|
18154
|
-
};
|
|
18547
|
+
}[];
|
|
18548
|
+
} | undefined;
|
|
18155
18549
|
};
|
|
18156
18550
|
}>, z.ZodObject<{
|
|
18157
18551
|
role: z.ZodLiteral<"validator">;
|
|
@@ -19137,59 +19531,59 @@ declare const cfBoostPoolDetails: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.Zod
|
|
|
19137
19531
|
account_id: z.ZodString;
|
|
19138
19532
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
19139
19533
|
}, "strip", z.ZodTypeAny, {
|
|
19140
|
-
amount: bigint;
|
|
19141
19534
|
account_id: string;
|
|
19535
|
+
amount: bigint;
|
|
19142
19536
|
}, {
|
|
19143
|
-
amount: string;
|
|
19144
19537
|
account_id: string;
|
|
19538
|
+
amount: string;
|
|
19145
19539
|
}>, "many">;
|
|
19146
19540
|
deposits_pending_finalization: z.ZodArray<z.ZodObject<{
|
|
19147
|
-
deposit_id: z.ZodEffects<z.ZodNumber, bigint, number>;
|
|
19541
|
+
deposit_id: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
19148
19542
|
owed_amounts: z.ZodArray<z.ZodObject<{
|
|
19149
19543
|
account_id: z.ZodString;
|
|
19150
19544
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
19151
19545
|
}, "strip", z.ZodTypeAny, {
|
|
19152
|
-
amount: bigint;
|
|
19153
19546
|
account_id: string;
|
|
19547
|
+
amount: bigint;
|
|
19154
19548
|
}, {
|
|
19155
|
-
amount: string;
|
|
19156
19549
|
account_id: string;
|
|
19550
|
+
amount: string;
|
|
19157
19551
|
}>, "many">;
|
|
19158
19552
|
}, "strip", z.ZodTypeAny, {
|
|
19159
19553
|
deposit_id: bigint;
|
|
19160
19554
|
owed_amounts: {
|
|
19161
|
-
amount: bigint;
|
|
19162
19555
|
account_id: string;
|
|
19556
|
+
amount: bigint;
|
|
19163
19557
|
}[];
|
|
19164
19558
|
}, {
|
|
19165
|
-
deposit_id: number;
|
|
19559
|
+
deposit_id: string | number;
|
|
19166
19560
|
owed_amounts: {
|
|
19167
|
-
amount: string;
|
|
19168
19561
|
account_id: string;
|
|
19562
|
+
amount: string;
|
|
19169
19563
|
}[];
|
|
19170
19564
|
}>, "many">;
|
|
19171
19565
|
pending_withdrawals: z.ZodArray<z.ZodObject<{
|
|
19172
19566
|
account_id: z.ZodString;
|
|
19173
|
-
pending_deposits: z.ZodArray<z.
|
|
19567
|
+
pending_deposits: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>, "many">;
|
|
19174
19568
|
}, "strip", z.ZodTypeAny, {
|
|
19175
19569
|
account_id: string;
|
|
19176
19570
|
pending_deposits: bigint[];
|
|
19177
19571
|
}, {
|
|
19178
19572
|
account_id: string;
|
|
19179
|
-
pending_deposits:
|
|
19573
|
+
pending_deposits: (string | number)[];
|
|
19180
19574
|
}>, "many">;
|
|
19181
19575
|
network_fee_deduction_percent: z.ZodOptional<z.ZodNumber>;
|
|
19182
19576
|
}, "strip", z.ZodTypeAny, {
|
|
19183
19577
|
fee_tier: number;
|
|
19184
19578
|
available_amounts: {
|
|
19185
|
-
amount: bigint;
|
|
19186
19579
|
account_id: string;
|
|
19580
|
+
amount: bigint;
|
|
19187
19581
|
}[];
|
|
19188
19582
|
deposits_pending_finalization: {
|
|
19189
19583
|
deposit_id: bigint;
|
|
19190
19584
|
owed_amounts: {
|
|
19191
|
-
amount: bigint;
|
|
19192
19585
|
account_id: string;
|
|
19586
|
+
amount: bigint;
|
|
19193
19587
|
}[];
|
|
19194
19588
|
}[];
|
|
19195
19589
|
pending_withdrawals: {
|
|
@@ -19200,19 +19594,19 @@ declare const cfBoostPoolDetails: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.Zod
|
|
|
19200
19594
|
}, {
|
|
19201
19595
|
fee_tier: number;
|
|
19202
19596
|
available_amounts: {
|
|
19203
|
-
amount: string;
|
|
19204
19597
|
account_id: string;
|
|
19598
|
+
amount: string;
|
|
19205
19599
|
}[];
|
|
19206
19600
|
deposits_pending_finalization: {
|
|
19207
|
-
deposit_id: number;
|
|
19601
|
+
deposit_id: string | number;
|
|
19208
19602
|
owed_amounts: {
|
|
19209
|
-
amount: string;
|
|
19210
19603
|
account_id: string;
|
|
19604
|
+
amount: string;
|
|
19211
19605
|
}[];
|
|
19212
19606
|
}[];
|
|
19213
19607
|
pending_withdrawals: {
|
|
19214
19608
|
account_id: string;
|
|
19215
|
-
pending_deposits:
|
|
19609
|
+
pending_deposits: (string | number)[];
|
|
19216
19610
|
}[];
|
|
19217
19611
|
network_fee_deduction_percent?: number | undefined;
|
|
19218
19612
|
}>>, "many">;
|
|
@@ -19341,22 +19735,22 @@ declare const cfBoostPoolPendingFees: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z
|
|
|
19341
19735
|
account_id: z.ZodString;
|
|
19342
19736
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
19343
19737
|
}, "strip", z.ZodTypeAny, {
|
|
19344
|
-
amount: bigint;
|
|
19345
19738
|
account_id: string;
|
|
19739
|
+
amount: bigint;
|
|
19346
19740
|
}, {
|
|
19347
|
-
amount: string;
|
|
19348
19741
|
account_id: string;
|
|
19742
|
+
amount: string;
|
|
19349
19743
|
}>, "many">;
|
|
19350
19744
|
}, "strip", z.ZodTypeAny, {
|
|
19351
19745
|
fees: {
|
|
19352
|
-
amount: bigint;
|
|
19353
19746
|
account_id: string;
|
|
19747
|
+
amount: bigint;
|
|
19354
19748
|
}[];
|
|
19355
19749
|
deposit_id: bigint;
|
|
19356
19750
|
}, {
|
|
19357
19751
|
fees: {
|
|
19358
|
-
amount: string;
|
|
19359
19752
|
account_id: string;
|
|
19753
|
+
amount: string;
|
|
19360
19754
|
}[];
|
|
19361
19755
|
deposit_id: number;
|
|
19362
19756
|
}>, "many">;
|
|
@@ -19364,8 +19758,8 @@ declare const cfBoostPoolPendingFees: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z
|
|
|
19364
19758
|
fee_tier: number;
|
|
19365
19759
|
pending_fees: {
|
|
19366
19760
|
fees: {
|
|
19367
|
-
amount: bigint;
|
|
19368
19761
|
account_id: string;
|
|
19762
|
+
amount: bigint;
|
|
19369
19763
|
}[];
|
|
19370
19764
|
deposit_id: bigint;
|
|
19371
19765
|
}[];
|
|
@@ -19373,8 +19767,8 @@ declare const cfBoostPoolPendingFees: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z
|
|
|
19373
19767
|
fee_tier: number;
|
|
19374
19768
|
pending_fees: {
|
|
19375
19769
|
fees: {
|
|
19376
|
-
amount: string;
|
|
19377
19770
|
account_id: string;
|
|
19771
|
+
amount: string;
|
|
19378
19772
|
}[];
|
|
19379
19773
|
deposit_id: number;
|
|
19380
19774
|
}[];
|
|
@@ -19430,19 +19824,19 @@ declare const lpTotalBalances: z.ZodObject<{
|
|
|
19430
19824
|
USDC: string | number;
|
|
19431
19825
|
SOL: string | number;
|
|
19432
19826
|
}>;
|
|
19433
|
-
Assethub: z.ZodObject<{
|
|
19434
|
-
DOT: z.
|
|
19435
|
-
USDC: z.
|
|
19436
|
-
USDT: z.
|
|
19827
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
19828
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
19829
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
19830
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
19437
19831
|
}, "strip", z.ZodTypeAny, {
|
|
19438
19832
|
USDC: bigint;
|
|
19439
19833
|
USDT: bigint;
|
|
19440
19834
|
DOT: bigint;
|
|
19441
19835
|
}, {
|
|
19442
|
-
USDC
|
|
19443
|
-
USDT
|
|
19444
|
-
DOT
|
|
19445
|
-
}
|
|
19836
|
+
USDC: string | number;
|
|
19837
|
+
USDT: string | number;
|
|
19838
|
+
DOT: string | number;
|
|
19839
|
+
}>>;
|
|
19446
19840
|
}, "strip", z.ZodTypeAny, {
|
|
19447
19841
|
Bitcoin: {
|
|
19448
19842
|
BTC: bigint;
|
|
@@ -19490,11 +19884,104 @@ declare const lpTotalBalances: z.ZodObject<{
|
|
|
19490
19884
|
Polkadot: {
|
|
19491
19885
|
DOT: string | number;
|
|
19492
19886
|
};
|
|
19493
|
-
Assethub
|
|
19494
|
-
USDC
|
|
19495
|
-
USDT
|
|
19496
|
-
DOT
|
|
19497
|
-
};
|
|
19887
|
+
Assethub?: {
|
|
19888
|
+
USDC: string | number;
|
|
19889
|
+
USDT: string | number;
|
|
19890
|
+
DOT: string | number;
|
|
19891
|
+
} | undefined;
|
|
19892
|
+
}>;
|
|
19893
|
+
declare const cfFailedCallEvm: z.ZodObject<{
|
|
19894
|
+
contract: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
19895
|
+
data: z.ZodString;
|
|
19896
|
+
}, "strip", z.ZodTypeAny, {
|
|
19897
|
+
data: string;
|
|
19898
|
+
contract: `0x${string}`;
|
|
19899
|
+
}, {
|
|
19900
|
+
data: string;
|
|
19901
|
+
contract: string;
|
|
19902
|
+
}>;
|
|
19903
|
+
declare const cfAuctionState: z.ZodEffects<z.ZodObject<{
|
|
19904
|
+
epoch_duration: z.ZodNumber;
|
|
19905
|
+
current_epoch_started_at: z.ZodNumber;
|
|
19906
|
+
redemption_period_as_percentage: z.ZodNumber;
|
|
19907
|
+
min_funding: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
19908
|
+
auction_size_range: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
19909
|
+
min_active_bid: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
19910
|
+
}, "strip", z.ZodTypeAny, {
|
|
19911
|
+
epoch_duration: number;
|
|
19912
|
+
current_epoch_started_at: number;
|
|
19913
|
+
redemption_period_as_percentage: number;
|
|
19914
|
+
min_funding: bigint;
|
|
19915
|
+
auction_size_range: [number, number];
|
|
19916
|
+
min_active_bid: bigint;
|
|
19917
|
+
}, {
|
|
19918
|
+
epoch_duration: number;
|
|
19919
|
+
current_epoch_started_at: number;
|
|
19920
|
+
redemption_period_as_percentage: number;
|
|
19921
|
+
min_funding: string | number;
|
|
19922
|
+
auction_size_range: [number, number];
|
|
19923
|
+
min_active_bid: string | number;
|
|
19924
|
+
}>, Rename<{
|
|
19925
|
+
epoch_duration: number;
|
|
19926
|
+
current_epoch_started_at: number;
|
|
19927
|
+
redemption_period_as_percentage: number;
|
|
19928
|
+
min_funding: bigint;
|
|
19929
|
+
auction_size_range: [number, number];
|
|
19930
|
+
min_active_bid: bigint;
|
|
19931
|
+
}, {
|
|
19932
|
+
readonly epoch_duration: "epoch_duration_blocks";
|
|
19933
|
+
}>, {
|
|
19934
|
+
epoch_duration: number;
|
|
19935
|
+
current_epoch_started_at: number;
|
|
19936
|
+
redemption_period_as_percentage: number;
|
|
19937
|
+
min_funding: string | number;
|
|
19938
|
+
auction_size_range: [number, number];
|
|
19939
|
+
min_active_bid: string | number;
|
|
19940
|
+
}>;
|
|
19941
|
+
declare const cfFlipSuppy: z.ZodEffects<z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>, z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>], null>, {
|
|
19942
|
+
totalIssuance: bigint;
|
|
19943
|
+
offchainFunds: bigint;
|
|
19944
|
+
}, [string | number, string | number]>;
|
|
19945
|
+
declare const ethereumAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
19946
|
+
declare const cfPoolOrderbook: z.ZodObject<{
|
|
19947
|
+
bids: z.ZodArray<z.ZodObject<{
|
|
19948
|
+
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
19949
|
+
sqrt_price: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
19950
|
+
}, "strip", z.ZodTypeAny, {
|
|
19951
|
+
amount: bigint;
|
|
19952
|
+
sqrt_price: bigint;
|
|
19953
|
+
}, {
|
|
19954
|
+
amount: string;
|
|
19955
|
+
sqrt_price: string;
|
|
19956
|
+
}>, "many">;
|
|
19957
|
+
asks: z.ZodArray<z.ZodObject<{
|
|
19958
|
+
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
19959
|
+
sqrt_price: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
19960
|
+
}, "strip", z.ZodTypeAny, {
|
|
19961
|
+
amount: bigint;
|
|
19962
|
+
sqrt_price: bigint;
|
|
19963
|
+
}, {
|
|
19964
|
+
amount: string;
|
|
19965
|
+
sqrt_price: string;
|
|
19966
|
+
}>, "many">;
|
|
19967
|
+
}, "strip", z.ZodTypeAny, {
|
|
19968
|
+
asks: {
|
|
19969
|
+
amount: bigint;
|
|
19970
|
+
sqrt_price: bigint;
|
|
19971
|
+
}[];
|
|
19972
|
+
bids: {
|
|
19973
|
+
amount: bigint;
|
|
19974
|
+
sqrt_price: bigint;
|
|
19975
|
+
}[];
|
|
19976
|
+
}, {
|
|
19977
|
+
asks: {
|
|
19978
|
+
amount: string;
|
|
19979
|
+
sqrt_price: string;
|
|
19980
|
+
}[];
|
|
19981
|
+
bids: {
|
|
19982
|
+
amount: string;
|
|
19983
|
+
sqrt_price: string;
|
|
19984
|
+
}[];
|
|
19498
19985
|
}>;
|
|
19499
19986
|
|
|
19500
|
-
export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, broker, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFundingEnvironment, cfIngressEgressEnvironment, cfPoolDepth, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, chainGetBlockHash, hexString, liquidityProvider, lpTotalBalances, numberOrHex, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };
|
|
19987
|
+
export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, broker, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfAuctionState, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFailedCallEvm, cfFlipSuppy, cfFundingEnvironment, cfIngressEgressEnvironment, cfPoolDepth, cfPoolOrderbook, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, chainGetBlockHash, ethereumAddress, hexString, liquidityProvider, lpTotalBalances, numberOrHex, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };
|