@longdotxyz/shared 0.0.30 → 0.0.32

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.
@@ -1,20 +1,23 @@
1
1
  export declare const rootContract: {
2
2
  assets: {
3
3
  listAssets: {
4
+ description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
4
5
  query: import("zod").ZodObject<{
6
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
5
7
  status: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").AssetStatus>>>;
6
8
  limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
7
9
  offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
8
10
  }, "strip", import("zod").ZodTypeAny, {
9
11
  status: import("..").AssetStatus;
12
+ chainId: import("..").ChainID;
10
13
  limit: number;
11
14
  offset: number;
12
15
  }, {
13
16
  status?: import("..").AssetStatus | undefined;
17
+ chainId?: import("..").ChainID | undefined;
14
18
  limit?: number | undefined;
15
19
  offset?: number | undefined;
16
20
  }>;
17
- description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
18
21
  method: "GET";
19
22
  path: "/assets/";
20
23
  responses: {
@@ -50,7 +53,43 @@ export declare const rootContract: {
50
53
  token_name: import("zod").ZodString;
51
54
  token_description: import("zod").ZodNullable<import("zod").ZodString>;
52
55
  token_symbol: import("zod").ZodString;
53
- token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
56
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
57
+ name: import("zod").ZodOptional<import("zod").ZodString>;
58
+ description: import("zod").ZodOptional<import("zod").ZodString>;
59
+ image_hash: import("zod").ZodOptional<import("zod").ZodString>;
60
+ fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
61
+ social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
62
+ vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
63
+ address: import("zod").ZodString;
64
+ percentage: import("zod").ZodNumber;
65
+ }, "strip", import("zod").ZodTypeAny, {
66
+ address: string;
67
+ percentage: number;
68
+ }, {
69
+ address: string;
70
+ percentage: number;
71
+ }>, "many">>;
72
+ }, "strip", import("zod").ZodTypeAny, {
73
+ name?: string | undefined;
74
+ description?: string | undefined;
75
+ image_hash?: string | undefined;
76
+ fee_receiver?: string | undefined;
77
+ social_links?: string[] | undefined;
78
+ vesting_recipients?: {
79
+ address: string;
80
+ percentage: number;
81
+ }[] | undefined;
82
+ }, {
83
+ name?: string | undefined;
84
+ description?: string | undefined;
85
+ image_hash?: string | undefined;
86
+ fee_receiver?: string | undefined;
87
+ social_links?: string[] | undefined;
88
+ vesting_recipients?: {
89
+ address: string;
90
+ percentage: number;
91
+ }[] | undefined;
92
+ }>>;
54
93
  token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
55
94
  token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
56
95
  token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
@@ -60,21 +99,41 @@ export declare const rootContract: {
60
99
  token_name: string;
61
100
  token_description: string | null;
62
101
  token_symbol: string;
102
+ token_uri_data: {
103
+ name?: string | undefined;
104
+ description?: string | undefined;
105
+ image_hash?: string | undefined;
106
+ fee_receiver?: string | undefined;
107
+ social_links?: string[] | undefined;
108
+ vesting_recipients?: {
109
+ address: string;
110
+ percentage: number;
111
+ }[] | undefined;
112
+ } | null;
63
113
  token_image_public_url: string | null;
64
114
  token_creator_address: `0x${string}`;
65
115
  token_fee_receiver_address: `0x${string}`;
66
116
  token_vesting_recipient_addresses: `0x${string}`[];
67
- token_uri_data?: any;
68
117
  }, {
69
118
  token_address: string;
70
119
  token_name: string;
71
120
  token_description: string | null;
72
121
  token_symbol: string;
122
+ token_uri_data: {
123
+ name?: string | undefined;
124
+ description?: string | undefined;
125
+ image_hash?: string | undefined;
126
+ fee_receiver?: string | undefined;
127
+ social_links?: string[] | undefined;
128
+ vesting_recipients?: {
129
+ address: string;
130
+ percentage: number;
131
+ }[] | undefined;
132
+ } | null;
73
133
  token_image_public_url: string | null;
74
134
  token_creator_address: string;
75
135
  token_fee_receiver_address: string;
76
136
  token_vesting_recipient_addresses: string[];
77
- token_uri_data?: any;
78
137
  }>;
79
138
  }, "strip", import("zod").ZodTypeAny, {
80
139
  pool_current_price: string;
@@ -102,11 +161,21 @@ export declare const rootContract: {
102
161
  token_name: string;
103
162
  token_description: string | null;
104
163
  token_symbol: string;
164
+ token_uri_data: {
165
+ name?: string | undefined;
166
+ description?: string | undefined;
167
+ image_hash?: string | undefined;
168
+ fee_receiver?: string | undefined;
169
+ social_links?: string[] | undefined;
170
+ vesting_recipients?: {
171
+ address: string;
172
+ percentage: number;
173
+ }[] | undefined;
174
+ } | null;
105
175
  token_image_public_url: string | null;
106
176
  token_creator_address: `0x${string}`;
107
177
  token_fee_receiver_address: `0x${string}`;
108
178
  token_vesting_recipient_addresses: `0x${string}`[];
109
- token_uri_data?: any;
110
179
  };
111
180
  }, {
112
181
  pool_current_price: string;
@@ -134,11 +203,21 @@ export declare const rootContract: {
134
203
  token_name: string;
135
204
  token_description: string | null;
136
205
  token_symbol: string;
206
+ token_uri_data: {
207
+ name?: string | undefined;
208
+ description?: string | undefined;
209
+ image_hash?: string | undefined;
210
+ fee_receiver?: string | undefined;
211
+ social_links?: string[] | undefined;
212
+ vesting_recipients?: {
213
+ address: string;
214
+ percentage: number;
215
+ }[] | undefined;
216
+ } | null;
137
217
  token_image_public_url: string | null;
138
218
  token_creator_address: string;
139
219
  token_fee_receiver_address: string;
140
220
  token_vesting_recipient_addresses: string[];
141
- token_uri_data?: any;
142
221
  };
143
222
  }>;
144
223
  graduation_pool: import("zod").ZodObject<{
@@ -156,7 +235,43 @@ export declare const rootContract: {
156
235
  token_name: import("zod").ZodString;
157
236
  token_description: import("zod").ZodNullable<import("zod").ZodString>;
158
237
  token_symbol: import("zod").ZodString;
159
- token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
238
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
239
+ name: import("zod").ZodOptional<import("zod").ZodString>;
240
+ description: import("zod").ZodOptional<import("zod").ZodString>;
241
+ image_hash: import("zod").ZodOptional<import("zod").ZodString>;
242
+ fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
243
+ social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
244
+ vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
245
+ address: import("zod").ZodString;
246
+ percentage: import("zod").ZodNumber;
247
+ }, "strip", import("zod").ZodTypeAny, {
248
+ address: string;
249
+ percentage: number;
250
+ }, {
251
+ address: string;
252
+ percentage: number;
253
+ }>, "many">>;
254
+ }, "strip", import("zod").ZodTypeAny, {
255
+ name?: string | undefined;
256
+ description?: string | undefined;
257
+ image_hash?: string | undefined;
258
+ fee_receiver?: string | undefined;
259
+ social_links?: string[] | undefined;
260
+ vesting_recipients?: {
261
+ address: string;
262
+ percentage: number;
263
+ }[] | undefined;
264
+ }, {
265
+ name?: string | undefined;
266
+ description?: string | undefined;
267
+ image_hash?: string | undefined;
268
+ fee_receiver?: string | undefined;
269
+ social_links?: string[] | undefined;
270
+ vesting_recipients?: {
271
+ address: string;
272
+ percentage: number;
273
+ }[] | undefined;
274
+ }>>;
160
275
  token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
161
276
  token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
162
277
  token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
@@ -167,23 +282,43 @@ export declare const rootContract: {
167
282
  token_name: string;
168
283
  token_description: string | null;
169
284
  token_symbol: string;
285
+ token_uri_data: {
286
+ name?: string | undefined;
287
+ description?: string | undefined;
288
+ image_hash?: string | undefined;
289
+ fee_receiver?: string | undefined;
290
+ social_links?: string[] | undefined;
291
+ vesting_recipients?: {
292
+ address: string;
293
+ percentage: number;
294
+ }[] | undefined;
295
+ } | null;
170
296
  token_image_public_url: string | null;
171
297
  token_creator_address: `0x${string}`;
172
298
  token_fee_receiver_address: `0x${string}`;
173
299
  token_vesting_recipient_addresses: `0x${string}`[];
174
300
  integrator_address: string;
175
- token_uri_data?: any;
176
301
  }, {
177
302
  token_address: string;
178
303
  token_name: string;
179
304
  token_description: string | null;
180
305
  token_symbol: string;
306
+ token_uri_data: {
307
+ name?: string | undefined;
308
+ description?: string | undefined;
309
+ image_hash?: string | undefined;
310
+ fee_receiver?: string | undefined;
311
+ social_links?: string[] | undefined;
312
+ vesting_recipients?: {
313
+ address: string;
314
+ percentage: number;
315
+ }[] | undefined;
316
+ } | null;
181
317
  token_image_public_url: string | null;
182
318
  token_creator_address: string;
183
319
  token_fee_receiver_address: string;
184
320
  token_vesting_recipient_addresses: string[];
185
321
  integrator_address: string;
186
- token_uri_data?: any;
187
322
  }>;
188
323
  }, "strip", import("zod").ZodTypeAny, {
189
324
  pool_current_price: string;
@@ -200,12 +335,22 @@ export declare const rootContract: {
200
335
  token_name: string;
201
336
  token_description: string | null;
202
337
  token_symbol: string;
338
+ token_uri_data: {
339
+ name?: string | undefined;
340
+ description?: string | undefined;
341
+ image_hash?: string | undefined;
342
+ fee_receiver?: string | undefined;
343
+ social_links?: string[] | undefined;
344
+ vesting_recipients?: {
345
+ address: string;
346
+ percentage: number;
347
+ }[] | undefined;
348
+ } | null;
203
349
  token_image_public_url: string | null;
204
350
  token_creator_address: `0x${string}`;
205
351
  token_fee_receiver_address: `0x${string}`;
206
352
  token_vesting_recipient_addresses: `0x${string}`[];
207
353
  integrator_address: string;
208
- token_uri_data?: any;
209
354
  };
210
355
  }, {
211
356
  pool_current_price: string;
@@ -222,12 +367,22 @@ export declare const rootContract: {
222
367
  token_name: string;
223
368
  token_description: string | null;
224
369
  token_symbol: string;
370
+ token_uri_data: {
371
+ name?: string | undefined;
372
+ description?: string | undefined;
373
+ image_hash?: string | undefined;
374
+ fee_receiver?: string | undefined;
375
+ social_links?: string[] | undefined;
376
+ vesting_recipients?: {
377
+ address: string;
378
+ percentage: number;
379
+ }[] | undefined;
380
+ } | null;
225
381
  token_image_public_url: string | null;
226
382
  token_creator_address: string;
227
383
  token_fee_receiver_address: string;
228
384
  token_vesting_recipient_addresses: string[];
229
385
  integrator_address: string;
230
- token_uri_data?: any;
231
386
  };
232
387
  }>;
233
388
  }, "strip", import("zod").ZodTypeAny, {
@@ -261,11 +416,21 @@ export declare const rootContract: {
261
416
  token_name: string;
262
417
  token_description: string | null;
263
418
  token_symbol: string;
419
+ token_uri_data: {
420
+ name?: string | undefined;
421
+ description?: string | undefined;
422
+ image_hash?: string | undefined;
423
+ fee_receiver?: string | undefined;
424
+ social_links?: string[] | undefined;
425
+ vesting_recipients?: {
426
+ address: string;
427
+ percentage: number;
428
+ }[] | undefined;
429
+ } | null;
264
430
  token_image_public_url: string | null;
265
431
  token_creator_address: `0x${string}`;
266
432
  token_fee_receiver_address: `0x${string}`;
267
433
  token_vesting_recipient_addresses: `0x${string}`[];
268
- token_uri_data?: any;
269
434
  };
270
435
  };
271
436
  graduation_pool: {
@@ -283,12 +448,22 @@ export declare const rootContract: {
283
448
  token_name: string;
284
449
  token_description: string | null;
285
450
  token_symbol: string;
451
+ token_uri_data: {
452
+ name?: string | undefined;
453
+ description?: string | undefined;
454
+ image_hash?: string | undefined;
455
+ fee_receiver?: string | undefined;
456
+ social_links?: string[] | undefined;
457
+ vesting_recipients?: {
458
+ address: string;
459
+ percentage: number;
460
+ }[] | undefined;
461
+ } | null;
286
462
  token_image_public_url: string | null;
287
463
  token_creator_address: `0x${string}`;
288
464
  token_fee_receiver_address: `0x${string}`;
289
465
  token_vesting_recipient_addresses: `0x${string}`[];
290
466
  integrator_address: string;
291
- token_uri_data?: any;
292
467
  };
293
468
  };
294
469
  }, {
@@ -322,11 +497,21 @@ export declare const rootContract: {
322
497
  token_name: string;
323
498
  token_description: string | null;
324
499
  token_symbol: string;
500
+ token_uri_data: {
501
+ name?: string | undefined;
502
+ description?: string | undefined;
503
+ image_hash?: string | undefined;
504
+ fee_receiver?: string | undefined;
505
+ social_links?: string[] | undefined;
506
+ vesting_recipients?: {
507
+ address: string;
508
+ percentage: number;
509
+ }[] | undefined;
510
+ } | null;
325
511
  token_image_public_url: string | null;
326
512
  token_creator_address: string;
327
513
  token_fee_receiver_address: string;
328
514
  token_vesting_recipient_addresses: string[];
329
- token_uri_data?: any;
330
515
  };
331
516
  };
332
517
  graduation_pool: {
@@ -344,12 +529,22 @@ export declare const rootContract: {
344
529
  token_name: string;
345
530
  token_description: string | null;
346
531
  token_symbol: string;
532
+ token_uri_data: {
533
+ name?: string | undefined;
534
+ description?: string | undefined;
535
+ image_hash?: string | undefined;
536
+ fee_receiver?: string | undefined;
537
+ social_links?: string[] | undefined;
538
+ vesting_recipients?: {
539
+ address: string;
540
+ percentage: number;
541
+ }[] | undefined;
542
+ } | null;
347
543
  token_image_public_url: string | null;
348
544
  token_creator_address: string;
349
545
  token_fee_receiver_address: string;
350
546
  token_vesting_recipient_addresses: string[];
351
547
  integrator_address: string;
352
- token_uri_data?: any;
353
548
  };
354
549
  };
355
550
  }>, "many">;
@@ -385,11 +580,21 @@ export declare const rootContract: {
385
580
  token_name: string;
386
581
  token_description: string | null;
387
582
  token_symbol: string;
583
+ token_uri_data: {
584
+ name?: string | undefined;
585
+ description?: string | undefined;
586
+ image_hash?: string | undefined;
587
+ fee_receiver?: string | undefined;
588
+ social_links?: string[] | undefined;
589
+ vesting_recipients?: {
590
+ address: string;
591
+ percentage: number;
592
+ }[] | undefined;
593
+ } | null;
388
594
  token_image_public_url: string | null;
389
595
  token_creator_address: `0x${string}`;
390
596
  token_fee_receiver_address: `0x${string}`;
391
597
  token_vesting_recipient_addresses: `0x${string}`[];
392
- token_uri_data?: any;
393
598
  };
394
599
  };
395
600
  graduation_pool: {
@@ -407,12 +612,22 @@ export declare const rootContract: {
407
612
  token_name: string;
408
613
  token_description: string | null;
409
614
  token_symbol: string;
615
+ token_uri_data: {
616
+ name?: string | undefined;
617
+ description?: string | undefined;
618
+ image_hash?: string | undefined;
619
+ fee_receiver?: string | undefined;
620
+ social_links?: string[] | undefined;
621
+ vesting_recipients?: {
622
+ address: string;
623
+ percentage: number;
624
+ }[] | undefined;
625
+ } | null;
410
626
  token_image_public_url: string | null;
411
627
  token_creator_address: `0x${string}`;
412
628
  token_fee_receiver_address: `0x${string}`;
413
629
  token_vesting_recipient_addresses: `0x${string}`[];
414
630
  integrator_address: string;
415
- token_uri_data?: any;
416
631
  };
417
632
  };
418
633
  }[];
@@ -448,11 +663,21 @@ export declare const rootContract: {
448
663
  token_name: string;
449
664
  token_description: string | null;
450
665
  token_symbol: string;
666
+ token_uri_data: {
667
+ name?: string | undefined;
668
+ description?: string | undefined;
669
+ image_hash?: string | undefined;
670
+ fee_receiver?: string | undefined;
671
+ social_links?: string[] | undefined;
672
+ vesting_recipients?: {
673
+ address: string;
674
+ percentage: number;
675
+ }[] | undefined;
676
+ } | null;
451
677
  token_image_public_url: string | null;
452
678
  token_creator_address: string;
453
679
  token_fee_receiver_address: string;
454
680
  token_vesting_recipient_addresses: string[];
455
- token_uri_data?: any;
456
681
  };
457
682
  };
458
683
  graduation_pool: {
@@ -470,12 +695,22 @@ export declare const rootContract: {
470
695
  token_name: string;
471
696
  token_description: string | null;
472
697
  token_symbol: string;
698
+ token_uri_data: {
699
+ name?: string | undefined;
700
+ description?: string | undefined;
701
+ image_hash?: string | undefined;
702
+ fee_receiver?: string | undefined;
703
+ social_links?: string[] | undefined;
704
+ vesting_recipients?: {
705
+ address: string;
706
+ percentage: number;
707
+ }[] | undefined;
708
+ } | null;
473
709
  token_image_public_url: string | null;
474
710
  token_creator_address: string;
475
711
  token_fee_receiver_address: string;
476
712
  token_vesting_recipient_addresses: string[];
477
713
  integrator_address: string;
478
- token_uri_data?: any;
479
714
  };
480
715
  };
481
716
  }[];
@@ -483,17 +718,20 @@ export declare const rootContract: {
483
718
  };
484
719
  };
485
720
  searchAssets: {
721
+ description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
486
722
  query: import("zod").ZodObject<{
723
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
487
724
  term: import("zod").ZodString;
488
725
  limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
489
726
  }, "strip", import("zod").ZodTypeAny, {
727
+ chainId: import("..").ChainID;
490
728
  limit: number;
491
729
  term: string;
492
730
  }, {
493
731
  term: string;
732
+ chainId?: import("..").ChainID | undefined;
494
733
  limit?: number | undefined;
495
734
  }>;
496
- description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
497
735
  method: "GET";
498
736
  path: "/assets/search";
499
737
  responses: {
@@ -529,7 +767,43 @@ export declare const rootContract: {
529
767
  token_name: import("zod").ZodString;
530
768
  token_description: import("zod").ZodNullable<import("zod").ZodString>;
531
769
  token_symbol: import("zod").ZodString;
532
- token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
770
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
771
+ name: import("zod").ZodOptional<import("zod").ZodString>;
772
+ description: import("zod").ZodOptional<import("zod").ZodString>;
773
+ image_hash: import("zod").ZodOptional<import("zod").ZodString>;
774
+ fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
775
+ social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
776
+ vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
777
+ address: import("zod").ZodString;
778
+ percentage: import("zod").ZodNumber;
779
+ }, "strip", import("zod").ZodTypeAny, {
780
+ address: string;
781
+ percentage: number;
782
+ }, {
783
+ address: string;
784
+ percentage: number;
785
+ }>, "many">>;
786
+ }, "strip", import("zod").ZodTypeAny, {
787
+ name?: string | undefined;
788
+ description?: string | undefined;
789
+ image_hash?: string | undefined;
790
+ fee_receiver?: string | undefined;
791
+ social_links?: string[] | undefined;
792
+ vesting_recipients?: {
793
+ address: string;
794
+ percentage: number;
795
+ }[] | undefined;
796
+ }, {
797
+ name?: string | undefined;
798
+ description?: string | undefined;
799
+ image_hash?: string | undefined;
800
+ fee_receiver?: string | undefined;
801
+ social_links?: string[] | undefined;
802
+ vesting_recipients?: {
803
+ address: string;
804
+ percentage: number;
805
+ }[] | undefined;
806
+ }>>;
533
807
  token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
534
808
  token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
535
809
  token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
@@ -539,21 +813,41 @@ export declare const rootContract: {
539
813
  token_name: string;
540
814
  token_description: string | null;
541
815
  token_symbol: string;
816
+ token_uri_data: {
817
+ name?: string | undefined;
818
+ description?: string | undefined;
819
+ image_hash?: string | undefined;
820
+ fee_receiver?: string | undefined;
821
+ social_links?: string[] | undefined;
822
+ vesting_recipients?: {
823
+ address: string;
824
+ percentage: number;
825
+ }[] | undefined;
826
+ } | null;
542
827
  token_image_public_url: string | null;
543
828
  token_creator_address: `0x${string}`;
544
829
  token_fee_receiver_address: `0x${string}`;
545
830
  token_vesting_recipient_addresses: `0x${string}`[];
546
- token_uri_data?: any;
547
831
  }, {
548
832
  token_address: string;
549
833
  token_name: string;
550
834
  token_description: string | null;
551
835
  token_symbol: string;
836
+ token_uri_data: {
837
+ name?: string | undefined;
838
+ description?: string | undefined;
839
+ image_hash?: string | undefined;
840
+ fee_receiver?: string | undefined;
841
+ social_links?: string[] | undefined;
842
+ vesting_recipients?: {
843
+ address: string;
844
+ percentage: number;
845
+ }[] | undefined;
846
+ } | null;
552
847
  token_image_public_url: string | null;
553
848
  token_creator_address: string;
554
849
  token_fee_receiver_address: string;
555
850
  token_vesting_recipient_addresses: string[];
556
- token_uri_data?: any;
557
851
  }>;
558
852
  }, "strip", import("zod").ZodTypeAny, {
559
853
  pool_current_price: string;
@@ -581,11 +875,21 @@ export declare const rootContract: {
581
875
  token_name: string;
582
876
  token_description: string | null;
583
877
  token_symbol: string;
878
+ token_uri_data: {
879
+ name?: string | undefined;
880
+ description?: string | undefined;
881
+ image_hash?: string | undefined;
882
+ fee_receiver?: string | undefined;
883
+ social_links?: string[] | undefined;
884
+ vesting_recipients?: {
885
+ address: string;
886
+ percentage: number;
887
+ }[] | undefined;
888
+ } | null;
584
889
  token_image_public_url: string | null;
585
890
  token_creator_address: `0x${string}`;
586
891
  token_fee_receiver_address: `0x${string}`;
587
892
  token_vesting_recipient_addresses: `0x${string}`[];
588
- token_uri_data?: any;
589
893
  };
590
894
  }, {
591
895
  pool_current_price: string;
@@ -613,11 +917,21 @@ export declare const rootContract: {
613
917
  token_name: string;
614
918
  token_description: string | null;
615
919
  token_symbol: string;
920
+ token_uri_data: {
921
+ name?: string | undefined;
922
+ description?: string | undefined;
923
+ image_hash?: string | undefined;
924
+ fee_receiver?: string | undefined;
925
+ social_links?: string[] | undefined;
926
+ vesting_recipients?: {
927
+ address: string;
928
+ percentage: number;
929
+ }[] | undefined;
930
+ } | null;
616
931
  token_image_public_url: string | null;
617
932
  token_creator_address: string;
618
933
  token_fee_receiver_address: string;
619
934
  token_vesting_recipient_addresses: string[];
620
- token_uri_data?: any;
621
935
  };
622
936
  }>;
623
937
  graduation_pool: import("zod").ZodObject<{
@@ -635,7 +949,43 @@ export declare const rootContract: {
635
949
  token_name: import("zod").ZodString;
636
950
  token_description: import("zod").ZodNullable<import("zod").ZodString>;
637
951
  token_symbol: import("zod").ZodString;
638
- token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
952
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
953
+ name: import("zod").ZodOptional<import("zod").ZodString>;
954
+ description: import("zod").ZodOptional<import("zod").ZodString>;
955
+ image_hash: import("zod").ZodOptional<import("zod").ZodString>;
956
+ fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
957
+ social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
958
+ vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
959
+ address: import("zod").ZodString;
960
+ percentage: import("zod").ZodNumber;
961
+ }, "strip", import("zod").ZodTypeAny, {
962
+ address: string;
963
+ percentage: number;
964
+ }, {
965
+ address: string;
966
+ percentage: number;
967
+ }>, "many">>;
968
+ }, "strip", import("zod").ZodTypeAny, {
969
+ name?: string | undefined;
970
+ description?: string | undefined;
971
+ image_hash?: string | undefined;
972
+ fee_receiver?: string | undefined;
973
+ social_links?: string[] | undefined;
974
+ vesting_recipients?: {
975
+ address: string;
976
+ percentage: number;
977
+ }[] | undefined;
978
+ }, {
979
+ name?: string | undefined;
980
+ description?: string | undefined;
981
+ image_hash?: string | undefined;
982
+ fee_receiver?: string | undefined;
983
+ social_links?: string[] | undefined;
984
+ vesting_recipients?: {
985
+ address: string;
986
+ percentage: number;
987
+ }[] | undefined;
988
+ }>>;
639
989
  token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
640
990
  token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
641
991
  token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
@@ -646,23 +996,43 @@ export declare const rootContract: {
646
996
  token_name: string;
647
997
  token_description: string | null;
648
998
  token_symbol: string;
999
+ token_uri_data: {
1000
+ name?: string | undefined;
1001
+ description?: string | undefined;
1002
+ image_hash?: string | undefined;
1003
+ fee_receiver?: string | undefined;
1004
+ social_links?: string[] | undefined;
1005
+ vesting_recipients?: {
1006
+ address: string;
1007
+ percentage: number;
1008
+ }[] | undefined;
1009
+ } | null;
649
1010
  token_image_public_url: string | null;
650
1011
  token_creator_address: `0x${string}`;
651
1012
  token_fee_receiver_address: `0x${string}`;
652
1013
  token_vesting_recipient_addresses: `0x${string}`[];
653
1014
  integrator_address: string;
654
- token_uri_data?: any;
655
1015
  }, {
656
1016
  token_address: string;
657
1017
  token_name: string;
658
1018
  token_description: string | null;
659
1019
  token_symbol: string;
1020
+ token_uri_data: {
1021
+ name?: string | undefined;
1022
+ description?: string | undefined;
1023
+ image_hash?: string | undefined;
1024
+ fee_receiver?: string | undefined;
1025
+ social_links?: string[] | undefined;
1026
+ vesting_recipients?: {
1027
+ address: string;
1028
+ percentage: number;
1029
+ }[] | undefined;
1030
+ } | null;
660
1031
  token_image_public_url: string | null;
661
1032
  token_creator_address: string;
662
1033
  token_fee_receiver_address: string;
663
1034
  token_vesting_recipient_addresses: string[];
664
1035
  integrator_address: string;
665
- token_uri_data?: any;
666
1036
  }>;
667
1037
  }, "strip", import("zod").ZodTypeAny, {
668
1038
  pool_current_price: string;
@@ -679,12 +1049,22 @@ export declare const rootContract: {
679
1049
  token_name: string;
680
1050
  token_description: string | null;
681
1051
  token_symbol: string;
1052
+ token_uri_data: {
1053
+ name?: string | undefined;
1054
+ description?: string | undefined;
1055
+ image_hash?: string | undefined;
1056
+ fee_receiver?: string | undefined;
1057
+ social_links?: string[] | undefined;
1058
+ vesting_recipients?: {
1059
+ address: string;
1060
+ percentage: number;
1061
+ }[] | undefined;
1062
+ } | null;
682
1063
  token_image_public_url: string | null;
683
1064
  token_creator_address: `0x${string}`;
684
1065
  token_fee_receiver_address: `0x${string}`;
685
1066
  token_vesting_recipient_addresses: `0x${string}`[];
686
1067
  integrator_address: string;
687
- token_uri_data?: any;
688
1068
  };
689
1069
  }, {
690
1070
  pool_current_price: string;
@@ -701,12 +1081,22 @@ export declare const rootContract: {
701
1081
  token_name: string;
702
1082
  token_description: string | null;
703
1083
  token_symbol: string;
1084
+ token_uri_data: {
1085
+ name?: string | undefined;
1086
+ description?: string | undefined;
1087
+ image_hash?: string | undefined;
1088
+ fee_receiver?: string | undefined;
1089
+ social_links?: string[] | undefined;
1090
+ vesting_recipients?: {
1091
+ address: string;
1092
+ percentage: number;
1093
+ }[] | undefined;
1094
+ } | null;
704
1095
  token_image_public_url: string | null;
705
1096
  token_creator_address: string;
706
1097
  token_fee_receiver_address: string;
707
1098
  token_vesting_recipient_addresses: string[];
708
1099
  integrator_address: string;
709
- token_uri_data?: any;
710
1100
  };
711
1101
  }>;
712
1102
  }, "strip", import("zod").ZodTypeAny, {
@@ -740,11 +1130,21 @@ export declare const rootContract: {
740
1130
  token_name: string;
741
1131
  token_description: string | null;
742
1132
  token_symbol: string;
1133
+ token_uri_data: {
1134
+ name?: string | undefined;
1135
+ description?: string | undefined;
1136
+ image_hash?: string | undefined;
1137
+ fee_receiver?: string | undefined;
1138
+ social_links?: string[] | undefined;
1139
+ vesting_recipients?: {
1140
+ address: string;
1141
+ percentage: number;
1142
+ }[] | undefined;
1143
+ } | null;
743
1144
  token_image_public_url: string | null;
744
1145
  token_creator_address: `0x${string}`;
745
1146
  token_fee_receiver_address: `0x${string}`;
746
1147
  token_vesting_recipient_addresses: `0x${string}`[];
747
- token_uri_data?: any;
748
1148
  };
749
1149
  };
750
1150
  graduation_pool: {
@@ -762,12 +1162,22 @@ export declare const rootContract: {
762
1162
  token_name: string;
763
1163
  token_description: string | null;
764
1164
  token_symbol: string;
1165
+ token_uri_data: {
1166
+ name?: string | undefined;
1167
+ description?: string | undefined;
1168
+ image_hash?: string | undefined;
1169
+ fee_receiver?: string | undefined;
1170
+ social_links?: string[] | undefined;
1171
+ vesting_recipients?: {
1172
+ address: string;
1173
+ percentage: number;
1174
+ }[] | undefined;
1175
+ } | null;
765
1176
  token_image_public_url: string | null;
766
1177
  token_creator_address: `0x${string}`;
767
1178
  token_fee_receiver_address: `0x${string}`;
768
1179
  token_vesting_recipient_addresses: `0x${string}`[];
769
1180
  integrator_address: string;
770
- token_uri_data?: any;
771
1181
  };
772
1182
  };
773
1183
  }, {
@@ -801,11 +1211,21 @@ export declare const rootContract: {
801
1211
  token_name: string;
802
1212
  token_description: string | null;
803
1213
  token_symbol: string;
1214
+ token_uri_data: {
1215
+ name?: string | undefined;
1216
+ description?: string | undefined;
1217
+ image_hash?: string | undefined;
1218
+ fee_receiver?: string | undefined;
1219
+ social_links?: string[] | undefined;
1220
+ vesting_recipients?: {
1221
+ address: string;
1222
+ percentage: number;
1223
+ }[] | undefined;
1224
+ } | null;
804
1225
  token_image_public_url: string | null;
805
1226
  token_creator_address: string;
806
1227
  token_fee_receiver_address: string;
807
1228
  token_vesting_recipient_addresses: string[];
808
- token_uri_data?: any;
809
1229
  };
810
1230
  };
811
1231
  graduation_pool: {
@@ -823,12 +1243,22 @@ export declare const rootContract: {
823
1243
  token_name: string;
824
1244
  token_description: string | null;
825
1245
  token_symbol: string;
1246
+ token_uri_data: {
1247
+ name?: string | undefined;
1248
+ description?: string | undefined;
1249
+ image_hash?: string | undefined;
1250
+ fee_receiver?: string | undefined;
1251
+ social_links?: string[] | undefined;
1252
+ vesting_recipients?: {
1253
+ address: string;
1254
+ percentage: number;
1255
+ }[] | undefined;
1256
+ } | null;
826
1257
  token_image_public_url: string | null;
827
1258
  token_creator_address: string;
828
1259
  token_fee_receiver_address: string;
829
1260
  token_vesting_recipient_addresses: string[];
830
1261
  integrator_address: string;
831
- token_uri_data?: any;
832
1262
  };
833
1263
  };
834
1264
  }>, "many">;
@@ -864,11 +1294,21 @@ export declare const rootContract: {
864
1294
  token_name: string;
865
1295
  token_description: string | null;
866
1296
  token_symbol: string;
1297
+ token_uri_data: {
1298
+ name?: string | undefined;
1299
+ description?: string | undefined;
1300
+ image_hash?: string | undefined;
1301
+ fee_receiver?: string | undefined;
1302
+ social_links?: string[] | undefined;
1303
+ vesting_recipients?: {
1304
+ address: string;
1305
+ percentage: number;
1306
+ }[] | undefined;
1307
+ } | null;
867
1308
  token_image_public_url: string | null;
868
1309
  token_creator_address: `0x${string}`;
869
1310
  token_fee_receiver_address: `0x${string}`;
870
1311
  token_vesting_recipient_addresses: `0x${string}`[];
871
- token_uri_data?: any;
872
1312
  };
873
1313
  };
874
1314
  graduation_pool: {
@@ -886,12 +1326,22 @@ export declare const rootContract: {
886
1326
  token_name: string;
887
1327
  token_description: string | null;
888
1328
  token_symbol: string;
1329
+ token_uri_data: {
1330
+ name?: string | undefined;
1331
+ description?: string | undefined;
1332
+ image_hash?: string | undefined;
1333
+ fee_receiver?: string | undefined;
1334
+ social_links?: string[] | undefined;
1335
+ vesting_recipients?: {
1336
+ address: string;
1337
+ percentage: number;
1338
+ }[] | undefined;
1339
+ } | null;
889
1340
  token_image_public_url: string | null;
890
1341
  token_creator_address: `0x${string}`;
891
1342
  token_fee_receiver_address: `0x${string}`;
892
1343
  token_vesting_recipient_addresses: `0x${string}`[];
893
1344
  integrator_address: string;
894
- token_uri_data?: any;
895
1345
  };
896
1346
  };
897
1347
  }[];
@@ -927,11 +1377,21 @@ export declare const rootContract: {
927
1377
  token_name: string;
928
1378
  token_description: string | null;
929
1379
  token_symbol: string;
1380
+ token_uri_data: {
1381
+ name?: string | undefined;
1382
+ description?: string | undefined;
1383
+ image_hash?: string | undefined;
1384
+ fee_receiver?: string | undefined;
1385
+ social_links?: string[] | undefined;
1386
+ vesting_recipients?: {
1387
+ address: string;
1388
+ percentage: number;
1389
+ }[] | undefined;
1390
+ } | null;
930
1391
  token_image_public_url: string | null;
931
1392
  token_creator_address: string;
932
1393
  token_fee_receiver_address: string;
933
1394
  token_vesting_recipient_addresses: string[];
934
- token_uri_data?: any;
935
1395
  };
936
1396
  };
937
1397
  graduation_pool: {
@@ -949,12 +1409,22 @@ export declare const rootContract: {
949
1409
  token_name: string;
950
1410
  token_description: string | null;
951
1411
  token_symbol: string;
1412
+ token_uri_data: {
1413
+ name?: string | undefined;
1414
+ description?: string | undefined;
1415
+ image_hash?: string | undefined;
1416
+ fee_receiver?: string | undefined;
1417
+ social_links?: string[] | undefined;
1418
+ vesting_recipients?: {
1419
+ address: string;
1420
+ percentage: number;
1421
+ }[] | undefined;
1422
+ } | null;
952
1423
  token_image_public_url: string | null;
953
1424
  token_creator_address: string;
954
1425
  token_fee_receiver_address: string;
955
1426
  token_vesting_recipient_addresses: string[];
956
1427
  integrator_address: string;
957
- token_uri_data?: any;
958
1428
  };
959
1429
  };
960
1430
  }[];
@@ -962,6 +1432,7 @@ export declare const rootContract: {
962
1432
  };
963
1433
  };
964
1434
  getAsset: {
1435
+ description: "Get an asset by its address";
965
1436
  pathParams: import("zod").ZodObject<{
966
1437
  assetAddress: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
967
1438
  }, "strip", import("zod").ZodTypeAny, {
@@ -969,7 +1440,13 @@ export declare const rootContract: {
969
1440
  }, {
970
1441
  assetAddress: string;
971
1442
  }>;
972
- description: "Get an asset by its address";
1443
+ query: import("zod").ZodObject<{
1444
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
1445
+ }, "strip", import("zod").ZodTypeAny, {
1446
+ chainId: import("..").ChainID;
1447
+ }, {
1448
+ chainId?: import("..").ChainID | undefined;
1449
+ }>;
973
1450
  method: "GET";
974
1451
  path: "/assets/:assetAddress";
975
1452
  responses: {
@@ -1005,7 +1482,43 @@ export declare const rootContract: {
1005
1482
  token_name: import("zod").ZodString;
1006
1483
  token_description: import("zod").ZodNullable<import("zod").ZodString>;
1007
1484
  token_symbol: import("zod").ZodString;
1008
- token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
1485
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
1486
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1487
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1488
+ image_hash: import("zod").ZodOptional<import("zod").ZodString>;
1489
+ fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
1490
+ social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1491
+ vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1492
+ address: import("zod").ZodString;
1493
+ percentage: import("zod").ZodNumber;
1494
+ }, "strip", import("zod").ZodTypeAny, {
1495
+ address: string;
1496
+ percentage: number;
1497
+ }, {
1498
+ address: string;
1499
+ percentage: number;
1500
+ }>, "many">>;
1501
+ }, "strip", import("zod").ZodTypeAny, {
1502
+ name?: string | undefined;
1503
+ description?: string | undefined;
1504
+ image_hash?: string | undefined;
1505
+ fee_receiver?: string | undefined;
1506
+ social_links?: string[] | undefined;
1507
+ vesting_recipients?: {
1508
+ address: string;
1509
+ percentage: number;
1510
+ }[] | undefined;
1511
+ }, {
1512
+ name?: string | undefined;
1513
+ description?: string | undefined;
1514
+ image_hash?: string | undefined;
1515
+ fee_receiver?: string | undefined;
1516
+ social_links?: string[] | undefined;
1517
+ vesting_recipients?: {
1518
+ address: string;
1519
+ percentage: number;
1520
+ }[] | undefined;
1521
+ }>>;
1009
1522
  token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
1010
1523
  token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
1011
1524
  token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
@@ -1015,21 +1528,41 @@ export declare const rootContract: {
1015
1528
  token_name: string;
1016
1529
  token_description: string | null;
1017
1530
  token_symbol: string;
1531
+ token_uri_data: {
1532
+ name?: string | undefined;
1533
+ description?: string | undefined;
1534
+ image_hash?: string | undefined;
1535
+ fee_receiver?: string | undefined;
1536
+ social_links?: string[] | undefined;
1537
+ vesting_recipients?: {
1538
+ address: string;
1539
+ percentage: number;
1540
+ }[] | undefined;
1541
+ } | null;
1018
1542
  token_image_public_url: string | null;
1019
1543
  token_creator_address: `0x${string}`;
1020
1544
  token_fee_receiver_address: `0x${string}`;
1021
1545
  token_vesting_recipient_addresses: `0x${string}`[];
1022
- token_uri_data?: any;
1023
1546
  }, {
1024
1547
  token_address: string;
1025
1548
  token_name: string;
1026
1549
  token_description: string | null;
1027
1550
  token_symbol: string;
1551
+ token_uri_data: {
1552
+ name?: string | undefined;
1553
+ description?: string | undefined;
1554
+ image_hash?: string | undefined;
1555
+ fee_receiver?: string | undefined;
1556
+ social_links?: string[] | undefined;
1557
+ vesting_recipients?: {
1558
+ address: string;
1559
+ percentage: number;
1560
+ }[] | undefined;
1561
+ } | null;
1028
1562
  token_image_public_url: string | null;
1029
1563
  token_creator_address: string;
1030
1564
  token_fee_receiver_address: string;
1031
1565
  token_vesting_recipient_addresses: string[];
1032
- token_uri_data?: any;
1033
1566
  }>;
1034
1567
  }, "strip", import("zod").ZodTypeAny, {
1035
1568
  pool_current_price: string;
@@ -1057,11 +1590,21 @@ export declare const rootContract: {
1057
1590
  token_name: string;
1058
1591
  token_description: string | null;
1059
1592
  token_symbol: string;
1593
+ token_uri_data: {
1594
+ name?: string | undefined;
1595
+ description?: string | undefined;
1596
+ image_hash?: string | undefined;
1597
+ fee_receiver?: string | undefined;
1598
+ social_links?: string[] | undefined;
1599
+ vesting_recipients?: {
1600
+ address: string;
1601
+ percentage: number;
1602
+ }[] | undefined;
1603
+ } | null;
1060
1604
  token_image_public_url: string | null;
1061
1605
  token_creator_address: `0x${string}`;
1062
1606
  token_fee_receiver_address: `0x${string}`;
1063
1607
  token_vesting_recipient_addresses: `0x${string}`[];
1064
- token_uri_data?: any;
1065
1608
  };
1066
1609
  }, {
1067
1610
  pool_current_price: string;
@@ -1089,11 +1632,21 @@ export declare const rootContract: {
1089
1632
  token_name: string;
1090
1633
  token_description: string | null;
1091
1634
  token_symbol: string;
1635
+ token_uri_data: {
1636
+ name?: string | undefined;
1637
+ description?: string | undefined;
1638
+ image_hash?: string | undefined;
1639
+ fee_receiver?: string | undefined;
1640
+ social_links?: string[] | undefined;
1641
+ vesting_recipients?: {
1642
+ address: string;
1643
+ percentage: number;
1644
+ }[] | undefined;
1645
+ } | null;
1092
1646
  token_image_public_url: string | null;
1093
1647
  token_creator_address: string;
1094
1648
  token_fee_receiver_address: string;
1095
1649
  token_vesting_recipient_addresses: string[];
1096
- token_uri_data?: any;
1097
1650
  };
1098
1651
  }>;
1099
1652
  graduation_pool: import("zod").ZodObject<{
@@ -1111,7 +1664,43 @@ export declare const rootContract: {
1111
1664
  token_name: import("zod").ZodString;
1112
1665
  token_description: import("zod").ZodNullable<import("zod").ZodString>;
1113
1666
  token_symbol: import("zod").ZodString;
1114
- token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
1667
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
1668
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1669
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1670
+ image_hash: import("zod").ZodOptional<import("zod").ZodString>;
1671
+ fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
1672
+ social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1673
+ vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1674
+ address: import("zod").ZodString;
1675
+ percentage: import("zod").ZodNumber;
1676
+ }, "strip", import("zod").ZodTypeAny, {
1677
+ address: string;
1678
+ percentage: number;
1679
+ }, {
1680
+ address: string;
1681
+ percentage: number;
1682
+ }>, "many">>;
1683
+ }, "strip", import("zod").ZodTypeAny, {
1684
+ name?: string | undefined;
1685
+ description?: string | undefined;
1686
+ image_hash?: string | undefined;
1687
+ fee_receiver?: string | undefined;
1688
+ social_links?: string[] | undefined;
1689
+ vesting_recipients?: {
1690
+ address: string;
1691
+ percentage: number;
1692
+ }[] | undefined;
1693
+ }, {
1694
+ name?: string | undefined;
1695
+ description?: string | undefined;
1696
+ image_hash?: string | undefined;
1697
+ fee_receiver?: string | undefined;
1698
+ social_links?: string[] | undefined;
1699
+ vesting_recipients?: {
1700
+ address: string;
1701
+ percentage: number;
1702
+ }[] | undefined;
1703
+ }>>;
1115
1704
  token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
1116
1705
  token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
1117
1706
  token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
@@ -1122,23 +1711,43 @@ export declare const rootContract: {
1122
1711
  token_name: string;
1123
1712
  token_description: string | null;
1124
1713
  token_symbol: string;
1714
+ token_uri_data: {
1715
+ name?: string | undefined;
1716
+ description?: string | undefined;
1717
+ image_hash?: string | undefined;
1718
+ fee_receiver?: string | undefined;
1719
+ social_links?: string[] | undefined;
1720
+ vesting_recipients?: {
1721
+ address: string;
1722
+ percentage: number;
1723
+ }[] | undefined;
1724
+ } | null;
1125
1725
  token_image_public_url: string | null;
1126
1726
  token_creator_address: `0x${string}`;
1127
1727
  token_fee_receiver_address: `0x${string}`;
1128
1728
  token_vesting_recipient_addresses: `0x${string}`[];
1129
1729
  integrator_address: string;
1130
- token_uri_data?: any;
1131
1730
  }, {
1132
1731
  token_address: string;
1133
1732
  token_name: string;
1134
1733
  token_description: string | null;
1135
1734
  token_symbol: string;
1735
+ token_uri_data: {
1736
+ name?: string | undefined;
1737
+ description?: string | undefined;
1738
+ image_hash?: string | undefined;
1739
+ fee_receiver?: string | undefined;
1740
+ social_links?: string[] | undefined;
1741
+ vesting_recipients?: {
1742
+ address: string;
1743
+ percentage: number;
1744
+ }[] | undefined;
1745
+ } | null;
1136
1746
  token_image_public_url: string | null;
1137
1747
  token_creator_address: string;
1138
1748
  token_fee_receiver_address: string;
1139
1749
  token_vesting_recipient_addresses: string[];
1140
1750
  integrator_address: string;
1141
- token_uri_data?: any;
1142
1751
  }>;
1143
1752
  }, "strip", import("zod").ZodTypeAny, {
1144
1753
  pool_current_price: string;
@@ -1155,12 +1764,22 @@ export declare const rootContract: {
1155
1764
  token_name: string;
1156
1765
  token_description: string | null;
1157
1766
  token_symbol: string;
1767
+ token_uri_data: {
1768
+ name?: string | undefined;
1769
+ description?: string | undefined;
1770
+ image_hash?: string | undefined;
1771
+ fee_receiver?: string | undefined;
1772
+ social_links?: string[] | undefined;
1773
+ vesting_recipients?: {
1774
+ address: string;
1775
+ percentage: number;
1776
+ }[] | undefined;
1777
+ } | null;
1158
1778
  token_image_public_url: string | null;
1159
1779
  token_creator_address: `0x${string}`;
1160
1780
  token_fee_receiver_address: `0x${string}`;
1161
1781
  token_vesting_recipient_addresses: `0x${string}`[];
1162
1782
  integrator_address: string;
1163
- token_uri_data?: any;
1164
1783
  };
1165
1784
  }, {
1166
1785
  pool_current_price: string;
@@ -1177,12 +1796,22 @@ export declare const rootContract: {
1177
1796
  token_name: string;
1178
1797
  token_description: string | null;
1179
1798
  token_symbol: string;
1799
+ token_uri_data: {
1800
+ name?: string | undefined;
1801
+ description?: string | undefined;
1802
+ image_hash?: string | undefined;
1803
+ fee_receiver?: string | undefined;
1804
+ social_links?: string[] | undefined;
1805
+ vesting_recipients?: {
1806
+ address: string;
1807
+ percentage: number;
1808
+ }[] | undefined;
1809
+ } | null;
1180
1810
  token_image_public_url: string | null;
1181
1811
  token_creator_address: string;
1182
1812
  token_fee_receiver_address: string;
1183
1813
  token_vesting_recipient_addresses: string[];
1184
1814
  integrator_address: string;
1185
- token_uri_data?: any;
1186
1815
  };
1187
1816
  }>;
1188
1817
  }, "strip", import("zod").ZodTypeAny, {
@@ -1216,11 +1845,21 @@ export declare const rootContract: {
1216
1845
  token_name: string;
1217
1846
  token_description: string | null;
1218
1847
  token_symbol: string;
1848
+ token_uri_data: {
1849
+ name?: string | undefined;
1850
+ description?: string | undefined;
1851
+ image_hash?: string | undefined;
1852
+ fee_receiver?: string | undefined;
1853
+ social_links?: string[] | undefined;
1854
+ vesting_recipients?: {
1855
+ address: string;
1856
+ percentage: number;
1857
+ }[] | undefined;
1858
+ } | null;
1219
1859
  token_image_public_url: string | null;
1220
1860
  token_creator_address: `0x${string}`;
1221
1861
  token_fee_receiver_address: `0x${string}`;
1222
1862
  token_vesting_recipient_addresses: `0x${string}`[];
1223
- token_uri_data?: any;
1224
1863
  };
1225
1864
  };
1226
1865
  graduation_pool: {
@@ -1238,12 +1877,22 @@ export declare const rootContract: {
1238
1877
  token_name: string;
1239
1878
  token_description: string | null;
1240
1879
  token_symbol: string;
1880
+ token_uri_data: {
1881
+ name?: string | undefined;
1882
+ description?: string | undefined;
1883
+ image_hash?: string | undefined;
1884
+ fee_receiver?: string | undefined;
1885
+ social_links?: string[] | undefined;
1886
+ vesting_recipients?: {
1887
+ address: string;
1888
+ percentage: number;
1889
+ }[] | undefined;
1890
+ } | null;
1241
1891
  token_image_public_url: string | null;
1242
1892
  token_creator_address: `0x${string}`;
1243
1893
  token_fee_receiver_address: `0x${string}`;
1244
1894
  token_vesting_recipient_addresses: `0x${string}`[];
1245
1895
  integrator_address: string;
1246
- token_uri_data?: any;
1247
1896
  };
1248
1897
  };
1249
1898
  }, {
@@ -1277,11 +1926,21 @@ export declare const rootContract: {
1277
1926
  token_name: string;
1278
1927
  token_description: string | null;
1279
1928
  token_symbol: string;
1929
+ token_uri_data: {
1930
+ name?: string | undefined;
1931
+ description?: string | undefined;
1932
+ image_hash?: string | undefined;
1933
+ fee_receiver?: string | undefined;
1934
+ social_links?: string[] | undefined;
1935
+ vesting_recipients?: {
1936
+ address: string;
1937
+ percentage: number;
1938
+ }[] | undefined;
1939
+ } | null;
1280
1940
  token_image_public_url: string | null;
1281
1941
  token_creator_address: string;
1282
1942
  token_fee_receiver_address: string;
1283
1943
  token_vesting_recipient_addresses: string[];
1284
- token_uri_data?: any;
1285
1944
  };
1286
1945
  };
1287
1946
  graduation_pool: {
@@ -1299,12 +1958,22 @@ export declare const rootContract: {
1299
1958
  token_name: string;
1300
1959
  token_description: string | null;
1301
1960
  token_symbol: string;
1961
+ token_uri_data: {
1962
+ name?: string | undefined;
1963
+ description?: string | undefined;
1964
+ image_hash?: string | undefined;
1965
+ fee_receiver?: string | undefined;
1966
+ social_links?: string[] | undefined;
1967
+ vesting_recipients?: {
1968
+ address: string;
1969
+ percentage: number;
1970
+ }[] | undefined;
1971
+ } | null;
1302
1972
  token_image_public_url: string | null;
1303
1973
  token_creator_address: string;
1304
1974
  token_fee_receiver_address: string;
1305
1975
  token_vesting_recipient_addresses: string[];
1306
1976
  integrator_address: string;
1307
- token_uri_data?: any;
1308
1977
  };
1309
1978
  };
1310
1979
  }>;
@@ -1340,11 +2009,21 @@ export declare const rootContract: {
1340
2009
  token_name: string;
1341
2010
  token_description: string | null;
1342
2011
  token_symbol: string;
2012
+ token_uri_data: {
2013
+ name?: string | undefined;
2014
+ description?: string | undefined;
2015
+ image_hash?: string | undefined;
2016
+ fee_receiver?: string | undefined;
2017
+ social_links?: string[] | undefined;
2018
+ vesting_recipients?: {
2019
+ address: string;
2020
+ percentage: number;
2021
+ }[] | undefined;
2022
+ } | null;
1343
2023
  token_image_public_url: string | null;
1344
2024
  token_creator_address: `0x${string}`;
1345
2025
  token_fee_receiver_address: `0x${string}`;
1346
2026
  token_vesting_recipient_addresses: `0x${string}`[];
1347
- token_uri_data?: any;
1348
2027
  };
1349
2028
  };
1350
2029
  graduation_pool: {
@@ -1362,12 +2041,22 @@ export declare const rootContract: {
1362
2041
  token_name: string;
1363
2042
  token_description: string | null;
1364
2043
  token_symbol: string;
2044
+ token_uri_data: {
2045
+ name?: string | undefined;
2046
+ description?: string | undefined;
2047
+ image_hash?: string | undefined;
2048
+ fee_receiver?: string | undefined;
2049
+ social_links?: string[] | undefined;
2050
+ vesting_recipients?: {
2051
+ address: string;
2052
+ percentage: number;
2053
+ }[] | undefined;
2054
+ } | null;
1365
2055
  token_image_public_url: string | null;
1366
2056
  token_creator_address: `0x${string}`;
1367
2057
  token_fee_receiver_address: `0x${string}`;
1368
2058
  token_vesting_recipient_addresses: `0x${string}`[];
1369
2059
  integrator_address: string;
1370
- token_uri_data?: any;
1371
2060
  };
1372
2061
  };
1373
2062
  };
@@ -1403,11 +2092,21 @@ export declare const rootContract: {
1403
2092
  token_name: string;
1404
2093
  token_description: string | null;
1405
2094
  token_symbol: string;
2095
+ token_uri_data: {
2096
+ name?: string | undefined;
2097
+ description?: string | undefined;
2098
+ image_hash?: string | undefined;
2099
+ fee_receiver?: string | undefined;
2100
+ social_links?: string[] | undefined;
2101
+ vesting_recipients?: {
2102
+ address: string;
2103
+ percentage: number;
2104
+ }[] | undefined;
2105
+ } | null;
1406
2106
  token_image_public_url: string | null;
1407
2107
  token_creator_address: string;
1408
2108
  token_fee_receiver_address: string;
1409
2109
  token_vesting_recipient_addresses: string[];
1410
- token_uri_data?: any;
1411
2110
  };
1412
2111
  };
1413
2112
  graduation_pool: {
@@ -1425,12 +2124,22 @@ export declare const rootContract: {
1425
2124
  token_name: string;
1426
2125
  token_description: string | null;
1427
2126
  token_symbol: string;
2127
+ token_uri_data: {
2128
+ name?: string | undefined;
2129
+ description?: string | undefined;
2130
+ image_hash?: string | undefined;
2131
+ fee_receiver?: string | undefined;
2132
+ social_links?: string[] | undefined;
2133
+ vesting_recipients?: {
2134
+ address: string;
2135
+ percentage: number;
2136
+ }[] | undefined;
2137
+ } | null;
1428
2138
  token_image_public_url: string | null;
1429
2139
  token_creator_address: string;
1430
2140
  token_fee_receiver_address: string;
1431
2141
  token_vesting_recipient_addresses: string[];
1432
2142
  integrator_address: string;
1433
- token_uri_data?: any;
1434
2143
  };
1435
2144
  };
1436
2145
  };
@@ -1441,6 +2150,13 @@ export declare const rootContract: {
1441
2150
  auctions: {
1442
2151
  listAuctions: {
1443
2152
  description: "List all auctions for an integrator";
2153
+ query: import("zod").ZodObject<{
2154
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
2155
+ }, "strip", import("zod").ZodTypeAny, {
2156
+ chainId: import("..").ChainID;
2157
+ }, {
2158
+ chainId?: import("..").ChainID | undefined;
2159
+ }>;
1444
2160
  method: "GET";
1445
2161
  path: "/auctions/";
1446
2162
  responses: {
@@ -1499,14 +2215,17 @@ export declare const rootContract: {
1499
2215
  };
1500
2216
  };
1501
2217
  getAuctionByPoolAddress: {
2218
+ description: "Get an auction by its pool address";
1502
2219
  pathParams: import("zod").ZodObject<{
2220
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
1503
2221
  poolAddress: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
1504
2222
  }, "strip", import("zod").ZodTypeAny, {
2223
+ chainId: import("..").ChainID;
1505
2224
  poolAddress: `0x${string}`;
1506
2225
  }, {
1507
2226
  poolAddress: string;
2227
+ chainId?: import("..").ChainID | undefined;
1508
2228
  }>;
1509
- description: "Get an auction by its pool address";
1510
2229
  method: "GET";
1511
2230
  path: "/auctions/:poolAddress";
1512
2231
  responses: {
@@ -1566,9 +2285,15 @@ export declare const rootContract: {
1566
2285
  };
1567
2286
  createDynamicAuction: {
1568
2287
  description: "Create a dynamic auction based on an auction template";
2288
+ query: import("zod").ZodObject<{
2289
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
2290
+ }, "strip", import("zod").ZodTypeAny, {
2291
+ chainId: import("..").ChainID;
2292
+ }, {
2293
+ chainId?: import("..").ChainID | undefined;
2294
+ }>;
1569
2295
  method: "POST";
1570
2296
  body: import("zod").ZodObject<{
1571
- chain_id: import("zod").ZodNumber;
1572
2297
  template_id: import("zod").ZodString;
1573
2298
  debug: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
1574
2299
  metadata: import("zod").ZodObject<{
@@ -1594,7 +2319,6 @@ export declare const rootContract: {
1594
2319
  token_uri: string;
1595
2320
  user_address: `0x${string}`;
1596
2321
  };
1597
- chain_id: number;
1598
2322
  template_id: string;
1599
2323
  debug: boolean;
1600
2324
  }, {
@@ -1604,7 +2328,6 @@ export declare const rootContract: {
1604
2328
  token_uri: string;
1605
2329
  user_address: string;
1606
2330
  };
1607
- chain_id: number;
1608
2331
  template_id: string;
1609
2332
  debug?: boolean | undefined;
1610
2333
  }>;
@@ -1746,6 +2469,13 @@ export declare const rootContract: {
1746
2469
  auctionTemplates: {
1747
2470
  listAuctionTemplates: {
1748
2471
  description: "List all auction templates for an integrator";
2472
+ query: import("zod").ZodObject<{
2473
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
2474
+ }, "strip", import("zod").ZodTypeAny, {
2475
+ chainId: import("..").ChainID;
2476
+ }, {
2477
+ chainId?: import("..").ChainID | undefined;
2478
+ }>;
1749
2479
  method: "GET";
1750
2480
  path: "/auction-templates/";
1751
2481
  responses: {
@@ -1755,25 +2485,25 @@ export declare const rootContract: {
1755
2485
  name: import("zod").ZodString;
1756
2486
  description: import("zod").ZodNullable<import("zod").ZodString>;
1757
2487
  }, "strip", import("zod").ZodTypeAny, {
2488
+ name: string;
1758
2489
  description: string | null;
1759
2490
  id: string;
1760
- name: string;
1761
2491
  }, {
2492
+ name: string;
1762
2493
  description: string | null;
1763
2494
  id: string;
1764
- name: string;
1765
2495
  }>, "many">;
1766
2496
  }, "strip", import("zod").ZodTypeAny, {
1767
2497
  result: {
2498
+ name: string;
1768
2499
  description: string | null;
1769
2500
  id: string;
1770
- name: string;
1771
2501
  }[];
1772
2502
  }, {
1773
2503
  result: {
2504
+ name: string;
1774
2505
  description: string | null;
1775
2506
  id: string;
1776
- name: string;
1777
2507
  }[];
1778
2508
  }>;
1779
2509
  };
@@ -1922,9 +2652,10 @@ export declare const rootContract: {
1922
2652
  }>, "many">;
1923
2653
  fee_receiver: import("zod").ZodString;
1924
2654
  }, "strip", import("zod").ZodTypeAny, {
1925
- description: string;
1926
2655
  name: string;
2656
+ description: string;
1927
2657
  image_hash: string;
2658
+ fee_receiver: string;
1928
2659
  social_links: {
1929
2660
  label: string;
1930
2661
  url: string;
@@ -1933,11 +2664,11 @@ export declare const rootContract: {
1933
2664
  address: string;
1934
2665
  percentage: number;
1935
2666
  }[];
1936
- fee_receiver: string;
1937
2667
  }, {
1938
- description: string;
1939
2668
  name: string;
2669
+ description: string;
1940
2670
  image_hash: string;
2671
+ fee_receiver: string;
1941
2672
  social_links: {
1942
2673
  label: string;
1943
2674
  url: string;
@@ -1946,7 +2677,6 @@ export declare const rootContract: {
1946
2677
  address: string;
1947
2678
  percentage: number;
1948
2679
  }[];
1949
- fee_receiver: string;
1950
2680
  }>;
1951
2681
  path: "/ipfs/upload-metadata";
1952
2682
  responses: {
@@ -1963,9 +2693,15 @@ export declare const rootContract: {
1963
2693
  quotes: {
1964
2694
  v4ExactOutputSingle: {
1965
2695
  description: "Get a quote for an exact output single V4 swap";
2696
+ query: import("zod").ZodObject<{
2697
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
2698
+ }, "strip", import("zod").ZodTypeAny, {
2699
+ chainId: import("..").ChainID;
2700
+ }, {
2701
+ chainId?: import("..").ChainID | undefined;
2702
+ }>;
1966
2703
  method: "POST";
1967
2704
  body: import("zod").ZodObject<{
1968
- chain_id: import("zod").ZodNumber;
1969
2705
  pool_key: import("zod").ZodObject<{
1970
2706
  currency0: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
1971
2707
  currency1: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
@@ -1989,7 +2725,6 @@ export declare const rootContract: {
1989
2725
  exact_amount: import("zod").ZodEffects<import("zod").ZodAny, bigint, any>;
1990
2726
  hook_data: import("zod").ZodOptional<import("zod").ZodString>;
1991
2727
  }, "strip", import("zod").ZodTypeAny, {
1992
- chain_id: number;
1993
2728
  pool_key: {
1994
2729
  currency0: `0x${string}`;
1995
2730
  currency1: `0x${string}`;
@@ -2001,7 +2736,6 @@ export declare const rootContract: {
2001
2736
  exact_amount: bigint;
2002
2737
  hook_data?: string | undefined;
2003
2738
  }, {
2004
- chain_id: number;
2005
2739
  pool_key: {
2006
2740
  currency0: string;
2007
2741
  currency1: string;
@@ -2041,9 +2775,15 @@ export declare const rootContract: {
2041
2775
  };
2042
2776
  v4ExactInputSingle: {
2043
2777
  description: "Get a quote for an exact input single V4 swap";
2778
+ query: import("zod").ZodObject<{
2779
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
2780
+ }, "strip", import("zod").ZodTypeAny, {
2781
+ chainId: import("..").ChainID;
2782
+ }, {
2783
+ chainId?: import("..").ChainID | undefined;
2784
+ }>;
2044
2785
  method: "POST";
2045
2786
  body: import("zod").ZodObject<{
2046
- chain_id: import("zod").ZodNumber;
2047
2787
  pool_key: import("zod").ZodObject<{
2048
2788
  currency0: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
2049
2789
  currency1: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
@@ -2067,7 +2807,6 @@ export declare const rootContract: {
2067
2807
  exact_amount: import("zod").ZodEffects<import("zod").ZodAny, bigint, any>;
2068
2808
  hook_data: import("zod").ZodOptional<import("zod").ZodString>;
2069
2809
  }, "strip", import("zod").ZodTypeAny, {
2070
- chain_id: number;
2071
2810
  pool_key: {
2072
2811
  currency0: `0x${string}`;
2073
2812
  currency1: `0x${string}`;
@@ -2079,7 +2818,6 @@ export declare const rootContract: {
2079
2818
  exact_amount: bigint;
2080
2819
  hook_data?: string | undefined;
2081
2820
  }, {
2082
- chain_id: number;
2083
2821
  pool_key: {
2084
2822
  currency0: string;
2085
2823
  currency1: string;
@@ -2119,22 +2857,26 @@ export declare const rootContract: {
2119
2857
  };
2120
2858
  v3ExactOutputSingle: {
2121
2859
  description: "Get a quote for an exact output single V3 swap";
2860
+ query: import("zod").ZodObject<{
2861
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
2862
+ }, "strip", import("zod").ZodTypeAny, {
2863
+ chainId: import("..").ChainID;
2864
+ }, {
2865
+ chainId?: import("..").ChainID | undefined;
2866
+ }>;
2122
2867
  method: "POST";
2123
2868
  body: import("zod").ZodObject<{
2124
- chain_id: import("zod").ZodNumber;
2125
2869
  token_in: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
2126
2870
  token_out: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
2127
2871
  amount_out: import("zod").ZodEffects<import("zod").ZodAny, bigint, any>;
2128
2872
  fee: import("zod").ZodNumber;
2129
2873
  }, "strip", import("zod").ZodTypeAny, {
2130
2874
  fee: number;
2131
- chain_id: number;
2132
2875
  amount_out: bigint;
2133
2876
  token_in: `0x${string}`;
2134
2877
  token_out: `0x${string}`;
2135
2878
  }, {
2136
2879
  fee: number;
2137
- chain_id: number;
2138
2880
  token_in: string;
2139
2881
  token_out: string;
2140
2882
  amount_out?: any;
@@ -2177,9 +2919,15 @@ export declare const rootContract: {
2177
2919
  };
2178
2920
  v3ExactInputSingle: {
2179
2921
  description: "Get a quote for an exact input single V3 swap";
2922
+ query: import("zod").ZodObject<{
2923
+ chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").ChainID>>>;
2924
+ }, "strip", import("zod").ZodTypeAny, {
2925
+ chainId: import("..").ChainID;
2926
+ }, {
2927
+ chainId?: import("..").ChainID | undefined;
2928
+ }>;
2180
2929
  method: "POST";
2181
2930
  body: import("zod").ZodObject<{
2182
- chain_id: import("zod").ZodNumber;
2183
2931
  token_in: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
2184
2932
  token_out: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
2185
2933
  amount_in: import("zod").ZodEffects<import("zod").ZodAny, bigint, any>;
@@ -2187,14 +2935,12 @@ export declare const rootContract: {
2187
2935
  sqrt_price_limit_x96: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodAny, bigint, any>>;
2188
2936
  }, "strip", import("zod").ZodTypeAny, {
2189
2937
  fee: number;
2190
- chain_id: number;
2191
2938
  amount_in: bigint;
2192
2939
  token_in: `0x${string}`;
2193
2940
  token_out: `0x${string}`;
2194
2941
  sqrt_price_limit_x96?: bigint | undefined;
2195
2942
  }, {
2196
2943
  fee: number;
2197
- chain_id: number;
2198
2944
  token_in: string;
2199
2945
  token_out: string;
2200
2946
  amount_in?: any;