polymarket-apis 0.2.2__py3-none-any.whl

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.

Potentially problematic release.


This version of polymarket-apis might be problematic. Click here for more details.

Files changed (40) hide show
  1. polymarket_apis/__init__.py +2 -0
  2. polymarket_apis/clients/__init__.py +0 -0
  3. polymarket_apis/clients/clob_client.py +730 -0
  4. polymarket_apis/clients/data_client.py +234 -0
  5. polymarket_apis/clients/gamma_client.py +311 -0
  6. polymarket_apis/clients/web3_client.py +261 -0
  7. polymarket_apis/clients/websockets_client.py +131 -0
  8. polymarket_apis/types/__init__.py +0 -0
  9. polymarket_apis/types/clob_types.py +494 -0
  10. polymarket_apis/types/common.py +49 -0
  11. polymarket_apis/types/data_types.py +161 -0
  12. polymarket_apis/types/gamma_types.py +313 -0
  13. polymarket_apis/types/websockets_types.py +191 -0
  14. polymarket_apis/utilities/__init__.py +0 -0
  15. polymarket_apis/utilities/config.py +36 -0
  16. polymarket_apis/utilities/constants.py +26 -0
  17. polymarket_apis/utilities/endpoints.py +37 -0
  18. polymarket_apis/utilities/exceptions.py +11 -0
  19. polymarket_apis/utilities/headers.py +54 -0
  20. polymarket_apis/utilities/order_builder/__init__.py +0 -0
  21. polymarket_apis/utilities/order_builder/builder.py +240 -0
  22. polymarket_apis/utilities/order_builder/helpers.py +61 -0
  23. polymarket_apis/utilities/signing/__init__.py +0 -0
  24. polymarket_apis/utilities/signing/eip712.py +28 -0
  25. polymarket_apis/utilities/signing/hmac.py +20 -0
  26. polymarket_apis/utilities/signing/model.py +8 -0
  27. polymarket_apis/utilities/signing/signer.py +25 -0
  28. polymarket_apis/utilities/web3/__init__.py +0 -0
  29. polymarket_apis/utilities/web3/abis/CTFExchange.json +1851 -0
  30. polymarket_apis/utilities/web3/abis/ConditionalTokens.json +705 -0
  31. polymarket_apis/utilities/web3/abis/NegRiskAdapter.json +999 -0
  32. polymarket_apis/utilities/web3/abis/NegRiskCtfExchange.json +1856 -0
  33. polymarket_apis/utilities/web3/abis/ProxyWalletFactory.json +319 -0
  34. polymarket_apis/utilities/web3/abis/UChildERC20Proxy.json +1438 -0
  35. polymarket_apis/utilities/web3/abis/__init__.py +0 -0
  36. polymarket_apis/utilities/web3/abis/custom_contract_errors.py +31 -0
  37. polymarket_apis/utilities/web3/helpers.py +8 -0
  38. polymarket_apis-0.2.2.dist-info/METADATA +18 -0
  39. polymarket_apis-0.2.2.dist-info/RECORD +40 -0
  40. polymarket_apis-0.2.2.dist-info/WHEEL +4 -0
@@ -0,0 +1,1856 @@
1
+ [
2
+ {
3
+ "inputs": [
4
+ {
5
+ "internalType": "address",
6
+ "name": "_collateral",
7
+ "type": "address"
8
+ },
9
+ {
10
+ "internalType": "address",
11
+ "name": "_ctf",
12
+ "type": "address"
13
+ },
14
+ {
15
+ "internalType": "address",
16
+ "name": "_negRiskAdapter",
17
+ "type": "address"
18
+ },
19
+ {
20
+ "internalType": "address",
21
+ "name": "_proxyFactory",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "address",
26
+ "name": "_safeFactory",
27
+ "type": "address"
28
+ }
29
+ ],
30
+ "stateMutability": "nonpayable",
31
+ "type": "constructor"
32
+ },
33
+ {
34
+ "inputs": [ ],
35
+ "name": "AlreadyRegistered",
36
+ "type": "error"
37
+ },
38
+ {
39
+ "inputs": [ ],
40
+ "name": "FeeTooHigh",
41
+ "type": "error"
42
+ },
43
+ {
44
+ "inputs": [ ],
45
+ "name": "InvalidComplement",
46
+ "type": "error"
47
+ },
48
+ {
49
+ "inputs": [ ],
50
+ "name": "InvalidNonce",
51
+ "type": "error"
52
+ },
53
+ {
54
+ "inputs": [ ],
55
+ "name": "InvalidSignature",
56
+ "type": "error"
57
+ },
58
+ {
59
+ "inputs": [ ],
60
+ "name": "InvalidTokenId",
61
+ "type": "error"
62
+ },
63
+ {
64
+ "inputs": [ ],
65
+ "name": "MakingGtRemaining",
66
+ "type": "error"
67
+ },
68
+ {
69
+ "inputs": [ ],
70
+ "name": "MismatchedTokenIds",
71
+ "type": "error"
72
+ },
73
+ {
74
+ "inputs": [ ],
75
+ "name": "NotAdmin",
76
+ "type": "error"
77
+ },
78
+ {
79
+ "inputs": [ ],
80
+ "name": "NotCrossing",
81
+ "type": "error"
82
+ },
83
+ {
84
+ "inputs": [ ],
85
+ "name": "NotOperator",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [ ],
90
+ "name": "NotOwner",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [ ],
95
+ "name": "NotTaker",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [ ],
100
+ "name": "OrderExpired",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [ ],
105
+ "name": "OrderFilledOrCancelled",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [ ],
110
+ "name": "Paused",
111
+ "type": "error"
112
+ },
113
+ {
114
+ "inputs": [ ],
115
+ "name": "TooLittleTokensReceived",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "anonymous": false,
120
+ "inputs": [
121
+ {
122
+ "indexed": true,
123
+ "internalType": "address",
124
+ "name": "receiver",
125
+ "type": "address"
126
+ },
127
+ {
128
+ "indexed": false,
129
+ "internalType": "uint256",
130
+ "name": "tokenId",
131
+ "type": "uint256"
132
+ },
133
+ {
134
+ "indexed": false,
135
+ "internalType": "uint256",
136
+ "name": "amount",
137
+ "type": "uint256"
138
+ }
139
+ ],
140
+ "name": "FeeCharged",
141
+ "type": "event"
142
+ },
143
+ {
144
+ "anonymous": false,
145
+ "inputs": [
146
+ {
147
+ "indexed": true,
148
+ "internalType": "address",
149
+ "name": "newAdminAddress",
150
+ "type": "address"
151
+ },
152
+ {
153
+ "indexed": true,
154
+ "internalType": "address",
155
+ "name": "admin",
156
+ "type": "address"
157
+ }
158
+ ],
159
+ "name": "NewAdmin",
160
+ "type": "event"
161
+ },
162
+ {
163
+ "anonymous": false,
164
+ "inputs": [
165
+ {
166
+ "indexed": true,
167
+ "internalType": "address",
168
+ "name": "newOperatorAddress",
169
+ "type": "address"
170
+ },
171
+ {
172
+ "indexed": true,
173
+ "internalType": "address",
174
+ "name": "admin",
175
+ "type": "address"
176
+ }
177
+ ],
178
+ "name": "NewOperator",
179
+ "type": "event"
180
+ },
181
+ {
182
+ "anonymous": false,
183
+ "inputs": [
184
+ {
185
+ "indexed": true,
186
+ "internalType": "bytes32",
187
+ "name": "orderHash",
188
+ "type": "bytes32"
189
+ }
190
+ ],
191
+ "name": "OrderCancelled",
192
+ "type": "event"
193
+ },
194
+ {
195
+ "anonymous": false,
196
+ "inputs": [
197
+ {
198
+ "indexed": true,
199
+ "internalType": "bytes32",
200
+ "name": "orderHash",
201
+ "type": "bytes32"
202
+ },
203
+ {
204
+ "indexed": true,
205
+ "internalType": "address",
206
+ "name": "maker",
207
+ "type": "address"
208
+ },
209
+ {
210
+ "indexed": true,
211
+ "internalType": "address",
212
+ "name": "taker",
213
+ "type": "address"
214
+ },
215
+ {
216
+ "indexed": false,
217
+ "internalType": "uint256",
218
+ "name": "makerAssetId",
219
+ "type": "uint256"
220
+ },
221
+ {
222
+ "indexed": false,
223
+ "internalType": "uint256",
224
+ "name": "takerAssetId",
225
+ "type": "uint256"
226
+ },
227
+ {
228
+ "indexed": false,
229
+ "internalType": "uint256",
230
+ "name": "makerAmountFilled",
231
+ "type": "uint256"
232
+ },
233
+ {
234
+ "indexed": false,
235
+ "internalType": "uint256",
236
+ "name": "takerAmountFilled",
237
+ "type": "uint256"
238
+ },
239
+ {
240
+ "indexed": false,
241
+ "internalType": "uint256",
242
+ "name": "fee",
243
+ "type": "uint256"
244
+ }
245
+ ],
246
+ "name": "OrderFilled",
247
+ "type": "event"
248
+ },
249
+ {
250
+ "anonymous": false,
251
+ "inputs": [
252
+ {
253
+ "indexed": true,
254
+ "internalType": "bytes32",
255
+ "name": "takerOrderHash",
256
+ "type": "bytes32"
257
+ },
258
+ {
259
+ "indexed": true,
260
+ "internalType": "address",
261
+ "name": "takerOrderMaker",
262
+ "type": "address"
263
+ },
264
+ {
265
+ "indexed": false,
266
+ "internalType": "uint256",
267
+ "name": "makerAssetId",
268
+ "type": "uint256"
269
+ },
270
+ {
271
+ "indexed": false,
272
+ "internalType": "uint256",
273
+ "name": "takerAssetId",
274
+ "type": "uint256"
275
+ },
276
+ {
277
+ "indexed": false,
278
+ "internalType": "uint256",
279
+ "name": "makerAmountFilled",
280
+ "type": "uint256"
281
+ },
282
+ {
283
+ "indexed": false,
284
+ "internalType": "uint256",
285
+ "name": "takerAmountFilled",
286
+ "type": "uint256"
287
+ }
288
+ ],
289
+ "name": "OrdersMatched",
290
+ "type": "event"
291
+ },
292
+ {
293
+ "anonymous": false,
294
+ "inputs": [
295
+ {
296
+ "indexed": true,
297
+ "internalType": "address",
298
+ "name": "oldProxyFactory",
299
+ "type": "address"
300
+ },
301
+ {
302
+ "indexed": true,
303
+ "internalType": "address",
304
+ "name": "newProxyFactory",
305
+ "type": "address"
306
+ }
307
+ ],
308
+ "name": "ProxyFactoryUpdated",
309
+ "type": "event"
310
+ },
311
+ {
312
+ "anonymous": false,
313
+ "inputs": [
314
+ {
315
+ "indexed": true,
316
+ "internalType": "address",
317
+ "name": "removedAdmin",
318
+ "type": "address"
319
+ },
320
+ {
321
+ "indexed": true,
322
+ "internalType": "address",
323
+ "name": "admin",
324
+ "type": "address"
325
+ }
326
+ ],
327
+ "name": "RemovedAdmin",
328
+ "type": "event"
329
+ },
330
+ {
331
+ "anonymous": false,
332
+ "inputs": [
333
+ {
334
+ "indexed": true,
335
+ "internalType": "address",
336
+ "name": "removedOperator",
337
+ "type": "address"
338
+ },
339
+ {
340
+ "indexed": true,
341
+ "internalType": "address",
342
+ "name": "admin",
343
+ "type": "address"
344
+ }
345
+ ],
346
+ "name": "RemovedOperator",
347
+ "type": "event"
348
+ },
349
+ {
350
+ "anonymous": false,
351
+ "inputs": [
352
+ {
353
+ "indexed": true,
354
+ "internalType": "address",
355
+ "name": "oldSafeFactory",
356
+ "type": "address"
357
+ },
358
+ {
359
+ "indexed": true,
360
+ "internalType": "address",
361
+ "name": "newSafeFactory",
362
+ "type": "address"
363
+ }
364
+ ],
365
+ "name": "SafeFactoryUpdated",
366
+ "type": "event"
367
+ },
368
+ {
369
+ "anonymous": false,
370
+ "inputs": [
371
+ {
372
+ "indexed": true,
373
+ "internalType": "uint256",
374
+ "name": "token0",
375
+ "type": "uint256"
376
+ },
377
+ {
378
+ "indexed": true,
379
+ "internalType": "uint256",
380
+ "name": "token1",
381
+ "type": "uint256"
382
+ },
383
+ {
384
+ "indexed": true,
385
+ "internalType": "bytes32",
386
+ "name": "conditionId",
387
+ "type": "bytes32"
388
+ }
389
+ ],
390
+ "name": "TokenRegistered",
391
+ "type": "event"
392
+ },
393
+ {
394
+ "anonymous": false,
395
+ "inputs": [
396
+ {
397
+ "indexed": true,
398
+ "internalType": "address",
399
+ "name": "pauser",
400
+ "type": "address"
401
+ }
402
+ ],
403
+ "name": "TradingPaused",
404
+ "type": "event"
405
+ },
406
+ {
407
+ "anonymous": false,
408
+ "inputs": [
409
+ {
410
+ "indexed": true,
411
+ "internalType": "address",
412
+ "name": "pauser",
413
+ "type": "address"
414
+ }
415
+ ],
416
+ "name": "TradingUnpaused",
417
+ "type": "event"
418
+ },
419
+ {
420
+ "inputs": [
421
+ {
422
+ "internalType": "address",
423
+ "name": "admin_",
424
+ "type": "address"
425
+ }
426
+ ],
427
+ "name": "addAdmin",
428
+ "outputs": [ ],
429
+ "stateMutability": "nonpayable",
430
+ "type": "function"
431
+ },
432
+ {
433
+ "inputs": [
434
+ {
435
+ "internalType": "address",
436
+ "name": "operator_",
437
+ "type": "address"
438
+ }
439
+ ],
440
+ "name": "addOperator",
441
+ "outputs": [ ],
442
+ "stateMutability": "nonpayable",
443
+ "type": "function"
444
+ },
445
+ {
446
+ "inputs": [
447
+ {
448
+ "internalType": "address",
449
+ "name": "",
450
+ "type": "address"
451
+ }
452
+ ],
453
+ "name": "admins",
454
+ "outputs": [
455
+ {
456
+ "internalType": "uint256",
457
+ "name": "",
458
+ "type": "uint256"
459
+ }
460
+ ],
461
+ "stateMutability": "view",
462
+ "type": "function"
463
+ },
464
+ {
465
+ "inputs": [
466
+ {
467
+ "components": [
468
+ {
469
+ "internalType": "uint256",
470
+ "name": "salt",
471
+ "type": "uint256"
472
+ },
473
+ {
474
+ "internalType": "address",
475
+ "name": "maker",
476
+ "type": "address"
477
+ },
478
+ {
479
+ "internalType": "address",
480
+ "name": "signer",
481
+ "type": "address"
482
+ },
483
+ {
484
+ "internalType": "address",
485
+ "name": "taker",
486
+ "type": "address"
487
+ },
488
+ {
489
+ "internalType": "uint256",
490
+ "name": "tokenId",
491
+ "type": "uint256"
492
+ },
493
+ {
494
+ "internalType": "uint256",
495
+ "name": "makerAmount",
496
+ "type": "uint256"
497
+ },
498
+ {
499
+ "internalType": "uint256",
500
+ "name": "takerAmount",
501
+ "type": "uint256"
502
+ },
503
+ {
504
+ "internalType": "uint256",
505
+ "name": "expiration",
506
+ "type": "uint256"
507
+ },
508
+ {
509
+ "internalType": "uint256",
510
+ "name": "nonce",
511
+ "type": "uint256"
512
+ },
513
+ {
514
+ "internalType": "uint256",
515
+ "name": "feeRateBps",
516
+ "type": "uint256"
517
+ },
518
+ {
519
+ "internalType": "enum Side",
520
+ "name": "side",
521
+ "type": "uint8"
522
+ },
523
+ {
524
+ "internalType": "enum SignatureType",
525
+ "name": "signatureType",
526
+ "type": "uint8"
527
+ },
528
+ {
529
+ "internalType": "bytes",
530
+ "name": "signature",
531
+ "type": "bytes"
532
+ }
533
+ ],
534
+ "internalType": "struct Order",
535
+ "name": "order",
536
+ "type": "tuple"
537
+ }
538
+ ],
539
+ "name": "cancelOrder",
540
+ "outputs": [ ],
541
+ "stateMutability": "nonpayable",
542
+ "type": "function"
543
+ },
544
+ {
545
+ "inputs": [
546
+ {
547
+ "components": [
548
+ {
549
+ "internalType": "uint256",
550
+ "name": "salt",
551
+ "type": "uint256"
552
+ },
553
+ {
554
+ "internalType": "address",
555
+ "name": "maker",
556
+ "type": "address"
557
+ },
558
+ {
559
+ "internalType": "address",
560
+ "name": "signer",
561
+ "type": "address"
562
+ },
563
+ {
564
+ "internalType": "address",
565
+ "name": "taker",
566
+ "type": "address"
567
+ },
568
+ {
569
+ "internalType": "uint256",
570
+ "name": "tokenId",
571
+ "type": "uint256"
572
+ },
573
+ {
574
+ "internalType": "uint256",
575
+ "name": "makerAmount",
576
+ "type": "uint256"
577
+ },
578
+ {
579
+ "internalType": "uint256",
580
+ "name": "takerAmount",
581
+ "type": "uint256"
582
+ },
583
+ {
584
+ "internalType": "uint256",
585
+ "name": "expiration",
586
+ "type": "uint256"
587
+ },
588
+ {
589
+ "internalType": "uint256",
590
+ "name": "nonce",
591
+ "type": "uint256"
592
+ },
593
+ {
594
+ "internalType": "uint256",
595
+ "name": "feeRateBps",
596
+ "type": "uint256"
597
+ },
598
+ {
599
+ "internalType": "enum Side",
600
+ "name": "side",
601
+ "type": "uint8"
602
+ },
603
+ {
604
+ "internalType": "enum SignatureType",
605
+ "name": "signatureType",
606
+ "type": "uint8"
607
+ },
608
+ {
609
+ "internalType": "bytes",
610
+ "name": "signature",
611
+ "type": "bytes"
612
+ }
613
+ ],
614
+ "internalType": "struct Order[]",
615
+ "name": "orders",
616
+ "type": "tuple[]"
617
+ }
618
+ ],
619
+ "name": "cancelOrders",
620
+ "outputs": [ ],
621
+ "stateMutability": "nonpayable",
622
+ "type": "function"
623
+ },
624
+ {
625
+ "inputs": [ ],
626
+ "name": "domainSeparator",
627
+ "outputs": [
628
+ {
629
+ "internalType": "bytes32",
630
+ "name": "",
631
+ "type": "bytes32"
632
+ }
633
+ ],
634
+ "stateMutability": "view",
635
+ "type": "function"
636
+ },
637
+ {
638
+ "inputs": [
639
+ {
640
+ "components": [
641
+ {
642
+ "internalType": "uint256",
643
+ "name": "salt",
644
+ "type": "uint256"
645
+ },
646
+ {
647
+ "internalType": "address",
648
+ "name": "maker",
649
+ "type": "address"
650
+ },
651
+ {
652
+ "internalType": "address",
653
+ "name": "signer",
654
+ "type": "address"
655
+ },
656
+ {
657
+ "internalType": "address",
658
+ "name": "taker",
659
+ "type": "address"
660
+ },
661
+ {
662
+ "internalType": "uint256",
663
+ "name": "tokenId",
664
+ "type": "uint256"
665
+ },
666
+ {
667
+ "internalType": "uint256",
668
+ "name": "makerAmount",
669
+ "type": "uint256"
670
+ },
671
+ {
672
+ "internalType": "uint256",
673
+ "name": "takerAmount",
674
+ "type": "uint256"
675
+ },
676
+ {
677
+ "internalType": "uint256",
678
+ "name": "expiration",
679
+ "type": "uint256"
680
+ },
681
+ {
682
+ "internalType": "uint256",
683
+ "name": "nonce",
684
+ "type": "uint256"
685
+ },
686
+ {
687
+ "internalType": "uint256",
688
+ "name": "feeRateBps",
689
+ "type": "uint256"
690
+ },
691
+ {
692
+ "internalType": "enum Side",
693
+ "name": "side",
694
+ "type": "uint8"
695
+ },
696
+ {
697
+ "internalType": "enum SignatureType",
698
+ "name": "signatureType",
699
+ "type": "uint8"
700
+ },
701
+ {
702
+ "internalType": "bytes",
703
+ "name": "signature",
704
+ "type": "bytes"
705
+ }
706
+ ],
707
+ "internalType": "struct Order",
708
+ "name": "order",
709
+ "type": "tuple"
710
+ },
711
+ {
712
+ "internalType": "uint256",
713
+ "name": "fillAmount",
714
+ "type": "uint256"
715
+ }
716
+ ],
717
+ "name": "fillOrder",
718
+ "outputs": [ ],
719
+ "stateMutability": "nonpayable",
720
+ "type": "function"
721
+ },
722
+ {
723
+ "inputs": [
724
+ {
725
+ "components": [
726
+ {
727
+ "internalType": "uint256",
728
+ "name": "salt",
729
+ "type": "uint256"
730
+ },
731
+ {
732
+ "internalType": "address",
733
+ "name": "maker",
734
+ "type": "address"
735
+ },
736
+ {
737
+ "internalType": "address",
738
+ "name": "signer",
739
+ "type": "address"
740
+ },
741
+ {
742
+ "internalType": "address",
743
+ "name": "taker",
744
+ "type": "address"
745
+ },
746
+ {
747
+ "internalType": "uint256",
748
+ "name": "tokenId",
749
+ "type": "uint256"
750
+ },
751
+ {
752
+ "internalType": "uint256",
753
+ "name": "makerAmount",
754
+ "type": "uint256"
755
+ },
756
+ {
757
+ "internalType": "uint256",
758
+ "name": "takerAmount",
759
+ "type": "uint256"
760
+ },
761
+ {
762
+ "internalType": "uint256",
763
+ "name": "expiration",
764
+ "type": "uint256"
765
+ },
766
+ {
767
+ "internalType": "uint256",
768
+ "name": "nonce",
769
+ "type": "uint256"
770
+ },
771
+ {
772
+ "internalType": "uint256",
773
+ "name": "feeRateBps",
774
+ "type": "uint256"
775
+ },
776
+ {
777
+ "internalType": "enum Side",
778
+ "name": "side",
779
+ "type": "uint8"
780
+ },
781
+ {
782
+ "internalType": "enum SignatureType",
783
+ "name": "signatureType",
784
+ "type": "uint8"
785
+ },
786
+ {
787
+ "internalType": "bytes",
788
+ "name": "signature",
789
+ "type": "bytes"
790
+ }
791
+ ],
792
+ "internalType": "struct Order[]",
793
+ "name": "orders",
794
+ "type": "tuple[]"
795
+ },
796
+ {
797
+ "internalType": "uint256[]",
798
+ "name": "fillAmounts",
799
+ "type": "uint256[]"
800
+ }
801
+ ],
802
+ "name": "fillOrders",
803
+ "outputs": [ ],
804
+ "stateMutability": "nonpayable",
805
+ "type": "function"
806
+ },
807
+ {
808
+ "inputs": [ ],
809
+ "name": "getCollateral",
810
+ "outputs": [
811
+ {
812
+ "internalType": "address",
813
+ "name": "",
814
+ "type": "address"
815
+ }
816
+ ],
817
+ "stateMutability": "view",
818
+ "type": "function"
819
+ },
820
+ {
821
+ "inputs": [
822
+ {
823
+ "internalType": "uint256",
824
+ "name": "token",
825
+ "type": "uint256"
826
+ }
827
+ ],
828
+ "name": "getComplement",
829
+ "outputs": [
830
+ {
831
+ "internalType": "uint256",
832
+ "name": "",
833
+ "type": "uint256"
834
+ }
835
+ ],
836
+ "stateMutability": "view",
837
+ "type": "function"
838
+ },
839
+ {
840
+ "inputs": [
841
+ {
842
+ "internalType": "uint256",
843
+ "name": "token",
844
+ "type": "uint256"
845
+ }
846
+ ],
847
+ "name": "getConditionId",
848
+ "outputs": [
849
+ {
850
+ "internalType": "bytes32",
851
+ "name": "",
852
+ "type": "bytes32"
853
+ }
854
+ ],
855
+ "stateMutability": "view",
856
+ "type": "function"
857
+ },
858
+ {
859
+ "inputs": [ ],
860
+ "name": "getCtf",
861
+ "outputs": [
862
+ {
863
+ "internalType": "address",
864
+ "name": "",
865
+ "type": "address"
866
+ }
867
+ ],
868
+ "stateMutability": "view",
869
+ "type": "function"
870
+ },
871
+ {
872
+ "inputs": [ ],
873
+ "name": "getMaxFeeRate",
874
+ "outputs": [
875
+ {
876
+ "internalType": "uint256",
877
+ "name": "",
878
+ "type": "uint256"
879
+ }
880
+ ],
881
+ "stateMutability": "pure",
882
+ "type": "function"
883
+ },
884
+ {
885
+ "inputs": [
886
+ {
887
+ "internalType": "bytes32",
888
+ "name": "orderHash",
889
+ "type": "bytes32"
890
+ }
891
+ ],
892
+ "name": "getOrderStatus",
893
+ "outputs": [
894
+ {
895
+ "components": [
896
+ {
897
+ "internalType": "bool",
898
+ "name": "isFilledOrCancelled",
899
+ "type": "bool"
900
+ },
901
+ {
902
+ "internalType": "uint256",
903
+ "name": "remaining",
904
+ "type": "uint256"
905
+ }
906
+ ],
907
+ "internalType": "struct OrderStatus",
908
+ "name": "",
909
+ "type": "tuple"
910
+ }
911
+ ],
912
+ "stateMutability": "view",
913
+ "type": "function"
914
+ },
915
+ {
916
+ "inputs": [ ],
917
+ "name": "getPolyProxyFactoryImplementation",
918
+ "outputs": [
919
+ {
920
+ "internalType": "address",
921
+ "name": "",
922
+ "type": "address"
923
+ }
924
+ ],
925
+ "stateMutability": "view",
926
+ "type": "function"
927
+ },
928
+ {
929
+ "inputs": [
930
+ {
931
+ "internalType": "address",
932
+ "name": "_addr",
933
+ "type": "address"
934
+ }
935
+ ],
936
+ "name": "getPolyProxyWalletAddress",
937
+ "outputs": [
938
+ {
939
+ "internalType": "address",
940
+ "name": "",
941
+ "type": "address"
942
+ }
943
+ ],
944
+ "stateMutability": "view",
945
+ "type": "function"
946
+ },
947
+ {
948
+ "inputs": [ ],
949
+ "name": "getProxyFactory",
950
+ "outputs": [
951
+ {
952
+ "internalType": "address",
953
+ "name": "",
954
+ "type": "address"
955
+ }
956
+ ],
957
+ "stateMutability": "view",
958
+ "type": "function"
959
+ },
960
+ {
961
+ "inputs": [
962
+ {
963
+ "internalType": "address",
964
+ "name": "_addr",
965
+ "type": "address"
966
+ }
967
+ ],
968
+ "name": "getSafeAddress",
969
+ "outputs": [
970
+ {
971
+ "internalType": "address",
972
+ "name": "",
973
+ "type": "address"
974
+ }
975
+ ],
976
+ "stateMutability": "view",
977
+ "type": "function"
978
+ },
979
+ {
980
+ "inputs": [ ],
981
+ "name": "getSafeFactory",
982
+ "outputs": [
983
+ {
984
+ "internalType": "address",
985
+ "name": "",
986
+ "type": "address"
987
+ }
988
+ ],
989
+ "stateMutability": "view",
990
+ "type": "function"
991
+ },
992
+ {
993
+ "inputs": [ ],
994
+ "name": "getSafeFactoryImplementation",
995
+ "outputs": [
996
+ {
997
+ "internalType": "address",
998
+ "name": "",
999
+ "type": "address"
1000
+ }
1001
+ ],
1002
+ "stateMutability": "view",
1003
+ "type": "function"
1004
+ },
1005
+ {
1006
+ "inputs": [
1007
+ {
1008
+ "components": [
1009
+ {
1010
+ "internalType": "uint256",
1011
+ "name": "salt",
1012
+ "type": "uint256"
1013
+ },
1014
+ {
1015
+ "internalType": "address",
1016
+ "name": "maker",
1017
+ "type": "address"
1018
+ },
1019
+ {
1020
+ "internalType": "address",
1021
+ "name": "signer",
1022
+ "type": "address"
1023
+ },
1024
+ {
1025
+ "internalType": "address",
1026
+ "name": "taker",
1027
+ "type": "address"
1028
+ },
1029
+ {
1030
+ "internalType": "uint256",
1031
+ "name": "tokenId",
1032
+ "type": "uint256"
1033
+ },
1034
+ {
1035
+ "internalType": "uint256",
1036
+ "name": "makerAmount",
1037
+ "type": "uint256"
1038
+ },
1039
+ {
1040
+ "internalType": "uint256",
1041
+ "name": "takerAmount",
1042
+ "type": "uint256"
1043
+ },
1044
+ {
1045
+ "internalType": "uint256",
1046
+ "name": "expiration",
1047
+ "type": "uint256"
1048
+ },
1049
+ {
1050
+ "internalType": "uint256",
1051
+ "name": "nonce",
1052
+ "type": "uint256"
1053
+ },
1054
+ {
1055
+ "internalType": "uint256",
1056
+ "name": "feeRateBps",
1057
+ "type": "uint256"
1058
+ },
1059
+ {
1060
+ "internalType": "enum Side",
1061
+ "name": "side",
1062
+ "type": "uint8"
1063
+ },
1064
+ {
1065
+ "internalType": "enum SignatureType",
1066
+ "name": "signatureType",
1067
+ "type": "uint8"
1068
+ },
1069
+ {
1070
+ "internalType": "bytes",
1071
+ "name": "signature",
1072
+ "type": "bytes"
1073
+ }
1074
+ ],
1075
+ "internalType": "struct Order",
1076
+ "name": "order",
1077
+ "type": "tuple"
1078
+ }
1079
+ ],
1080
+ "name": "hashOrder",
1081
+ "outputs": [
1082
+ {
1083
+ "internalType": "bytes32",
1084
+ "name": "",
1085
+ "type": "bytes32"
1086
+ }
1087
+ ],
1088
+ "stateMutability": "view",
1089
+ "type": "function"
1090
+ },
1091
+ {
1092
+ "inputs": [ ],
1093
+ "name": "incrementNonce",
1094
+ "outputs": [ ],
1095
+ "stateMutability": "nonpayable",
1096
+ "type": "function"
1097
+ },
1098
+ {
1099
+ "inputs": [
1100
+ {
1101
+ "internalType": "address",
1102
+ "name": "usr",
1103
+ "type": "address"
1104
+ }
1105
+ ],
1106
+ "name": "isAdmin",
1107
+ "outputs": [
1108
+ {
1109
+ "internalType": "bool",
1110
+ "name": "",
1111
+ "type": "bool"
1112
+ }
1113
+ ],
1114
+ "stateMutability": "view",
1115
+ "type": "function"
1116
+ },
1117
+ {
1118
+ "inputs": [
1119
+ {
1120
+ "internalType": "address",
1121
+ "name": "usr",
1122
+ "type": "address"
1123
+ }
1124
+ ],
1125
+ "name": "isOperator",
1126
+ "outputs": [
1127
+ {
1128
+ "internalType": "bool",
1129
+ "name": "",
1130
+ "type": "bool"
1131
+ }
1132
+ ],
1133
+ "stateMutability": "view",
1134
+ "type": "function"
1135
+ },
1136
+ {
1137
+ "inputs": [
1138
+ {
1139
+ "internalType": "address",
1140
+ "name": "usr",
1141
+ "type": "address"
1142
+ },
1143
+ {
1144
+ "internalType": "uint256",
1145
+ "name": "nonce",
1146
+ "type": "uint256"
1147
+ }
1148
+ ],
1149
+ "name": "isValidNonce",
1150
+ "outputs": [
1151
+ {
1152
+ "internalType": "bool",
1153
+ "name": "",
1154
+ "type": "bool"
1155
+ }
1156
+ ],
1157
+ "stateMutability": "view",
1158
+ "type": "function"
1159
+ },
1160
+ {
1161
+ "inputs": [
1162
+ {
1163
+ "components": [
1164
+ {
1165
+ "internalType": "uint256",
1166
+ "name": "salt",
1167
+ "type": "uint256"
1168
+ },
1169
+ {
1170
+ "internalType": "address",
1171
+ "name": "maker",
1172
+ "type": "address"
1173
+ },
1174
+ {
1175
+ "internalType": "address",
1176
+ "name": "signer",
1177
+ "type": "address"
1178
+ },
1179
+ {
1180
+ "internalType": "address",
1181
+ "name": "taker",
1182
+ "type": "address"
1183
+ },
1184
+ {
1185
+ "internalType": "uint256",
1186
+ "name": "tokenId",
1187
+ "type": "uint256"
1188
+ },
1189
+ {
1190
+ "internalType": "uint256",
1191
+ "name": "makerAmount",
1192
+ "type": "uint256"
1193
+ },
1194
+ {
1195
+ "internalType": "uint256",
1196
+ "name": "takerAmount",
1197
+ "type": "uint256"
1198
+ },
1199
+ {
1200
+ "internalType": "uint256",
1201
+ "name": "expiration",
1202
+ "type": "uint256"
1203
+ },
1204
+ {
1205
+ "internalType": "uint256",
1206
+ "name": "nonce",
1207
+ "type": "uint256"
1208
+ },
1209
+ {
1210
+ "internalType": "uint256",
1211
+ "name": "feeRateBps",
1212
+ "type": "uint256"
1213
+ },
1214
+ {
1215
+ "internalType": "enum Side",
1216
+ "name": "side",
1217
+ "type": "uint8"
1218
+ },
1219
+ {
1220
+ "internalType": "enum SignatureType",
1221
+ "name": "signatureType",
1222
+ "type": "uint8"
1223
+ },
1224
+ {
1225
+ "internalType": "bytes",
1226
+ "name": "signature",
1227
+ "type": "bytes"
1228
+ }
1229
+ ],
1230
+ "internalType": "struct Order",
1231
+ "name": "takerOrder",
1232
+ "type": "tuple"
1233
+ },
1234
+ {
1235
+ "components": [
1236
+ {
1237
+ "internalType": "uint256",
1238
+ "name": "salt",
1239
+ "type": "uint256"
1240
+ },
1241
+ {
1242
+ "internalType": "address",
1243
+ "name": "maker",
1244
+ "type": "address"
1245
+ },
1246
+ {
1247
+ "internalType": "address",
1248
+ "name": "signer",
1249
+ "type": "address"
1250
+ },
1251
+ {
1252
+ "internalType": "address",
1253
+ "name": "taker",
1254
+ "type": "address"
1255
+ },
1256
+ {
1257
+ "internalType": "uint256",
1258
+ "name": "tokenId",
1259
+ "type": "uint256"
1260
+ },
1261
+ {
1262
+ "internalType": "uint256",
1263
+ "name": "makerAmount",
1264
+ "type": "uint256"
1265
+ },
1266
+ {
1267
+ "internalType": "uint256",
1268
+ "name": "takerAmount",
1269
+ "type": "uint256"
1270
+ },
1271
+ {
1272
+ "internalType": "uint256",
1273
+ "name": "expiration",
1274
+ "type": "uint256"
1275
+ },
1276
+ {
1277
+ "internalType": "uint256",
1278
+ "name": "nonce",
1279
+ "type": "uint256"
1280
+ },
1281
+ {
1282
+ "internalType": "uint256",
1283
+ "name": "feeRateBps",
1284
+ "type": "uint256"
1285
+ },
1286
+ {
1287
+ "internalType": "enum Side",
1288
+ "name": "side",
1289
+ "type": "uint8"
1290
+ },
1291
+ {
1292
+ "internalType": "enum SignatureType",
1293
+ "name": "signatureType",
1294
+ "type": "uint8"
1295
+ },
1296
+ {
1297
+ "internalType": "bytes",
1298
+ "name": "signature",
1299
+ "type": "bytes"
1300
+ }
1301
+ ],
1302
+ "internalType": "struct Order[]",
1303
+ "name": "makerOrders",
1304
+ "type": "tuple[]"
1305
+ },
1306
+ {
1307
+ "internalType": "uint256",
1308
+ "name": "takerFillAmount",
1309
+ "type": "uint256"
1310
+ },
1311
+ {
1312
+ "internalType": "uint256[]",
1313
+ "name": "makerFillAmounts",
1314
+ "type": "uint256[]"
1315
+ }
1316
+ ],
1317
+ "name": "matchOrders",
1318
+ "outputs": [ ],
1319
+ "stateMutability": "nonpayable",
1320
+ "type": "function"
1321
+ },
1322
+ {
1323
+ "inputs": [
1324
+ {
1325
+ "internalType": "address",
1326
+ "name": "",
1327
+ "type": "address"
1328
+ }
1329
+ ],
1330
+ "name": "nonces",
1331
+ "outputs": [
1332
+ {
1333
+ "internalType": "uint256",
1334
+ "name": "",
1335
+ "type": "uint256"
1336
+ }
1337
+ ],
1338
+ "stateMutability": "view",
1339
+ "type": "function"
1340
+ },
1341
+ {
1342
+ "inputs": [
1343
+ {
1344
+ "internalType": "address",
1345
+ "name": "",
1346
+ "type": "address"
1347
+ },
1348
+ {
1349
+ "internalType": "address",
1350
+ "name": "",
1351
+ "type": "address"
1352
+ },
1353
+ {
1354
+ "internalType": "uint256[]",
1355
+ "name": "",
1356
+ "type": "uint256[]"
1357
+ },
1358
+ {
1359
+ "internalType": "uint256[]",
1360
+ "name": "",
1361
+ "type": "uint256[]"
1362
+ },
1363
+ {
1364
+ "internalType": "bytes",
1365
+ "name": "",
1366
+ "type": "bytes"
1367
+ }
1368
+ ],
1369
+ "name": "onERC1155BatchReceived",
1370
+ "outputs": [
1371
+ {
1372
+ "internalType": "bytes4",
1373
+ "name": "",
1374
+ "type": "bytes4"
1375
+ }
1376
+ ],
1377
+ "stateMutability": "nonpayable",
1378
+ "type": "function"
1379
+ },
1380
+ {
1381
+ "inputs": [
1382
+ {
1383
+ "internalType": "address",
1384
+ "name": "",
1385
+ "type": "address"
1386
+ },
1387
+ {
1388
+ "internalType": "address",
1389
+ "name": "",
1390
+ "type": "address"
1391
+ },
1392
+ {
1393
+ "internalType": "uint256",
1394
+ "name": "",
1395
+ "type": "uint256"
1396
+ },
1397
+ {
1398
+ "internalType": "uint256",
1399
+ "name": "",
1400
+ "type": "uint256"
1401
+ },
1402
+ {
1403
+ "internalType": "bytes",
1404
+ "name": "",
1405
+ "type": "bytes"
1406
+ }
1407
+ ],
1408
+ "name": "onERC1155Received",
1409
+ "outputs": [
1410
+ {
1411
+ "internalType": "bytes4",
1412
+ "name": "",
1413
+ "type": "bytes4"
1414
+ }
1415
+ ],
1416
+ "stateMutability": "nonpayable",
1417
+ "type": "function"
1418
+ },
1419
+ {
1420
+ "inputs": [
1421
+ {
1422
+ "internalType": "address",
1423
+ "name": "",
1424
+ "type": "address"
1425
+ }
1426
+ ],
1427
+ "name": "operators",
1428
+ "outputs": [
1429
+ {
1430
+ "internalType": "uint256",
1431
+ "name": "",
1432
+ "type": "uint256"
1433
+ }
1434
+ ],
1435
+ "stateMutability": "view",
1436
+ "type": "function"
1437
+ },
1438
+ {
1439
+ "inputs": [
1440
+ {
1441
+ "internalType": "bytes32",
1442
+ "name": "",
1443
+ "type": "bytes32"
1444
+ }
1445
+ ],
1446
+ "name": "orderStatus",
1447
+ "outputs": [
1448
+ {
1449
+ "internalType": "bool",
1450
+ "name": "isFilledOrCancelled",
1451
+ "type": "bool"
1452
+ },
1453
+ {
1454
+ "internalType": "uint256",
1455
+ "name": "remaining",
1456
+ "type": "uint256"
1457
+ }
1458
+ ],
1459
+ "stateMutability": "view",
1460
+ "type": "function"
1461
+ },
1462
+ {
1463
+ "inputs": [ ],
1464
+ "name": "parentCollectionId",
1465
+ "outputs": [
1466
+ {
1467
+ "internalType": "bytes32",
1468
+ "name": "",
1469
+ "type": "bytes32"
1470
+ }
1471
+ ],
1472
+ "stateMutability": "view",
1473
+ "type": "function"
1474
+ },
1475
+ {
1476
+ "inputs": [ ],
1477
+ "name": "pauseTrading",
1478
+ "outputs": [ ],
1479
+ "stateMutability": "nonpayable",
1480
+ "type": "function"
1481
+ },
1482
+ {
1483
+ "inputs": [ ],
1484
+ "name": "paused",
1485
+ "outputs": [
1486
+ {
1487
+ "internalType": "bool",
1488
+ "name": "",
1489
+ "type": "bool"
1490
+ }
1491
+ ],
1492
+ "stateMutability": "view",
1493
+ "type": "function"
1494
+ },
1495
+ {
1496
+ "inputs": [ ],
1497
+ "name": "proxyFactory",
1498
+ "outputs": [
1499
+ {
1500
+ "internalType": "address",
1501
+ "name": "",
1502
+ "type": "address"
1503
+ }
1504
+ ],
1505
+ "stateMutability": "view",
1506
+ "type": "function"
1507
+ },
1508
+ {
1509
+ "inputs": [
1510
+ {
1511
+ "internalType": "uint256",
1512
+ "name": "token",
1513
+ "type": "uint256"
1514
+ },
1515
+ {
1516
+ "internalType": "uint256",
1517
+ "name": "complement",
1518
+ "type": "uint256"
1519
+ },
1520
+ {
1521
+ "internalType": "bytes32",
1522
+ "name": "conditionId",
1523
+ "type": "bytes32"
1524
+ }
1525
+ ],
1526
+ "name": "registerToken",
1527
+ "outputs": [ ],
1528
+ "stateMutability": "nonpayable",
1529
+ "type": "function"
1530
+ },
1531
+ {
1532
+ "inputs": [
1533
+ {
1534
+ "internalType": "uint256",
1535
+ "name": "",
1536
+ "type": "uint256"
1537
+ }
1538
+ ],
1539
+ "name": "registry",
1540
+ "outputs": [
1541
+ {
1542
+ "internalType": "uint256",
1543
+ "name": "complement",
1544
+ "type": "uint256"
1545
+ },
1546
+ {
1547
+ "internalType": "bytes32",
1548
+ "name": "conditionId",
1549
+ "type": "bytes32"
1550
+ }
1551
+ ],
1552
+ "stateMutability": "view",
1553
+ "type": "function"
1554
+ },
1555
+ {
1556
+ "inputs": [
1557
+ {
1558
+ "internalType": "address",
1559
+ "name": "admin",
1560
+ "type": "address"
1561
+ }
1562
+ ],
1563
+ "name": "removeAdmin",
1564
+ "outputs": [ ],
1565
+ "stateMutability": "nonpayable",
1566
+ "type": "function"
1567
+ },
1568
+ {
1569
+ "inputs": [
1570
+ {
1571
+ "internalType": "address",
1572
+ "name": "operator",
1573
+ "type": "address"
1574
+ }
1575
+ ],
1576
+ "name": "removeOperator",
1577
+ "outputs": [ ],
1578
+ "stateMutability": "nonpayable",
1579
+ "type": "function"
1580
+ },
1581
+ {
1582
+ "inputs": [ ],
1583
+ "name": "renounceAdminRole",
1584
+ "outputs": [ ],
1585
+ "stateMutability": "nonpayable",
1586
+ "type": "function"
1587
+ },
1588
+ {
1589
+ "inputs": [ ],
1590
+ "name": "renounceOperatorRole",
1591
+ "outputs": [ ],
1592
+ "stateMutability": "nonpayable",
1593
+ "type": "function"
1594
+ },
1595
+ {
1596
+ "inputs": [ ],
1597
+ "name": "safeFactory",
1598
+ "outputs": [
1599
+ {
1600
+ "internalType": "address",
1601
+ "name": "",
1602
+ "type": "address"
1603
+ }
1604
+ ],
1605
+ "stateMutability": "view",
1606
+ "type": "function"
1607
+ },
1608
+ {
1609
+ "inputs": [
1610
+ {
1611
+ "internalType": "address",
1612
+ "name": "_newProxyFactory",
1613
+ "type": "address"
1614
+ }
1615
+ ],
1616
+ "name": "setProxyFactory",
1617
+ "outputs": [ ],
1618
+ "stateMutability": "nonpayable",
1619
+ "type": "function"
1620
+ },
1621
+ {
1622
+ "inputs": [
1623
+ {
1624
+ "internalType": "address",
1625
+ "name": "_newSafeFactory",
1626
+ "type": "address"
1627
+ }
1628
+ ],
1629
+ "name": "setSafeFactory",
1630
+ "outputs": [ ],
1631
+ "stateMutability": "nonpayable",
1632
+ "type": "function"
1633
+ },
1634
+ {
1635
+ "inputs": [
1636
+ {
1637
+ "internalType": "bytes4",
1638
+ "name": "interfaceId",
1639
+ "type": "bytes4"
1640
+ }
1641
+ ],
1642
+ "name": "supportsInterface",
1643
+ "outputs": [
1644
+ {
1645
+ "internalType": "bool",
1646
+ "name": "",
1647
+ "type": "bool"
1648
+ }
1649
+ ],
1650
+ "stateMutability": "view",
1651
+ "type": "function"
1652
+ },
1653
+ {
1654
+ "inputs": [ ],
1655
+ "name": "unpauseTrading",
1656
+ "outputs": [ ],
1657
+ "stateMutability": "nonpayable",
1658
+ "type": "function"
1659
+ },
1660
+ {
1661
+ "inputs": [
1662
+ {
1663
+ "internalType": "uint256",
1664
+ "name": "token",
1665
+ "type": "uint256"
1666
+ },
1667
+ {
1668
+ "internalType": "uint256",
1669
+ "name": "complement",
1670
+ "type": "uint256"
1671
+ }
1672
+ ],
1673
+ "name": "validateComplement",
1674
+ "outputs": [ ],
1675
+ "stateMutability": "view",
1676
+ "type": "function"
1677
+ },
1678
+ {
1679
+ "inputs": [
1680
+ {
1681
+ "components": [
1682
+ {
1683
+ "internalType": "uint256",
1684
+ "name": "salt",
1685
+ "type": "uint256"
1686
+ },
1687
+ {
1688
+ "internalType": "address",
1689
+ "name": "maker",
1690
+ "type": "address"
1691
+ },
1692
+ {
1693
+ "internalType": "address",
1694
+ "name": "signer",
1695
+ "type": "address"
1696
+ },
1697
+ {
1698
+ "internalType": "address",
1699
+ "name": "taker",
1700
+ "type": "address"
1701
+ },
1702
+ {
1703
+ "internalType": "uint256",
1704
+ "name": "tokenId",
1705
+ "type": "uint256"
1706
+ },
1707
+ {
1708
+ "internalType": "uint256",
1709
+ "name": "makerAmount",
1710
+ "type": "uint256"
1711
+ },
1712
+ {
1713
+ "internalType": "uint256",
1714
+ "name": "takerAmount",
1715
+ "type": "uint256"
1716
+ },
1717
+ {
1718
+ "internalType": "uint256",
1719
+ "name": "expiration",
1720
+ "type": "uint256"
1721
+ },
1722
+ {
1723
+ "internalType": "uint256",
1724
+ "name": "nonce",
1725
+ "type": "uint256"
1726
+ },
1727
+ {
1728
+ "internalType": "uint256",
1729
+ "name": "feeRateBps",
1730
+ "type": "uint256"
1731
+ },
1732
+ {
1733
+ "internalType": "enum Side",
1734
+ "name": "side",
1735
+ "type": "uint8"
1736
+ },
1737
+ {
1738
+ "internalType": "enum SignatureType",
1739
+ "name": "signatureType",
1740
+ "type": "uint8"
1741
+ },
1742
+ {
1743
+ "internalType": "bytes",
1744
+ "name": "signature",
1745
+ "type": "bytes"
1746
+ }
1747
+ ],
1748
+ "internalType": "struct Order",
1749
+ "name": "order",
1750
+ "type": "tuple"
1751
+ }
1752
+ ],
1753
+ "name": "validateOrder",
1754
+ "outputs": [ ],
1755
+ "stateMutability": "view",
1756
+ "type": "function"
1757
+ },
1758
+ {
1759
+ "inputs": [
1760
+ {
1761
+ "internalType": "bytes32",
1762
+ "name": "orderHash",
1763
+ "type": "bytes32"
1764
+ },
1765
+ {
1766
+ "components": [
1767
+ {
1768
+ "internalType": "uint256",
1769
+ "name": "salt",
1770
+ "type": "uint256"
1771
+ },
1772
+ {
1773
+ "internalType": "address",
1774
+ "name": "maker",
1775
+ "type": "address"
1776
+ },
1777
+ {
1778
+ "internalType": "address",
1779
+ "name": "signer",
1780
+ "type": "address"
1781
+ },
1782
+ {
1783
+ "internalType": "address",
1784
+ "name": "taker",
1785
+ "type": "address"
1786
+ },
1787
+ {
1788
+ "internalType": "uint256",
1789
+ "name": "tokenId",
1790
+ "type": "uint256"
1791
+ },
1792
+ {
1793
+ "internalType": "uint256",
1794
+ "name": "makerAmount",
1795
+ "type": "uint256"
1796
+ },
1797
+ {
1798
+ "internalType": "uint256",
1799
+ "name": "takerAmount",
1800
+ "type": "uint256"
1801
+ },
1802
+ {
1803
+ "internalType": "uint256",
1804
+ "name": "expiration",
1805
+ "type": "uint256"
1806
+ },
1807
+ {
1808
+ "internalType": "uint256",
1809
+ "name": "nonce",
1810
+ "type": "uint256"
1811
+ },
1812
+ {
1813
+ "internalType": "uint256",
1814
+ "name": "feeRateBps",
1815
+ "type": "uint256"
1816
+ },
1817
+ {
1818
+ "internalType": "enum Side",
1819
+ "name": "side",
1820
+ "type": "uint8"
1821
+ },
1822
+ {
1823
+ "internalType": "enum SignatureType",
1824
+ "name": "signatureType",
1825
+ "type": "uint8"
1826
+ },
1827
+ {
1828
+ "internalType": "bytes",
1829
+ "name": "signature",
1830
+ "type": "bytes"
1831
+ }
1832
+ ],
1833
+ "internalType": "struct Order",
1834
+ "name": "order",
1835
+ "type": "tuple"
1836
+ }
1837
+ ],
1838
+ "name": "validateOrderSignature",
1839
+ "outputs": [ ],
1840
+ "stateMutability": "view",
1841
+ "type": "function"
1842
+ },
1843
+ {
1844
+ "inputs": [
1845
+ {
1846
+ "internalType": "uint256",
1847
+ "name": "tokenId",
1848
+ "type": "uint256"
1849
+ }
1850
+ ],
1851
+ "name": "validateTokenId",
1852
+ "outputs": [ ],
1853
+ "stateMutability": "view",
1854
+ "type": "function"
1855
+ }
1856
+ ]