@imtbl/sdk 1.43.3 → 1.43.4

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.
Files changed (53) hide show
  1. package/dist/Passport.d-011d5035.d.ts +224 -0
  2. package/dist/blockchain-data.d-1634b683.d.ts +3406 -0
  3. package/dist/blockchain_data-d989298c.js +1 -0
  4. package/dist/blockchain_data.d-d538f8d4.d.ts +4543 -0
  5. package/dist/blockchain_data.d.ts +3 -7950
  6. package/dist/blockchain_data.js +1 -6058
  7. package/dist/browser/checkout/sdk.js +4 -4
  8. package/dist/checkout-68675dd1.js +16 -0
  9. package/dist/checkout.d-ae9ca847.d.ts +3392 -0
  10. package/dist/checkout.d.ts +7 -16882
  11. package/dist/checkout.js +1 -37189
  12. package/dist/config-53a9a4ca.js +1 -0
  13. package/dist/config.d-65420620.d.ts +18 -0
  14. package/dist/config.d.ts +1 -30
  15. package/dist/config.js +1 -394
  16. package/dist/event-types.d-42520276.d.ts +332 -0
  17. package/dist/imxProvider.d-cac9e315.d.ts +12538 -0
  18. package/dist/index-14aad537.js +1 -0
  19. package/dist/index-3951cdf0.js +1 -0
  20. package/dist/index-3f40d7f6.js +1 -0
  21. package/dist/index-58a79c29.js +1 -0
  22. package/dist/index-96599707.js +1 -0
  23. package/dist/index-e7002486.js +1 -0
  24. package/dist/index.browser.js +4 -4
  25. package/dist/index.cjs +7 -7
  26. package/dist/index.d-c4a4c17d.d.ts +277 -0
  27. package/dist/index.d-f0845744.d.ts +30 -0
  28. package/dist/index.d-f1471830.d.ts +376 -0
  29. package/dist/index.d.ts +18 -32627
  30. package/dist/index.js +1 -64124
  31. package/dist/json-rpc-provider.d-5c038bd9.d.ts +249 -0
  32. package/dist/minting_backend-04aef147.js +1 -0
  33. package/dist/minting_backend.d-4754ffee.d.ts +104 -0
  34. package/dist/minting_backend.d.ts +5 -3535
  35. package/dist/minting_backend.js +1 -6756
  36. package/dist/orderbook-e71036df.js +1 -0
  37. package/dist/orderbook.d-77162c6c.d.ts +1257 -0
  38. package/dist/orderbook.d.ts +5 -1713
  39. package/dist/orderbook.js +1 -2479
  40. package/dist/passport-0f45e532.js +1 -0
  41. package/dist/passport.d-d3f44798.d.ts +67 -0
  42. package/dist/passport.d.ts +6 -13703
  43. package/dist/passport.js +1 -23137
  44. package/dist/transfer.d-87728423.d.ts +898 -0
  45. package/dist/webhook-a16541bb.js +1 -0
  46. package/dist/webhook.d-4c3cb340.d.ts +75 -0
  47. package/dist/webhook.d.ts +4 -1265
  48. package/dist/webhook.js +1 -488
  49. package/dist/x-a5b39578.js +1 -0
  50. package/dist/x.d-1b51f0c3.d.ts +4879 -0
  51. package/dist/x.d.ts +6 -18663
  52. package/dist/x.js +1 -19242
  53. package/package.json +1 -1
@@ -0,0 +1,4543 @@
1
+ import { A as ActivityType$2, B as BlockchainData, a as BlockchainDataModuleConfiguration } from './blockchain-data.d-1634b683.js';
2
+
3
+ /**
4
+ * Immutable zkEVM API
5
+ * Immutable Multi Rollup API
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ * Contact: support@immutable.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface BasicAPIError
18
+ */
19
+ interface BasicAPIError$1 {
20
+ /**
21
+ * Error Message
22
+ * @type {string}
23
+ * @memberof BasicAPIError
24
+ */
25
+ 'message': string;
26
+ /**
27
+ * Link to IMX documentation that can help resolve this error
28
+ * @type {string}
29
+ * @memberof BasicAPIError
30
+ */
31
+ 'link': string;
32
+ /**
33
+ * Trace ID of the initial request
34
+ * @type {string}
35
+ * @memberof BasicAPIError
36
+ */
37
+ 'trace_id': string;
38
+ }
39
+
40
+ /**
41
+ * Immutable zkEVM API
42
+ * Immutable Multi Rollup API
43
+ *
44
+ * The version of the OpenAPI document: 1.0.0
45
+ * Contact: support@immutable.com
46
+ *
47
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
48
+ * https://openapi-generator.tech
49
+ * Do not edit the class manually.
50
+ */
51
+ /**
52
+ *
53
+ * @export
54
+ * @interface APIError400AllOf
55
+ */
56
+ interface APIError400AllOf {
57
+ /**
58
+ * Error Code
59
+ * @type {string}
60
+ * @memberof APIError400AllOf
61
+ */
62
+ 'code': APIError400AllOfCodeEnum;
63
+ /**
64
+ * Additional details to help resolve the error
65
+ * @type {object}
66
+ * @memberof APIError400AllOf
67
+ */
68
+ 'details': object | null;
69
+ }
70
+ /**
71
+ * @export
72
+ * @enum {string}
73
+ */
74
+ declare enum APIError400AllOfCodeEnum {
75
+ ValidationError = "VALIDATION_ERROR"
76
+ }
77
+
78
+ /**
79
+ * Immutable zkEVM API
80
+ * Immutable Multi Rollup API
81
+ *
82
+ * The version of the OpenAPI document: 1.0.0
83
+ * Contact: support@immutable.com
84
+ *
85
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
86
+ * https://openapi-generator.tech
87
+ * Do not edit the class manually.
88
+ */
89
+ /**
90
+ *
91
+ * @export
92
+ * @interface BasicAPIError
93
+ */
94
+ interface BasicAPIError {
95
+ /**
96
+ * Error Message
97
+ * @type {string}
98
+ * @memberof BasicAPIError
99
+ */
100
+ 'message': string;
101
+ /**
102
+ * Link to IMX documentation that can help resolve this error
103
+ * @type {string}
104
+ * @memberof BasicAPIError
105
+ */
106
+ 'link': string;
107
+ /**
108
+ * Trace ID of the initial request
109
+ * @type {string}
110
+ * @memberof BasicAPIError
111
+ */
112
+ 'trace_id': string;
113
+ }
114
+
115
+ /**
116
+ * Immutable zkEVM API
117
+ * Immutable Multi Rollup API
118
+ *
119
+ * The version of the OpenAPI document: 1.0.0
120
+ * Contact: support@immutable.com
121
+ *
122
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
123
+ * https://openapi-generator.tech
124
+ * Do not edit the class manually.
125
+ */
126
+
127
+ /**
128
+ * @type APIError400
129
+ * @export
130
+ */
131
+ type APIError400 = APIError400AllOf & BasicAPIError;
132
+
133
+ /**
134
+ * Immutable zkEVM API
135
+ * Immutable Multi Rollup API
136
+ *
137
+ * The version of the OpenAPI document: 1.0.0
138
+ * Contact: support@immutable.com
139
+ *
140
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
141
+ * https://openapi-generator.tech
142
+ * Do not edit the class manually.
143
+ */
144
+ /**
145
+ *
146
+ * @export
147
+ * @interface APIError401AllOf
148
+ */
149
+ interface APIError401AllOf {
150
+ /**
151
+ * Error Code
152
+ * @type {string}
153
+ * @memberof APIError401AllOf
154
+ */
155
+ 'code': APIError401AllOfCodeEnum;
156
+ /**
157
+ * Additional details to help resolve the error
158
+ * @type {object}
159
+ * @memberof APIError401AllOf
160
+ */
161
+ 'details': object | null;
162
+ }
163
+ /**
164
+ * @export
165
+ * @enum {string}
166
+ */
167
+ declare enum APIError401AllOfCodeEnum {
168
+ UnauthorisedRequest = "UNAUTHORISED_REQUEST"
169
+ }
170
+
171
+ /**
172
+ * Immutable zkEVM API
173
+ * Immutable Multi Rollup API
174
+ *
175
+ * The version of the OpenAPI document: 1.0.0
176
+ * Contact: support@immutable.com
177
+ *
178
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
179
+ * https://openapi-generator.tech
180
+ * Do not edit the class manually.
181
+ */
182
+
183
+ /**
184
+ * @type APIError401
185
+ * @export
186
+ */
187
+ type APIError401 = APIError401AllOf & BasicAPIError;
188
+
189
+ /**
190
+ * Immutable zkEVM API
191
+ * Immutable Multi Rollup API
192
+ *
193
+ * The version of the OpenAPI document: 1.0.0
194
+ * Contact: support@immutable.com
195
+ *
196
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
197
+ * https://openapi-generator.tech
198
+ * Do not edit the class manually.
199
+ */
200
+ /**
201
+ *
202
+ * @export
203
+ * @interface APIError403AllOf
204
+ */
205
+ interface APIError403AllOf {
206
+ /**
207
+ * Error Code
208
+ * @type {string}
209
+ * @memberof APIError403AllOf
210
+ */
211
+ 'code': APIError403AllOfCodeEnum;
212
+ /**
213
+ * Additional details to help resolve the error
214
+ * @type {object}
215
+ * @memberof APIError403AllOf
216
+ */
217
+ 'details': object | null;
218
+ }
219
+ /**
220
+ * @export
221
+ * @enum {string}
222
+ */
223
+ declare enum APIError403AllOfCodeEnum {
224
+ AuthenticationError = "AUTHENTICATION_ERROR"
225
+ }
226
+
227
+ /**
228
+ * Immutable zkEVM API
229
+ * Immutable Multi Rollup API
230
+ *
231
+ * The version of the OpenAPI document: 1.0.0
232
+ * Contact: support@immutable.com
233
+ *
234
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
235
+ * https://openapi-generator.tech
236
+ * Do not edit the class manually.
237
+ */
238
+
239
+ /**
240
+ * @type APIError403
241
+ * @export
242
+ */
243
+ type APIError403 = APIError403AllOf & BasicAPIError;
244
+
245
+ /**
246
+ * Immutable zkEVM API
247
+ * Immutable Multi Rollup API
248
+ *
249
+ * The version of the OpenAPI document: 1.0.0
250
+ * Contact: support@immutable.com
251
+ *
252
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
253
+ * https://openapi-generator.tech
254
+ * Do not edit the class manually.
255
+ */
256
+ /**
257
+ *
258
+ * @export
259
+ * @interface APIError404AllOf
260
+ */
261
+ interface APIError404AllOf {
262
+ /**
263
+ * Error Code
264
+ * @type {string}
265
+ * @memberof APIError404AllOf
266
+ */
267
+ 'code': APIError404AllOfCodeEnum;
268
+ /**
269
+ * Additional details to help resolve the error
270
+ * @type {object}
271
+ * @memberof APIError404AllOf
272
+ */
273
+ 'details': object | null;
274
+ }
275
+ /**
276
+ * @export
277
+ * @enum {string}
278
+ */
279
+ declare enum APIError404AllOfCodeEnum {
280
+ ResourceNotFound = "RESOURCE_NOT_FOUND"
281
+ }
282
+
283
+ /**
284
+ * Immutable zkEVM API
285
+ * Immutable Multi Rollup API
286
+ *
287
+ * The version of the OpenAPI document: 1.0.0
288
+ * Contact: support@immutable.com
289
+ *
290
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
291
+ * https://openapi-generator.tech
292
+ * Do not edit the class manually.
293
+ */
294
+
295
+ /**
296
+ * @type APIError404
297
+ * @export
298
+ */
299
+ type APIError404 = APIError404AllOf & BasicAPIError;
300
+
301
+ /**
302
+ * Immutable zkEVM API
303
+ * Immutable Multi Rollup API
304
+ *
305
+ * The version of the OpenAPI document: 1.0.0
306
+ * Contact: support@immutable.com
307
+ *
308
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
309
+ * https://openapi-generator.tech
310
+ * Do not edit the class manually.
311
+ */
312
+ /**
313
+ *
314
+ * @export
315
+ * @interface APIError409AllOf
316
+ */
317
+ interface APIError409AllOf {
318
+ /**
319
+ * Error Code
320
+ * @type {string}
321
+ * @memberof APIError409AllOf
322
+ */
323
+ 'code': APIError409AllOfCodeEnum;
324
+ /**
325
+ * Additional details to help resolve the error
326
+ * @type {{ [key: string]: any; }}
327
+ * @memberof APIError409AllOf
328
+ */
329
+ 'details': {
330
+ [key: string]: any;
331
+ } | null;
332
+ }
333
+ /**
334
+ * @export
335
+ * @enum {string}
336
+ */
337
+ declare enum APIError409AllOfCodeEnum {
338
+ ConflictError = "CONFLICT_ERROR"
339
+ }
340
+
341
+ /**
342
+ * Immutable zkEVM API
343
+ * Immutable Multi Rollup API
344
+ *
345
+ * The version of the OpenAPI document: 1.0.0
346
+ * Contact: support@immutable.com
347
+ *
348
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
349
+ * https://openapi-generator.tech
350
+ * Do not edit the class manually.
351
+ */
352
+
353
+ /**
354
+ * @type APIError409
355
+ * @export
356
+ */
357
+ type APIError409 = APIError409AllOf & BasicAPIError;
358
+
359
+ /**
360
+ * Immutable zkEVM API
361
+ * Immutable Multi Rollup API
362
+ *
363
+ * The version of the OpenAPI document: 1.0.0
364
+ * Contact: support@immutable.com
365
+ *
366
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
367
+ * https://openapi-generator.tech
368
+ * Do not edit the class manually.
369
+ */
370
+ /**
371
+ *
372
+ * @export
373
+ * @interface APIError429AllOf
374
+ */
375
+ interface APIError429AllOf {
376
+ /**
377
+ * Error Code
378
+ * @type {string}
379
+ * @memberof APIError429AllOf
380
+ */
381
+ 'code': APIError429AllOfCodeEnum;
382
+ /**
383
+ * Additional details to help resolve the error
384
+ * @type {object}
385
+ * @memberof APIError429AllOf
386
+ */
387
+ 'details': object | null;
388
+ }
389
+ /**
390
+ * @export
391
+ * @enum {string}
392
+ */
393
+ declare enum APIError429AllOfCodeEnum {
394
+ TooManyRequestsError = "TOO_MANY_REQUESTS_ERROR"
395
+ }
396
+
397
+ /**
398
+ * Immutable zkEVM API
399
+ * Immutable Multi Rollup API
400
+ *
401
+ * The version of the OpenAPI document: 1.0.0
402
+ * Contact: support@immutable.com
403
+ *
404
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
405
+ * https://openapi-generator.tech
406
+ * Do not edit the class manually.
407
+ */
408
+
409
+ /**
410
+ * @type APIError429
411
+ * @export
412
+ */
413
+ type APIError429 = APIError429AllOf & BasicAPIError;
414
+
415
+ /**
416
+ * Immutable zkEVM API
417
+ * Immutable Multi Rollup API
418
+ *
419
+ * The version of the OpenAPI document: 1.0.0
420
+ * Contact: support@immutable.com
421
+ *
422
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
423
+ * https://openapi-generator.tech
424
+ * Do not edit the class manually.
425
+ */
426
+ /**
427
+ *
428
+ * @export
429
+ * @interface APIError500AllOf
430
+ */
431
+ interface APIError500AllOf {
432
+ /**
433
+ * Error Code
434
+ * @type {string}
435
+ * @memberof APIError500AllOf
436
+ */
437
+ 'code': APIError500AllOfCodeEnum;
438
+ /**
439
+ * Additional details to help resolve the error
440
+ * @type {object}
441
+ * @memberof APIError500AllOf
442
+ */
443
+ 'details': object | null;
444
+ }
445
+ /**
446
+ * @export
447
+ * @enum {string}
448
+ */
449
+ declare enum APIError500AllOfCodeEnum {
450
+ InternalServerError = "INTERNAL_SERVER_ERROR"
451
+ }
452
+
453
+ /**
454
+ * Immutable zkEVM API
455
+ * Immutable Multi Rollup API
456
+ *
457
+ * The version of the OpenAPI document: 1.0.0
458
+ * Contact: support@immutable.com
459
+ *
460
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
461
+ * https://openapi-generator.tech
462
+ * Do not edit the class manually.
463
+ */
464
+
465
+ /**
466
+ * @type APIError500
467
+ * @export
468
+ */
469
+ type APIError500 = APIError500AllOf & BasicAPIError;
470
+
471
+ /**
472
+ * Immutable zkEVM API
473
+ * Immutable Multi Rollup API
474
+ *
475
+ * The version of the OpenAPI document: 1.0.0
476
+ * Contact: support@immutable.com
477
+ *
478
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
479
+ * https://openapi-generator.tech
480
+ * Do not edit the class manually.
481
+ */
482
+ /**
483
+ *
484
+ * @export
485
+ * @interface APIError501AllOf
486
+ */
487
+ interface APIError501AllOf {
488
+ /**
489
+ * Error Code
490
+ * @type {string}
491
+ * @memberof APIError501AllOf
492
+ */
493
+ 'code': APIError501AllOfCodeEnum;
494
+ /**
495
+ * Additional details to help resolve the error
496
+ * @type {object}
497
+ * @memberof APIError501AllOf
498
+ */
499
+ 'details': object | null;
500
+ }
501
+ /**
502
+ * @export
503
+ * @enum {string}
504
+ */
505
+ declare enum APIError501AllOfCodeEnum {
506
+ NotImplementedError = "NOT_IMPLEMENTED_ERROR"
507
+ }
508
+
509
+ /**
510
+ * Immutable zkEVM API
511
+ * Immutable Multi Rollup API
512
+ *
513
+ * The version of the OpenAPI document: 1.0.0
514
+ * Contact: support@immutable.com
515
+ *
516
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
517
+ * https://openapi-generator.tech
518
+ * Do not edit the class manually.
519
+ */
520
+
521
+ /**
522
+ * @type APIError501
523
+ * @export
524
+ */
525
+ type APIError501 = APIError501AllOf & BasicAPIError;
526
+
527
+ /**
528
+ * Immutable zkEVM API
529
+ * Immutable Multi Rollup API
530
+ *
531
+ * The version of the OpenAPI document: 1.0.0
532
+ * Contact: support@immutable.com
533
+ *
534
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
535
+ * https://openapi-generator.tech
536
+ * Do not edit the class manually.
537
+ */
538
+ /**
539
+ *
540
+ * @export
541
+ * @interface ActiveOrderStatus
542
+ */
543
+ interface ActiveOrderStatus {
544
+ /**
545
+ * The order status that indicates an order can be fulfilled.
546
+ * @type {string}
547
+ * @memberof ActiveOrderStatus
548
+ */
549
+ 'name': ActiveOrderStatusNameEnum;
550
+ }
551
+ /**
552
+ * @export
553
+ * @enum {string}
554
+ */
555
+ declare enum ActiveOrderStatusNameEnum {
556
+ Active = "ACTIVE"
557
+ }
558
+
559
+ /**
560
+ * Immutable zkEVM API
561
+ * Immutable Multi Rollup API
562
+ *
563
+ * The version of the OpenAPI document: 1.0.0
564
+ * Contact: support@immutable.com
565
+ *
566
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
567
+ * https://openapi-generator.tech
568
+ * Do not edit the class manually.
569
+ */
570
+ /**
571
+ * The contract type for an NFT
572
+ * @export
573
+ * @enum {string}
574
+ */
575
+ declare enum NFTContractType {
576
+ Erc721 = "ERC721",
577
+ Erc1155 = "ERC1155"
578
+ }
579
+
580
+ /**
581
+ * Immutable zkEVM API
582
+ * Immutable Multi Rollup API
583
+ *
584
+ * The version of the OpenAPI document: 1.0.0
585
+ * Contact: support@immutable.com
586
+ *
587
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
588
+ * https://openapi-generator.tech
589
+ * Do not edit the class manually.
590
+ */
591
+
592
+ /**
593
+ *
594
+ * @export
595
+ * @interface ActivityNFT
596
+ */
597
+ interface ActivityNFT {
598
+ /**
599
+ *
600
+ * @type {NFTContractType}
601
+ * @memberof ActivityNFT
602
+ */
603
+ 'contract_type': NFTContractType;
604
+ /**
605
+ * The token contract address
606
+ * @type {string}
607
+ * @memberof ActivityNFT
608
+ */
609
+ 'contract_address': string;
610
+ /**
611
+ * An `uint256` token id as string
612
+ * @type {string}
613
+ * @memberof ActivityNFT
614
+ */
615
+ 'token_id': string;
616
+ }
617
+
618
+ /**
619
+ * Immutable zkEVM API
620
+ * Immutable Multi Rollup API
621
+ *
622
+ * The version of the OpenAPI document: 1.0.0
623
+ * Contact: support@immutable.com
624
+ *
625
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
626
+ * https://openapi-generator.tech
627
+ * Do not edit the class manually.
628
+ */
629
+ /**
630
+ * The contract type for a token
631
+ * @export
632
+ * @enum {string}
633
+ */
634
+ declare enum TokenContractType {
635
+ Erc20 = "ERC20"
636
+ }
637
+
638
+ /**
639
+ * Immutable zkEVM API
640
+ * Immutable Multi Rollup API
641
+ *
642
+ * The version of the OpenAPI document: 1.0.0
643
+ * Contact: support@immutable.com
644
+ *
645
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
646
+ * https://openapi-generator.tech
647
+ * Do not edit the class manually.
648
+ */
649
+
650
+ /**
651
+ *
652
+ * @export
653
+ * @interface ActivityToken
654
+ */
655
+ interface ActivityToken {
656
+ /**
657
+ *
658
+ * @type {TokenContractType}
659
+ * @memberof ActivityToken
660
+ */
661
+ 'contract_type': TokenContractType;
662
+ /**
663
+ * The contract address
664
+ * @type {string}
665
+ * @memberof ActivityToken
666
+ */
667
+ 'contract_address': string;
668
+ }
669
+
670
+ /**
671
+ * Immutable zkEVM API
672
+ * Immutable Multi Rollup API
673
+ *
674
+ * The version of the OpenAPI document: 1.0.0
675
+ * Contact: support@immutable.com
676
+ *
677
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
678
+ * https://openapi-generator.tech
679
+ * Do not edit the class manually.
680
+ */
681
+
682
+ /**
683
+ * @type ActivityAsset
684
+ * The contract and asset details for this activity
685
+ * @export
686
+ */
687
+ type ActivityAsset = ActivityNFT | ActivityToken;
688
+
689
+ /**
690
+ * Immutable zkEVM API
691
+ * Immutable Multi Rollup API
692
+ *
693
+ * The version of the OpenAPI document: 1.0.0
694
+ * Contact: support@immutable.com
695
+ *
696
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
697
+ * https://openapi-generator.tech
698
+ * Do not edit the class manually.
699
+ */
700
+
701
+ /**
702
+ * The burn activity details
703
+ * @export
704
+ * @interface Burn
705
+ */
706
+ interface Burn {
707
+ /**
708
+ * The account address the asset was transferred from
709
+ * @type {string}
710
+ * @memberof Burn
711
+ */
712
+ 'from': string;
713
+ /**
714
+ * The amount of assets burnt
715
+ * @type {string}
716
+ * @memberof Burn
717
+ */
718
+ 'amount': string;
719
+ /**
720
+ *
721
+ * @type {ActivityAsset}
722
+ * @memberof Burn
723
+ */
724
+ 'asset': ActivityAsset;
725
+ }
726
+
727
+ /**
728
+ * Immutable zkEVM API
729
+ * Immutable Multi Rollup API
730
+ *
731
+ * The version of the OpenAPI document: 1.0.0
732
+ * Contact: support@immutable.com
733
+ *
734
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
735
+ * https://openapi-generator.tech
736
+ * Do not edit the class manually.
737
+ */
738
+
739
+ /**
740
+ * The deposit activity details
741
+ * @export
742
+ * @interface Deposit
743
+ */
744
+ interface Deposit {
745
+ /**
746
+ * The account address the asset was deposited to
747
+ * @type {string}
748
+ * @memberof Deposit
749
+ */
750
+ 'to': string;
751
+ /**
752
+ * The deposited amount
753
+ * @type {string}
754
+ * @memberof Deposit
755
+ */
756
+ 'amount': string;
757
+ /**
758
+ *
759
+ * @type {ActivityAsset}
760
+ * @memberof Deposit
761
+ */
762
+ 'asset': ActivityAsset;
763
+ }
764
+
765
+ /**
766
+ * Immutable zkEVM API
767
+ * Immutable Multi Rollup API
768
+ *
769
+ * The version of the OpenAPI document: 1.0.0
770
+ * Contact: support@immutable.com
771
+ *
772
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
773
+ * https://openapi-generator.tech
774
+ * Do not edit the class manually.
775
+ */
776
+
777
+ /**
778
+ * The mint activity details
779
+ * @export
780
+ * @interface Mint
781
+ */
782
+ interface Mint {
783
+ /**
784
+ * The account address the asset was minted to
785
+ * @type {string}
786
+ * @memberof Mint
787
+ */
788
+ 'to': string;
789
+ /**
790
+ * The minted amount
791
+ * @type {string}
792
+ * @memberof Mint
793
+ */
794
+ 'amount': string;
795
+ /**
796
+ *
797
+ * @type {ActivityAsset}
798
+ * @memberof Mint
799
+ */
800
+ 'asset': ActivityAsset;
801
+ }
802
+
803
+ /**
804
+ * Immutable zkEVM API
805
+ * Immutable Multi Rollup API
806
+ *
807
+ * The version of the OpenAPI document: 1.0.0
808
+ * Contact: support@immutable.com
809
+ *
810
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
811
+ * https://openapi-generator.tech
812
+ * Do not edit the class manually.
813
+ */
814
+ /**
815
+ *
816
+ * @export
817
+ * @interface SaleFee
818
+ */
819
+ interface SaleFee {
820
+ /**
821
+ * Fee payable to recipient upon settlement
822
+ * @type {string}
823
+ * @memberof SaleFee
824
+ */
825
+ 'amount'?: string;
826
+ /**
827
+ * Fee type
828
+ * @type {string}
829
+ * @memberof SaleFee
830
+ */
831
+ 'type'?: SaleFeeTypeEnum;
832
+ /**
833
+ * Wallet address of fee recipient
834
+ * @type {string}
835
+ * @memberof SaleFee
836
+ */
837
+ 'recipient'?: string;
838
+ }
839
+ /**
840
+ * @export
841
+ * @enum {string}
842
+ */
843
+ declare enum SaleFeeTypeEnum {
844
+ Royalty = "ROYALTY"
845
+ }
846
+
847
+ /**
848
+ * Immutable zkEVM API
849
+ * Immutable Multi Rollup API
850
+ *
851
+ * The version of the OpenAPI document: 1.0.0
852
+ * Contact: support@immutable.com
853
+ *
854
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
855
+ * https://openapi-generator.tech
856
+ * Do not edit the class manually.
857
+ */
858
+ /**
859
+ *
860
+ * @export
861
+ * @interface ActivityNativeToken
862
+ */
863
+ interface ActivityNativeToken {
864
+ /**
865
+ * The token symbol
866
+ * @type {string}
867
+ * @memberof ActivityNativeToken
868
+ */
869
+ 'symbol': string;
870
+ }
871
+
872
+ /**
873
+ * Immutable zkEVM API
874
+ * Immutable Multi Rollup API
875
+ *
876
+ * The version of the OpenAPI document: 1.0.0
877
+ * Contact: support@immutable.com
878
+ *
879
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
880
+ * https://openapi-generator.tech
881
+ * Do not edit the class manually.
882
+ */
883
+
884
+ /**
885
+ * @type SalePaymentToken
886
+ * The type of payment token
887
+ * @export
888
+ */
889
+ type SalePaymentToken = ActivityNativeToken | ActivityToken;
890
+
891
+ /**
892
+ * Immutable zkEVM API
893
+ * Immutable Multi Rollup API
894
+ *
895
+ * The version of the OpenAPI document: 1.0.0
896
+ * Contact: support@immutable.com
897
+ *
898
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
899
+ * https://openapi-generator.tech
900
+ * Do not edit the class manually.
901
+ */
902
+
903
+ /**
904
+ *
905
+ * @export
906
+ * @interface SalePayment
907
+ */
908
+ interface SalePayment {
909
+ /**
910
+ *
911
+ * @type {SalePaymentToken}
912
+ * @memberof SalePayment
913
+ */
914
+ 'token': SalePaymentToken;
915
+ /**
916
+ * The base price of the sale not including any fees
917
+ * @type {string}
918
+ * @memberof SalePayment
919
+ */
920
+ 'price_excluding_fees': string;
921
+ /**
922
+ * The total price of the sale. Includes the sum of all fees
923
+ * @type {string}
924
+ * @memberof SalePayment
925
+ */
926
+ 'price_including_fees': string;
927
+ /**
928
+ * The fees associated with this sale
929
+ * @type {Array<SaleFee>}
930
+ * @memberof SalePayment
931
+ */
932
+ 'fees': Array<SaleFee>;
933
+ }
934
+
935
+ /**
936
+ * Immutable zkEVM API
937
+ * Immutable Multi Rollup API
938
+ *
939
+ * The version of the OpenAPI document: 1.0.0
940
+ * Contact: support@immutable.com
941
+ *
942
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
943
+ * https://openapi-generator.tech
944
+ * Do not edit the class manually.
945
+ */
946
+
947
+ /**
948
+ * The NFT Sale activity details
949
+ * @export
950
+ * @interface NFTSale
951
+ */
952
+ interface NFTSale {
953
+ /**
954
+ * The id of order
955
+ * @type {string}
956
+ * @memberof NFTSale
957
+ */
958
+ 'order_id': string;
959
+ /**
960
+ * The account address of buyer
961
+ * @type {string}
962
+ * @memberof NFTSale
963
+ */
964
+ 'to': string;
965
+ /**
966
+ * The account address of seller
967
+ * @type {string}
968
+ * @memberof NFTSale
969
+ */
970
+ 'from': string;
971
+ /**
972
+ *
973
+ * @type {Array<ActivityNFT>}
974
+ * @memberof NFTSale
975
+ */
976
+ 'asset': Array<ActivityNFT>;
977
+ /**
978
+ *
979
+ * @type {SalePayment}
980
+ * @memberof NFTSale
981
+ */
982
+ 'payment': SalePayment;
983
+ }
984
+
985
+ /**
986
+ * Immutable zkEVM API
987
+ * Immutable Multi Rollup API
988
+ *
989
+ * The version of the OpenAPI document: 1.0.0
990
+ * Contact: support@immutable.com
991
+ *
992
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
993
+ * https://openapi-generator.tech
994
+ * Do not edit the class manually.
995
+ */
996
+
997
+ /**
998
+ * The transfer activity details
999
+ * @export
1000
+ * @interface Transfer
1001
+ */
1002
+ interface Transfer {
1003
+ /**
1004
+ * The account address the asset was transferred from
1005
+ * @type {string}
1006
+ * @memberof Transfer
1007
+ */
1008
+ 'from': string;
1009
+ /**
1010
+ * The account address the asset was transferred to
1011
+ * @type {string}
1012
+ * @memberof Transfer
1013
+ */
1014
+ 'to': string;
1015
+ /**
1016
+ * The amount of assets transferred
1017
+ * @type {string}
1018
+ * @memberof Transfer
1019
+ */
1020
+ 'amount': string;
1021
+ /**
1022
+ *
1023
+ * @type {ActivityAsset}
1024
+ * @memberof Transfer
1025
+ */
1026
+ 'asset': ActivityAsset;
1027
+ }
1028
+
1029
+ /**
1030
+ * Immutable zkEVM API
1031
+ * Immutable Multi Rollup API
1032
+ *
1033
+ * The version of the OpenAPI document: 1.0.0
1034
+ * Contact: support@immutable.com
1035
+ *
1036
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1037
+ * https://openapi-generator.tech
1038
+ * Do not edit the class manually.
1039
+ */
1040
+
1041
+ /**
1042
+ * The withdrawal activity details
1043
+ * @export
1044
+ * @interface Withdrawal
1045
+ */
1046
+ interface Withdrawal {
1047
+ /**
1048
+ * The account address the asset was withdrawn from
1049
+ * @type {string}
1050
+ * @memberof Withdrawal
1051
+ */
1052
+ 'from': string;
1053
+ /**
1054
+ * The amount of assets withdrawn
1055
+ * @type {string}
1056
+ * @memberof Withdrawal
1057
+ */
1058
+ 'amount': string;
1059
+ /**
1060
+ *
1061
+ * @type {ActivityAsset}
1062
+ * @memberof Withdrawal
1063
+ */
1064
+ 'asset': ActivityAsset;
1065
+ }
1066
+
1067
+ /**
1068
+ * Immutable zkEVM API
1069
+ * Immutable Multi Rollup API
1070
+ *
1071
+ * The version of the OpenAPI document: 1.0.0
1072
+ * Contact: support@immutable.com
1073
+ *
1074
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1075
+ * https://openapi-generator.tech
1076
+ * Do not edit the class manually.
1077
+ */
1078
+
1079
+ /**
1080
+ * @type ActivityDetails
1081
+ * The activity details
1082
+ * @export
1083
+ */
1084
+ type ActivityDetails = Burn | Deposit | Mint | NFTSale | Transfer | Withdrawal;
1085
+
1086
+ /**
1087
+ * Immutable zkEVM API
1088
+ * Immutable Multi Rollup API
1089
+ *
1090
+ * The version of the OpenAPI document: 1.0.0
1091
+ * Contact: support@immutable.com
1092
+ *
1093
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1094
+ * https://openapi-generator.tech
1095
+ * Do not edit the class manually.
1096
+ */
1097
+ /**
1098
+ * The activity type
1099
+ * @export
1100
+ * @enum {string}
1101
+ */
1102
+ declare enum ActivityType$1 {
1103
+ Mint = "mint",
1104
+ Burn = "burn",
1105
+ Transfer = "transfer",
1106
+ Sale = "sale",
1107
+ Deposit = "deposit",
1108
+ Withdrawal = "withdrawal"
1109
+ }
1110
+
1111
+ /**
1112
+ * Immutable zkEVM API
1113
+ * Immutable Multi Rollup API
1114
+ *
1115
+ * The version of the OpenAPI document: 1.0.0
1116
+ * Contact: support@immutable.com
1117
+ *
1118
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1119
+ * https://openapi-generator.tech
1120
+ * Do not edit the class manually.
1121
+ */
1122
+ /**
1123
+ * The metadata related to blockchain transaction
1124
+ * @export
1125
+ * @interface BlockchainMetadata
1126
+ */
1127
+ interface BlockchainMetadata {
1128
+ /**
1129
+ * The transaction hash of the activity
1130
+ * @type {string}
1131
+ * @memberof BlockchainMetadata
1132
+ */
1133
+ 'transaction_hash': string;
1134
+ /**
1135
+ * EVM block number (uint64 as string)
1136
+ * @type {string}
1137
+ * @memberof BlockchainMetadata
1138
+ */
1139
+ 'block_number': string;
1140
+ /**
1141
+ * Transaction index in a block (uint32 as string)
1142
+ * @type {string}
1143
+ * @memberof BlockchainMetadata
1144
+ */
1145
+ 'transaction_index': string;
1146
+ /**
1147
+ * The log index of activity in a block (uint32 as string)
1148
+ * @type {string}
1149
+ * @memberof BlockchainMetadata
1150
+ */
1151
+ 'log_index': string | null;
1152
+ }
1153
+
1154
+ /**
1155
+ * Immutable zkEVM API
1156
+ * Immutable Multi Rollup API
1157
+ *
1158
+ * The version of the OpenAPI document: 1.0.0
1159
+ * Contact: support@immutable.com
1160
+ *
1161
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1162
+ * https://openapi-generator.tech
1163
+ * Do not edit the class manually.
1164
+ */
1165
+ /**
1166
+ * The chain details
1167
+ * @export
1168
+ * @interface Chain
1169
+ */
1170
+ interface Chain {
1171
+ /**
1172
+ * The id of chain
1173
+ * @type {string}
1174
+ * @memberof Chain
1175
+ */
1176
+ 'id': string;
1177
+ /**
1178
+ * The name of chain
1179
+ * @type {string}
1180
+ * @memberof Chain
1181
+ */
1182
+ 'name': string;
1183
+ }
1184
+
1185
+ /**
1186
+ * Immutable zkEVM API
1187
+ * Immutable Multi Rollup API
1188
+ *
1189
+ * The version of the OpenAPI document: 1.0.0
1190
+ * Contact: support@immutable.com
1191
+ *
1192
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1193
+ * https://openapi-generator.tech
1194
+ * Do not edit the class manually.
1195
+ */
1196
+
1197
+ /**
1198
+ *
1199
+ * @export
1200
+ * @interface Activity
1201
+ */
1202
+ interface Activity {
1203
+ /**
1204
+ * Activity id in UUIDv4 format
1205
+ * @type {string}
1206
+ * @memberof Activity
1207
+ */
1208
+ 'id': string;
1209
+ /**
1210
+ *
1211
+ * @type {Chain}
1212
+ * @memberof Activity
1213
+ */
1214
+ 'chain': Chain;
1215
+ /**
1216
+ *
1217
+ * @type {ActivityType}
1218
+ * @memberof Activity
1219
+ */
1220
+ 'type': ActivityType$1;
1221
+ /**
1222
+ *
1223
+ * @type {ActivityDetails}
1224
+ * @memberof Activity
1225
+ */
1226
+ 'details': ActivityDetails;
1227
+ /**
1228
+ * The time activity was updated at
1229
+ * @type {string}
1230
+ * @memberof Activity
1231
+ */
1232
+ 'updated_at': string;
1233
+ /**
1234
+ * The time activity was indexed
1235
+ * @type {string}
1236
+ * @memberof Activity
1237
+ */
1238
+ 'indexed_at': string;
1239
+ /**
1240
+ *
1241
+ * @type {BlockchainMetadata}
1242
+ * @memberof Activity
1243
+ */
1244
+ 'blockchain_metadata': BlockchainMetadata | null;
1245
+ }
1246
+
1247
+ /**
1248
+ * Immutable zkEVM API
1249
+ * Immutable Multi Rollup API
1250
+ *
1251
+ * The version of the OpenAPI document: 1.0.0
1252
+ * Contact: support@immutable.com
1253
+ *
1254
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1255
+ * https://openapi-generator.tech
1256
+ * Do not edit the class manually.
1257
+ */
1258
+ /**
1259
+ * The verification status for a given contract
1260
+ * @export
1261
+ * @enum {string}
1262
+ */
1263
+ declare enum AssetVerificationStatus {
1264
+ Pending = "pending",
1265
+ Verified = "verified",
1266
+ Unverified = "unverified",
1267
+ Spam = "spam",
1268
+ Inactive = "inactive"
1269
+ }
1270
+
1271
+ /**
1272
+ * Immutable zkEVM API
1273
+ * Immutable Multi Rollup API
1274
+ *
1275
+ * The version of the OpenAPI document: 1.0.0
1276
+ * Contact: support@immutable.com
1277
+ *
1278
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1279
+ * https://openapi-generator.tech
1280
+ * Do not edit the class manually.
1281
+ */
1282
+ /**
1283
+ *
1284
+ * @export
1285
+ * @interface ChainWithDetailsAllOf
1286
+ */
1287
+ interface ChainWithDetailsAllOf {
1288
+ /**
1289
+ * URL for RPC node
1290
+ * @type {string}
1291
+ * @memberof ChainWithDetailsAllOf
1292
+ */
1293
+ 'rpc_url': string | null;
1294
+ }
1295
+
1296
+ /**
1297
+ * Immutable zkEVM API
1298
+ * Immutable Multi Rollup API
1299
+ *
1300
+ * The version of the OpenAPI document: 1.0.0
1301
+ * Contact: support@immutable.com
1302
+ *
1303
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1304
+ * https://openapi-generator.tech
1305
+ * Do not edit the class manually.
1306
+ */
1307
+
1308
+ /**
1309
+ * @type ChainWithDetails
1310
+ * @export
1311
+ */
1312
+ type ChainWithDetails = Chain & ChainWithDetailsAllOf;
1313
+
1314
+ /**
1315
+ * Immutable zkEVM API
1316
+ * Immutable Multi Rollup API
1317
+ *
1318
+ * The version of the OpenAPI document: 1.0.0
1319
+ * Contact: support@immutable.com
1320
+ *
1321
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1322
+ * https://openapi-generator.tech
1323
+ * Do not edit the class manually.
1324
+ */
1325
+ /**
1326
+ * The collection contract type
1327
+ * @export
1328
+ * @enum {string}
1329
+ */
1330
+ declare enum CollectionContractType {
1331
+ Erc721 = "ERC721",
1332
+ Erc1155 = "ERC1155"
1333
+ }
1334
+
1335
+ /**
1336
+ * Immutable zkEVM API
1337
+ * Immutable Multi Rollup API
1338
+ *
1339
+ * The version of the OpenAPI document: 1.0.0
1340
+ * Contact: support@immutable.com
1341
+ *
1342
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1343
+ * https://openapi-generator.tech
1344
+ * Do not edit the class manually.
1345
+ */
1346
+
1347
+ /**
1348
+ *
1349
+ * @export
1350
+ * @interface Collection
1351
+ */
1352
+ interface Collection {
1353
+ /**
1354
+ *
1355
+ * @type {Chain}
1356
+ * @memberof Collection
1357
+ */
1358
+ 'chain': Chain;
1359
+ /**
1360
+ * The name of the collection
1361
+ * @type {string}
1362
+ * @memberof Collection
1363
+ */
1364
+ 'name': string | null;
1365
+ /**
1366
+ * The symbol of contract
1367
+ * @type {string}
1368
+ * @memberof Collection
1369
+ */
1370
+ 'symbol': string | null;
1371
+ /**
1372
+ *
1373
+ * @type {CollectionContractType}
1374
+ * @memberof Collection
1375
+ */
1376
+ 'contract_type': CollectionContractType;
1377
+ /**
1378
+ * The address of the contract
1379
+ * @type {string}
1380
+ * @memberof Collection
1381
+ */
1382
+ 'contract_address': string;
1383
+ /**
1384
+ * The description of collection
1385
+ * @type {string}
1386
+ * @memberof Collection
1387
+ */
1388
+ 'description': string | null;
1389
+ /**
1390
+ * The url of the collection image
1391
+ * @type {string}
1392
+ * @memberof Collection
1393
+ */
1394
+ 'image': string | null;
1395
+ /**
1396
+ * The url of external link
1397
+ * @type {string}
1398
+ * @memberof Collection
1399
+ */
1400
+ 'external_link': string | null;
1401
+ /**
1402
+ * The uri for the metadata of the collection
1403
+ * @type {string}
1404
+ * @memberof Collection
1405
+ */
1406
+ 'contract_uri'?: string | null;
1407
+ /**
1408
+ * The metadata uri for nft
1409
+ * @type {string}
1410
+ * @memberof Collection
1411
+ */
1412
+ 'base_uri': string | null;
1413
+ /**
1414
+ *
1415
+ * @type {AssetVerificationStatus}
1416
+ * @memberof Collection
1417
+ */
1418
+ 'verification_status': AssetVerificationStatus;
1419
+ /**
1420
+ * When the collection was first indexed
1421
+ * @type {string}
1422
+ * @memberof Collection
1423
+ */
1424
+ 'indexed_at': string;
1425
+ /**
1426
+ * When the collection was last updated
1427
+ * @type {string}
1428
+ * @memberof Collection
1429
+ */
1430
+ 'updated_at': string;
1431
+ /**
1432
+ * When the collection metadata was last synced
1433
+ * @type {string}
1434
+ * @memberof Collection
1435
+ */
1436
+ 'metadata_synced_at': string | null;
1437
+ }
1438
+
1439
+ /**
1440
+ * Immutable zkEVM API
1441
+ * Immutable Multi Rollup API
1442
+ *
1443
+ * The version of the OpenAPI document: 1.0.0
1444
+ * Contact: support@immutable.com
1445
+ *
1446
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1447
+ * https://openapi-generator.tech
1448
+ * Do not edit the class manually.
1449
+ */
1450
+ /**
1451
+ *
1452
+ * @export
1453
+ * @interface CollectionMetadata
1454
+ */
1455
+ interface CollectionMetadata {
1456
+ /**
1457
+ * The name of the collection
1458
+ * @type {string}
1459
+ * @memberof CollectionMetadata
1460
+ */
1461
+ 'name': string | null;
1462
+ /**
1463
+ * The symbol of contract
1464
+ * @type {string}
1465
+ * @memberof CollectionMetadata
1466
+ */
1467
+ 'symbol': string | null;
1468
+ /**
1469
+ * The description of collection
1470
+ * @type {string}
1471
+ * @memberof CollectionMetadata
1472
+ */
1473
+ 'description': string | null;
1474
+ /**
1475
+ * The url of the collection image
1476
+ * @type {string}
1477
+ * @memberof CollectionMetadata
1478
+ */
1479
+ 'image': string | null;
1480
+ /**
1481
+ * The url of external link
1482
+ * @type {string}
1483
+ * @memberof CollectionMetadata
1484
+ */
1485
+ 'external_link': string | null;
1486
+ /**
1487
+ * The uri for the metadata of the collection
1488
+ * @type {string}
1489
+ * @memberof CollectionMetadata
1490
+ */
1491
+ 'contract_uri': string | null;
1492
+ /**
1493
+ * The metadata uri for nft
1494
+ * @type {string}
1495
+ * @memberof CollectionMetadata
1496
+ */
1497
+ 'base_uri': string | null;
1498
+ }
1499
+
1500
+ /**
1501
+ * Immutable zkEVM API
1502
+ * Immutable Multi Rollup API
1503
+ *
1504
+ * The version of the OpenAPI document: 1.0.0
1505
+ * Contact: support@immutable.com
1506
+ *
1507
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1508
+ * https://openapi-generator.tech
1509
+ * Do not edit the class manually.
1510
+ */
1511
+ /**
1512
+ * @type NFTMetadataAttributeValue
1513
+ * The metadata trait value
1514
+ * @export
1515
+ */
1516
+ type NFTMetadataAttributeValue = boolean | number | string;
1517
+
1518
+ /**
1519
+ * Immutable zkEVM API
1520
+ * Immutable Multi Rollup API
1521
+ *
1522
+ * The version of the OpenAPI document: 1.0.0
1523
+ * Contact: support@immutable.com
1524
+ *
1525
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1526
+ * https://openapi-generator.tech
1527
+ * Do not edit the class manually.
1528
+ */
1529
+
1530
+ /**
1531
+ *
1532
+ * @export
1533
+ * @interface NFTMetadataAttribute
1534
+ */
1535
+ interface NFTMetadataAttribute {
1536
+ /**
1537
+ * The metadata trait type
1538
+ * @type {string}
1539
+ * @memberof NFTMetadataAttribute
1540
+ */
1541
+ 'trait_type': string;
1542
+ /**
1543
+ *
1544
+ * @type {NFTMetadataAttributeValue}
1545
+ * @memberof NFTMetadataAttribute
1546
+ */
1547
+ 'value': NFTMetadataAttributeValue;
1548
+ }
1549
+
1550
+ /**
1551
+ * Immutable zkEVM API
1552
+ * Immutable Multi Rollup API
1553
+ *
1554
+ * The version of the OpenAPI document: 1.0.0
1555
+ * Contact: support@immutable.com
1556
+ *
1557
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1558
+ * https://openapi-generator.tech
1559
+ * Do not edit the class manually.
1560
+ */
1561
+
1562
+ /**
1563
+ * The NFT metadata
1564
+ * @export
1565
+ * @interface NFTMetadataRequest
1566
+ */
1567
+ interface NFTMetadataRequest {
1568
+ /**
1569
+ * The name of the NFT
1570
+ * @type {string}
1571
+ * @memberof NFTMetadataRequest
1572
+ */
1573
+ 'name'?: string | null;
1574
+ /**
1575
+ * The description of the NFT
1576
+ * @type {string}
1577
+ * @memberof NFTMetadataRequest
1578
+ */
1579
+ 'description'?: string | null;
1580
+ /**
1581
+ * The image url of the NFT
1582
+ * @type {string}
1583
+ * @memberof NFTMetadataRequest
1584
+ */
1585
+ 'image'?: string | null;
1586
+ /**
1587
+ * The external link of the NFT
1588
+ * @type {string}
1589
+ * @memberof NFTMetadataRequest
1590
+ */
1591
+ 'external_url'?: string | null;
1592
+ /**
1593
+ * The animation url of the NFT
1594
+ * @type {string}
1595
+ * @memberof NFTMetadataRequest
1596
+ */
1597
+ 'animation_url'?: string | null;
1598
+ /**
1599
+ * The youtube link of the NFT
1600
+ * @type {string}
1601
+ * @memberof NFTMetadataRequest
1602
+ */
1603
+ 'youtube_url'?: string | null;
1604
+ /**
1605
+ * List of Metadata attributes
1606
+ * @type {Array<NFTMetadataAttribute>}
1607
+ * @memberof NFTMetadataRequest
1608
+ */
1609
+ 'attributes'?: Array<NFTMetadataAttribute> | null;
1610
+ }
1611
+
1612
+ /**
1613
+ * Immutable zkEVM API
1614
+ * Immutable Multi Rollup API
1615
+ *
1616
+ * The version of the OpenAPI document: 1.0.0
1617
+ * Contact: support@immutable.com
1618
+ *
1619
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1620
+ * https://openapi-generator.tech
1621
+ * Do not edit the class manually.
1622
+ */
1623
+
1624
+ /**
1625
+ *
1626
+ * @export
1627
+ * @interface MintAsset
1628
+ */
1629
+ interface MintAsset {
1630
+ /**
1631
+ * The id of this asset in the system that originates the mint request
1632
+ * @type {string}
1633
+ * @memberof MintAsset
1634
+ */
1635
+ 'reference_id': string;
1636
+ /**
1637
+ * The address of the receiver
1638
+ * @type {string}
1639
+ * @memberof MintAsset
1640
+ */
1641
+ 'owner_address': string;
1642
+ /**
1643
+ * An optional `uint256` token id as string. It is recommended to omit token_id for more efficient minting
1644
+ * @type {string}
1645
+ * @memberof MintAsset
1646
+ */
1647
+ 'token_id'?: string | null;
1648
+ /**
1649
+ *
1650
+ * @type {NFTMetadataRequest}
1651
+ * @memberof MintAsset
1652
+ */
1653
+ 'metadata'?: NFTMetadataRequest;
1654
+ }
1655
+
1656
+ /**
1657
+ * Immutable zkEVM API
1658
+ * Immutable Multi Rollup API
1659
+ *
1660
+ * The version of the OpenAPI document: 1.0.0
1661
+ * Contact: support@immutable.com
1662
+ *
1663
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1664
+ * https://openapi-generator.tech
1665
+ * Do not edit the class manually.
1666
+ */
1667
+
1668
+ /**
1669
+ *
1670
+ * @export
1671
+ * @interface CreateMintRequestRequest
1672
+ */
1673
+ interface CreateMintRequestRequest {
1674
+ /**
1675
+ * List of nft to be minted
1676
+ * @type {Array<MintAsset>}
1677
+ * @memberof CreateMintRequestRequest
1678
+ */
1679
+ 'assets': Array<MintAsset>;
1680
+ }
1681
+
1682
+ /**
1683
+ * Immutable zkEVM API
1684
+ * Immutable Multi Rollup API
1685
+ *
1686
+ * The version of the OpenAPI document: 1.0.0
1687
+ * Contact: support@immutable.com
1688
+ *
1689
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1690
+ * https://openapi-generator.tech
1691
+ * Do not edit the class manually.
1692
+ */
1693
+ /**
1694
+ *
1695
+ * @export
1696
+ * @interface CreateMintRequestResult
1697
+ */
1698
+ interface CreateMintRequestResult {
1699
+ /**
1700
+ *
1701
+ * @type {string}
1702
+ * @memberof CreateMintRequestResult
1703
+ */
1704
+ 'imx_mint_requests_limit': string;
1705
+ /**
1706
+ *
1707
+ * @type {string}
1708
+ * @memberof CreateMintRequestResult
1709
+ */
1710
+ 'imx_mint_requests_limit_reset': string;
1711
+ /**
1712
+ *
1713
+ * @type {string}
1714
+ * @memberof CreateMintRequestResult
1715
+ */
1716
+ 'imx_remaining_mint_requests': string;
1717
+ /**
1718
+ *
1719
+ * @type {string}
1720
+ * @memberof CreateMintRequestResult
1721
+ */
1722
+ 'imx_mint_requests_retry_after': string;
1723
+ }
1724
+
1725
+ /**
1726
+ * Immutable zkEVM API
1727
+ * Immutable Multi Rollup API
1728
+ *
1729
+ * The version of the OpenAPI document: 1.0.0
1730
+ * Contact: support@immutable.com
1731
+ *
1732
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1733
+ * https://openapi-generator.tech
1734
+ * Do not edit the class manually.
1735
+ */
1736
+ /**
1737
+ *
1738
+ * @export
1739
+ * @interface ERC1155Item
1740
+ */
1741
+ interface ERC1155Item {
1742
+ /**
1743
+ * Token type user is offering, which in this case is ERC1155
1744
+ * @type {string}
1745
+ * @memberof ERC1155Item
1746
+ */
1747
+ 'type': ERC1155ItemTypeEnum;
1748
+ /**
1749
+ * Address of ERC1155 token
1750
+ * @type {string}
1751
+ * @memberof ERC1155Item
1752
+ */
1753
+ 'contract_address': string;
1754
+ /**
1755
+ * ID of ERC1155 token
1756
+ * @type {string}
1757
+ * @memberof ERC1155Item
1758
+ */
1759
+ 'token_id': string;
1760
+ /**
1761
+ * A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum).
1762
+ * @type {string}
1763
+ * @memberof ERC1155Item
1764
+ */
1765
+ 'amount': string;
1766
+ }
1767
+ /**
1768
+ * @export
1769
+ * @enum {string}
1770
+ */
1771
+ declare enum ERC1155ItemTypeEnum {
1772
+ Erc1155 = "ERC1155"
1773
+ }
1774
+
1775
+ /**
1776
+ * Immutable zkEVM API
1777
+ * Immutable Multi Rollup API
1778
+ *
1779
+ * The version of the OpenAPI document: 1.0.0
1780
+ * Contact: support@immutable.com
1781
+ *
1782
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1783
+ * https://openapi-generator.tech
1784
+ * Do not edit the class manually.
1785
+ */
1786
+ /**
1787
+ *
1788
+ * @export
1789
+ * @interface ERC20Item
1790
+ */
1791
+ interface ERC20Item {
1792
+ /**
1793
+ * Token type user is offering, which in this case is ERC20
1794
+ * @type {string}
1795
+ * @memberof ERC20Item
1796
+ */
1797
+ 'type': ERC20ItemTypeEnum;
1798
+ /**
1799
+ * Address of ERC20 token
1800
+ * @type {string}
1801
+ * @memberof ERC20Item
1802
+ */
1803
+ 'contract_address': string;
1804
+ /**
1805
+ * A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum).
1806
+ * @type {string}
1807
+ * @memberof ERC20Item
1808
+ */
1809
+ 'amount': string;
1810
+ }
1811
+ /**
1812
+ * @export
1813
+ * @enum {string}
1814
+ */
1815
+ declare enum ERC20ItemTypeEnum {
1816
+ Erc20 = "ERC20"
1817
+ }
1818
+
1819
+ /**
1820
+ * Immutable zkEVM API
1821
+ * Immutable Multi Rollup API
1822
+ *
1823
+ * The version of the OpenAPI document: 1.0.0
1824
+ * Contact: support@immutable.com
1825
+ *
1826
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1827
+ * https://openapi-generator.tech
1828
+ * Do not edit the class manually.
1829
+ */
1830
+ /**
1831
+ *
1832
+ * @export
1833
+ * @interface ERC721Item
1834
+ */
1835
+ interface ERC721Item {
1836
+ /**
1837
+ * Token type user is offering, which in this case is ERC721
1838
+ * @type {string}
1839
+ * @memberof ERC721Item
1840
+ */
1841
+ 'type': ERC721ItemTypeEnum;
1842
+ /**
1843
+ * Address of ERC721 token
1844
+ * @type {string}
1845
+ * @memberof ERC721Item
1846
+ */
1847
+ 'contract_address': string;
1848
+ /**
1849
+ * ID of ERC721 token
1850
+ * @type {string}
1851
+ * @memberof ERC721Item
1852
+ */
1853
+ 'token_id': string;
1854
+ }
1855
+ /**
1856
+ * @export
1857
+ * @enum {string}
1858
+ */
1859
+ declare enum ERC721ItemTypeEnum {
1860
+ Erc721 = "ERC721"
1861
+ }
1862
+
1863
+ /**
1864
+ * Immutable zkEVM API
1865
+ * Immutable Multi Rollup API
1866
+ *
1867
+ * The version of the OpenAPI document: 1.0.0
1868
+ * Contact: support@immutable.com
1869
+ *
1870
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1871
+ * https://openapi-generator.tech
1872
+ * Do not edit the class manually.
1873
+ */
1874
+
1875
+ /**
1876
+ * Single activity
1877
+ * @export
1878
+ * @interface GetActivityResult
1879
+ */
1880
+ interface GetActivityResult {
1881
+ /**
1882
+ *
1883
+ * @type {Activity}
1884
+ * @memberof GetActivityResult
1885
+ */
1886
+ 'result': Activity;
1887
+ }
1888
+
1889
+ /**
1890
+ * Immutable zkEVM API
1891
+ * Immutable Multi Rollup API
1892
+ *
1893
+ * The version of the OpenAPI document: 1.0.0
1894
+ * Contact: support@immutable.com
1895
+ *
1896
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1897
+ * https://openapi-generator.tech
1898
+ * Do not edit the class manually.
1899
+ */
1900
+
1901
+ /**
1902
+ * Single Collection
1903
+ * @export
1904
+ * @interface GetCollectionResult
1905
+ */
1906
+ interface GetCollectionResult {
1907
+ /**
1908
+ *
1909
+ * @type {Collection}
1910
+ * @memberof GetCollectionResult
1911
+ */
1912
+ 'result': Collection;
1913
+ }
1914
+
1915
+ /**
1916
+ * Immutable zkEVM API
1917
+ * Immutable Multi Rollup API
1918
+ *
1919
+ * The version of the OpenAPI document: 1.0.0
1920
+ * Contact: support@immutable.com
1921
+ *
1922
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1923
+ * https://openapi-generator.tech
1924
+ * Do not edit the class manually.
1925
+ */
1926
+
1927
+ /**
1928
+ *
1929
+ * @export
1930
+ * @interface Metadata
1931
+ */
1932
+ interface Metadata {
1933
+ /**
1934
+ * Metadata id in UUIDv4 format
1935
+ * @type {string}
1936
+ * @memberof Metadata
1937
+ */
1938
+ 'id': string;
1939
+ /**
1940
+ *
1941
+ * @type {Chain}
1942
+ * @memberof Metadata
1943
+ */
1944
+ 'chain': Chain;
1945
+ /**
1946
+ * The contract address of the metadata
1947
+ * @type {string}
1948
+ * @memberof Metadata
1949
+ */
1950
+ 'contract_address': string;
1951
+ /**
1952
+ * When the metadata was created
1953
+ * @type {string}
1954
+ * @memberof Metadata
1955
+ */
1956
+ 'created_at': string;
1957
+ /**
1958
+ * When the metadata was last updated
1959
+ * @type {string}
1960
+ * @memberof Metadata
1961
+ */
1962
+ 'updated_at': string | null;
1963
+ /**
1964
+ * The name of the NFT
1965
+ * @type {string}
1966
+ * @memberof Metadata
1967
+ */
1968
+ 'name': string | null;
1969
+ /**
1970
+ * The description of the NFT
1971
+ * @type {string}
1972
+ * @memberof Metadata
1973
+ */
1974
+ 'description': string | null;
1975
+ /**
1976
+ * The image url of the NFT
1977
+ * @type {string}
1978
+ * @memberof Metadata
1979
+ */
1980
+ 'image': string | null;
1981
+ /**
1982
+ * The external website link of NFT
1983
+ * @type {string}
1984
+ * @memberof Metadata
1985
+ */
1986
+ 'external_url'?: string | null;
1987
+ /**
1988
+ * The animation url of the NFT
1989
+ * @type {string}
1990
+ * @memberof Metadata
1991
+ */
1992
+ 'animation_url': string | null;
1993
+ /**
1994
+ * The youtube URL of NFT
1995
+ * @type {string}
1996
+ * @memberof Metadata
1997
+ */
1998
+ 'youtube_url': string | null;
1999
+ /**
2000
+ * List of Metadata attributes
2001
+ * @type {Array<NFTMetadataAttribute>}
2002
+ * @memberof Metadata
2003
+ */
2004
+ 'attributes': Array<NFTMetadataAttribute> | null;
2005
+ }
2006
+
2007
+ /**
2008
+ * Immutable zkEVM API
2009
+ * Immutable Multi Rollup API
2010
+ *
2011
+ * The version of the OpenAPI document: 1.0.0
2012
+ * Contact: support@immutable.com
2013
+ *
2014
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2015
+ * https://openapi-generator.tech
2016
+ * Do not edit the class manually.
2017
+ */
2018
+
2019
+ /**
2020
+ * Single metadata
2021
+ * @export
2022
+ * @interface GetMetadataResult
2023
+ */
2024
+ interface GetMetadataResult {
2025
+ /**
2026
+ *
2027
+ * @type {Metadata}
2028
+ * @memberof GetMetadataResult
2029
+ */
2030
+ 'result': Metadata;
2031
+ }
2032
+
2033
+ /**
2034
+ * Immutable zkEVM API
2035
+ * Immutable Multi Rollup API
2036
+ *
2037
+ * The version of the OpenAPI document: 1.0.0
2038
+ * Contact: support@immutable.com
2039
+ *
2040
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2041
+ * https://openapi-generator.tech
2042
+ * Do not edit the class manually.
2043
+ */
2044
+ /**
2045
+ * The error details in case the mint request fails
2046
+ * @export
2047
+ * @interface MintRequestErrorMessage
2048
+ */
2049
+ interface MintRequestErrorMessage {
2050
+ /**
2051
+ * An error message in case the mint request fails
2052
+ * @type {string}
2053
+ * @memberof MintRequestErrorMessage
2054
+ */
2055
+ 'message'?: string;
2056
+ }
2057
+
2058
+ /**
2059
+ * Immutable zkEVM API
2060
+ * Immutable Multi Rollup API
2061
+ *
2062
+ * The version of the OpenAPI document: 1.0.0
2063
+ * Contact: support@immutable.com
2064
+ *
2065
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2066
+ * https://openapi-generator.tech
2067
+ * Do not edit the class manually.
2068
+ */
2069
+ /**
2070
+ * The status of the mint request
2071
+ * @export
2072
+ * @enum {string}
2073
+ */
2074
+ declare enum MintRequestStatus {
2075
+ Pending = "pending",
2076
+ Succeeded = "succeeded",
2077
+ Failed = "failed"
2078
+ }
2079
+
2080
+ /**
2081
+ * Immutable zkEVM API
2082
+ * Immutable Multi Rollup API
2083
+ *
2084
+ * The version of the OpenAPI document: 1.0.0
2085
+ * Contact: support@immutable.com
2086
+ *
2087
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2088
+ * https://openapi-generator.tech
2089
+ * Do not edit the class manually.
2090
+ */
2091
+
2092
+ /**
2093
+ *
2094
+ * @export
2095
+ * @interface GetMintRequestResult
2096
+ */
2097
+ interface GetMintRequestResult {
2098
+ /**
2099
+ *
2100
+ * @type {Chain}
2101
+ * @memberof GetMintRequestResult
2102
+ */
2103
+ 'chain': Chain;
2104
+ /**
2105
+ * The address of the contract
2106
+ * @type {string}
2107
+ * @memberof GetMintRequestResult
2108
+ */
2109
+ 'collection_address': string;
2110
+ /**
2111
+ * The reference id of this mint request
2112
+ * @type {string}
2113
+ * @memberof GetMintRequestResult
2114
+ */
2115
+ 'reference_id': string;
2116
+ /**
2117
+ * The address of the owner of the NFT
2118
+ * @type {string}
2119
+ * @memberof GetMintRequestResult
2120
+ */
2121
+ 'owner_address': string;
2122
+ /**
2123
+ * An `uint256` token id as string. Only available when the mint request succeeds
2124
+ * @type {string}
2125
+ * @memberof GetMintRequestResult
2126
+ */
2127
+ 'token_id': string | null;
2128
+ /**
2129
+ * The id of the mint activity associated with this mint request
2130
+ * @type {string}
2131
+ * @memberof GetMintRequestResult
2132
+ */
2133
+ 'activity_id'?: string | null;
2134
+ /**
2135
+ * The transaction hash of the activity
2136
+ * @type {string}
2137
+ * @memberof GetMintRequestResult
2138
+ */
2139
+ 'transaction_hash': string | null;
2140
+ /**
2141
+ * When the mint request was created
2142
+ * @type {string}
2143
+ * @memberof GetMintRequestResult
2144
+ */
2145
+ 'created_at': string;
2146
+ /**
2147
+ * When the mint request was last updated
2148
+ * @type {string}
2149
+ * @memberof GetMintRequestResult
2150
+ */
2151
+ 'updated_at': string;
2152
+ /**
2153
+ *
2154
+ * @type {MintRequestErrorMessage}
2155
+ * @memberof GetMintRequestResult
2156
+ */
2157
+ 'error': MintRequestErrorMessage | null;
2158
+ /**
2159
+ *
2160
+ * @type {MintRequestStatus}
2161
+ * @memberof GetMintRequestResult
2162
+ */
2163
+ 'status': MintRequestStatus;
2164
+ }
2165
+
2166
+ /**
2167
+ * Immutable zkEVM API
2168
+ * Immutable Multi Rollup API
2169
+ *
2170
+ * The version of the OpenAPI document: 1.0.0
2171
+ * Contact: support@immutable.com
2172
+ *
2173
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2174
+ * https://openapi-generator.tech
2175
+ * Do not edit the class manually.
2176
+ */
2177
+
2178
+ /**
2179
+ *
2180
+ * @export
2181
+ * @interface NFT
2182
+ */
2183
+ interface NFT {
2184
+ /**
2185
+ *
2186
+ * @type {Chain}
2187
+ * @memberof NFT
2188
+ */
2189
+ 'chain': Chain;
2190
+ /**
2191
+ * An `uint256` token id as string
2192
+ * @type {string}
2193
+ * @memberof NFT
2194
+ */
2195
+ 'token_id': string;
2196
+ /**
2197
+ * The contract address of the NFT
2198
+ * @type {string}
2199
+ * @memberof NFT
2200
+ */
2201
+ 'contract_address': string;
2202
+ /**
2203
+ *
2204
+ * @type {NFTContractType}
2205
+ * @memberof NFT
2206
+ */
2207
+ 'contract_type': NFTContractType;
2208
+ /**
2209
+ * When the NFT was first indexed
2210
+ * @type {string}
2211
+ * @memberof NFT
2212
+ */
2213
+ 'indexed_at': string;
2214
+ /**
2215
+ * When the NFT owner was last updated
2216
+ * @type {string}
2217
+ * @memberof NFT
2218
+ */
2219
+ 'updated_at': string;
2220
+ /**
2221
+ * When NFT metadata was last synced
2222
+ * @type {string}
2223
+ * @memberof NFT
2224
+ */
2225
+ 'metadata_synced_at': string | null;
2226
+ /**
2227
+ * The id of the metadata of this NFT
2228
+ * @type {string}
2229
+ * @memberof NFT
2230
+ */
2231
+ 'metadata_id'?: string | null;
2232
+ /**
2233
+ * The name of the NFT
2234
+ * @type {string}
2235
+ * @memberof NFT
2236
+ */
2237
+ 'name': string | null;
2238
+ /**
2239
+ * The description of the NFT
2240
+ * @type {string}
2241
+ * @memberof NFT
2242
+ */
2243
+ 'description': string | null;
2244
+ /**
2245
+ * The image url of the NFT
2246
+ * @type {string}
2247
+ * @memberof NFT
2248
+ */
2249
+ 'image': string | null;
2250
+ /**
2251
+ * The external website link of NFT
2252
+ * @type {string}
2253
+ * @memberof NFT
2254
+ */
2255
+ 'external_link': string | null;
2256
+ /**
2257
+ * The animation url of the NFT
2258
+ * @type {string}
2259
+ * @memberof NFT
2260
+ */
2261
+ 'animation_url': string | null;
2262
+ /**
2263
+ * The youtube URL of NFT
2264
+ * @type {string}
2265
+ * @memberof NFT
2266
+ */
2267
+ 'youtube_url': string | null;
2268
+ /**
2269
+ * List of NFT Metadata attributes
2270
+ * @type {Array<NFTMetadataAttribute>}
2271
+ * @memberof NFT
2272
+ */
2273
+ 'attributes': Array<NFTMetadataAttribute>;
2274
+ /**
2275
+ * The total supply of NFT
2276
+ * @type {string}
2277
+ * @memberof NFT
2278
+ */
2279
+ 'total_supply'?: string | null;
2280
+ }
2281
+
2282
+ /**
2283
+ * Immutable zkEVM API
2284
+ * Immutable Multi Rollup API
2285
+ *
2286
+ * The version of the OpenAPI document: 1.0.0
2287
+ * Contact: support@immutable.com
2288
+ *
2289
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2290
+ * https://openapi-generator.tech
2291
+ * Do not edit the class manually.
2292
+ */
2293
+
2294
+ /**
2295
+ * Single NFT
2296
+ * @export
2297
+ * @interface GetNFTResult
2298
+ */
2299
+ interface GetNFTResult {
2300
+ /**
2301
+ *
2302
+ * @type {NFT}
2303
+ * @memberof GetNFTResult
2304
+ */
2305
+ 'result': NFT;
2306
+ }
2307
+
2308
+ /**
2309
+ * Immutable zkEVM API
2310
+ * Immutable Multi Rollup API
2311
+ *
2312
+ * The version of the OpenAPI document: 1.0.0
2313
+ * Contact: support@immutable.com
2314
+ *
2315
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2316
+ * https://openapi-generator.tech
2317
+ * Do not edit the class manually.
2318
+ */
2319
+
2320
+ /**
2321
+ *
2322
+ * @export
2323
+ * @interface Token
2324
+ */
2325
+ interface Token {
2326
+ /**
2327
+ *
2328
+ * @type {Chain}
2329
+ * @memberof Token
2330
+ */
2331
+ 'chain': Chain;
2332
+ /**
2333
+ * The address of token contract
2334
+ * @type {string}
2335
+ * @memberof Token
2336
+ */
2337
+ 'contract_address': string;
2338
+ /**
2339
+ * The address of root token contract
2340
+ * @type {string}
2341
+ * @memberof Token
2342
+ */
2343
+ 'root_contract_address': string | null;
2344
+ /**
2345
+ * The symbol of token
2346
+ * @type {string}
2347
+ * @memberof Token
2348
+ */
2349
+ 'symbol': string | null;
2350
+ /**
2351
+ * The decimals of token
2352
+ * @type {number}
2353
+ * @memberof Token
2354
+ */
2355
+ 'decimals': number | null;
2356
+ /**
2357
+ * The image url of token
2358
+ * @type {string}
2359
+ * @memberof Token
2360
+ */
2361
+ 'image_url': string | null;
2362
+ /**
2363
+ * The name of token
2364
+ * @type {string}
2365
+ * @memberof Token
2366
+ */
2367
+ 'name': string | null;
2368
+ /**
2369
+ *
2370
+ * @type {AssetVerificationStatus}
2371
+ * @memberof Token
2372
+ */
2373
+ 'verification_status': AssetVerificationStatus;
2374
+ /**
2375
+ * When the collection was last updated
2376
+ * @type {string}
2377
+ * @memberof Token
2378
+ */
2379
+ 'updated_at': string;
2380
+ }
2381
+
2382
+ /**
2383
+ * Immutable zkEVM API
2384
+ * Immutable Multi Rollup API
2385
+ *
2386
+ * The version of the OpenAPI document: 1.0.0
2387
+ * Contact: support@immutable.com
2388
+ *
2389
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2390
+ * https://openapi-generator.tech
2391
+ * Do not edit the class manually.
2392
+ */
2393
+
2394
+ /**
2395
+ * Single Token
2396
+ * @export
2397
+ * @interface GetTokenResult
2398
+ */
2399
+ interface GetTokenResult {
2400
+ /**
2401
+ *
2402
+ * @type {Token}
2403
+ * @memberof GetTokenResult
2404
+ */
2405
+ 'result': Token;
2406
+ }
2407
+
2408
+ /**
2409
+ * Immutable zkEVM API
2410
+ * Immutable Multi Rollup API
2411
+ *
2412
+ * The version of the OpenAPI document: 1.0.0
2413
+ * Contact: support@immutable.com
2414
+ *
2415
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2416
+ * https://openapi-generator.tech
2417
+ * Do not edit the class manually.
2418
+ */
2419
+ /**
2420
+ *
2421
+ * @export
2422
+ * @interface NativeItem
2423
+ */
2424
+ interface NativeItem {
2425
+ /**
2426
+ * Token type user is offering, which in this case is the native IMX token
2427
+ * @type {string}
2428
+ * @memberof NativeItem
2429
+ */
2430
+ 'type': NativeItemTypeEnum;
2431
+ /**
2432
+ * A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum).
2433
+ * @type {string}
2434
+ * @memberof NativeItem
2435
+ */
2436
+ 'amount': string;
2437
+ }
2438
+ /**
2439
+ * @export
2440
+ * @enum {string}
2441
+ */
2442
+ declare enum NativeItemTypeEnum {
2443
+ Native = "NATIVE",
2444
+ Erc20 = "ERC20",
2445
+ Erc721 = "ERC721",
2446
+ Erc1155 = "ERC1155"
2447
+ }
2448
+
2449
+ /**
2450
+ * Immutable zkEVM API
2451
+ * Immutable Multi Rollup API
2452
+ *
2453
+ * The version of the OpenAPI document: 1.0.0
2454
+ * Contact: support@immutable.com
2455
+ *
2456
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2457
+ * https://openapi-generator.tech
2458
+ * Do not edit the class manually.
2459
+ */
2460
+
2461
+ /**
2462
+ * @type Item
2463
+ * @export
2464
+ */
2465
+ type Item = {
2466
+ type: 'ERC1155';
2467
+ } & ERC1155Item | {
2468
+ type: 'ERC20';
2469
+ } & ERC20Item | {
2470
+ type: 'ERC721';
2471
+ } & ERC721Item | {
2472
+ type: 'NATIVE';
2473
+ } & NativeItem;
2474
+
2475
+ /**
2476
+ * Immutable zkEVM API
2477
+ * Immutable Multi Rollup API
2478
+ *
2479
+ * The version of the OpenAPI document: 1.0.0
2480
+ * Contact: support@immutable.com
2481
+ *
2482
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2483
+ * https://openapi-generator.tech
2484
+ * Do not edit the class manually.
2485
+ */
2486
+ /**
2487
+ * Pagination properties
2488
+ * @export
2489
+ * @interface Page
2490
+ */
2491
+ interface Page {
2492
+ /**
2493
+ * First item as an encoded string
2494
+ * @type {string}
2495
+ * @memberof Page
2496
+ */
2497
+ 'previous_cursor': string | null;
2498
+ /**
2499
+ * Last item as an encoded string
2500
+ * @type {string}
2501
+ * @memberof Page
2502
+ */
2503
+ 'next_cursor': string | null;
2504
+ }
2505
+
2506
+ /**
2507
+ * Immutable zkEVM API
2508
+ * Immutable Multi Rollup API
2509
+ *
2510
+ * The version of the OpenAPI document: 1.0.0
2511
+ * Contact: support@immutable.com
2512
+ *
2513
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2514
+ * https://openapi-generator.tech
2515
+ * Do not edit the class manually.
2516
+ */
2517
+
2518
+ /**
2519
+ * List activities response
2520
+ * @export
2521
+ * @interface ListActivitiesResult
2522
+ */
2523
+ interface ListActivitiesResult {
2524
+ /**
2525
+ * List of activities
2526
+ * @type {Array<Activity>}
2527
+ * @memberof ListActivitiesResult
2528
+ */
2529
+ 'result': Array<Activity>;
2530
+ /**
2531
+ *
2532
+ * @type {Page}
2533
+ * @memberof ListActivitiesResult
2534
+ */
2535
+ 'page': Page;
2536
+ }
2537
+
2538
+ /**
2539
+ * Immutable zkEVM API
2540
+ * Immutable Multi Rollup API
2541
+ *
2542
+ * The version of the OpenAPI document: 1.0.0
2543
+ * Contact: support@immutable.com
2544
+ *
2545
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2546
+ * https://openapi-generator.tech
2547
+ * Do not edit the class manually.
2548
+ */
2549
+
2550
+ /**
2551
+ *
2552
+ * @export
2553
+ * @interface ListChainsResult
2554
+ */
2555
+ interface ListChainsResult {
2556
+ /**
2557
+ * List of chains
2558
+ * @type {Array<ChainWithDetails>}
2559
+ * @memberof ListChainsResult
2560
+ */
2561
+ 'result': Array<ChainWithDetails>;
2562
+ /**
2563
+ *
2564
+ * @type {Page}
2565
+ * @memberof ListChainsResult
2566
+ */
2567
+ 'page': Page;
2568
+ }
2569
+
2570
+ /**
2571
+ * Immutable zkEVM API
2572
+ * Immutable Multi Rollup API
2573
+ *
2574
+ * The version of the OpenAPI document: 1.0.0
2575
+ * Contact: support@immutable.com
2576
+ *
2577
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2578
+ * https://openapi-generator.tech
2579
+ * Do not edit the class manually.
2580
+ */
2581
+
2582
+ /**
2583
+ *
2584
+ * @export
2585
+ * @interface NFTWithOwner
2586
+ */
2587
+ interface NFTWithOwner {
2588
+ /**
2589
+ *
2590
+ * @type {Chain}
2591
+ * @memberof NFTWithOwner
2592
+ */
2593
+ 'chain': Chain;
2594
+ /**
2595
+ * The address of NFT contract
2596
+ * @type {string}
2597
+ * @memberof NFTWithOwner
2598
+ */
2599
+ 'contract_address': string;
2600
+ /**
2601
+ * An `uint256` token id as string
2602
+ * @type {string}
2603
+ * @memberof NFTWithOwner
2604
+ */
2605
+ 'token_id': string;
2606
+ /**
2607
+ * The account address of the owner of the NFT
2608
+ * @type {string}
2609
+ * @memberof NFTWithOwner
2610
+ */
2611
+ 'account_address': string;
2612
+ /**
2613
+ * (deprecated - use balance instead) The quantity of owned tokens (uint256 as string)
2614
+ * @type {string}
2615
+ * @memberof NFTWithOwner
2616
+ * @deprecated
2617
+ */
2618
+ 'quantity': string;
2619
+ /**
2620
+ * The amount of owned tokens (uint256 as string)
2621
+ * @type {string}
2622
+ * @memberof NFTWithOwner
2623
+ */
2624
+ 'balance': string;
2625
+ /**
2626
+ * When the owner last changed for the given NFT
2627
+ * @type {string}
2628
+ * @memberof NFTWithOwner
2629
+ */
2630
+ 'updated_at': string;
2631
+ }
2632
+
2633
+ /**
2634
+ * Immutable zkEVM API
2635
+ * Immutable Multi Rollup API
2636
+ *
2637
+ * The version of the OpenAPI document: 1.0.0
2638
+ * Contact: support@immutable.com
2639
+ *
2640
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2641
+ * https://openapi-generator.tech
2642
+ * Do not edit the class manually.
2643
+ */
2644
+
2645
+ /**
2646
+ *
2647
+ * @export
2648
+ * @interface ListCollectionOwnersResult
2649
+ */
2650
+ interface ListCollectionOwnersResult {
2651
+ /**
2652
+ * List of NFT owners
2653
+ * @type {Array<NFTWithOwner>}
2654
+ * @memberof ListCollectionOwnersResult
2655
+ */
2656
+ 'result': Array<NFTWithOwner>;
2657
+ /**
2658
+ *
2659
+ * @type {Page}
2660
+ * @memberof ListCollectionOwnersResult
2661
+ */
2662
+ 'page': Page;
2663
+ }
2664
+
2665
+ /**
2666
+ * Immutable zkEVM API
2667
+ * Immutable Multi Rollup API
2668
+ *
2669
+ * The version of the OpenAPI document: 1.0.0
2670
+ * Contact: support@immutable.com
2671
+ *
2672
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2673
+ * https://openapi-generator.tech
2674
+ * Do not edit the class manually.
2675
+ */
2676
+
2677
+ /**
2678
+ *
2679
+ * @export
2680
+ * @interface ListCollectionsResult
2681
+ */
2682
+ interface ListCollectionsResult {
2683
+ /**
2684
+ * List of collections
2685
+ * @type {Array<Collection>}
2686
+ * @memberof ListCollectionsResult
2687
+ */
2688
+ 'result': Array<Collection>;
2689
+ /**
2690
+ *
2691
+ * @type {Page}
2692
+ * @memberof ListCollectionsResult
2693
+ */
2694
+ 'page': Page;
2695
+ }
2696
+
2697
+ /**
2698
+ * Immutable zkEVM API
2699
+ * Immutable Multi Rollup API
2700
+ *
2701
+ * The version of the OpenAPI document: 1.0.0
2702
+ * Contact: support@immutable.com
2703
+ *
2704
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2705
+ * https://openapi-generator.tech
2706
+ * Do not edit the class manually.
2707
+ */
2708
+
2709
+ /**
2710
+ *
2711
+ * @export
2712
+ * @interface ListMetadataResult
2713
+ */
2714
+ interface ListMetadataResult {
2715
+ /**
2716
+ * List of metadata
2717
+ * @type {Array<Metadata>}
2718
+ * @memberof ListMetadataResult
2719
+ */
2720
+ 'result': Array<Metadata>;
2721
+ /**
2722
+ *
2723
+ * @type {Page}
2724
+ * @memberof ListMetadataResult
2725
+ */
2726
+ 'page': Page;
2727
+ }
2728
+
2729
+ /**
2730
+ * Immutable zkEVM API
2731
+ * Immutable Multi Rollup API
2732
+ *
2733
+ * The version of the OpenAPI document: 1.0.0
2734
+ * Contact: support@immutable.com
2735
+ *
2736
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2737
+ * https://openapi-generator.tech
2738
+ * Do not edit the class manually.
2739
+ */
2740
+
2741
+ /**
2742
+ * List mint requests
2743
+ * @export
2744
+ * @interface ListMintRequestsResult
2745
+ */
2746
+ interface ListMintRequestsResult {
2747
+ /**
2748
+ * List of mint requests
2749
+ * @type {Array<GetMintRequestResult>}
2750
+ * @memberof ListMintRequestsResult
2751
+ */
2752
+ 'result': Array<GetMintRequestResult>;
2753
+ /**
2754
+ *
2755
+ * @type {Page}
2756
+ * @memberof ListMintRequestsResult
2757
+ */
2758
+ 'page': Page;
2759
+ }
2760
+
2761
+ /**
2762
+ * Immutable zkEVM API
2763
+ * Immutable Multi Rollup API
2764
+ *
2765
+ * The version of the OpenAPI document: 1.0.0
2766
+ * Contact: support@immutable.com
2767
+ *
2768
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2769
+ * https://openapi-generator.tech
2770
+ * Do not edit the class manually.
2771
+ */
2772
+
2773
+ /**
2774
+ *
2775
+ * @export
2776
+ * @interface NFTOwner
2777
+ */
2778
+ interface NFTOwner {
2779
+ /**
2780
+ *
2781
+ * @type {Chain}
2782
+ * @memberof NFTOwner
2783
+ */
2784
+ 'chain': Chain;
2785
+ /**
2786
+ * The address of NFT contract
2787
+ * @type {string}
2788
+ * @memberof NFTOwner
2789
+ */
2790
+ 'contract_address': string;
2791
+ /**
2792
+ * An `uint256` token id as string
2793
+ * @type {string}
2794
+ * @memberof NFTOwner
2795
+ */
2796
+ 'token_id': string;
2797
+ /**
2798
+ * The account address of the owner of the NFT
2799
+ * @type {string}
2800
+ * @memberof NFTOwner
2801
+ */
2802
+ 'account_address': string;
2803
+ /**
2804
+ * (deprecated - use balance instead) The quantity of owned tokens (uint256 as string)
2805
+ * @type {string}
2806
+ * @memberof NFTOwner
2807
+ * @deprecated
2808
+ */
2809
+ 'quantity': string;
2810
+ /**
2811
+ * The amount of owned tokens (uint256 as string)
2812
+ * @type {string}
2813
+ * @memberof NFTOwner
2814
+ */
2815
+ 'balance': string;
2816
+ /**
2817
+ * When the NFT owner was last updated
2818
+ * @type {string}
2819
+ * @memberof NFTOwner
2820
+ */
2821
+ 'updated_at'?: string;
2822
+ }
2823
+
2824
+ /**
2825
+ * Immutable zkEVM API
2826
+ * Immutable Multi Rollup API
2827
+ *
2828
+ * The version of the OpenAPI document: 1.0.0
2829
+ * Contact: support@immutable.com
2830
+ *
2831
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2832
+ * https://openapi-generator.tech
2833
+ * Do not edit the class manually.
2834
+ */
2835
+
2836
+ /**
2837
+ *
2838
+ * @export
2839
+ * @interface ListNFTOwnersResult
2840
+ */
2841
+ interface ListNFTOwnersResult {
2842
+ /**
2843
+ * List of nft owners
2844
+ * @type {Array<NFTOwner>}
2845
+ * @memberof ListNFTOwnersResult
2846
+ */
2847
+ 'result': Array<NFTOwner>;
2848
+ /**
2849
+ *
2850
+ * @type {Page}
2851
+ * @memberof ListNFTOwnersResult
2852
+ */
2853
+ 'page': Page;
2854
+ }
2855
+
2856
+ /**
2857
+ * Immutable zkEVM API
2858
+ * Immutable Multi Rollup API
2859
+ *
2860
+ * The version of the OpenAPI document: 1.0.0
2861
+ * Contact: support@immutable.com
2862
+ *
2863
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2864
+ * https://openapi-generator.tech
2865
+ * Do not edit the class manually.
2866
+ */
2867
+
2868
+ /**
2869
+ *
2870
+ * @export
2871
+ * @interface NFTWithBalance
2872
+ */
2873
+ interface NFTWithBalance {
2874
+ /**
2875
+ *
2876
+ * @type {Chain}
2877
+ * @memberof NFTWithBalance
2878
+ */
2879
+ 'chain': Chain;
2880
+ /**
2881
+ * An `uint256` token id as string
2882
+ * @type {string}
2883
+ * @memberof NFTWithBalance
2884
+ */
2885
+ 'token_id': string;
2886
+ /**
2887
+ * The contract address of the NFT
2888
+ * @type {string}
2889
+ * @memberof NFTWithBalance
2890
+ */
2891
+ 'contract_address': string;
2892
+ /**
2893
+ *
2894
+ * @type {NFTContractType}
2895
+ * @memberof NFTWithBalance
2896
+ */
2897
+ 'contract_type': NFTContractType;
2898
+ /**
2899
+ * When the NFT was first indexed
2900
+ * @type {string}
2901
+ * @memberof NFTWithBalance
2902
+ */
2903
+ 'indexed_at': string;
2904
+ /**
2905
+ * When the NFT owner was last updated
2906
+ * @type {string}
2907
+ * @memberof NFTWithBalance
2908
+ */
2909
+ 'updated_at': string;
2910
+ /**
2911
+ * When NFT metadata was last synced
2912
+ * @type {string}
2913
+ * @memberof NFTWithBalance
2914
+ */
2915
+ 'metadata_synced_at': string | null;
2916
+ /**
2917
+ * The id of the metadata of this NFT
2918
+ * @type {string}
2919
+ * @memberof NFTWithBalance
2920
+ */
2921
+ 'metadata_id'?: string | null;
2922
+ /**
2923
+ * The name of the NFT
2924
+ * @type {string}
2925
+ * @memberof NFTWithBalance
2926
+ */
2927
+ 'name': string | null;
2928
+ /**
2929
+ * The description of the NFT
2930
+ * @type {string}
2931
+ * @memberof NFTWithBalance
2932
+ */
2933
+ 'description': string | null;
2934
+ /**
2935
+ * The image url of the NFT
2936
+ * @type {string}
2937
+ * @memberof NFTWithBalance
2938
+ */
2939
+ 'image': string | null;
2940
+ /**
2941
+ * The external website link of NFT
2942
+ * @type {string}
2943
+ * @memberof NFTWithBalance
2944
+ */
2945
+ 'external_link': string | null;
2946
+ /**
2947
+ * The animation url of the NFT
2948
+ * @type {string}
2949
+ * @memberof NFTWithBalance
2950
+ */
2951
+ 'animation_url': string | null;
2952
+ /**
2953
+ * The youtube URL of NFT
2954
+ * @type {string}
2955
+ * @memberof NFTWithBalance
2956
+ */
2957
+ 'youtube_url': string | null;
2958
+ /**
2959
+ * List of Metadata attributes
2960
+ * @type {Array<NFTMetadataAttribute>}
2961
+ * @memberof NFTWithBalance
2962
+ */
2963
+ 'attributes': Array<NFTMetadataAttribute>;
2964
+ /**
2965
+ * The amount of this NFT this account owns
2966
+ * @type {string}
2967
+ * @memberof NFTWithBalance
2968
+ */
2969
+ 'balance': string;
2970
+ }
2971
+
2972
+ /**
2973
+ * Immutable zkEVM API
2974
+ * Immutable Multi Rollup API
2975
+ *
2976
+ * The version of the OpenAPI document: 1.0.0
2977
+ * Contact: support@immutable.com
2978
+ *
2979
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2980
+ * https://openapi-generator.tech
2981
+ * Do not edit the class manually.
2982
+ */
2983
+
2984
+ /**
2985
+ *
2986
+ * @export
2987
+ * @interface ListNFTsByOwnerResult
2988
+ */
2989
+ interface ListNFTsByOwnerResult {
2990
+ /**
2991
+ * List of NFTs by owner
2992
+ * @type {Array<NFTWithBalance>}
2993
+ * @memberof ListNFTsByOwnerResult
2994
+ */
2995
+ 'result': Array<NFTWithBalance>;
2996
+ /**
2997
+ *
2998
+ * @type {Page}
2999
+ * @memberof ListNFTsByOwnerResult
3000
+ */
3001
+ 'page': Page;
3002
+ }
3003
+
3004
+ /**
3005
+ * Immutable zkEVM API
3006
+ * Immutable Multi Rollup API
3007
+ *
3008
+ * The version of the OpenAPI document: 1.0.0
3009
+ * Contact: support@immutable.com
3010
+ *
3011
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3012
+ * https://openapi-generator.tech
3013
+ * Do not edit the class manually.
3014
+ */
3015
+
3016
+ /**
3017
+ *
3018
+ * @export
3019
+ * @interface ListNFTsResult
3020
+ */
3021
+ interface ListNFTsResult {
3022
+ /**
3023
+ * List of NFTs
3024
+ * @type {Array<NFT>}
3025
+ * @memberof ListNFTsResult
3026
+ */
3027
+ 'result': Array<NFT>;
3028
+ /**
3029
+ *
3030
+ * @type {Page}
3031
+ * @memberof ListNFTsResult
3032
+ */
3033
+ 'page': Page;
3034
+ }
3035
+
3036
+ /**
3037
+ * Immutable zkEVM API
3038
+ * Immutable Multi Rollup API
3039
+ *
3040
+ * The version of the OpenAPI document: 1.0.0
3041
+ * Contact: support@immutable.com
3042
+ *
3043
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3044
+ * https://openapi-generator.tech
3045
+ * Do not edit the class manually.
3046
+ */
3047
+
3048
+ /**
3049
+ *
3050
+ * @export
3051
+ * @interface ListTokensResult
3052
+ */
3053
+ interface ListTokensResult {
3054
+ /**
3055
+ * List of tokens
3056
+ * @type {Array<Token>}
3057
+ * @memberof ListTokensResult
3058
+ */
3059
+ 'result': Array<Token>;
3060
+ /**
3061
+ *
3062
+ * @type {Page}
3063
+ * @memberof ListTokensResult
3064
+ */
3065
+ 'page': Page;
3066
+ }
3067
+
3068
+ /**
3069
+ * Immutable zkEVM API
3070
+ * Immutable Multi Rollup API
3071
+ *
3072
+ * The version of the OpenAPI document: 1.0.0
3073
+ * Contact: support@immutable.com
3074
+ *
3075
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3076
+ * https://openapi-generator.tech
3077
+ * Do not edit the class manually.
3078
+ */
3079
+ /**
3080
+ *
3081
+ * @export
3082
+ * @interface MetadataRefreshRateLimitResult
3083
+ */
3084
+ interface MetadataRefreshRateLimitResult {
3085
+ /**
3086
+ *
3087
+ * @type {string}
3088
+ * @memberof MetadataRefreshRateLimitResult
3089
+ */
3090
+ 'imx_refreshes_limit': string;
3091
+ /**
3092
+ *
3093
+ * @type {string}
3094
+ * @memberof MetadataRefreshRateLimitResult
3095
+ */
3096
+ 'imx_refresh_limit_reset': string;
3097
+ /**
3098
+ *
3099
+ * @type {string}
3100
+ * @memberof MetadataRefreshRateLimitResult
3101
+ */
3102
+ 'imx_remaining_refreshes': string;
3103
+ /**
3104
+ *
3105
+ * @type {string}
3106
+ * @memberof MetadataRefreshRateLimitResult
3107
+ */
3108
+ 'retry_after': string;
3109
+ }
3110
+
3111
+ /**
3112
+ * Immutable zkEVM API
3113
+ * Immutable Multi Rollup API
3114
+ *
3115
+ * The version of the OpenAPI document: 1.0.0
3116
+ * Contact: support@immutable.com
3117
+ *
3118
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3119
+ * https://openapi-generator.tech
3120
+ * Do not edit the class manually.
3121
+ */
3122
+
3123
+ /**
3124
+ *
3125
+ * @export
3126
+ * @interface RefreshCollectionMetadataRequest
3127
+ */
3128
+ interface RefreshCollectionMetadataRequest {
3129
+ /**
3130
+ *
3131
+ * @type {CollectionMetadata}
3132
+ * @memberof RefreshCollectionMetadataRequest
3133
+ */
3134
+ 'collection_metadata': CollectionMetadata;
3135
+ }
3136
+
3137
+ /**
3138
+ * Immutable zkEVM API
3139
+ * Immutable Multi Rollup API
3140
+ *
3141
+ * The version of the OpenAPI document: 1.0.0
3142
+ * Contact: support@immutable.com
3143
+ *
3144
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3145
+ * https://openapi-generator.tech
3146
+ * Do not edit the class manually.
3147
+ */
3148
+
3149
+ /**
3150
+ *
3151
+ * @export
3152
+ * @interface RefreshCollectionMetadataResult
3153
+ */
3154
+ interface RefreshCollectionMetadataResult {
3155
+ /**
3156
+ *
3157
+ * @type {string}
3158
+ * @memberof RefreshCollectionMetadataResult
3159
+ */
3160
+ 'contract_address': string;
3161
+ /**
3162
+ *
3163
+ * @type {Chain}
3164
+ * @memberof RefreshCollectionMetadataResult
3165
+ */
3166
+ 'chain': Chain;
3167
+ /**
3168
+ *
3169
+ * @type {CollectionMetadata}
3170
+ * @memberof RefreshCollectionMetadataResult
3171
+ */
3172
+ 'collection_metadata': CollectionMetadata;
3173
+ }
3174
+
3175
+ /**
3176
+ * Immutable zkEVM API
3177
+ * Immutable Multi Rollup API
3178
+ *
3179
+ * The version of the OpenAPI document: 1.0.0
3180
+ * Contact: support@immutable.com
3181
+ *
3182
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3183
+ * https://openapi-generator.tech
3184
+ * Do not edit the class manually.
3185
+ */
3186
+ /**
3187
+ *
3188
+ * @export
3189
+ * @interface RefreshMetadataByIDAllOf
3190
+ */
3191
+ interface RefreshMetadataByIDAllOf {
3192
+ /**
3193
+ * Metadata id in UUIDv4 format
3194
+ * @type {string}
3195
+ * @memberof RefreshMetadataByIDAllOf
3196
+ */
3197
+ 'metadata_id': string;
3198
+ }
3199
+
3200
+ /**
3201
+ * Immutable zkEVM API
3202
+ * Immutable Multi Rollup API
3203
+ *
3204
+ * The version of the OpenAPI document: 1.0.0
3205
+ * Contact: support@immutable.com
3206
+ *
3207
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3208
+ * https://openapi-generator.tech
3209
+ * Do not edit the class manually.
3210
+ */
3211
+
3212
+ /**
3213
+ * @type RefreshableNFTAttributes
3214
+ * @export
3215
+ */
3216
+ type RefreshableNFTAttributes = NFTMetadataRequest;
3217
+
3218
+ /**
3219
+ * Immutable zkEVM API
3220
+ * Immutable Multi Rollup API
3221
+ *
3222
+ * The version of the OpenAPI document: 1.0.0
3223
+ * Contact: support@immutable.com
3224
+ *
3225
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3226
+ * https://openapi-generator.tech
3227
+ * Do not edit the class manually.
3228
+ */
3229
+
3230
+ /**
3231
+ * @type RefreshMetadataByID
3232
+ * @export
3233
+ */
3234
+ type RefreshMetadataByID = RefreshMetadataByIDAllOf & RefreshableNFTAttributes;
3235
+
3236
+ /**
3237
+ * Immutable zkEVM API
3238
+ * Immutable Multi Rollup API
3239
+ *
3240
+ * The version of the OpenAPI document: 1.0.0
3241
+ * Contact: support@immutable.com
3242
+ *
3243
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3244
+ * https://openapi-generator.tech
3245
+ * Do not edit the class manually.
3246
+ */
3247
+
3248
+ /**
3249
+ * Request body for refreshing metadata by id
3250
+ * @export
3251
+ * @interface RefreshMetadataByIDRequest
3252
+ */
3253
+ interface RefreshMetadataByIDRequest {
3254
+ /**
3255
+ *
3256
+ * @type {Array<RefreshMetadataByID>}
3257
+ * @memberof RefreshMetadataByIDRequest
3258
+ */
3259
+ 'metadata'?: Array<RefreshMetadataByID>;
3260
+ }
3261
+
3262
+ /**
3263
+ * Immutable zkEVM API
3264
+ * Immutable Multi Rollup API
3265
+ *
3266
+ * The version of the OpenAPI document: 1.0.0
3267
+ * Contact: support@immutable.com
3268
+ *
3269
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3270
+ * https://openapi-generator.tech
3271
+ * Do not edit the class manually.
3272
+ */
3273
+ /**
3274
+ *
3275
+ * @export
3276
+ * @interface RefreshMetadataByTokenIDAllOf
3277
+ */
3278
+ interface RefreshMetadataByTokenIDAllOf {
3279
+ /**
3280
+ * An `uint256` token id as string
3281
+ * @type {string}
3282
+ * @memberof RefreshMetadataByTokenIDAllOf
3283
+ */
3284
+ 'token_id': string;
3285
+ }
3286
+
3287
+ /**
3288
+ * Immutable zkEVM API
3289
+ * Immutable Multi Rollup API
3290
+ *
3291
+ * The version of the OpenAPI document: 1.0.0
3292
+ * Contact: support@immutable.com
3293
+ *
3294
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3295
+ * https://openapi-generator.tech
3296
+ * Do not edit the class manually.
3297
+ */
3298
+
3299
+ /**
3300
+ * @type RefreshMetadataByTokenID
3301
+ * @export
3302
+ */
3303
+ type RefreshMetadataByTokenID = RefreshMetadataByTokenIDAllOf & RefreshableNFTAttributes;
3304
+
3305
+ /**
3306
+ * Immutable zkEVM API
3307
+ * Immutable Multi Rollup API
3308
+ *
3309
+ * The version of the OpenAPI document: 1.0.0
3310
+ * Contact: support@immutable.com
3311
+ *
3312
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3313
+ * https://openapi-generator.tech
3314
+ * Do not edit the class manually.
3315
+ */
3316
+
3317
+ /**
3318
+ *
3319
+ * @export
3320
+ * @interface RefreshNFTMetadataByTokenIDRequest
3321
+ */
3322
+ interface RefreshNFTMetadataByTokenIDRequest {
3323
+ /**
3324
+ * List of nft metadata to be refreshed
3325
+ * @type {Array<RefreshMetadataByTokenID>}
3326
+ * @memberof RefreshNFTMetadataByTokenIDRequest
3327
+ */
3328
+ 'nft_metadata': Array<RefreshMetadataByTokenID>;
3329
+ }
3330
+
3331
+ /**
3332
+ * Immutable zkEVM API
3333
+ * Immutable Multi Rollup API
3334
+ *
3335
+ * The version of the OpenAPI document: 1.0.0
3336
+ * Contact: support@immutable.com
3337
+ *
3338
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3339
+ * https://openapi-generator.tech
3340
+ * Do not edit the class manually.
3341
+ */
3342
+
3343
+ /**
3344
+ * Request parameters for getActivity operation in ActivitiesApi.
3345
+ * @export
3346
+ * @interface GetActivityRequest
3347
+ */
3348
+ interface GetActivityRequestParams {
3349
+ /**
3350
+ * The name of chain
3351
+ * @type {string}
3352
+ * @memberof GetActivity
3353
+ */
3354
+ readonly chainName: string;
3355
+ /**
3356
+ * The id of activity
3357
+ * @type {string}
3358
+ * @memberof GetActivity
3359
+ */
3360
+ readonly activityId: string;
3361
+ }
3362
+ /**
3363
+ * Request parameters for listActivities operation in ActivitiesApi.
3364
+ * @export
3365
+ * @interface ListActivitiesRequest
3366
+ */
3367
+ interface ListActivitiesRequestParams {
3368
+ /**
3369
+ * The name of chain
3370
+ * @type {string}
3371
+ * @memberof ListActivities
3372
+ */
3373
+ readonly chainName: string;
3374
+ /**
3375
+ * The contract address of NFT or ERC20 Token
3376
+ * @type {string}
3377
+ * @memberof ListActivities
3378
+ */
3379
+ readonly contractAddress?: string;
3380
+ /**
3381
+ * An &#x60;uint256&#x60; token id as string
3382
+ * @type {string}
3383
+ * @memberof ListActivities
3384
+ */
3385
+ readonly tokenId?: string;
3386
+ /**
3387
+ * The account address activity contains
3388
+ * @type {string}
3389
+ * @memberof ListActivities
3390
+ */
3391
+ readonly accountAddress?: string;
3392
+ /**
3393
+ * The activity type
3394
+ * @type {ActivityType}
3395
+ * @memberof ListActivities
3396
+ */
3397
+ readonly activityType?: ActivityType$1;
3398
+ /**
3399
+ * The transaction hash of activity
3400
+ * @type {string}
3401
+ * @memberof ListActivities
3402
+ */
3403
+ readonly transactionHash?: string;
3404
+ /**
3405
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3406
+ * @type {string}
3407
+ * @memberof ListActivities
3408
+ */
3409
+ readonly pageCursor?: string;
3410
+ /**
3411
+ * Maximum number of items to return
3412
+ * @type {number}
3413
+ * @memberof ListActivities
3414
+ */
3415
+ readonly pageSize?: number;
3416
+ }
3417
+ /**
3418
+ * Request parameters for listActivityHistory operation in ActivitiesApi.
3419
+ * @export
3420
+ * @interface ListActivityHistoryRequest
3421
+ */
3422
+ interface ListActivityHistoryRequestParams {
3423
+ /**
3424
+ * The name of chain
3425
+ * @type {string}
3426
+ * @memberof ListActivityHistory
3427
+ */
3428
+ readonly chainName: string;
3429
+ /**
3430
+ * From indexed at including given date
3431
+ * @type {string}
3432
+ * @memberof ListActivityHistory
3433
+ */
3434
+ readonly fromUpdatedAt: string;
3435
+ /**
3436
+ * To indexed at including given date
3437
+ * @type {string}
3438
+ * @memberof ListActivityHistory
3439
+ */
3440
+ readonly toUpdatedAt?: string;
3441
+ /**
3442
+ * The contract address of the collection
3443
+ * @type {string}
3444
+ * @memberof ListActivityHistory
3445
+ */
3446
+ readonly contractAddress?: string;
3447
+ /**
3448
+ * The activity type
3449
+ * @type {ActivityType}
3450
+ * @memberof ListActivityHistory
3451
+ */
3452
+ readonly activityType?: ActivityType$1;
3453
+ /**
3454
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3455
+ * @type {string}
3456
+ * @memberof ListActivityHistory
3457
+ */
3458
+ readonly pageCursor?: string;
3459
+ /**
3460
+ * Maximum number of items to return
3461
+ * @type {number}
3462
+ * @memberof ListActivityHistory
3463
+ */
3464
+ readonly pageSize?: number;
3465
+ }
3466
+
3467
+ /**
3468
+ * Immutable zkEVM API
3469
+ * Immutable Multi Rollup API
3470
+ *
3471
+ * The version of the OpenAPI document: 1.0.0
3472
+ * Contact: support@immutable.com
3473
+ *
3474
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3475
+ * https://openapi-generator.tech
3476
+ * Do not edit the class manually.
3477
+ */
3478
+
3479
+ /**
3480
+ * Request parameters for listChains operation in ChainsApi.
3481
+ * @export
3482
+ * @interface ListChainsRequest
3483
+ */
3484
+ interface ListChainsRequestParams {
3485
+ /**
3486
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3487
+ * @type {string}
3488
+ * @memberof ListChains
3489
+ */
3490
+ readonly pageCursor?: string;
3491
+ /**
3492
+ * Maximum number of items to return
3493
+ * @type {number}
3494
+ * @memberof ListChains
3495
+ */
3496
+ readonly pageSize?: number;
3497
+ }
3498
+
3499
+ /**
3500
+ * Immutable zkEVM API
3501
+ * Immutable Multi Rollup API
3502
+ *
3503
+ * The version of the OpenAPI document: 1.0.0
3504
+ * Contact: support@immutable.com
3505
+ *
3506
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3507
+ * https://openapi-generator.tech
3508
+ * Do not edit the class manually.
3509
+ */
3510
+
3511
+ /**
3512
+ * Request parameters for getCollection operation in CollectionsApi.
3513
+ * @export
3514
+ * @interface GetCollectionRequest
3515
+ */
3516
+ interface GetCollectionRequestParams {
3517
+ /**
3518
+ * The address contract
3519
+ * @type {string}
3520
+ * @memberof GetCollection
3521
+ */
3522
+ readonly contractAddress: string;
3523
+ /**
3524
+ * The name of chain
3525
+ * @type {string}
3526
+ * @memberof GetCollection
3527
+ */
3528
+ readonly chainName: string;
3529
+ }
3530
+ /**
3531
+ * Request parameters for listCollections operation in CollectionsApi.
3532
+ * @export
3533
+ * @interface ListCollectionsRequest
3534
+ */
3535
+ interface ListCollectionsRequestParams {
3536
+ /**
3537
+ * The name of chain
3538
+ * @type {string}
3539
+ * @memberof ListCollections
3540
+ */
3541
+ readonly chainName: string;
3542
+ /**
3543
+ * List of contract addresses to filter by
3544
+ * @type {Array<string>}
3545
+ * @memberof ListCollections
3546
+ */
3547
+ readonly contractAddress?: Array<string>;
3548
+ /**
3549
+ * List of verification status to filter by
3550
+ * @type {Array<AssetVerificationStatus>}
3551
+ * @memberof ListCollections
3552
+ */
3553
+ readonly verificationStatus?: Array<AssetVerificationStatus>;
3554
+ /**
3555
+ * Datetime to use as the oldest updated timestamp
3556
+ * @type {string}
3557
+ * @memberof ListCollections
3558
+ */
3559
+ readonly fromUpdatedAt?: string;
3560
+ /**
3561
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3562
+ * @type {string}
3563
+ * @memberof ListCollections
3564
+ */
3565
+ readonly pageCursor?: string;
3566
+ /**
3567
+ * Maximum number of items to return
3568
+ * @type {number}
3569
+ * @memberof ListCollections
3570
+ */
3571
+ readonly pageSize?: number;
3572
+ }
3573
+ /**
3574
+ * Request parameters for listCollectionsByNFTOwner operation in CollectionsApi.
3575
+ * @export
3576
+ * @interface ListCollectionsByNFTOwnerRequest
3577
+ */
3578
+ interface ListCollectionsByNFTOwnerRequestParams {
3579
+ /**
3580
+ * Account address
3581
+ * @type {string}
3582
+ * @memberof ListCollectionsByNFTOwner
3583
+ */
3584
+ readonly accountAddress: string;
3585
+ /**
3586
+ * The name of chain
3587
+ * @type {string}
3588
+ * @memberof ListCollectionsByNFTOwner
3589
+ */
3590
+ readonly chainName: string;
3591
+ /**
3592
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3593
+ * @type {string}
3594
+ * @memberof ListCollectionsByNFTOwner
3595
+ */
3596
+ readonly pageCursor?: string;
3597
+ /**
3598
+ * Maximum number of items to return
3599
+ * @type {number}
3600
+ * @memberof ListCollectionsByNFTOwner
3601
+ */
3602
+ readonly pageSize?: number;
3603
+ }
3604
+ /**
3605
+ * Request parameters for refreshCollectionMetadata operation in CollectionsApi.
3606
+ * @export
3607
+ * @interface RefreshCollectionMetadataRequest
3608
+ */
3609
+ interface RefreshCollectionMetadataRequestParams {
3610
+ /**
3611
+ * The address contract
3612
+ * @type {string}
3613
+ * @memberof RefreshCollectionMetadata
3614
+ */
3615
+ readonly contractAddress: string;
3616
+ /**
3617
+ * The name of chain
3618
+ * @type {string}
3619
+ * @memberof RefreshCollectionMetadata
3620
+ */
3621
+ readonly chainName: string;
3622
+ /**
3623
+ * The request body
3624
+ * @type {RefreshCollectionMetadataRequest}
3625
+ * @memberof RefreshCollectionMetadata
3626
+ */
3627
+ readonly refreshCollectionMetadataRequest: RefreshCollectionMetadataRequest;
3628
+ }
3629
+
3630
+ /**
3631
+ * Immutable zkEVM API
3632
+ * Immutable Multi Rollup API
3633
+ *
3634
+ * The version of the OpenAPI document: 1.0.0
3635
+ * Contact: support@immutable.com
3636
+ *
3637
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3638
+ * https://openapi-generator.tech
3639
+ * Do not edit the class manually.
3640
+ */
3641
+
3642
+ /**
3643
+ * Request parameters for getMetadata operation in MetadataApi.
3644
+ * @export
3645
+ * @interface GetMetadataRequest
3646
+ */
3647
+ interface GetMetadataRequestParams {
3648
+ /**
3649
+ * The name of chain
3650
+ * @type {string}
3651
+ * @memberof GetMetadata
3652
+ */
3653
+ readonly chainName: string;
3654
+ /**
3655
+ * The address of metadata contract
3656
+ * @type {string}
3657
+ * @memberof GetMetadata
3658
+ */
3659
+ readonly contractAddress: string;
3660
+ /**
3661
+ * The id of the metadata
3662
+ * @type {string}
3663
+ * @memberof GetMetadata
3664
+ */
3665
+ readonly metadataId: string;
3666
+ }
3667
+ /**
3668
+ * Request parameters for listMetadata operation in MetadataApi.
3669
+ * @export
3670
+ * @interface ListMetadataRequest
3671
+ */
3672
+ interface ListMetadataRequestParams {
3673
+ /**
3674
+ * The name of chain
3675
+ * @type {string}
3676
+ * @memberof ListMetadata
3677
+ */
3678
+ readonly chainName: string;
3679
+ /**
3680
+ * The address of metadata contract
3681
+ * @type {string}
3682
+ * @memberof ListMetadata
3683
+ */
3684
+ readonly contractAddress: string;
3685
+ /**
3686
+ * Datetime to use as the oldest updated timestamp
3687
+ * @type {string}
3688
+ * @memberof ListMetadata
3689
+ */
3690
+ readonly fromUpdatedAt?: string;
3691
+ /**
3692
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3693
+ * @type {string}
3694
+ * @memberof ListMetadata
3695
+ */
3696
+ readonly pageCursor?: string;
3697
+ /**
3698
+ * Maximum number of items to return
3699
+ * @type {number}
3700
+ * @memberof ListMetadata
3701
+ */
3702
+ readonly pageSize?: number;
3703
+ }
3704
+ /**
3705
+ * Request parameters for listMetadataForChain operation in MetadataApi.
3706
+ * @export
3707
+ * @interface ListMetadataForChainRequest
3708
+ */
3709
+ interface ListMetadataForChainRequestParams {
3710
+ /**
3711
+ * The name of chain
3712
+ * @type {string}
3713
+ * @memberof ListMetadataForChain
3714
+ */
3715
+ readonly chainName: string;
3716
+ /**
3717
+ * Datetime to use as the oldest updated timestamp
3718
+ * @type {string}
3719
+ * @memberof ListMetadataForChain
3720
+ */
3721
+ readonly fromUpdatedAt?: string;
3722
+ /**
3723
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3724
+ * @type {string}
3725
+ * @memberof ListMetadataForChain
3726
+ */
3727
+ readonly pageCursor?: string;
3728
+ /**
3729
+ * Maximum number of items to return
3730
+ * @type {number}
3731
+ * @memberof ListMetadataForChain
3732
+ */
3733
+ readonly pageSize?: number;
3734
+ }
3735
+ /**
3736
+ * Request parameters for refreshMetadataByID operation in MetadataApi.
3737
+ * @export
3738
+ * @interface RefreshMetadataByIDRequest
3739
+ */
3740
+ interface RefreshMetadataByIDRequestParams {
3741
+ /**
3742
+ * The name of chain
3743
+ * @type {string}
3744
+ * @memberof RefreshMetadataByID
3745
+ */
3746
+ readonly chainName: string;
3747
+ /**
3748
+ * Contract address
3749
+ * @type {string}
3750
+ * @memberof RefreshMetadataByID
3751
+ */
3752
+ readonly contractAddress: string;
3753
+ /**
3754
+ * NFT Metadata Refresh Request
3755
+ * @type {RefreshMetadataByIDRequest}
3756
+ * @memberof RefreshMetadataByID
3757
+ */
3758
+ readonly refreshMetadataByIDRequest: RefreshMetadataByIDRequest;
3759
+ }
3760
+ /**
3761
+ * Request parameters for refreshNFTMetadataByTokenID operation in MetadataApi.
3762
+ * @export
3763
+ * @interface RefreshNFTMetadataByTokenIDRequest
3764
+ */
3765
+ interface RefreshNFTMetadataByTokenIDRequestParams {
3766
+ /**
3767
+ * The address of contract
3768
+ * @type {string}
3769
+ * @memberof RefreshNFTMetadataByTokenID
3770
+ */
3771
+ readonly contractAddress: string;
3772
+ /**
3773
+ * The name of chain
3774
+ * @type {string}
3775
+ * @memberof RefreshNFTMetadataByTokenID
3776
+ */
3777
+ readonly chainName: string;
3778
+ /**
3779
+ * the request body
3780
+ * @type {RefreshNFTMetadataByTokenIDRequest}
3781
+ * @memberof RefreshNFTMetadataByTokenID
3782
+ */
3783
+ readonly refreshNFTMetadataByTokenIDRequest: RefreshNFTMetadataByTokenIDRequest;
3784
+ }
3785
+
3786
+ /**
3787
+ * Immutable zkEVM API
3788
+ * Immutable Multi Rollup API
3789
+ *
3790
+ * The version of the OpenAPI document: 1.0.0
3791
+ * Contact: support@immutable.com
3792
+ *
3793
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3794
+ * https://openapi-generator.tech
3795
+ * Do not edit the class manually.
3796
+ */
3797
+
3798
+ /**
3799
+ * Request parameters for listAllNFTOwners operation in NftOwnersApi.
3800
+ * @export
3801
+ * @interface ListAllNFTOwnersRequest
3802
+ */
3803
+ interface ListAllNFTOwnersRequestParams {
3804
+ /**
3805
+ * The name of chain
3806
+ * @type {string}
3807
+ * @memberof ListAllNFTOwners
3808
+ */
3809
+ readonly chainName: string;
3810
+ /**
3811
+ * Datetime to use as the oldest updated timestamp
3812
+ * @type {string}
3813
+ * @memberof ListAllNFTOwners
3814
+ */
3815
+ readonly fromUpdatedAt?: string;
3816
+ /**
3817
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3818
+ * @type {string}
3819
+ * @memberof ListAllNFTOwners
3820
+ */
3821
+ readonly pageCursor?: string;
3822
+ /**
3823
+ * Maximum number of items to return
3824
+ * @type {number}
3825
+ * @memberof ListAllNFTOwners
3826
+ */
3827
+ readonly pageSize?: number;
3828
+ }
3829
+ /**
3830
+ * Request parameters for listNFTOwners operation in NftOwnersApi.
3831
+ * @export
3832
+ * @interface ListNFTOwnersRequest
3833
+ */
3834
+ interface ListNFTOwnersRequestParams {
3835
+ /**
3836
+ * The address of contract
3837
+ * @type {string}
3838
+ * @memberof ListNFTOwners
3839
+ */
3840
+ readonly contractAddress: string;
3841
+ /**
3842
+ * An &#x60;uint256&#x60; token id as string
3843
+ * @type {string}
3844
+ * @memberof ListNFTOwners
3845
+ */
3846
+ readonly tokenId: string;
3847
+ /**
3848
+ * The name of chain
3849
+ * @type {string}
3850
+ * @memberof ListNFTOwners
3851
+ */
3852
+ readonly chainName: string;
3853
+ /**
3854
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3855
+ * @type {string}
3856
+ * @memberof ListNFTOwners
3857
+ */
3858
+ readonly pageCursor?: string;
3859
+ /**
3860
+ * Maximum number of items to return
3861
+ * @type {number}
3862
+ * @memberof ListNFTOwners
3863
+ */
3864
+ readonly pageSize?: number;
3865
+ }
3866
+ /**
3867
+ * Request parameters for listOwnersByContractAddress operation in NftOwnersApi.
3868
+ * @export
3869
+ * @interface ListOwnersByContractAddressRequest
3870
+ */
3871
+ interface ListOwnersByContractAddressRequestParams {
3872
+ /**
3873
+ * The address of contract
3874
+ * @type {string}
3875
+ * @memberof ListOwnersByContractAddress
3876
+ */
3877
+ readonly contractAddress: string;
3878
+ /**
3879
+ * The name of chain
3880
+ * @type {string}
3881
+ * @memberof ListOwnersByContractAddress
3882
+ */
3883
+ readonly chainName: string;
3884
+ /**
3885
+ * Datetime to use as the oldest updated timestamp
3886
+ * @type {string}
3887
+ * @memberof ListOwnersByContractAddress
3888
+ */
3889
+ readonly fromUpdatedAt?: string;
3890
+ /**
3891
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
3892
+ * @type {string}
3893
+ * @memberof ListOwnersByContractAddress
3894
+ */
3895
+ readonly pageCursor?: string;
3896
+ /**
3897
+ * Maximum number of items to return
3898
+ * @type {number}
3899
+ * @memberof ListOwnersByContractAddress
3900
+ */
3901
+ readonly pageSize?: number;
3902
+ }
3903
+
3904
+ /**
3905
+ * Immutable zkEVM API
3906
+ * Immutable Multi Rollup API
3907
+ *
3908
+ * The version of the OpenAPI document: 1.0.0
3909
+ * Contact: support@immutable.com
3910
+ *
3911
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3912
+ * https://openapi-generator.tech
3913
+ * Do not edit the class manually.
3914
+ */
3915
+
3916
+ /**
3917
+ * Request parameters for createMintRequest operation in NftsApi.
3918
+ * @export
3919
+ * @interface CreateMintRequestRequest
3920
+ */
3921
+ interface CreateMintRequestRequestParams {
3922
+ /**
3923
+ * The address of contract
3924
+ * @type {string}
3925
+ * @memberof CreateMintRequest
3926
+ */
3927
+ readonly contractAddress: string;
3928
+ /**
3929
+ * The name of chain
3930
+ * @type {string}
3931
+ * @memberof CreateMintRequest
3932
+ */
3933
+ readonly chainName: string;
3934
+ /**
3935
+ * Create Mint Request Body
3936
+ * @type {CreateMintRequestRequest}
3937
+ * @memberof CreateMintRequest
3938
+ */
3939
+ readonly createMintRequestRequest: CreateMintRequestRequest;
3940
+ }
3941
+ /**
3942
+ * Request parameters for getMintRequest operation in NftsApi.
3943
+ * @export
3944
+ * @interface GetMintRequestRequest
3945
+ */
3946
+ interface GetMintRequestRequestParams {
3947
+ /**
3948
+ * The address of contract
3949
+ * @type {string}
3950
+ * @memberof GetMintRequest
3951
+ */
3952
+ readonly contractAddress: string;
3953
+ /**
3954
+ * The name of chain
3955
+ * @type {string}
3956
+ * @memberof GetMintRequest
3957
+ */
3958
+ readonly chainName: string;
3959
+ /**
3960
+ * The id of the mint request
3961
+ * @type {string}
3962
+ * @memberof GetMintRequest
3963
+ */
3964
+ readonly referenceId: string;
3965
+ }
3966
+ /**
3967
+ * Request parameters for getNFT operation in NftsApi.
3968
+ * @export
3969
+ * @interface GetNFTRequest
3970
+ */
3971
+ interface GetNFTRequestParams {
3972
+ /**
3973
+ * The address of NFT contract
3974
+ * @type {string}
3975
+ * @memberof GetNFT
3976
+ */
3977
+ readonly contractAddress: string;
3978
+ /**
3979
+ * An &#x60;uint256&#x60; token id as string
3980
+ * @type {string}
3981
+ * @memberof GetNFT
3982
+ */
3983
+ readonly tokenId: string;
3984
+ /**
3985
+ * The name of chain
3986
+ * @type {string}
3987
+ * @memberof GetNFT
3988
+ */
3989
+ readonly chainName: string;
3990
+ }
3991
+ /**
3992
+ * Request parameters for listAllNFTs operation in NftsApi.
3993
+ * @export
3994
+ * @interface ListAllNFTsRequest
3995
+ */
3996
+ interface ListAllNFTsRequestParams {
3997
+ /**
3998
+ * The name of chain
3999
+ * @type {string}
4000
+ * @memberof ListAllNFTs
4001
+ */
4002
+ readonly chainName: string;
4003
+ /**
4004
+ * Datetime to use as the oldest updated timestamp
4005
+ * @type {string}
4006
+ * @memberof ListAllNFTs
4007
+ */
4008
+ readonly fromUpdatedAt?: string;
4009
+ /**
4010
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
4011
+ * @type {string}
4012
+ * @memberof ListAllNFTs
4013
+ */
4014
+ readonly pageCursor?: string;
4015
+ /**
4016
+ * Maximum number of items to return
4017
+ * @type {number}
4018
+ * @memberof ListAllNFTs
4019
+ */
4020
+ readonly pageSize?: number;
4021
+ }
4022
+ /**
4023
+ * Request parameters for listMintRequests operation in NftsApi.
4024
+ * @export
4025
+ * @interface ListMintRequestsRequest
4026
+ */
4027
+ interface ListMintRequestsRequestParams {
4028
+ /**
4029
+ * The address of contract
4030
+ * @type {string}
4031
+ * @memberof ListMintRequests
4032
+ */
4033
+ readonly contractAddress: string;
4034
+ /**
4035
+ * The name of chain
4036
+ * @type {string}
4037
+ * @memberof ListMintRequests
4038
+ */
4039
+ readonly chainName: string;
4040
+ /**
4041
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
4042
+ * @type {string}
4043
+ * @memberof ListMintRequests
4044
+ */
4045
+ readonly pageCursor?: string;
4046
+ /**
4047
+ * Maximum number of items to return
4048
+ * @type {number}
4049
+ * @memberof ListMintRequests
4050
+ */
4051
+ readonly pageSize?: number;
4052
+ /**
4053
+ * The status of the mint request
4054
+ * @type {MintRequestStatus}
4055
+ * @memberof ListMintRequests
4056
+ */
4057
+ readonly status?: MintRequestStatus;
4058
+ }
4059
+ /**
4060
+ * Request parameters for listNFTs operation in NftsApi.
4061
+ * @export
4062
+ * @interface ListNFTsRequest
4063
+ */
4064
+ interface ListNFTsRequestParams {
4065
+ /**
4066
+ * Contract address
4067
+ * @type {string}
4068
+ * @memberof ListNFTs
4069
+ */
4070
+ readonly contractAddress: string;
4071
+ /**
4072
+ * The name of chain
4073
+ * @type {string}
4074
+ * @memberof ListNFTs
4075
+ */
4076
+ readonly chainName: string;
4077
+ /**
4078
+ * List of token IDs to filter by
4079
+ * @type {Array<string>}
4080
+ * @memberof ListNFTs
4081
+ */
4082
+ readonly tokenId?: Array<string>;
4083
+ /**
4084
+ * Datetime to use as the oldest updated timestamp
4085
+ * @type {string}
4086
+ * @memberof ListNFTs
4087
+ */
4088
+ readonly fromUpdatedAt?: string;
4089
+ /**
4090
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
4091
+ * @type {string}
4092
+ * @memberof ListNFTs
4093
+ */
4094
+ readonly pageCursor?: string;
4095
+ /**
4096
+ * Maximum number of items to return
4097
+ * @type {number}
4098
+ * @memberof ListNFTs
4099
+ */
4100
+ readonly pageSize?: number;
4101
+ }
4102
+ /**
4103
+ * Request parameters for listNFTsByAccountAddress operation in NftsApi.
4104
+ * @export
4105
+ * @interface ListNFTsByAccountAddressRequest
4106
+ */
4107
+ interface ListNFTsByAccountAddressRequestParams {
4108
+ /**
4109
+ * Account address
4110
+ * @type {string}
4111
+ * @memberof ListNFTsByAccountAddress
4112
+ */
4113
+ readonly accountAddress: string;
4114
+ /**
4115
+ * The name of chain
4116
+ * @type {string}
4117
+ * @memberof ListNFTsByAccountAddress
4118
+ */
4119
+ readonly chainName: string;
4120
+ /**
4121
+ * The address of contract
4122
+ * @type {string}
4123
+ * @memberof ListNFTsByAccountAddress
4124
+ */
4125
+ readonly contractAddress?: string;
4126
+ /**
4127
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
4128
+ * @type {string}
4129
+ * @memberof ListNFTsByAccountAddress
4130
+ */
4131
+ readonly pageCursor?: string;
4132
+ /**
4133
+ * Maximum number of items to return
4134
+ * @type {number}
4135
+ * @memberof ListNFTsByAccountAddress
4136
+ */
4137
+ readonly pageSize?: number;
4138
+ }
4139
+
4140
+ /**
4141
+ * Immutable zkEVM API
4142
+ * Immutable Multi Rollup API
4143
+ *
4144
+ * The version of the OpenAPI document: 1.0.0
4145
+ * Contact: support@immutable.com
4146
+ *
4147
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4148
+ * https://openapi-generator.tech
4149
+ * Do not edit the class manually.
4150
+ */
4151
+
4152
+ /**
4153
+ * Request parameters for getERC20Token operation in TokensApi.
4154
+ * @export
4155
+ * @interface GetERC20TokenRequest
4156
+ */
4157
+ interface GetERC20TokenRequestParams {
4158
+ /**
4159
+ * The address of contract
4160
+ * @type {string}
4161
+ * @memberof GetERC20Token
4162
+ */
4163
+ readonly contractAddress: string;
4164
+ /**
4165
+ * The name of chain
4166
+ * @type {string}
4167
+ * @memberof GetERC20Token
4168
+ */
4169
+ readonly chainName: string;
4170
+ }
4171
+ /**
4172
+ * Request parameters for listERC20Tokens operation in TokensApi.
4173
+ * @export
4174
+ * @interface ListERC20TokensRequest
4175
+ */
4176
+ interface ListERC20TokensRequestParams {
4177
+ /**
4178
+ * The name of chain
4179
+ * @type {string}
4180
+ * @memberof ListERC20Tokens
4181
+ */
4182
+ readonly chainName: string;
4183
+ /**
4184
+ * Datetime to use as the oldest updated timestamp
4185
+ * @type {string}
4186
+ * @memberof ListERC20Tokens
4187
+ */
4188
+ readonly fromUpdatedAt?: string;
4189
+ /**
4190
+ * List of verification status to filter by
4191
+ * @type {Array<AssetVerificationStatus>}
4192
+ * @memberof ListERC20Tokens
4193
+ */
4194
+ readonly verificationStatus?: Array<AssetVerificationStatus>;
4195
+ /**
4196
+ * Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
4197
+ * @type {string}
4198
+ * @memberof ListERC20Tokens
4199
+ */
4200
+ readonly pageCursor?: string;
4201
+ /**
4202
+ * Maximum number of items to return
4203
+ * @type {number}
4204
+ * @memberof ListERC20Tokens
4205
+ */
4206
+ readonly pageSize?: number;
4207
+ }
4208
+
4209
+ /**
4210
+ * Immutable zkEVM API
4211
+ * Immutable Multi Rollup API
4212
+ *
4213
+ * The version of the OpenAPI document: 1.0.0
4214
+ * Contact: support@immutable.com
4215
+ *
4216
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4217
+ * https://openapi-generator.tech
4218
+ * Do not edit the class manually.
4219
+ */
4220
+
4221
+ type index_d_APIError400 = APIError400;
4222
+ type index_d_APIError400AllOf = APIError400AllOf;
4223
+ type index_d_APIError400AllOfCodeEnum = APIError400AllOfCodeEnum;
4224
+ declare const index_d_APIError400AllOfCodeEnum: typeof APIError400AllOfCodeEnum;
4225
+ type index_d_APIError401 = APIError401;
4226
+ type index_d_APIError401AllOf = APIError401AllOf;
4227
+ type index_d_APIError401AllOfCodeEnum = APIError401AllOfCodeEnum;
4228
+ declare const index_d_APIError401AllOfCodeEnum: typeof APIError401AllOfCodeEnum;
4229
+ type index_d_APIError403 = APIError403;
4230
+ type index_d_APIError403AllOf = APIError403AllOf;
4231
+ type index_d_APIError403AllOfCodeEnum = APIError403AllOfCodeEnum;
4232
+ declare const index_d_APIError403AllOfCodeEnum: typeof APIError403AllOfCodeEnum;
4233
+ type index_d_APIError404 = APIError404;
4234
+ type index_d_APIError404AllOf = APIError404AllOf;
4235
+ type index_d_APIError404AllOfCodeEnum = APIError404AllOfCodeEnum;
4236
+ declare const index_d_APIError404AllOfCodeEnum: typeof APIError404AllOfCodeEnum;
4237
+ type index_d_APIError409 = APIError409;
4238
+ type index_d_APIError409AllOf = APIError409AllOf;
4239
+ type index_d_APIError409AllOfCodeEnum = APIError409AllOfCodeEnum;
4240
+ declare const index_d_APIError409AllOfCodeEnum: typeof APIError409AllOfCodeEnum;
4241
+ type index_d_APIError429 = APIError429;
4242
+ type index_d_APIError429AllOf = APIError429AllOf;
4243
+ type index_d_APIError429AllOfCodeEnum = APIError429AllOfCodeEnum;
4244
+ declare const index_d_APIError429AllOfCodeEnum: typeof APIError429AllOfCodeEnum;
4245
+ type index_d_APIError500 = APIError500;
4246
+ type index_d_APIError500AllOf = APIError500AllOf;
4247
+ type index_d_APIError500AllOfCodeEnum = APIError500AllOfCodeEnum;
4248
+ declare const index_d_APIError500AllOfCodeEnum: typeof APIError500AllOfCodeEnum;
4249
+ type index_d_APIError501 = APIError501;
4250
+ type index_d_APIError501AllOf = APIError501AllOf;
4251
+ type index_d_APIError501AllOfCodeEnum = APIError501AllOfCodeEnum;
4252
+ declare const index_d_APIError501AllOfCodeEnum: typeof APIError501AllOfCodeEnum;
4253
+ type index_d_ActiveOrderStatus = ActiveOrderStatus;
4254
+ type index_d_ActiveOrderStatusNameEnum = ActiveOrderStatusNameEnum;
4255
+ declare const index_d_ActiveOrderStatusNameEnum: typeof ActiveOrderStatusNameEnum;
4256
+ type index_d_Activity = Activity;
4257
+ type index_d_ActivityAsset = ActivityAsset;
4258
+ type index_d_ActivityDetails = ActivityDetails;
4259
+ type index_d_ActivityNFT = ActivityNFT;
4260
+ type index_d_ActivityNativeToken = ActivityNativeToken;
4261
+ type index_d_ActivityToken = ActivityToken;
4262
+ type index_d_AssetVerificationStatus = AssetVerificationStatus;
4263
+ declare const index_d_AssetVerificationStatus: typeof AssetVerificationStatus;
4264
+ type index_d_BasicAPIError = BasicAPIError;
4265
+ type index_d_BlockchainMetadata = BlockchainMetadata;
4266
+ type index_d_Burn = Burn;
4267
+ type index_d_Chain = Chain;
4268
+ type index_d_ChainWithDetails = ChainWithDetails;
4269
+ type index_d_ChainWithDetailsAllOf = ChainWithDetailsAllOf;
4270
+ type index_d_Collection = Collection;
4271
+ type index_d_CollectionContractType = CollectionContractType;
4272
+ declare const index_d_CollectionContractType: typeof CollectionContractType;
4273
+ type index_d_CollectionMetadata = CollectionMetadata;
4274
+ type index_d_CreateMintRequestRequest = CreateMintRequestRequest;
4275
+ type index_d_CreateMintRequestRequestParams = CreateMintRequestRequestParams;
4276
+ type index_d_CreateMintRequestResult = CreateMintRequestResult;
4277
+ type index_d_Deposit = Deposit;
4278
+ type index_d_ERC1155Item = ERC1155Item;
4279
+ type index_d_ERC1155ItemTypeEnum = ERC1155ItemTypeEnum;
4280
+ declare const index_d_ERC1155ItemTypeEnum: typeof ERC1155ItemTypeEnum;
4281
+ type index_d_ERC20Item = ERC20Item;
4282
+ type index_d_ERC20ItemTypeEnum = ERC20ItemTypeEnum;
4283
+ declare const index_d_ERC20ItemTypeEnum: typeof ERC20ItemTypeEnum;
4284
+ type index_d_ERC721Item = ERC721Item;
4285
+ type index_d_ERC721ItemTypeEnum = ERC721ItemTypeEnum;
4286
+ declare const index_d_ERC721ItemTypeEnum: typeof ERC721ItemTypeEnum;
4287
+ type index_d_GetActivityRequestParams = GetActivityRequestParams;
4288
+ type index_d_GetActivityResult = GetActivityResult;
4289
+ type index_d_GetCollectionRequestParams = GetCollectionRequestParams;
4290
+ type index_d_GetCollectionResult = GetCollectionResult;
4291
+ type index_d_GetERC20TokenRequestParams = GetERC20TokenRequestParams;
4292
+ type index_d_GetMetadataRequestParams = GetMetadataRequestParams;
4293
+ type index_d_GetMetadataResult = GetMetadataResult;
4294
+ type index_d_GetMintRequestRequestParams = GetMintRequestRequestParams;
4295
+ type index_d_GetMintRequestResult = GetMintRequestResult;
4296
+ type index_d_GetNFTRequestParams = GetNFTRequestParams;
4297
+ type index_d_GetNFTResult = GetNFTResult;
4298
+ type index_d_GetTokenResult = GetTokenResult;
4299
+ type index_d_Item = Item;
4300
+ type index_d_ListActivitiesRequestParams = ListActivitiesRequestParams;
4301
+ type index_d_ListActivitiesResult = ListActivitiesResult;
4302
+ type index_d_ListActivityHistoryRequestParams = ListActivityHistoryRequestParams;
4303
+ type index_d_ListAllNFTOwnersRequestParams = ListAllNFTOwnersRequestParams;
4304
+ type index_d_ListAllNFTsRequestParams = ListAllNFTsRequestParams;
4305
+ type index_d_ListChainsRequestParams = ListChainsRequestParams;
4306
+ type index_d_ListChainsResult = ListChainsResult;
4307
+ type index_d_ListCollectionOwnersResult = ListCollectionOwnersResult;
4308
+ type index_d_ListCollectionsByNFTOwnerRequestParams = ListCollectionsByNFTOwnerRequestParams;
4309
+ type index_d_ListCollectionsRequestParams = ListCollectionsRequestParams;
4310
+ type index_d_ListCollectionsResult = ListCollectionsResult;
4311
+ type index_d_ListERC20TokensRequestParams = ListERC20TokensRequestParams;
4312
+ type index_d_ListMetadataForChainRequestParams = ListMetadataForChainRequestParams;
4313
+ type index_d_ListMetadataRequestParams = ListMetadataRequestParams;
4314
+ type index_d_ListMetadataResult = ListMetadataResult;
4315
+ type index_d_ListMintRequestsRequestParams = ListMintRequestsRequestParams;
4316
+ type index_d_ListMintRequestsResult = ListMintRequestsResult;
4317
+ type index_d_ListNFTOwnersRequestParams = ListNFTOwnersRequestParams;
4318
+ type index_d_ListNFTOwnersResult = ListNFTOwnersResult;
4319
+ type index_d_ListNFTsByAccountAddressRequestParams = ListNFTsByAccountAddressRequestParams;
4320
+ type index_d_ListNFTsByOwnerResult = ListNFTsByOwnerResult;
4321
+ type index_d_ListNFTsRequestParams = ListNFTsRequestParams;
4322
+ type index_d_ListNFTsResult = ListNFTsResult;
4323
+ type index_d_ListOwnersByContractAddressRequestParams = ListOwnersByContractAddressRequestParams;
4324
+ type index_d_ListTokensResult = ListTokensResult;
4325
+ type index_d_Metadata = Metadata;
4326
+ type index_d_MetadataRefreshRateLimitResult = MetadataRefreshRateLimitResult;
4327
+ type index_d_Mint = Mint;
4328
+ type index_d_MintAsset = MintAsset;
4329
+ type index_d_MintRequestErrorMessage = MintRequestErrorMessage;
4330
+ type index_d_MintRequestStatus = MintRequestStatus;
4331
+ declare const index_d_MintRequestStatus: typeof MintRequestStatus;
4332
+ type index_d_NFT = NFT;
4333
+ type index_d_NFTContractType = NFTContractType;
4334
+ declare const index_d_NFTContractType: typeof NFTContractType;
4335
+ type index_d_NFTMetadataAttribute = NFTMetadataAttribute;
4336
+ type index_d_NFTMetadataAttributeValue = NFTMetadataAttributeValue;
4337
+ type index_d_NFTMetadataRequest = NFTMetadataRequest;
4338
+ type index_d_NFTOwner = NFTOwner;
4339
+ type index_d_NFTSale = NFTSale;
4340
+ type index_d_NFTWithBalance = NFTWithBalance;
4341
+ type index_d_NFTWithOwner = NFTWithOwner;
4342
+ type index_d_NativeItem = NativeItem;
4343
+ type index_d_NativeItemTypeEnum = NativeItemTypeEnum;
4344
+ declare const index_d_NativeItemTypeEnum: typeof NativeItemTypeEnum;
4345
+ type index_d_Page = Page;
4346
+ type index_d_RefreshCollectionMetadataRequest = RefreshCollectionMetadataRequest;
4347
+ type index_d_RefreshCollectionMetadataRequestParams = RefreshCollectionMetadataRequestParams;
4348
+ type index_d_RefreshCollectionMetadataResult = RefreshCollectionMetadataResult;
4349
+ type index_d_RefreshMetadataByID = RefreshMetadataByID;
4350
+ type index_d_RefreshMetadataByIDAllOf = RefreshMetadataByIDAllOf;
4351
+ type index_d_RefreshMetadataByIDRequest = RefreshMetadataByIDRequest;
4352
+ type index_d_RefreshMetadataByIDRequestParams = RefreshMetadataByIDRequestParams;
4353
+ type index_d_RefreshMetadataByTokenID = RefreshMetadataByTokenID;
4354
+ type index_d_RefreshMetadataByTokenIDAllOf = RefreshMetadataByTokenIDAllOf;
4355
+ type index_d_RefreshNFTMetadataByTokenIDRequest = RefreshNFTMetadataByTokenIDRequest;
4356
+ type index_d_RefreshNFTMetadataByTokenIDRequestParams = RefreshNFTMetadataByTokenIDRequestParams;
4357
+ type index_d_RefreshableNFTAttributes = RefreshableNFTAttributes;
4358
+ type index_d_SaleFee = SaleFee;
4359
+ type index_d_SaleFeeTypeEnum = SaleFeeTypeEnum;
4360
+ declare const index_d_SaleFeeTypeEnum: typeof SaleFeeTypeEnum;
4361
+ type index_d_SalePayment = SalePayment;
4362
+ type index_d_SalePaymentToken = SalePaymentToken;
4363
+ type index_d_Token = Token;
4364
+ type index_d_TokenContractType = TokenContractType;
4365
+ declare const index_d_TokenContractType: typeof TokenContractType;
4366
+ type index_d_Transfer = Transfer;
4367
+ type index_d_Withdrawal = Withdrawal;
4368
+ declare namespace index_d {
4369
+ export {
4370
+ index_d_APIError400 as APIError400,
4371
+ index_d_APIError400AllOf as APIError400AllOf,
4372
+ index_d_APIError400AllOfCodeEnum as APIError400AllOfCodeEnum,
4373
+ index_d_APIError401 as APIError401,
4374
+ index_d_APIError401AllOf as APIError401AllOf,
4375
+ index_d_APIError401AllOfCodeEnum as APIError401AllOfCodeEnum,
4376
+ index_d_APIError403 as APIError403,
4377
+ index_d_APIError403AllOf as APIError403AllOf,
4378
+ index_d_APIError403AllOfCodeEnum as APIError403AllOfCodeEnum,
4379
+ index_d_APIError404 as APIError404,
4380
+ index_d_APIError404AllOf as APIError404AllOf,
4381
+ index_d_APIError404AllOfCodeEnum as APIError404AllOfCodeEnum,
4382
+ index_d_APIError409 as APIError409,
4383
+ index_d_APIError409AllOf as APIError409AllOf,
4384
+ index_d_APIError409AllOfCodeEnum as APIError409AllOfCodeEnum,
4385
+ index_d_APIError429 as APIError429,
4386
+ index_d_APIError429AllOf as APIError429AllOf,
4387
+ index_d_APIError429AllOfCodeEnum as APIError429AllOfCodeEnum,
4388
+ index_d_APIError500 as APIError500,
4389
+ index_d_APIError500AllOf as APIError500AllOf,
4390
+ index_d_APIError500AllOfCodeEnum as APIError500AllOfCodeEnum,
4391
+ index_d_APIError501 as APIError501,
4392
+ index_d_APIError501AllOf as APIError501AllOf,
4393
+ index_d_APIError501AllOfCodeEnum as APIError501AllOfCodeEnum,
4394
+ index_d_ActiveOrderStatus as ActiveOrderStatus,
4395
+ index_d_ActiveOrderStatusNameEnum as ActiveOrderStatusNameEnum,
4396
+ index_d_Activity as Activity,
4397
+ index_d_ActivityAsset as ActivityAsset,
4398
+ index_d_ActivityDetails as ActivityDetails,
4399
+ index_d_ActivityNFT as ActivityNFT,
4400
+ index_d_ActivityNativeToken as ActivityNativeToken,
4401
+ index_d_ActivityToken as ActivityToken,
4402
+ ActivityType$1 as ActivityType,
4403
+ index_d_AssetVerificationStatus as AssetVerificationStatus,
4404
+ index_d_BasicAPIError as BasicAPIError,
4405
+ index_d_BlockchainMetadata as BlockchainMetadata,
4406
+ index_d_Burn as Burn,
4407
+ index_d_Chain as Chain,
4408
+ index_d_ChainWithDetails as ChainWithDetails,
4409
+ index_d_ChainWithDetailsAllOf as ChainWithDetailsAllOf,
4410
+ index_d_Collection as Collection,
4411
+ index_d_CollectionContractType as CollectionContractType,
4412
+ index_d_CollectionMetadata as CollectionMetadata,
4413
+ index_d_CreateMintRequestRequest as CreateMintRequestRequest,
4414
+ index_d_CreateMintRequestRequestParams as CreateMintRequestRequestParams,
4415
+ index_d_CreateMintRequestResult as CreateMintRequestResult,
4416
+ index_d_Deposit as Deposit,
4417
+ index_d_ERC1155Item as ERC1155Item,
4418
+ index_d_ERC1155ItemTypeEnum as ERC1155ItemTypeEnum,
4419
+ index_d_ERC20Item as ERC20Item,
4420
+ index_d_ERC20ItemTypeEnum as ERC20ItemTypeEnum,
4421
+ index_d_ERC721Item as ERC721Item,
4422
+ index_d_ERC721ItemTypeEnum as ERC721ItemTypeEnum,
4423
+ index_d_GetActivityRequestParams as GetActivityRequestParams,
4424
+ index_d_GetActivityResult as GetActivityResult,
4425
+ index_d_GetCollectionRequestParams as GetCollectionRequestParams,
4426
+ index_d_GetCollectionResult as GetCollectionResult,
4427
+ index_d_GetERC20TokenRequestParams as GetERC20TokenRequestParams,
4428
+ index_d_GetMetadataRequestParams as GetMetadataRequestParams,
4429
+ index_d_GetMetadataResult as GetMetadataResult,
4430
+ index_d_GetMintRequestRequestParams as GetMintRequestRequestParams,
4431
+ index_d_GetMintRequestResult as GetMintRequestResult,
4432
+ index_d_GetNFTRequestParams as GetNFTRequestParams,
4433
+ index_d_GetNFTResult as GetNFTResult,
4434
+ index_d_GetTokenResult as GetTokenResult,
4435
+ index_d_Item as Item,
4436
+ index_d_ListActivitiesRequestParams as ListActivitiesRequestParams,
4437
+ index_d_ListActivitiesResult as ListActivitiesResult,
4438
+ index_d_ListActivityHistoryRequestParams as ListActivityHistoryRequestParams,
4439
+ index_d_ListAllNFTOwnersRequestParams as ListAllNFTOwnersRequestParams,
4440
+ index_d_ListAllNFTsRequestParams as ListAllNFTsRequestParams,
4441
+ index_d_ListChainsRequestParams as ListChainsRequestParams,
4442
+ index_d_ListChainsResult as ListChainsResult,
4443
+ index_d_ListCollectionOwnersResult as ListCollectionOwnersResult,
4444
+ index_d_ListCollectionsByNFTOwnerRequestParams as ListCollectionsByNFTOwnerRequestParams,
4445
+ index_d_ListCollectionsRequestParams as ListCollectionsRequestParams,
4446
+ index_d_ListCollectionsResult as ListCollectionsResult,
4447
+ index_d_ListERC20TokensRequestParams as ListERC20TokensRequestParams,
4448
+ index_d_ListMetadataForChainRequestParams as ListMetadataForChainRequestParams,
4449
+ index_d_ListMetadataRequestParams as ListMetadataRequestParams,
4450
+ index_d_ListMetadataResult as ListMetadataResult,
4451
+ index_d_ListMintRequestsRequestParams as ListMintRequestsRequestParams,
4452
+ index_d_ListMintRequestsResult as ListMintRequestsResult,
4453
+ index_d_ListNFTOwnersRequestParams as ListNFTOwnersRequestParams,
4454
+ index_d_ListNFTOwnersResult as ListNFTOwnersResult,
4455
+ index_d_ListNFTsByAccountAddressRequestParams as ListNFTsByAccountAddressRequestParams,
4456
+ index_d_ListNFTsByOwnerResult as ListNFTsByOwnerResult,
4457
+ index_d_ListNFTsRequestParams as ListNFTsRequestParams,
4458
+ index_d_ListNFTsResult as ListNFTsResult,
4459
+ index_d_ListOwnersByContractAddressRequestParams as ListOwnersByContractAddressRequestParams,
4460
+ index_d_ListTokensResult as ListTokensResult,
4461
+ index_d_Metadata as Metadata,
4462
+ index_d_MetadataRefreshRateLimitResult as MetadataRefreshRateLimitResult,
4463
+ index_d_Mint as Mint,
4464
+ index_d_MintAsset as MintAsset,
4465
+ index_d_MintRequestErrorMessage as MintRequestErrorMessage,
4466
+ index_d_MintRequestStatus as MintRequestStatus,
4467
+ index_d_NFT as NFT,
4468
+ index_d_NFTContractType as NFTContractType,
4469
+ index_d_NFTMetadataAttribute as NFTMetadataAttribute,
4470
+ index_d_NFTMetadataAttributeValue as NFTMetadataAttributeValue,
4471
+ index_d_NFTMetadataRequest as NFTMetadataRequest,
4472
+ index_d_NFTOwner as NFTOwner,
4473
+ index_d_NFTSale as NFTSale,
4474
+ index_d_NFTWithBalance as NFTWithBalance,
4475
+ index_d_NFTWithOwner as NFTWithOwner,
4476
+ index_d_NativeItem as NativeItem,
4477
+ index_d_NativeItemTypeEnum as NativeItemTypeEnum,
4478
+ index_d_Page as Page,
4479
+ index_d_RefreshCollectionMetadataRequest as RefreshCollectionMetadataRequest,
4480
+ index_d_RefreshCollectionMetadataRequestParams as RefreshCollectionMetadataRequestParams,
4481
+ index_d_RefreshCollectionMetadataResult as RefreshCollectionMetadataResult,
4482
+ index_d_RefreshMetadataByID as RefreshMetadataByID,
4483
+ index_d_RefreshMetadataByIDAllOf as RefreshMetadataByIDAllOf,
4484
+ index_d_RefreshMetadataByIDRequest as RefreshMetadataByIDRequest,
4485
+ index_d_RefreshMetadataByIDRequestParams as RefreshMetadataByIDRequestParams,
4486
+ index_d_RefreshMetadataByTokenID as RefreshMetadataByTokenID,
4487
+ index_d_RefreshMetadataByTokenIDAllOf as RefreshMetadataByTokenIDAllOf,
4488
+ index_d_RefreshNFTMetadataByTokenIDRequest as RefreshNFTMetadataByTokenIDRequest,
4489
+ index_d_RefreshNFTMetadataByTokenIDRequestParams as RefreshNFTMetadataByTokenIDRequestParams,
4490
+ index_d_RefreshableNFTAttributes as RefreshableNFTAttributes,
4491
+ index_d_SaleFee as SaleFee,
4492
+ index_d_SaleFeeTypeEnum as SaleFeeTypeEnum,
4493
+ index_d_SalePayment as SalePayment,
4494
+ index_d_SalePaymentToken as SalePaymentToken,
4495
+ index_d_Token as Token,
4496
+ index_d_TokenContractType as TokenContractType,
4497
+ index_d_Transfer as Transfer,
4498
+ index_d_Withdrawal as Withdrawal,
4499
+ };
4500
+ }
4501
+
4502
+ interface OpenAPIError extends BasicAPIError$1 {
4503
+ code: string;
4504
+ details: {
4505
+ [key: string]: any;
4506
+ } | null;
4507
+ }
4508
+ /**
4509
+ * Custom Error class that is returned from the API when a request fails
4510
+ */
4511
+ declare class APIError extends Error {
4512
+ readonly code: string;
4513
+ readonly details: {
4514
+ [key: string]: any;
4515
+ } | null;
4516
+ readonly link: string;
4517
+ readonly traceId: string;
4518
+ constructor({ message, code, details, link, trace_id: traceId, }: OpenAPIError);
4519
+ }
4520
+
4521
+ /**
4522
+ * @deprecated since version 1.1.5
4523
+ * Please use Types.ActivityType instead
4524
+ * import { Types } from '@imtbl/blockchain-data'
4525
+ */
4526
+ type ActivityType = ActivityType$2;
4527
+
4528
+ type blockchain_data_d_APIError = APIError;
4529
+ declare const blockchain_data_d_APIError: typeof APIError;
4530
+ type blockchain_data_d_ActivityType = ActivityType;
4531
+ declare const blockchain_data_d_BlockchainData: typeof BlockchainData;
4532
+ declare const blockchain_data_d_BlockchainDataModuleConfiguration: typeof BlockchainDataModuleConfiguration;
4533
+ declare namespace blockchain_data_d {
4534
+ export {
4535
+ blockchain_data_d_APIError as APIError,
4536
+ blockchain_data_d_ActivityType as ActivityType,
4537
+ blockchain_data_d_BlockchainData as BlockchainData,
4538
+ blockchain_data_d_BlockchainDataModuleConfiguration as BlockchainDataModuleConfiguration,
4539
+ index_d as Types,
4540
+ };
4541
+ }
4542
+
4543
+ export { APIError as A, ActivityType as a, blockchain_data_d as b, index_d as i };