@chainflip/rpc 1.9.0-assethub.2 → 1.9.2

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/parsers.d.ts 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.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
1741
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
1742
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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?: string | number | undefined;
1749
- USDT?: string | number | undefined;
1750
- DOT?: string | number | undefined;
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?: string | number | undefined;
1801
- USDT?: string | number | undefined;
1802
- DOT?: string | number | undefined;
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.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
1858
- USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
1859
- USDT: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
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?: string | number | null | undefined;
1866
- USDT?: string | number | null | undefined;
1867
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
1918
- USDT?: string | number | null | undefined;
1919
- DOT?: string | number | null | undefined;
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.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
1975
- USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
1976
- USDT: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
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?: string | number | null | undefined;
1983
- USDT?: string | number | null | undefined;
1984
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
2035
- USDT?: string | number | null | undefined;
2036
- DOT?: string | number | null | undefined;
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.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
2114
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
2115
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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?: string | number | undefined;
2122
- USDT?: string | number | undefined;
2123
- DOT?: string | number | undefined;
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?: string | number | undefined;
2174
- USDT?: string | number | undefined;
2175
- DOT?: string | number | undefined;
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.ZodDefault<z.ZodOptional<z.ZodObject<{
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?: string | number | undefined;
2379
- USDT?: string | number | undefined;
2380
- DOT?: string | number | undefined;
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?: string | number | null | undefined;
2406
- USDT?: string | number | null | undefined;
2407
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
2433
- USDT?: string | number | null | undefined;
2434
- DOT?: string | number | null | undefined;
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?: string | number | undefined;
2468
- USDT?: string | number | undefined;
2469
- DOT?: string | number | undefined;
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
- } | undefined;
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?: string | number | undefined;
2647
- USDT?: string | number | undefined;
2648
- DOT?: string | number | undefined;
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?: string | number | null | undefined;
2674
- USDT?: string | number | null | undefined;
2675
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
2701
- USDT?: string | number | null | undefined;
2702
- DOT?: string | number | null | undefined;
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?: string | number | undefined;
2736
- USDT?: string | number | undefined;
2737
- DOT?: string | number | undefined;
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
- } | undefined;
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.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
2811
- USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
2812
- USDT: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
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?: string | number | null | undefined;
2819
- USDT?: string | number | null | undefined;
2820
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
2871
- USDT?: string | number | null | undefined;
2872
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
2929
- USDT?: string | number | null | undefined;
2930
- DOT?: string | number | null | undefined;
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.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
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.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
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.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
7668
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
7669
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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?: string | number | undefined;
7676
- USDT?: string | number | undefined;
7677
- DOT?: string | number | undefined;
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?: string | number | undefined;
7728
- USDT?: string | number | undefined;
7729
- DOT?: string | number | undefined;
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.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
7785
- USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
7786
- USDT: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
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?: string | number | null | undefined;
7793
- USDT?: string | number | null | undefined;
7794
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
7845
- USDT?: string | number | null | undefined;
7846
- DOT?: string | number | null | undefined;
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.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
7902
- USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
7903
- USDT: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
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?: string | number | null | undefined;
7910
- USDT?: string | number | null | undefined;
7911
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
7962
- USDT?: string | number | null | undefined;
7963
- DOT?: string | number | null | undefined;
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.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
8041
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
8042
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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?: string | number | undefined;
8049
- USDT?: string | number | undefined;
8050
- DOT?: string | number | undefined;
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?: string | number | undefined;
8101
- USDT?: string | number | undefined;
8102
- DOT?: string | number | undefined;
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.ZodDefault<z.ZodOptional<z.ZodObject<{
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?: string | number | undefined;
8306
- USDT?: string | number | undefined;
8307
- DOT?: string | number | undefined;
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?: string | number | null | undefined;
8333
- USDT?: string | number | null | undefined;
8334
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
8360
- USDT?: string | number | null | undefined;
8361
- DOT?: string | number | null | undefined;
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?: string | number | undefined;
8395
- USDT?: string | number | undefined;
8396
- DOT?: string | number | undefined;
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
- } | undefined;
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?: string | number | undefined;
8574
- USDT?: string | number | undefined;
8575
- DOT?: string | number | undefined;
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?: string | number | null | undefined;
8601
- USDT?: string | number | null | undefined;
8602
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
8628
- USDT?: string | number | null | undefined;
8629
- DOT?: string | number | null | undefined;
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?: string | number | undefined;
8663
- USDT?: string | number | undefined;
8664
- DOT?: string | number | undefined;
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
- } | undefined;
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.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
8738
- USDC: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
8739
- USDT: z.ZodDefault<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>>;
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?: string | number | null | undefined;
8746
- USDT?: string | number | null | undefined;
8747
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
8798
- USDT?: string | number | null | undefined;
8799
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
8856
- USDT?: string | number | null | undefined;
8857
- DOT?: string | number | null | undefined;
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.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
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.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
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.ZodDefault<z.ZodEffects<z.ZodNullable<z.ZodObject<{
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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?: string | number | undefined;
14342
- USDT?: string | number | undefined;
14343
- DOT?: string | number | undefined;
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?: string | number | null | undefined;
14369
- USDT?: string | number | null | undefined;
14370
- DOT?: string | number | null | undefined;
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?: string | number | null | undefined;
14396
- USDT?: string | number | null | undefined;
14397
- DOT?: string | number | null | undefined;
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?: string | number | undefined;
14431
- USDT?: string | number | undefined;
14432
- DOT?: string | number | undefined;
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
- } | undefined;
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?: string | number | null | undefined;
14476
- USDT?: string | number | null | undefined;
14477
- DOT?: string | number | null | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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
- }, "strip", z.ZodTypeAny, {
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.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
15265
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
15266
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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?: string | number | undefined;
15273
- USDT?: string | number | undefined;
15274
- DOT?: string | number | undefined;
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?: string | number | undefined;
15325
- USDT?: string | number | undefined;
15326
- DOT?: string | number | undefined;
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: "broker";
15320
+ role: "unregistered";
15332
15321
  flip_balance: bigint;
15333
- earned_fees: {
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: "broker";
15350
+ role: "unregistered";
15363
15351
  flip_balance: string | number;
15364
- earned_fees: {
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?: string | number | undefined;
15387
- USDT?: string | number | undefined;
15388
- DOT?: string | number | undefined;
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 liquidityProvider: z.ZodObject<{
15394
- role: z.ZodLiteral<"liquidity_provider">;
15395
- balances: z.ZodObject<{
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.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
15448
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
15449
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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?: string | number | undefined;
15456
- USDT?: string | number | undefined;
15457
- DOT?: string | number | undefined;
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?: string | number | undefined;
15508
- USDT?: string | number | undefined;
15509
- DOT?: string | number | undefined;
15510
- };
15495
+ Assethub?: {
15496
+ USDC: string | number;
15497
+ USDT: string | number;
15498
+ DOT: string | number;
15499
+ } | undefined;
15511
15500
  }>;
15512
- refund_addresses: z.ZodObject<{
15513
- Bitcoin: z.ZodNullable<z.ZodString>;
15514
- Ethereum: z.ZodNullable<z.ZodString>;
15515
- Polkadot: z.ZodNullable<z.ZodString>;
15516
- Arbitrum: z.ZodNullable<z.ZodString>;
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
- Bitcoin: string | null;
15521
- Ethereum: string | null;
15522
- Arbitrum: string | null;
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
- Bitcoin: string | null;
15528
- Ethereum: string | null;
15529
- Arbitrum: string | null;
15530
- Solana: string | null;
15531
- Polkadot: string | null;
15532
- Assethub?: string | null | undefined;
15533
- }>;
15534
- flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
15535
- earned_fees: z.ZodObject<{
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.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
15588
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
15589
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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?: string | number | undefined;
15596
- USDT?: string | number | undefined;
15597
- DOT?: string | number | undefined;
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?: string | number | undefined;
15648
- USDT?: string | number | undefined;
15649
- DOT?: string | number | undefined;
15650
- };
15703
+ Assethub?: {
15704
+ USDC: string | number;
15705
+ USDT: string | number;
15706
+ DOT: string | number;
15707
+ } | undefined;
15651
15708
  }>;
15652
- boost_balances: z.ZodObject<{
15653
- Bitcoin: z.ZodObject<{
15654
- BTC: z.ZodArray<z.ZodObject<{
15655
- fee_tier: z.ZodNumber;
15656
- total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
15657
- available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
15658
- in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
15659
- is_withdrawing: z.ZodBoolean;
15660
- }, "strip", z.ZodTypeAny, {
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.ZodDefault<z.ZodArray<z.ZodObject<{
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.ZodDefault<z.ZodArray<z.ZodObject<{
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.ZodDefault<z.ZodArray<z.ZodObject<{
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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?: string | number | undefined;
16511
- USDT?: string | number | undefined;
16512
- DOT?: string | number | undefined;
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?: string | number | undefined;
16538
- USDT?: string | number | undefined;
16539
- DOT?: string | number | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
16653
- };
16849
+ }[];
16850
+ } | undefined;
16654
16851
  };
16655
16852
  }>;
16656
16853
  declare const validator: z.ZodObject<{
@@ -16702,16 +16899,7 @@ 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>]>;
16705
- }, "strip", z.ZodTypeAny, {
16706
- role: "unregistered";
16707
- flip_balance: bigint;
16708
- }, {
16709
- role: "unregistered";
16710
- flip_balance: string | number;
16711
- }>, z.ZodObject<{
16712
- role: z.ZodLiteral<"broker">;
16713
- flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
16714
- earned_fees: z.ZodObject<{
16902
+ asset_balances: z.ZodObject<{
16715
16903
  Bitcoin: z.ZodObject<{
16716
16904
  BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
16717
16905
  }, "strip", z.ZodTypeAny, {
@@ -16762,19 +16950,19 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
16762
16950
  USDC: string | number;
16763
16951
  SOL: string | number;
16764
16952
  }>;
16765
- Assethub: z.ZodObject<{
16766
- DOT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
16767
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
16768
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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>]>;
16769
16957
  }, "strip", z.ZodTypeAny, {
16770
16958
  USDC: bigint;
16771
16959
  USDT: bigint;
16772
16960
  DOT: bigint;
16773
16961
  }, {
16774
- USDC?: string | number | undefined;
16775
- USDT?: string | number | undefined;
16776
- DOT?: string | number | undefined;
16777
- }>;
16962
+ USDC: string | number;
16963
+ USDT: string | number;
16964
+ DOT: string | number;
16965
+ }>>;
16778
16966
  }, "strip", z.ZodTypeAny, {
16779
16967
  Bitcoin: {
16780
16968
  BTC: bigint;
@@ -16822,17 +17010,16 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
16822
17010
  Polkadot: {
16823
17011
  DOT: string | number;
16824
17012
  };
16825
- Assethub: {
16826
- USDC?: string | number | undefined;
16827
- USDT?: string | number | undefined;
16828
- DOT?: string | number | undefined;
16829
- };
17013
+ Assethub?: {
17014
+ USDC: string | number;
17015
+ USDT: string | number;
17016
+ DOT: string | number;
17017
+ } | undefined;
16830
17018
  }>;
16831
- btc_vault_deposit_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16832
17019
  }, "strip", z.ZodTypeAny, {
16833
- role: "broker";
17020
+ role: "unregistered";
16834
17021
  flip_balance: bigint;
16835
- earned_fees: {
17022
+ asset_balances: {
16836
17023
  Bitcoin: {
16837
17024
  BTC: bigint;
16838
17025
  };
@@ -16859,11 +17046,10 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
16859
17046
  DOT: bigint;
16860
17047
  };
16861
17048
  };
16862
- btc_vault_deposit_address?: string | null | undefined;
16863
17049
  }, {
16864
- role: "broker";
17050
+ role: "unregistered";
16865
17051
  flip_balance: string | number;
16866
- earned_fees: {
17052
+ asset_balances: {
16867
17053
  Bitcoin: {
16868
17054
  BTC: string | number;
16869
17055
  };
@@ -16884,16 +17070,17 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
16884
17070
  Polkadot: {
16885
17071
  DOT: string | number;
16886
17072
  };
16887
- Assethub: {
16888
- USDC?: string | number | undefined;
16889
- USDT?: string | number | undefined;
16890
- DOT?: string | number | undefined;
16891
- };
17073
+ Assethub?: {
17074
+ USDC: string | number;
17075
+ USDT: string | number;
17076
+ DOT: string | number;
17077
+ } | undefined;
16892
17078
  };
16893
- btc_vault_deposit_address?: string | null | undefined;
16894
17079
  }>, z.ZodObject<{
16895
- role: z.ZodLiteral<"liquidity_provider">;
16896
- balances: z.ZodObject<{
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>]>;
17082
+ flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17083
+ earned_fees: z.ZodObject<{
16897
17084
  Bitcoin: z.ZodObject<{
16898
17085
  BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
16899
17086
  }, "strip", z.ZodTypeAny, {
@@ -16944,19 +17131,19 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
16944
17131
  USDC: string | number;
16945
17132
  SOL: string | number;
16946
17133
  }>;
16947
- Assethub: z.ZodObject<{
16948
- DOT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
16949
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
16950
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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>]>;
16951
17138
  }, "strip", z.ZodTypeAny, {
16952
17139
  USDC: bigint;
16953
17140
  USDT: bigint;
16954
17141
  DOT: bigint;
16955
17142
  }, {
16956
- USDC?: string | number | undefined;
16957
- USDT?: string | number | undefined;
16958
- DOT?: string | number | undefined;
16959
- }>;
17143
+ USDC: string | number;
17144
+ USDT: string | number;
17145
+ DOT: string | number;
17146
+ }>>;
16960
17147
  }, "strip", z.ZodTypeAny, {
16961
17148
  Bitcoin: {
16962
17149
  BTC: bigint;
@@ -17004,21 +17191,228 @@ declare const cfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
17004
17191
  Polkadot: {
17005
17192
  DOT: string | number;
17006
17193
  };
17007
- Assethub: {
17008
- USDC?: string | number | undefined;
17009
- USDT?: string | number | undefined;
17010
- DOT?: string | number | undefined;
17011
- };
17194
+ Assethub?: {
17195
+ USDC: string | number;
17196
+ USDT: string | number;
17197
+ DOT: string | number;
17198
+ } | undefined;
17012
17199
  }>;
17013
- refund_addresses: z.ZodObject<{
17014
- Bitcoin: z.ZodNullable<z.ZodString>;
17015
- Ethereum: z.ZodNullable<z.ZodString>;
17016
- Polkadot: z.ZodNullable<z.ZodString>;
17017
- Arbitrum: z.ZodNullable<z.ZodString>;
17018
- Solana: z.ZodNullable<z.ZodString>;
17019
- Assethub: z.ZodDefault<z.ZodNullable<z.ZodString>>;
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>;
17020
17205
  }, "strip", z.ZodTypeAny, {
17021
- Bitcoin: string | null;
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">>>;
17214
+ }, "strip", z.ZodTypeAny, {
17215
+ role: "broker";
17216
+ flip_balance: bigint;
17217
+ bond: bigint;
17218
+ earned_fees: {
17219
+ Bitcoin: {
17220
+ BTC: bigint;
17221
+ };
17222
+ Ethereum: {
17223
+ ETH: bigint;
17224
+ USDC: bigint;
17225
+ FLIP: bigint;
17226
+ USDT: bigint;
17227
+ };
17228
+ Arbitrum: {
17229
+ ETH: bigint;
17230
+ USDC: bigint;
17231
+ };
17232
+ Solana: {
17233
+ USDC: bigint;
17234
+ SOL: bigint;
17235
+ };
17236
+ Polkadot: {
17237
+ DOT: bigint;
17238
+ };
17239
+ Assethub: {
17240
+ USDC: bigint;
17241
+ USDT: bigint;
17242
+ DOT: bigint;
17243
+ };
17244
+ };
17245
+ affiliates: {
17246
+ account_id: string;
17247
+ short_id: number;
17248
+ withdrawal_address: `0x${string}`;
17249
+ }[];
17250
+ btc_vault_deposit_address?: string | null | undefined;
17251
+ }, {
17252
+ role: "broker";
17253
+ flip_balance: string | number;
17254
+ bond: string | number;
17255
+ earned_fees: {
17256
+ Bitcoin: {
17257
+ BTC: string | number;
17258
+ };
17259
+ Ethereum: {
17260
+ ETH: string | number;
17261
+ USDC: string | number;
17262
+ FLIP: string | number;
17263
+ USDT: string | number;
17264
+ };
17265
+ Arbitrum: {
17266
+ ETH: string | number;
17267
+ USDC: string | number;
17268
+ };
17269
+ Solana: {
17270
+ USDC: string | number;
17271
+ SOL: string | number;
17272
+ };
17273
+ Polkadot: {
17274
+ DOT: string | number;
17275
+ };
17276
+ Assethub?: {
17277
+ USDC: string | number;
17278
+ USDT: string | number;
17279
+ DOT: string | number;
17280
+ } | undefined;
17281
+ };
17282
+ btc_vault_deposit_address?: string | null | undefined;
17283
+ affiliates?: {
17284
+ account_id: string;
17285
+ short_id: number;
17286
+ withdrawal_address: string;
17287
+ }[] | undefined;
17288
+ }>, z.ZodObject<{
17289
+ role: z.ZodLiteral<"liquidity_provider">;
17290
+ balances: z.ZodObject<{
17291
+ Bitcoin: z.ZodObject<{
17292
+ BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17293
+ }, "strip", z.ZodTypeAny, {
17294
+ BTC: bigint;
17295
+ }, {
17296
+ BTC: string | number;
17297
+ }>;
17298
+ Ethereum: z.ZodObject<{
17299
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17300
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17301
+ FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17302
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17303
+ }, "strip", z.ZodTypeAny, {
17304
+ ETH: bigint;
17305
+ USDC: bigint;
17306
+ FLIP: bigint;
17307
+ USDT: bigint;
17308
+ }, {
17309
+ ETH: string | number;
17310
+ USDC: string | number;
17311
+ FLIP: string | number;
17312
+ USDT: string | number;
17313
+ }>;
17314
+ Polkadot: z.ZodObject<{
17315
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17316
+ }, "strip", z.ZodTypeAny, {
17317
+ DOT: bigint;
17318
+ }, {
17319
+ DOT: string | number;
17320
+ }>;
17321
+ Arbitrum: z.ZodObject<{
17322
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17323
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17324
+ }, "strip", z.ZodTypeAny, {
17325
+ ETH: bigint;
17326
+ USDC: bigint;
17327
+ }, {
17328
+ ETH: string | number;
17329
+ USDC: string | number;
17330
+ }>;
17331
+ Solana: z.ZodObject<{
17332
+ SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17333
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17334
+ }, "strip", z.ZodTypeAny, {
17335
+ USDC: bigint;
17336
+ SOL: bigint;
17337
+ }, {
17338
+ USDC: string | number;
17339
+ SOL: string | number;
17340
+ }>;
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>]>;
17345
+ }, "strip", z.ZodTypeAny, {
17346
+ USDC: bigint;
17347
+ USDT: bigint;
17348
+ DOT: bigint;
17349
+ }, {
17350
+ USDC: string | number;
17351
+ USDT: string | number;
17352
+ DOT: string | number;
17353
+ }>>;
17354
+ }, "strip", z.ZodTypeAny, {
17355
+ Bitcoin: {
17356
+ BTC: bigint;
17357
+ };
17358
+ Ethereum: {
17359
+ ETH: bigint;
17360
+ USDC: bigint;
17361
+ FLIP: bigint;
17362
+ USDT: bigint;
17363
+ };
17364
+ Arbitrum: {
17365
+ ETH: bigint;
17366
+ USDC: bigint;
17367
+ };
17368
+ Solana: {
17369
+ USDC: bigint;
17370
+ SOL: bigint;
17371
+ };
17372
+ Polkadot: {
17373
+ DOT: bigint;
17374
+ };
17375
+ Assethub: {
17376
+ USDC: bigint;
17377
+ USDT: bigint;
17378
+ DOT: bigint;
17379
+ };
17380
+ }, {
17381
+ Bitcoin: {
17382
+ BTC: string | number;
17383
+ };
17384
+ Ethereum: {
17385
+ ETH: string | number;
17386
+ USDC: string | number;
17387
+ FLIP: string | number;
17388
+ USDT: string | number;
17389
+ };
17390
+ Arbitrum: {
17391
+ ETH: string | number;
17392
+ USDC: string | number;
17393
+ };
17394
+ Solana: {
17395
+ USDC: string | number;
17396
+ SOL: string | number;
17397
+ };
17398
+ Polkadot: {
17399
+ DOT: string | number;
17400
+ };
17401
+ Assethub?: {
17402
+ USDC: string | number;
17403
+ USDT: string | number;
17404
+ DOT: string | number;
17405
+ } | undefined;
17406
+ }>;
17407
+ refund_addresses: z.ZodObject<{
17408
+ Bitcoin: z.ZodNullable<z.ZodString>;
17409
+ Ethereum: z.ZodNullable<z.ZodString>;
17410
+ Polkadot: z.ZodNullable<z.ZodString>;
17411
+ Arbitrum: z.ZodNullable<z.ZodString>;
17412
+ Solana: z.ZodNullable<z.ZodString>;
17413
+ Assethub: z.ZodDefault<z.ZodNullable<z.ZodString>>;
17414
+ }, "strip", z.ZodTypeAny, {
17415
+ Bitcoin: string | null;
17022
17416
  Ethereum: string | null;
17023
17417
  Arbitrum: string | null;
17024
17418
  Solana: string | null;
@@ -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.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
17089
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
17090
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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?: string | number | undefined;
17097
- USDT?: string | number | undefined;
17098
- DOT?: string | number | undefined;
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?: string | number | undefined;
17149
- USDT?: string | number | undefined;
17150
- DOT?: string | number | undefined;
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.ZodDefault<z.ZodArray<z.ZodObject<{
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.ZodDefault<z.ZodArray<z.ZodObject<{
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.ZodDefault<z.ZodArray<z.ZodObject<{
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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?: string | number | undefined;
18012
- USDT?: string | number | undefined;
18013
- DOT?: string | number | undefined;
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?: string | number | undefined;
18039
- USDT?: string | number | undefined;
18040
- DOT?: string | number | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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
- }[] | undefined;
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.ZodBigInt, "many">;
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: bigint[];
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: bigint[];
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.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
19435
- USDC: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
19436
- USDT: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
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?: string | number | undefined;
19443
- USDT?: string | number | undefined;
19444
- DOT?: string | number | undefined;
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,1290 @@ declare const lpTotalBalances: z.ZodObject<{
19490
19884
  Polkadot: {
19491
19885
  DOT: string | number;
19492
19886
  };
19493
- Assethub: {
19494
- USDC?: string | number | undefined;
19495
- USDT?: string | number | undefined;
19496
- DOT?: string | number | undefined;
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
  }>;
19986
+ declare const cfTradingStrategy: z.ZodObject<{
19987
+ lp_id: z.ZodString;
19988
+ strategy_id: z.ZodString;
19989
+ strategy: z.ZodObject<{
19990
+ TickZeroCentered: z.ZodObject<{
19991
+ spread_tick: z.ZodNumber;
19992
+ base_asset: z.ZodUnion<[z.ZodObject<{
19993
+ chain: z.ZodLiteral<"Bitcoin">;
19994
+ asset: z.ZodLiteral<"BTC">;
19995
+ }, "strip", z.ZodTypeAny, {
19996
+ chain: "Bitcoin";
19997
+ asset: "BTC";
19998
+ }, {
19999
+ chain: "Bitcoin";
20000
+ asset: "BTC";
20001
+ }>, z.ZodObject<{
20002
+ chain: z.ZodLiteral<"Polkadot">;
20003
+ asset: z.ZodLiteral<"DOT">;
20004
+ }, "strip", z.ZodTypeAny, {
20005
+ chain: "Polkadot";
20006
+ asset: "DOT";
20007
+ }, {
20008
+ chain: "Polkadot";
20009
+ asset: "DOT";
20010
+ }>, z.ZodObject<{
20011
+ chain: z.ZodLiteral<"Ethereum">;
20012
+ asset: z.ZodLiteral<"FLIP">;
20013
+ }, "strip", z.ZodTypeAny, {
20014
+ chain: "Ethereum";
20015
+ asset: "FLIP";
20016
+ }, {
20017
+ chain: "Ethereum";
20018
+ asset: "FLIP";
20019
+ }>, z.ZodObject<{
20020
+ chain: z.ZodLiteral<"Ethereum">;
20021
+ asset: z.ZodLiteral<"ETH">;
20022
+ }, "strip", z.ZodTypeAny, {
20023
+ chain: "Ethereum";
20024
+ asset: "ETH";
20025
+ }, {
20026
+ chain: "Ethereum";
20027
+ asset: "ETH";
20028
+ }>, z.ZodObject<{
20029
+ chain: z.ZodLiteral<"Ethereum">;
20030
+ asset: z.ZodLiteral<"USDC">;
20031
+ }, "strip", z.ZodTypeAny, {
20032
+ chain: "Ethereum";
20033
+ asset: "USDC";
20034
+ }, {
20035
+ chain: "Ethereum";
20036
+ asset: "USDC";
20037
+ }>, z.ZodObject<{
20038
+ chain: z.ZodLiteral<"Ethereum">;
20039
+ asset: z.ZodLiteral<"USDT">;
20040
+ }, "strip", z.ZodTypeAny, {
20041
+ chain: "Ethereum";
20042
+ asset: "USDT";
20043
+ }, {
20044
+ chain: "Ethereum";
20045
+ asset: "USDT";
20046
+ }>, z.ZodObject<{
20047
+ chain: z.ZodLiteral<"Arbitrum">;
20048
+ asset: z.ZodLiteral<"ETH">;
20049
+ }, "strip", z.ZodTypeAny, {
20050
+ chain: "Arbitrum";
20051
+ asset: "ETH";
20052
+ }, {
20053
+ chain: "Arbitrum";
20054
+ asset: "ETH";
20055
+ }>, z.ZodObject<{
20056
+ chain: z.ZodLiteral<"Arbitrum">;
20057
+ asset: z.ZodLiteral<"USDC">;
20058
+ }, "strip", z.ZodTypeAny, {
20059
+ chain: "Arbitrum";
20060
+ asset: "USDC";
20061
+ }, {
20062
+ chain: "Arbitrum";
20063
+ asset: "USDC";
20064
+ }>, z.ZodObject<{
20065
+ chain: z.ZodLiteral<"Solana">;
20066
+ asset: z.ZodLiteral<"SOL">;
20067
+ }, "strip", z.ZodTypeAny, {
20068
+ chain: "Solana";
20069
+ asset: "SOL";
20070
+ }, {
20071
+ chain: "Solana";
20072
+ asset: "SOL";
20073
+ }>, z.ZodObject<{
20074
+ chain: z.ZodLiteral<"Solana">;
20075
+ asset: z.ZodLiteral<"USDC">;
20076
+ }, "strip", z.ZodTypeAny, {
20077
+ chain: "Solana";
20078
+ asset: "USDC";
20079
+ }, {
20080
+ chain: "Solana";
20081
+ asset: "USDC";
20082
+ }>, z.ZodObject<{
20083
+ chain: z.ZodLiteral<"Assethub">;
20084
+ asset: z.ZodLiteral<"DOT">;
20085
+ }, "strip", z.ZodTypeAny, {
20086
+ chain: "Assethub";
20087
+ asset: "DOT";
20088
+ }, {
20089
+ chain: "Assethub";
20090
+ asset: "DOT";
20091
+ }>, z.ZodObject<{
20092
+ chain: z.ZodLiteral<"Assethub">;
20093
+ asset: z.ZodLiteral<"USDC">;
20094
+ }, "strip", z.ZodTypeAny, {
20095
+ chain: "Assethub";
20096
+ asset: "USDC";
20097
+ }, {
20098
+ chain: "Assethub";
20099
+ asset: "USDC";
20100
+ }>, z.ZodObject<{
20101
+ chain: z.ZodLiteral<"Assethub">;
20102
+ asset: z.ZodLiteral<"USDT">;
20103
+ }, "strip", z.ZodTypeAny, {
20104
+ chain: "Assethub";
20105
+ asset: "USDT";
20106
+ }, {
20107
+ chain: "Assethub";
20108
+ asset: "USDT";
20109
+ }>]>;
20110
+ }, "strip", z.ZodTypeAny, {
20111
+ base_asset: {
20112
+ chain: "Bitcoin";
20113
+ asset: "BTC";
20114
+ } | {
20115
+ chain: "Polkadot";
20116
+ asset: "DOT";
20117
+ } | {
20118
+ chain: "Ethereum";
20119
+ asset: "FLIP";
20120
+ } | {
20121
+ chain: "Ethereum";
20122
+ asset: "ETH";
20123
+ } | {
20124
+ chain: "Ethereum";
20125
+ asset: "USDC";
20126
+ } | {
20127
+ chain: "Ethereum";
20128
+ asset: "USDT";
20129
+ } | {
20130
+ chain: "Arbitrum";
20131
+ asset: "ETH";
20132
+ } | {
20133
+ chain: "Arbitrum";
20134
+ asset: "USDC";
20135
+ } | {
20136
+ chain: "Solana";
20137
+ asset: "SOL";
20138
+ } | {
20139
+ chain: "Solana";
20140
+ asset: "USDC";
20141
+ } | {
20142
+ chain: "Assethub";
20143
+ asset: "DOT";
20144
+ } | {
20145
+ chain: "Assethub";
20146
+ asset: "USDC";
20147
+ } | {
20148
+ chain: "Assethub";
20149
+ asset: "USDT";
20150
+ };
20151
+ spread_tick: number;
20152
+ }, {
20153
+ base_asset: {
20154
+ chain: "Bitcoin";
20155
+ asset: "BTC";
20156
+ } | {
20157
+ chain: "Polkadot";
20158
+ asset: "DOT";
20159
+ } | {
20160
+ chain: "Ethereum";
20161
+ asset: "FLIP";
20162
+ } | {
20163
+ chain: "Ethereum";
20164
+ asset: "ETH";
20165
+ } | {
20166
+ chain: "Ethereum";
20167
+ asset: "USDC";
20168
+ } | {
20169
+ chain: "Ethereum";
20170
+ asset: "USDT";
20171
+ } | {
20172
+ chain: "Arbitrum";
20173
+ asset: "ETH";
20174
+ } | {
20175
+ chain: "Arbitrum";
20176
+ asset: "USDC";
20177
+ } | {
20178
+ chain: "Solana";
20179
+ asset: "SOL";
20180
+ } | {
20181
+ chain: "Solana";
20182
+ asset: "USDC";
20183
+ } | {
20184
+ chain: "Assethub";
20185
+ asset: "DOT";
20186
+ } | {
20187
+ chain: "Assethub";
20188
+ asset: "USDC";
20189
+ } | {
20190
+ chain: "Assethub";
20191
+ asset: "USDT";
20192
+ };
20193
+ spread_tick: number;
20194
+ }>;
20195
+ }, "strip", z.ZodTypeAny, {
20196
+ TickZeroCentered: {
20197
+ base_asset: {
20198
+ chain: "Bitcoin";
20199
+ asset: "BTC";
20200
+ } | {
20201
+ chain: "Polkadot";
20202
+ asset: "DOT";
20203
+ } | {
20204
+ chain: "Ethereum";
20205
+ asset: "FLIP";
20206
+ } | {
20207
+ chain: "Ethereum";
20208
+ asset: "ETH";
20209
+ } | {
20210
+ chain: "Ethereum";
20211
+ asset: "USDC";
20212
+ } | {
20213
+ chain: "Ethereum";
20214
+ asset: "USDT";
20215
+ } | {
20216
+ chain: "Arbitrum";
20217
+ asset: "ETH";
20218
+ } | {
20219
+ chain: "Arbitrum";
20220
+ asset: "USDC";
20221
+ } | {
20222
+ chain: "Solana";
20223
+ asset: "SOL";
20224
+ } | {
20225
+ chain: "Solana";
20226
+ asset: "USDC";
20227
+ } | {
20228
+ chain: "Assethub";
20229
+ asset: "DOT";
20230
+ } | {
20231
+ chain: "Assethub";
20232
+ asset: "USDC";
20233
+ } | {
20234
+ chain: "Assethub";
20235
+ asset: "USDT";
20236
+ };
20237
+ spread_tick: number;
20238
+ };
20239
+ }, {
20240
+ TickZeroCentered: {
20241
+ base_asset: {
20242
+ chain: "Bitcoin";
20243
+ asset: "BTC";
20244
+ } | {
20245
+ chain: "Polkadot";
20246
+ asset: "DOT";
20247
+ } | {
20248
+ chain: "Ethereum";
20249
+ asset: "FLIP";
20250
+ } | {
20251
+ chain: "Ethereum";
20252
+ asset: "ETH";
20253
+ } | {
20254
+ chain: "Ethereum";
20255
+ asset: "USDC";
20256
+ } | {
20257
+ chain: "Ethereum";
20258
+ asset: "USDT";
20259
+ } | {
20260
+ chain: "Arbitrum";
20261
+ asset: "ETH";
20262
+ } | {
20263
+ chain: "Arbitrum";
20264
+ asset: "USDC";
20265
+ } | {
20266
+ chain: "Solana";
20267
+ asset: "SOL";
20268
+ } | {
20269
+ chain: "Solana";
20270
+ asset: "USDC";
20271
+ } | {
20272
+ chain: "Assethub";
20273
+ asset: "DOT";
20274
+ } | {
20275
+ chain: "Assethub";
20276
+ asset: "USDC";
20277
+ } | {
20278
+ chain: "Assethub";
20279
+ asset: "USDT";
20280
+ };
20281
+ spread_tick: number;
20282
+ };
20283
+ }>;
20284
+ balance: z.ZodArray<z.ZodTuple<[z.ZodUnion<[z.ZodObject<{
20285
+ chain: z.ZodLiteral<"Bitcoin">;
20286
+ asset: z.ZodLiteral<"BTC">;
20287
+ }, "strip", z.ZodTypeAny, {
20288
+ chain: "Bitcoin";
20289
+ asset: "BTC";
20290
+ }, {
20291
+ chain: "Bitcoin";
20292
+ asset: "BTC";
20293
+ }>, z.ZodObject<{
20294
+ chain: z.ZodLiteral<"Polkadot">;
20295
+ asset: z.ZodLiteral<"DOT">;
20296
+ }, "strip", z.ZodTypeAny, {
20297
+ chain: "Polkadot";
20298
+ asset: "DOT";
20299
+ }, {
20300
+ chain: "Polkadot";
20301
+ asset: "DOT";
20302
+ }>, z.ZodObject<{
20303
+ chain: z.ZodLiteral<"Ethereum">;
20304
+ asset: z.ZodLiteral<"FLIP">;
20305
+ }, "strip", z.ZodTypeAny, {
20306
+ chain: "Ethereum";
20307
+ asset: "FLIP";
20308
+ }, {
20309
+ chain: "Ethereum";
20310
+ asset: "FLIP";
20311
+ }>, z.ZodObject<{
20312
+ chain: z.ZodLiteral<"Ethereum">;
20313
+ asset: z.ZodLiteral<"ETH">;
20314
+ }, "strip", z.ZodTypeAny, {
20315
+ chain: "Ethereum";
20316
+ asset: "ETH";
20317
+ }, {
20318
+ chain: "Ethereum";
20319
+ asset: "ETH";
20320
+ }>, z.ZodObject<{
20321
+ chain: z.ZodLiteral<"Ethereum">;
20322
+ asset: z.ZodLiteral<"USDC">;
20323
+ }, "strip", z.ZodTypeAny, {
20324
+ chain: "Ethereum";
20325
+ asset: "USDC";
20326
+ }, {
20327
+ chain: "Ethereum";
20328
+ asset: "USDC";
20329
+ }>, z.ZodObject<{
20330
+ chain: z.ZodLiteral<"Ethereum">;
20331
+ asset: z.ZodLiteral<"USDT">;
20332
+ }, "strip", z.ZodTypeAny, {
20333
+ chain: "Ethereum";
20334
+ asset: "USDT";
20335
+ }, {
20336
+ chain: "Ethereum";
20337
+ asset: "USDT";
20338
+ }>, z.ZodObject<{
20339
+ chain: z.ZodLiteral<"Arbitrum">;
20340
+ asset: z.ZodLiteral<"ETH">;
20341
+ }, "strip", z.ZodTypeAny, {
20342
+ chain: "Arbitrum";
20343
+ asset: "ETH";
20344
+ }, {
20345
+ chain: "Arbitrum";
20346
+ asset: "ETH";
20347
+ }>, z.ZodObject<{
20348
+ chain: z.ZodLiteral<"Arbitrum">;
20349
+ asset: z.ZodLiteral<"USDC">;
20350
+ }, "strip", z.ZodTypeAny, {
20351
+ chain: "Arbitrum";
20352
+ asset: "USDC";
20353
+ }, {
20354
+ chain: "Arbitrum";
20355
+ asset: "USDC";
20356
+ }>, z.ZodObject<{
20357
+ chain: z.ZodLiteral<"Solana">;
20358
+ asset: z.ZodLiteral<"SOL">;
20359
+ }, "strip", z.ZodTypeAny, {
20360
+ chain: "Solana";
20361
+ asset: "SOL";
20362
+ }, {
20363
+ chain: "Solana";
20364
+ asset: "SOL";
20365
+ }>, z.ZodObject<{
20366
+ chain: z.ZodLiteral<"Solana">;
20367
+ asset: z.ZodLiteral<"USDC">;
20368
+ }, "strip", z.ZodTypeAny, {
20369
+ chain: "Solana";
20370
+ asset: "USDC";
20371
+ }, {
20372
+ chain: "Solana";
20373
+ asset: "USDC";
20374
+ }>, z.ZodObject<{
20375
+ chain: z.ZodLiteral<"Assethub">;
20376
+ asset: z.ZodLiteral<"DOT">;
20377
+ }, "strip", z.ZodTypeAny, {
20378
+ chain: "Assethub";
20379
+ asset: "DOT";
20380
+ }, {
20381
+ chain: "Assethub";
20382
+ asset: "DOT";
20383
+ }>, z.ZodObject<{
20384
+ chain: z.ZodLiteral<"Assethub">;
20385
+ asset: z.ZodLiteral<"USDC">;
20386
+ }, "strip", z.ZodTypeAny, {
20387
+ chain: "Assethub";
20388
+ asset: "USDC";
20389
+ }, {
20390
+ chain: "Assethub";
20391
+ asset: "USDC";
20392
+ }>, z.ZodObject<{
20393
+ chain: z.ZodLiteral<"Assethub">;
20394
+ asset: z.ZodLiteral<"USDT">;
20395
+ }, "strip", z.ZodTypeAny, {
20396
+ chain: "Assethub";
20397
+ asset: "USDT";
20398
+ }, {
20399
+ chain: "Assethub";
20400
+ asset: "USDT";
20401
+ }>]>, z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>], null>, "many">;
20402
+ }, "strip", z.ZodTypeAny, {
20403
+ lp_id: string;
20404
+ strategy_id: string;
20405
+ strategy: {
20406
+ TickZeroCentered: {
20407
+ base_asset: {
20408
+ chain: "Bitcoin";
20409
+ asset: "BTC";
20410
+ } | {
20411
+ chain: "Polkadot";
20412
+ asset: "DOT";
20413
+ } | {
20414
+ chain: "Ethereum";
20415
+ asset: "FLIP";
20416
+ } | {
20417
+ chain: "Ethereum";
20418
+ asset: "ETH";
20419
+ } | {
20420
+ chain: "Ethereum";
20421
+ asset: "USDC";
20422
+ } | {
20423
+ chain: "Ethereum";
20424
+ asset: "USDT";
20425
+ } | {
20426
+ chain: "Arbitrum";
20427
+ asset: "ETH";
20428
+ } | {
20429
+ chain: "Arbitrum";
20430
+ asset: "USDC";
20431
+ } | {
20432
+ chain: "Solana";
20433
+ asset: "SOL";
20434
+ } | {
20435
+ chain: "Solana";
20436
+ asset: "USDC";
20437
+ } | {
20438
+ chain: "Assethub";
20439
+ asset: "DOT";
20440
+ } | {
20441
+ chain: "Assethub";
20442
+ asset: "USDC";
20443
+ } | {
20444
+ chain: "Assethub";
20445
+ asset: "USDT";
20446
+ };
20447
+ spread_tick: number;
20448
+ };
20449
+ };
20450
+ balance: [{
20451
+ chain: "Bitcoin";
20452
+ asset: "BTC";
20453
+ } | {
20454
+ chain: "Polkadot";
20455
+ asset: "DOT";
20456
+ } | {
20457
+ chain: "Ethereum";
20458
+ asset: "FLIP";
20459
+ } | {
20460
+ chain: "Ethereum";
20461
+ asset: "ETH";
20462
+ } | {
20463
+ chain: "Ethereum";
20464
+ asset: "USDC";
20465
+ } | {
20466
+ chain: "Ethereum";
20467
+ asset: "USDT";
20468
+ } | {
20469
+ chain: "Arbitrum";
20470
+ asset: "ETH";
20471
+ } | {
20472
+ chain: "Arbitrum";
20473
+ asset: "USDC";
20474
+ } | {
20475
+ chain: "Solana";
20476
+ asset: "SOL";
20477
+ } | {
20478
+ chain: "Solana";
20479
+ asset: "USDC";
20480
+ } | {
20481
+ chain: "Assethub";
20482
+ asset: "DOT";
20483
+ } | {
20484
+ chain: "Assethub";
20485
+ asset: "USDC";
20486
+ } | {
20487
+ chain: "Assethub";
20488
+ asset: "USDT";
20489
+ }, bigint][];
20490
+ }, {
20491
+ lp_id: string;
20492
+ strategy_id: string;
20493
+ strategy: {
20494
+ TickZeroCentered: {
20495
+ base_asset: {
20496
+ chain: "Bitcoin";
20497
+ asset: "BTC";
20498
+ } | {
20499
+ chain: "Polkadot";
20500
+ asset: "DOT";
20501
+ } | {
20502
+ chain: "Ethereum";
20503
+ asset: "FLIP";
20504
+ } | {
20505
+ chain: "Ethereum";
20506
+ asset: "ETH";
20507
+ } | {
20508
+ chain: "Ethereum";
20509
+ asset: "USDC";
20510
+ } | {
20511
+ chain: "Ethereum";
20512
+ asset: "USDT";
20513
+ } | {
20514
+ chain: "Arbitrum";
20515
+ asset: "ETH";
20516
+ } | {
20517
+ chain: "Arbitrum";
20518
+ asset: "USDC";
20519
+ } | {
20520
+ chain: "Solana";
20521
+ asset: "SOL";
20522
+ } | {
20523
+ chain: "Solana";
20524
+ asset: "USDC";
20525
+ } | {
20526
+ chain: "Assethub";
20527
+ asset: "DOT";
20528
+ } | {
20529
+ chain: "Assethub";
20530
+ asset: "USDC";
20531
+ } | {
20532
+ chain: "Assethub";
20533
+ asset: "USDT";
20534
+ };
20535
+ spread_tick: number;
20536
+ };
20537
+ };
20538
+ balance: [{
20539
+ chain: "Bitcoin";
20540
+ asset: "BTC";
20541
+ } | {
20542
+ chain: "Polkadot";
20543
+ asset: "DOT";
20544
+ } | {
20545
+ chain: "Ethereum";
20546
+ asset: "FLIP";
20547
+ } | {
20548
+ chain: "Ethereum";
20549
+ asset: "ETH";
20550
+ } | {
20551
+ chain: "Ethereum";
20552
+ asset: "USDC";
20553
+ } | {
20554
+ chain: "Ethereum";
20555
+ asset: "USDT";
20556
+ } | {
20557
+ chain: "Arbitrum";
20558
+ asset: "ETH";
20559
+ } | {
20560
+ chain: "Arbitrum";
20561
+ asset: "USDC";
20562
+ } | {
20563
+ chain: "Solana";
20564
+ asset: "SOL";
20565
+ } | {
20566
+ chain: "Solana";
20567
+ asset: "USDC";
20568
+ } | {
20569
+ chain: "Assethub";
20570
+ asset: "DOT";
20571
+ } | {
20572
+ chain: "Assethub";
20573
+ asset: "USDC";
20574
+ } | {
20575
+ chain: "Assethub";
20576
+ asset: "USDT";
20577
+ }, string | number][];
20578
+ }>;
20579
+ declare const cfGetTradingStrategies: z.ZodDefault<z.ZodArray<z.ZodObject<{
20580
+ lp_id: z.ZodString;
20581
+ strategy_id: z.ZodString;
20582
+ strategy: z.ZodObject<{
20583
+ TickZeroCentered: z.ZodObject<{
20584
+ spread_tick: z.ZodNumber;
20585
+ base_asset: z.ZodUnion<[z.ZodObject<{
20586
+ chain: z.ZodLiteral<"Bitcoin">;
20587
+ asset: z.ZodLiteral<"BTC">;
20588
+ }, "strip", z.ZodTypeAny, {
20589
+ chain: "Bitcoin";
20590
+ asset: "BTC";
20591
+ }, {
20592
+ chain: "Bitcoin";
20593
+ asset: "BTC";
20594
+ }>, z.ZodObject<{
20595
+ chain: z.ZodLiteral<"Polkadot">;
20596
+ asset: z.ZodLiteral<"DOT">;
20597
+ }, "strip", z.ZodTypeAny, {
20598
+ chain: "Polkadot";
20599
+ asset: "DOT";
20600
+ }, {
20601
+ chain: "Polkadot";
20602
+ asset: "DOT";
20603
+ }>, z.ZodObject<{
20604
+ chain: z.ZodLiteral<"Ethereum">;
20605
+ asset: z.ZodLiteral<"FLIP">;
20606
+ }, "strip", z.ZodTypeAny, {
20607
+ chain: "Ethereum";
20608
+ asset: "FLIP";
20609
+ }, {
20610
+ chain: "Ethereum";
20611
+ asset: "FLIP";
20612
+ }>, z.ZodObject<{
20613
+ chain: z.ZodLiteral<"Ethereum">;
20614
+ asset: z.ZodLiteral<"ETH">;
20615
+ }, "strip", z.ZodTypeAny, {
20616
+ chain: "Ethereum";
20617
+ asset: "ETH";
20618
+ }, {
20619
+ chain: "Ethereum";
20620
+ asset: "ETH";
20621
+ }>, z.ZodObject<{
20622
+ chain: z.ZodLiteral<"Ethereum">;
20623
+ asset: z.ZodLiteral<"USDC">;
20624
+ }, "strip", z.ZodTypeAny, {
20625
+ chain: "Ethereum";
20626
+ asset: "USDC";
20627
+ }, {
20628
+ chain: "Ethereum";
20629
+ asset: "USDC";
20630
+ }>, z.ZodObject<{
20631
+ chain: z.ZodLiteral<"Ethereum">;
20632
+ asset: z.ZodLiteral<"USDT">;
20633
+ }, "strip", z.ZodTypeAny, {
20634
+ chain: "Ethereum";
20635
+ asset: "USDT";
20636
+ }, {
20637
+ chain: "Ethereum";
20638
+ asset: "USDT";
20639
+ }>, z.ZodObject<{
20640
+ chain: z.ZodLiteral<"Arbitrum">;
20641
+ asset: z.ZodLiteral<"ETH">;
20642
+ }, "strip", z.ZodTypeAny, {
20643
+ chain: "Arbitrum";
20644
+ asset: "ETH";
20645
+ }, {
20646
+ chain: "Arbitrum";
20647
+ asset: "ETH";
20648
+ }>, z.ZodObject<{
20649
+ chain: z.ZodLiteral<"Arbitrum">;
20650
+ asset: z.ZodLiteral<"USDC">;
20651
+ }, "strip", z.ZodTypeAny, {
20652
+ chain: "Arbitrum";
20653
+ asset: "USDC";
20654
+ }, {
20655
+ chain: "Arbitrum";
20656
+ asset: "USDC";
20657
+ }>, z.ZodObject<{
20658
+ chain: z.ZodLiteral<"Solana">;
20659
+ asset: z.ZodLiteral<"SOL">;
20660
+ }, "strip", z.ZodTypeAny, {
20661
+ chain: "Solana";
20662
+ asset: "SOL";
20663
+ }, {
20664
+ chain: "Solana";
20665
+ asset: "SOL";
20666
+ }>, z.ZodObject<{
20667
+ chain: z.ZodLiteral<"Solana">;
20668
+ asset: z.ZodLiteral<"USDC">;
20669
+ }, "strip", z.ZodTypeAny, {
20670
+ chain: "Solana";
20671
+ asset: "USDC";
20672
+ }, {
20673
+ chain: "Solana";
20674
+ asset: "USDC";
20675
+ }>, z.ZodObject<{
20676
+ chain: z.ZodLiteral<"Assethub">;
20677
+ asset: z.ZodLiteral<"DOT">;
20678
+ }, "strip", z.ZodTypeAny, {
20679
+ chain: "Assethub";
20680
+ asset: "DOT";
20681
+ }, {
20682
+ chain: "Assethub";
20683
+ asset: "DOT";
20684
+ }>, z.ZodObject<{
20685
+ chain: z.ZodLiteral<"Assethub">;
20686
+ asset: z.ZodLiteral<"USDC">;
20687
+ }, "strip", z.ZodTypeAny, {
20688
+ chain: "Assethub";
20689
+ asset: "USDC";
20690
+ }, {
20691
+ chain: "Assethub";
20692
+ asset: "USDC";
20693
+ }>, z.ZodObject<{
20694
+ chain: z.ZodLiteral<"Assethub">;
20695
+ asset: z.ZodLiteral<"USDT">;
20696
+ }, "strip", z.ZodTypeAny, {
20697
+ chain: "Assethub";
20698
+ asset: "USDT";
20699
+ }, {
20700
+ chain: "Assethub";
20701
+ asset: "USDT";
20702
+ }>]>;
20703
+ }, "strip", z.ZodTypeAny, {
20704
+ base_asset: {
20705
+ chain: "Bitcoin";
20706
+ asset: "BTC";
20707
+ } | {
20708
+ chain: "Polkadot";
20709
+ asset: "DOT";
20710
+ } | {
20711
+ chain: "Ethereum";
20712
+ asset: "FLIP";
20713
+ } | {
20714
+ chain: "Ethereum";
20715
+ asset: "ETH";
20716
+ } | {
20717
+ chain: "Ethereum";
20718
+ asset: "USDC";
20719
+ } | {
20720
+ chain: "Ethereum";
20721
+ asset: "USDT";
20722
+ } | {
20723
+ chain: "Arbitrum";
20724
+ asset: "ETH";
20725
+ } | {
20726
+ chain: "Arbitrum";
20727
+ asset: "USDC";
20728
+ } | {
20729
+ chain: "Solana";
20730
+ asset: "SOL";
20731
+ } | {
20732
+ chain: "Solana";
20733
+ asset: "USDC";
20734
+ } | {
20735
+ chain: "Assethub";
20736
+ asset: "DOT";
20737
+ } | {
20738
+ chain: "Assethub";
20739
+ asset: "USDC";
20740
+ } | {
20741
+ chain: "Assethub";
20742
+ asset: "USDT";
20743
+ };
20744
+ spread_tick: number;
20745
+ }, {
20746
+ base_asset: {
20747
+ chain: "Bitcoin";
20748
+ asset: "BTC";
20749
+ } | {
20750
+ chain: "Polkadot";
20751
+ asset: "DOT";
20752
+ } | {
20753
+ chain: "Ethereum";
20754
+ asset: "FLIP";
20755
+ } | {
20756
+ chain: "Ethereum";
20757
+ asset: "ETH";
20758
+ } | {
20759
+ chain: "Ethereum";
20760
+ asset: "USDC";
20761
+ } | {
20762
+ chain: "Ethereum";
20763
+ asset: "USDT";
20764
+ } | {
20765
+ chain: "Arbitrum";
20766
+ asset: "ETH";
20767
+ } | {
20768
+ chain: "Arbitrum";
20769
+ asset: "USDC";
20770
+ } | {
20771
+ chain: "Solana";
20772
+ asset: "SOL";
20773
+ } | {
20774
+ chain: "Solana";
20775
+ asset: "USDC";
20776
+ } | {
20777
+ chain: "Assethub";
20778
+ asset: "DOT";
20779
+ } | {
20780
+ chain: "Assethub";
20781
+ asset: "USDC";
20782
+ } | {
20783
+ chain: "Assethub";
20784
+ asset: "USDT";
20785
+ };
20786
+ spread_tick: number;
20787
+ }>;
20788
+ }, "strip", z.ZodTypeAny, {
20789
+ TickZeroCentered: {
20790
+ base_asset: {
20791
+ chain: "Bitcoin";
20792
+ asset: "BTC";
20793
+ } | {
20794
+ chain: "Polkadot";
20795
+ asset: "DOT";
20796
+ } | {
20797
+ chain: "Ethereum";
20798
+ asset: "FLIP";
20799
+ } | {
20800
+ chain: "Ethereum";
20801
+ asset: "ETH";
20802
+ } | {
20803
+ chain: "Ethereum";
20804
+ asset: "USDC";
20805
+ } | {
20806
+ chain: "Ethereum";
20807
+ asset: "USDT";
20808
+ } | {
20809
+ chain: "Arbitrum";
20810
+ asset: "ETH";
20811
+ } | {
20812
+ chain: "Arbitrum";
20813
+ asset: "USDC";
20814
+ } | {
20815
+ chain: "Solana";
20816
+ asset: "SOL";
20817
+ } | {
20818
+ chain: "Solana";
20819
+ asset: "USDC";
20820
+ } | {
20821
+ chain: "Assethub";
20822
+ asset: "DOT";
20823
+ } | {
20824
+ chain: "Assethub";
20825
+ asset: "USDC";
20826
+ } | {
20827
+ chain: "Assethub";
20828
+ asset: "USDT";
20829
+ };
20830
+ spread_tick: number;
20831
+ };
20832
+ }, {
20833
+ TickZeroCentered: {
20834
+ base_asset: {
20835
+ chain: "Bitcoin";
20836
+ asset: "BTC";
20837
+ } | {
20838
+ chain: "Polkadot";
20839
+ asset: "DOT";
20840
+ } | {
20841
+ chain: "Ethereum";
20842
+ asset: "FLIP";
20843
+ } | {
20844
+ chain: "Ethereum";
20845
+ asset: "ETH";
20846
+ } | {
20847
+ chain: "Ethereum";
20848
+ asset: "USDC";
20849
+ } | {
20850
+ chain: "Ethereum";
20851
+ asset: "USDT";
20852
+ } | {
20853
+ chain: "Arbitrum";
20854
+ asset: "ETH";
20855
+ } | {
20856
+ chain: "Arbitrum";
20857
+ asset: "USDC";
20858
+ } | {
20859
+ chain: "Solana";
20860
+ asset: "SOL";
20861
+ } | {
20862
+ chain: "Solana";
20863
+ asset: "USDC";
20864
+ } | {
20865
+ chain: "Assethub";
20866
+ asset: "DOT";
20867
+ } | {
20868
+ chain: "Assethub";
20869
+ asset: "USDC";
20870
+ } | {
20871
+ chain: "Assethub";
20872
+ asset: "USDT";
20873
+ };
20874
+ spread_tick: number;
20875
+ };
20876
+ }>;
20877
+ balance: z.ZodArray<z.ZodTuple<[z.ZodUnion<[z.ZodObject<{
20878
+ chain: z.ZodLiteral<"Bitcoin">;
20879
+ asset: z.ZodLiteral<"BTC">;
20880
+ }, "strip", z.ZodTypeAny, {
20881
+ chain: "Bitcoin";
20882
+ asset: "BTC";
20883
+ }, {
20884
+ chain: "Bitcoin";
20885
+ asset: "BTC";
20886
+ }>, z.ZodObject<{
20887
+ chain: z.ZodLiteral<"Polkadot">;
20888
+ asset: z.ZodLiteral<"DOT">;
20889
+ }, "strip", z.ZodTypeAny, {
20890
+ chain: "Polkadot";
20891
+ asset: "DOT";
20892
+ }, {
20893
+ chain: "Polkadot";
20894
+ asset: "DOT";
20895
+ }>, z.ZodObject<{
20896
+ chain: z.ZodLiteral<"Ethereum">;
20897
+ asset: z.ZodLiteral<"FLIP">;
20898
+ }, "strip", z.ZodTypeAny, {
20899
+ chain: "Ethereum";
20900
+ asset: "FLIP";
20901
+ }, {
20902
+ chain: "Ethereum";
20903
+ asset: "FLIP";
20904
+ }>, z.ZodObject<{
20905
+ chain: z.ZodLiteral<"Ethereum">;
20906
+ asset: z.ZodLiteral<"ETH">;
20907
+ }, "strip", z.ZodTypeAny, {
20908
+ chain: "Ethereum";
20909
+ asset: "ETH";
20910
+ }, {
20911
+ chain: "Ethereum";
20912
+ asset: "ETH";
20913
+ }>, z.ZodObject<{
20914
+ chain: z.ZodLiteral<"Ethereum">;
20915
+ asset: z.ZodLiteral<"USDC">;
20916
+ }, "strip", z.ZodTypeAny, {
20917
+ chain: "Ethereum";
20918
+ asset: "USDC";
20919
+ }, {
20920
+ chain: "Ethereum";
20921
+ asset: "USDC";
20922
+ }>, z.ZodObject<{
20923
+ chain: z.ZodLiteral<"Ethereum">;
20924
+ asset: z.ZodLiteral<"USDT">;
20925
+ }, "strip", z.ZodTypeAny, {
20926
+ chain: "Ethereum";
20927
+ asset: "USDT";
20928
+ }, {
20929
+ chain: "Ethereum";
20930
+ asset: "USDT";
20931
+ }>, z.ZodObject<{
20932
+ chain: z.ZodLiteral<"Arbitrum">;
20933
+ asset: z.ZodLiteral<"ETH">;
20934
+ }, "strip", z.ZodTypeAny, {
20935
+ chain: "Arbitrum";
20936
+ asset: "ETH";
20937
+ }, {
20938
+ chain: "Arbitrum";
20939
+ asset: "ETH";
20940
+ }>, z.ZodObject<{
20941
+ chain: z.ZodLiteral<"Arbitrum">;
20942
+ asset: z.ZodLiteral<"USDC">;
20943
+ }, "strip", z.ZodTypeAny, {
20944
+ chain: "Arbitrum";
20945
+ asset: "USDC";
20946
+ }, {
20947
+ chain: "Arbitrum";
20948
+ asset: "USDC";
20949
+ }>, z.ZodObject<{
20950
+ chain: z.ZodLiteral<"Solana">;
20951
+ asset: z.ZodLiteral<"SOL">;
20952
+ }, "strip", z.ZodTypeAny, {
20953
+ chain: "Solana";
20954
+ asset: "SOL";
20955
+ }, {
20956
+ chain: "Solana";
20957
+ asset: "SOL";
20958
+ }>, z.ZodObject<{
20959
+ chain: z.ZodLiteral<"Solana">;
20960
+ asset: z.ZodLiteral<"USDC">;
20961
+ }, "strip", z.ZodTypeAny, {
20962
+ chain: "Solana";
20963
+ asset: "USDC";
20964
+ }, {
20965
+ chain: "Solana";
20966
+ asset: "USDC";
20967
+ }>, z.ZodObject<{
20968
+ chain: z.ZodLiteral<"Assethub">;
20969
+ asset: z.ZodLiteral<"DOT">;
20970
+ }, "strip", z.ZodTypeAny, {
20971
+ chain: "Assethub";
20972
+ asset: "DOT";
20973
+ }, {
20974
+ chain: "Assethub";
20975
+ asset: "DOT";
20976
+ }>, z.ZodObject<{
20977
+ chain: z.ZodLiteral<"Assethub">;
20978
+ asset: z.ZodLiteral<"USDC">;
20979
+ }, "strip", z.ZodTypeAny, {
20980
+ chain: "Assethub";
20981
+ asset: "USDC";
20982
+ }, {
20983
+ chain: "Assethub";
20984
+ asset: "USDC";
20985
+ }>, z.ZodObject<{
20986
+ chain: z.ZodLiteral<"Assethub">;
20987
+ asset: z.ZodLiteral<"USDT">;
20988
+ }, "strip", z.ZodTypeAny, {
20989
+ chain: "Assethub";
20990
+ asset: "USDT";
20991
+ }, {
20992
+ chain: "Assethub";
20993
+ asset: "USDT";
20994
+ }>]>, z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>], null>, "many">;
20995
+ }, "strip", z.ZodTypeAny, {
20996
+ lp_id: string;
20997
+ strategy_id: string;
20998
+ strategy: {
20999
+ TickZeroCentered: {
21000
+ base_asset: {
21001
+ chain: "Bitcoin";
21002
+ asset: "BTC";
21003
+ } | {
21004
+ chain: "Polkadot";
21005
+ asset: "DOT";
21006
+ } | {
21007
+ chain: "Ethereum";
21008
+ asset: "FLIP";
21009
+ } | {
21010
+ chain: "Ethereum";
21011
+ asset: "ETH";
21012
+ } | {
21013
+ chain: "Ethereum";
21014
+ asset: "USDC";
21015
+ } | {
21016
+ chain: "Ethereum";
21017
+ asset: "USDT";
21018
+ } | {
21019
+ chain: "Arbitrum";
21020
+ asset: "ETH";
21021
+ } | {
21022
+ chain: "Arbitrum";
21023
+ asset: "USDC";
21024
+ } | {
21025
+ chain: "Solana";
21026
+ asset: "SOL";
21027
+ } | {
21028
+ chain: "Solana";
21029
+ asset: "USDC";
21030
+ } | {
21031
+ chain: "Assethub";
21032
+ asset: "DOT";
21033
+ } | {
21034
+ chain: "Assethub";
21035
+ asset: "USDC";
21036
+ } | {
21037
+ chain: "Assethub";
21038
+ asset: "USDT";
21039
+ };
21040
+ spread_tick: number;
21041
+ };
21042
+ };
21043
+ balance: [{
21044
+ chain: "Bitcoin";
21045
+ asset: "BTC";
21046
+ } | {
21047
+ chain: "Polkadot";
21048
+ asset: "DOT";
21049
+ } | {
21050
+ chain: "Ethereum";
21051
+ asset: "FLIP";
21052
+ } | {
21053
+ chain: "Ethereum";
21054
+ asset: "ETH";
21055
+ } | {
21056
+ chain: "Ethereum";
21057
+ asset: "USDC";
21058
+ } | {
21059
+ chain: "Ethereum";
21060
+ asset: "USDT";
21061
+ } | {
21062
+ chain: "Arbitrum";
21063
+ asset: "ETH";
21064
+ } | {
21065
+ chain: "Arbitrum";
21066
+ asset: "USDC";
21067
+ } | {
21068
+ chain: "Solana";
21069
+ asset: "SOL";
21070
+ } | {
21071
+ chain: "Solana";
21072
+ asset: "USDC";
21073
+ } | {
21074
+ chain: "Assethub";
21075
+ asset: "DOT";
21076
+ } | {
21077
+ chain: "Assethub";
21078
+ asset: "USDC";
21079
+ } | {
21080
+ chain: "Assethub";
21081
+ asset: "USDT";
21082
+ }, bigint][];
21083
+ }, {
21084
+ lp_id: string;
21085
+ strategy_id: string;
21086
+ strategy: {
21087
+ TickZeroCentered: {
21088
+ base_asset: {
21089
+ chain: "Bitcoin";
21090
+ asset: "BTC";
21091
+ } | {
21092
+ chain: "Polkadot";
21093
+ asset: "DOT";
21094
+ } | {
21095
+ chain: "Ethereum";
21096
+ asset: "FLIP";
21097
+ } | {
21098
+ chain: "Ethereum";
21099
+ asset: "ETH";
21100
+ } | {
21101
+ chain: "Ethereum";
21102
+ asset: "USDC";
21103
+ } | {
21104
+ chain: "Ethereum";
21105
+ asset: "USDT";
21106
+ } | {
21107
+ chain: "Arbitrum";
21108
+ asset: "ETH";
21109
+ } | {
21110
+ chain: "Arbitrum";
21111
+ asset: "USDC";
21112
+ } | {
21113
+ chain: "Solana";
21114
+ asset: "SOL";
21115
+ } | {
21116
+ chain: "Solana";
21117
+ asset: "USDC";
21118
+ } | {
21119
+ chain: "Assethub";
21120
+ asset: "DOT";
21121
+ } | {
21122
+ chain: "Assethub";
21123
+ asset: "USDC";
21124
+ } | {
21125
+ chain: "Assethub";
21126
+ asset: "USDT";
21127
+ };
21128
+ spread_tick: number;
21129
+ };
21130
+ };
21131
+ balance: [{
21132
+ chain: "Bitcoin";
21133
+ asset: "BTC";
21134
+ } | {
21135
+ chain: "Polkadot";
21136
+ asset: "DOT";
21137
+ } | {
21138
+ chain: "Ethereum";
21139
+ asset: "FLIP";
21140
+ } | {
21141
+ chain: "Ethereum";
21142
+ asset: "ETH";
21143
+ } | {
21144
+ chain: "Ethereum";
21145
+ asset: "USDC";
21146
+ } | {
21147
+ chain: "Ethereum";
21148
+ asset: "USDT";
21149
+ } | {
21150
+ chain: "Arbitrum";
21151
+ asset: "ETH";
21152
+ } | {
21153
+ chain: "Arbitrum";
21154
+ asset: "USDC";
21155
+ } | {
21156
+ chain: "Solana";
21157
+ asset: "SOL";
21158
+ } | {
21159
+ chain: "Solana";
21160
+ asset: "USDC";
21161
+ } | {
21162
+ chain: "Assethub";
21163
+ asset: "DOT";
21164
+ } | {
21165
+ chain: "Assethub";
21166
+ asset: "USDC";
21167
+ } | {
21168
+ chain: "Assethub";
21169
+ asset: "USDT";
21170
+ }, string | number][];
21171
+ }>, "many">>;
19499
21172
 
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 };
21173
+ export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, broker, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfAuctionState, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFailedCallEvm, cfFlipSuppy, cfFundingEnvironment, cfGetTradingStrategies, cfIngressEgressEnvironment, cfPoolDepth, cfPoolOrderbook, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, cfTradingStrategy, chainGetBlockHash, ethereumAddress, hexString, liquidityProvider, lpTotalBalances, numberOrHex, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };