@merkl/contracts 0.7.5 → 0.7.7

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.
@@ -0,0 +1,1041 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { Contract, utils } from "ethers";
5
+ const _abi = [
6
+ {
7
+ inputs: [],
8
+ stateMutability: "nonpayable",
9
+ type: "constructor",
10
+ },
11
+ {
12
+ inputs: [],
13
+ name: "AccessDenied",
14
+ type: "error",
15
+ },
16
+ {
17
+ inputs: [],
18
+ name: "AlreadyRevoked",
19
+ type: "error",
20
+ },
21
+ {
22
+ inputs: [],
23
+ name: "AlreadyRevokedOffchain",
24
+ type: "error",
25
+ },
26
+ {
27
+ inputs: [],
28
+ name: "AlreadyTimestamped",
29
+ type: "error",
30
+ },
31
+ {
32
+ inputs: [],
33
+ name: "InsufficientValue",
34
+ type: "error",
35
+ },
36
+ {
37
+ inputs: [],
38
+ name: "InvalidAttestation",
39
+ type: "error",
40
+ },
41
+ {
42
+ inputs: [],
43
+ name: "InvalidAttestations",
44
+ type: "error",
45
+ },
46
+ {
47
+ inputs: [],
48
+ name: "InvalidExpirationTime",
49
+ type: "error",
50
+ },
51
+ {
52
+ inputs: [],
53
+ name: "InvalidLength",
54
+ type: "error",
55
+ },
56
+ {
57
+ inputs: [],
58
+ name: "InvalidOffset",
59
+ type: "error",
60
+ },
61
+ {
62
+ inputs: [],
63
+ name: "InvalidRegistry",
64
+ type: "error",
65
+ },
66
+ {
67
+ inputs: [],
68
+ name: "InvalidRevocation",
69
+ type: "error",
70
+ },
71
+ {
72
+ inputs: [],
73
+ name: "InvalidRevocations",
74
+ type: "error",
75
+ },
76
+ {
77
+ inputs: [],
78
+ name: "InvalidSchema",
79
+ type: "error",
80
+ },
81
+ {
82
+ inputs: [],
83
+ name: "InvalidSignature",
84
+ type: "error",
85
+ },
86
+ {
87
+ inputs: [],
88
+ name: "InvalidVerifier",
89
+ type: "error",
90
+ },
91
+ {
92
+ inputs: [],
93
+ name: "Irrevocable",
94
+ type: "error",
95
+ },
96
+ {
97
+ inputs: [],
98
+ name: "NotFound",
99
+ type: "error",
100
+ },
101
+ {
102
+ inputs: [],
103
+ name: "NotPayable",
104
+ type: "error",
105
+ },
106
+ {
107
+ inputs: [],
108
+ name: "WrongSchema",
109
+ type: "error",
110
+ },
111
+ {
112
+ anonymous: false,
113
+ inputs: [
114
+ {
115
+ indexed: true,
116
+ internalType: "address",
117
+ name: "recipient",
118
+ type: "address",
119
+ },
120
+ {
121
+ indexed: true,
122
+ internalType: "address",
123
+ name: "attester",
124
+ type: "address",
125
+ },
126
+ {
127
+ indexed: false,
128
+ internalType: "bytes32",
129
+ name: "uid",
130
+ type: "bytes32",
131
+ },
132
+ {
133
+ indexed: true,
134
+ internalType: "bytes32",
135
+ name: "schema",
136
+ type: "bytes32",
137
+ },
138
+ ],
139
+ name: "Attested",
140
+ type: "event",
141
+ },
142
+ {
143
+ anonymous: false,
144
+ inputs: [
145
+ {
146
+ indexed: true,
147
+ internalType: "address",
148
+ name: "recipient",
149
+ type: "address",
150
+ },
151
+ {
152
+ indexed: true,
153
+ internalType: "address",
154
+ name: "attester",
155
+ type: "address",
156
+ },
157
+ {
158
+ indexed: false,
159
+ internalType: "bytes32",
160
+ name: "uid",
161
+ type: "bytes32",
162
+ },
163
+ {
164
+ indexed: true,
165
+ internalType: "bytes32",
166
+ name: "schema",
167
+ type: "bytes32",
168
+ },
169
+ ],
170
+ name: "Revoked",
171
+ type: "event",
172
+ },
173
+ {
174
+ anonymous: false,
175
+ inputs: [
176
+ {
177
+ indexed: true,
178
+ internalType: "address",
179
+ name: "revoker",
180
+ type: "address",
181
+ },
182
+ {
183
+ indexed: true,
184
+ internalType: "bytes32",
185
+ name: "data",
186
+ type: "bytes32",
187
+ },
188
+ {
189
+ indexed: true,
190
+ internalType: "uint64",
191
+ name: "timestamp",
192
+ type: "uint64",
193
+ },
194
+ ],
195
+ name: "RevokedOffchain",
196
+ type: "event",
197
+ },
198
+ {
199
+ anonymous: false,
200
+ inputs: [
201
+ {
202
+ indexed: true,
203
+ internalType: "bytes32",
204
+ name: "data",
205
+ type: "bytes32",
206
+ },
207
+ {
208
+ indexed: true,
209
+ internalType: "uint64",
210
+ name: "timestamp",
211
+ type: "uint64",
212
+ },
213
+ ],
214
+ name: "Timestamped",
215
+ type: "event",
216
+ },
217
+ {
218
+ inputs: [
219
+ {
220
+ components: [
221
+ {
222
+ internalType: "bytes32",
223
+ name: "schema",
224
+ type: "bytes32",
225
+ },
226
+ {
227
+ components: [
228
+ {
229
+ internalType: "address",
230
+ name: "recipient",
231
+ type: "address",
232
+ },
233
+ {
234
+ internalType: "uint64",
235
+ name: "expirationTime",
236
+ type: "uint64",
237
+ },
238
+ {
239
+ internalType: "bool",
240
+ name: "revocable",
241
+ type: "bool",
242
+ },
243
+ {
244
+ internalType: "bytes32",
245
+ name: "refUID",
246
+ type: "bytes32",
247
+ },
248
+ {
249
+ internalType: "bytes",
250
+ name: "data",
251
+ type: "bytes",
252
+ },
253
+ {
254
+ internalType: "uint256",
255
+ name: "value",
256
+ type: "uint256",
257
+ },
258
+ ],
259
+ internalType: "struct AttestationRequestData",
260
+ name: "data",
261
+ type: "tuple",
262
+ },
263
+ ],
264
+ internalType: "struct AttestationRequest",
265
+ name: "request",
266
+ type: "tuple",
267
+ },
268
+ ],
269
+ name: "attest",
270
+ outputs: [
271
+ {
272
+ internalType: "bytes32",
273
+ name: "",
274
+ type: "bytes32",
275
+ },
276
+ ],
277
+ stateMutability: "payable",
278
+ type: "function",
279
+ },
280
+ {
281
+ inputs: [
282
+ {
283
+ components: [
284
+ {
285
+ internalType: "bytes32",
286
+ name: "schema",
287
+ type: "bytes32",
288
+ },
289
+ {
290
+ components: [
291
+ {
292
+ internalType: "address",
293
+ name: "recipient",
294
+ type: "address",
295
+ },
296
+ {
297
+ internalType: "uint64",
298
+ name: "expirationTime",
299
+ type: "uint64",
300
+ },
301
+ {
302
+ internalType: "bool",
303
+ name: "revocable",
304
+ type: "bool",
305
+ },
306
+ {
307
+ internalType: "bytes32",
308
+ name: "refUID",
309
+ type: "bytes32",
310
+ },
311
+ {
312
+ internalType: "bytes",
313
+ name: "data",
314
+ type: "bytes",
315
+ },
316
+ {
317
+ internalType: "uint256",
318
+ name: "value",
319
+ type: "uint256",
320
+ },
321
+ ],
322
+ internalType: "struct AttestationRequestData",
323
+ name: "data",
324
+ type: "tuple",
325
+ },
326
+ {
327
+ components: [
328
+ {
329
+ internalType: "uint8",
330
+ name: "v",
331
+ type: "uint8",
332
+ },
333
+ {
334
+ internalType: "bytes32",
335
+ name: "r",
336
+ type: "bytes32",
337
+ },
338
+ {
339
+ internalType: "bytes32",
340
+ name: "s",
341
+ type: "bytes32",
342
+ },
343
+ ],
344
+ internalType: "struct EIP712Signature",
345
+ name: "signature",
346
+ type: "tuple",
347
+ },
348
+ {
349
+ internalType: "address",
350
+ name: "attester",
351
+ type: "address",
352
+ },
353
+ ],
354
+ internalType: "struct DelegatedAttestationRequest",
355
+ name: "delegatedRequest",
356
+ type: "tuple",
357
+ },
358
+ ],
359
+ name: "attestByDelegation",
360
+ outputs: [
361
+ {
362
+ internalType: "bytes32",
363
+ name: "",
364
+ type: "bytes32",
365
+ },
366
+ ],
367
+ stateMutability: "payable",
368
+ type: "function",
369
+ },
370
+ {
371
+ inputs: [],
372
+ name: "getAttestTypeHash",
373
+ outputs: [
374
+ {
375
+ internalType: "bytes32",
376
+ name: "",
377
+ type: "bytes32",
378
+ },
379
+ ],
380
+ stateMutability: "pure",
381
+ type: "function",
382
+ },
383
+ {
384
+ inputs: [
385
+ {
386
+ internalType: "bytes32",
387
+ name: "uid",
388
+ type: "bytes32",
389
+ },
390
+ ],
391
+ name: "getAttestation",
392
+ outputs: [
393
+ {
394
+ components: [
395
+ {
396
+ internalType: "bytes32",
397
+ name: "uid",
398
+ type: "bytes32",
399
+ },
400
+ {
401
+ internalType: "bytes32",
402
+ name: "schema",
403
+ type: "bytes32",
404
+ },
405
+ {
406
+ internalType: "uint64",
407
+ name: "time",
408
+ type: "uint64",
409
+ },
410
+ {
411
+ internalType: "uint64",
412
+ name: "expirationTime",
413
+ type: "uint64",
414
+ },
415
+ {
416
+ internalType: "uint64",
417
+ name: "revocationTime",
418
+ type: "uint64",
419
+ },
420
+ {
421
+ internalType: "bytes32",
422
+ name: "refUID",
423
+ type: "bytes32",
424
+ },
425
+ {
426
+ internalType: "address",
427
+ name: "recipient",
428
+ type: "address",
429
+ },
430
+ {
431
+ internalType: "address",
432
+ name: "attester",
433
+ type: "address",
434
+ },
435
+ {
436
+ internalType: "bool",
437
+ name: "revocable",
438
+ type: "bool",
439
+ },
440
+ {
441
+ internalType: "bytes",
442
+ name: "data",
443
+ type: "bytes",
444
+ },
445
+ ],
446
+ internalType: "struct Attestation",
447
+ name: "",
448
+ type: "tuple",
449
+ },
450
+ ],
451
+ stateMutability: "view",
452
+ type: "function",
453
+ },
454
+ {
455
+ inputs: [],
456
+ name: "getDomainSeparator",
457
+ outputs: [
458
+ {
459
+ internalType: "bytes32",
460
+ name: "",
461
+ type: "bytes32",
462
+ },
463
+ ],
464
+ stateMutability: "view",
465
+ type: "function",
466
+ },
467
+ {
468
+ inputs: [],
469
+ name: "getName",
470
+ outputs: [
471
+ {
472
+ internalType: "string",
473
+ name: "",
474
+ type: "string",
475
+ },
476
+ ],
477
+ stateMutability: "view",
478
+ type: "function",
479
+ },
480
+ {
481
+ inputs: [
482
+ {
483
+ internalType: "address",
484
+ name: "account",
485
+ type: "address",
486
+ },
487
+ ],
488
+ name: "getNonce",
489
+ outputs: [
490
+ {
491
+ internalType: "uint256",
492
+ name: "",
493
+ type: "uint256",
494
+ },
495
+ ],
496
+ stateMutability: "view",
497
+ type: "function",
498
+ },
499
+ {
500
+ inputs: [
501
+ {
502
+ internalType: "address",
503
+ name: "revoker",
504
+ type: "address",
505
+ },
506
+ {
507
+ internalType: "bytes32",
508
+ name: "data",
509
+ type: "bytes32",
510
+ },
511
+ ],
512
+ name: "getRevokeOffchain",
513
+ outputs: [
514
+ {
515
+ internalType: "uint64",
516
+ name: "",
517
+ type: "uint64",
518
+ },
519
+ ],
520
+ stateMutability: "view",
521
+ type: "function",
522
+ },
523
+ {
524
+ inputs: [],
525
+ name: "getRevokeTypeHash",
526
+ outputs: [
527
+ {
528
+ internalType: "bytes32",
529
+ name: "",
530
+ type: "bytes32",
531
+ },
532
+ ],
533
+ stateMutability: "pure",
534
+ type: "function",
535
+ },
536
+ {
537
+ inputs: [],
538
+ name: "getSchemaRegistry",
539
+ outputs: [
540
+ {
541
+ internalType: "contract ISchemaRegistry",
542
+ name: "",
543
+ type: "address",
544
+ },
545
+ ],
546
+ stateMutability: "pure",
547
+ type: "function",
548
+ },
549
+ {
550
+ inputs: [
551
+ {
552
+ internalType: "bytes32",
553
+ name: "data",
554
+ type: "bytes32",
555
+ },
556
+ ],
557
+ name: "getTimestamp",
558
+ outputs: [
559
+ {
560
+ internalType: "uint64",
561
+ name: "",
562
+ type: "uint64",
563
+ },
564
+ ],
565
+ stateMutability: "view",
566
+ type: "function",
567
+ },
568
+ {
569
+ inputs: [
570
+ {
571
+ internalType: "bytes32",
572
+ name: "uid",
573
+ type: "bytes32",
574
+ },
575
+ ],
576
+ name: "isAttestationValid",
577
+ outputs: [
578
+ {
579
+ internalType: "bool",
580
+ name: "",
581
+ type: "bool",
582
+ },
583
+ ],
584
+ stateMutability: "view",
585
+ type: "function",
586
+ },
587
+ {
588
+ inputs: [
589
+ {
590
+ components: [
591
+ {
592
+ internalType: "bytes32",
593
+ name: "schema",
594
+ type: "bytes32",
595
+ },
596
+ {
597
+ components: [
598
+ {
599
+ internalType: "address",
600
+ name: "recipient",
601
+ type: "address",
602
+ },
603
+ {
604
+ internalType: "uint64",
605
+ name: "expirationTime",
606
+ type: "uint64",
607
+ },
608
+ {
609
+ internalType: "bool",
610
+ name: "revocable",
611
+ type: "bool",
612
+ },
613
+ {
614
+ internalType: "bytes32",
615
+ name: "refUID",
616
+ type: "bytes32",
617
+ },
618
+ {
619
+ internalType: "bytes",
620
+ name: "data",
621
+ type: "bytes",
622
+ },
623
+ {
624
+ internalType: "uint256",
625
+ name: "value",
626
+ type: "uint256",
627
+ },
628
+ ],
629
+ internalType: "struct AttestationRequestData[]",
630
+ name: "data",
631
+ type: "tuple[]",
632
+ },
633
+ ],
634
+ internalType: "struct MultiAttestationRequest[]",
635
+ name: "multiRequests",
636
+ type: "tuple[]",
637
+ },
638
+ ],
639
+ name: "multiAttest",
640
+ outputs: [
641
+ {
642
+ internalType: "bytes32[]",
643
+ name: "",
644
+ type: "bytes32[]",
645
+ },
646
+ ],
647
+ stateMutability: "payable",
648
+ type: "function",
649
+ },
650
+ {
651
+ inputs: [
652
+ {
653
+ components: [
654
+ {
655
+ internalType: "bytes32",
656
+ name: "schema",
657
+ type: "bytes32",
658
+ },
659
+ {
660
+ components: [
661
+ {
662
+ internalType: "address",
663
+ name: "recipient",
664
+ type: "address",
665
+ },
666
+ {
667
+ internalType: "uint64",
668
+ name: "expirationTime",
669
+ type: "uint64",
670
+ },
671
+ {
672
+ internalType: "bool",
673
+ name: "revocable",
674
+ type: "bool",
675
+ },
676
+ {
677
+ internalType: "bytes32",
678
+ name: "refUID",
679
+ type: "bytes32",
680
+ },
681
+ {
682
+ internalType: "bytes",
683
+ name: "data",
684
+ type: "bytes",
685
+ },
686
+ {
687
+ internalType: "uint256",
688
+ name: "value",
689
+ type: "uint256",
690
+ },
691
+ ],
692
+ internalType: "struct AttestationRequestData[]",
693
+ name: "data",
694
+ type: "tuple[]",
695
+ },
696
+ {
697
+ components: [
698
+ {
699
+ internalType: "uint8",
700
+ name: "v",
701
+ type: "uint8",
702
+ },
703
+ {
704
+ internalType: "bytes32",
705
+ name: "r",
706
+ type: "bytes32",
707
+ },
708
+ {
709
+ internalType: "bytes32",
710
+ name: "s",
711
+ type: "bytes32",
712
+ },
713
+ ],
714
+ internalType: "struct EIP712Signature[]",
715
+ name: "signatures",
716
+ type: "tuple[]",
717
+ },
718
+ {
719
+ internalType: "address",
720
+ name: "attester",
721
+ type: "address",
722
+ },
723
+ ],
724
+ internalType: "struct MultiDelegatedAttestationRequest[]",
725
+ name: "multiDelegatedRequests",
726
+ type: "tuple[]",
727
+ },
728
+ ],
729
+ name: "multiAttestByDelegation",
730
+ outputs: [
731
+ {
732
+ internalType: "bytes32[]",
733
+ name: "",
734
+ type: "bytes32[]",
735
+ },
736
+ ],
737
+ stateMutability: "payable",
738
+ type: "function",
739
+ },
740
+ {
741
+ inputs: [
742
+ {
743
+ components: [
744
+ {
745
+ internalType: "bytes32",
746
+ name: "schema",
747
+ type: "bytes32",
748
+ },
749
+ {
750
+ components: [
751
+ {
752
+ internalType: "bytes32",
753
+ name: "uid",
754
+ type: "bytes32",
755
+ },
756
+ {
757
+ internalType: "uint256",
758
+ name: "value",
759
+ type: "uint256",
760
+ },
761
+ ],
762
+ internalType: "struct RevocationRequestData[]",
763
+ name: "data",
764
+ type: "tuple[]",
765
+ },
766
+ ],
767
+ internalType: "struct MultiRevocationRequest[]",
768
+ name: "multiRequests",
769
+ type: "tuple[]",
770
+ },
771
+ ],
772
+ name: "multiRevoke",
773
+ outputs: [],
774
+ stateMutability: "payable",
775
+ type: "function",
776
+ },
777
+ {
778
+ inputs: [
779
+ {
780
+ components: [
781
+ {
782
+ internalType: "bytes32",
783
+ name: "schema",
784
+ type: "bytes32",
785
+ },
786
+ {
787
+ components: [
788
+ {
789
+ internalType: "bytes32",
790
+ name: "uid",
791
+ type: "bytes32",
792
+ },
793
+ {
794
+ internalType: "uint256",
795
+ name: "value",
796
+ type: "uint256",
797
+ },
798
+ ],
799
+ internalType: "struct RevocationRequestData[]",
800
+ name: "data",
801
+ type: "tuple[]",
802
+ },
803
+ {
804
+ components: [
805
+ {
806
+ internalType: "uint8",
807
+ name: "v",
808
+ type: "uint8",
809
+ },
810
+ {
811
+ internalType: "bytes32",
812
+ name: "r",
813
+ type: "bytes32",
814
+ },
815
+ {
816
+ internalType: "bytes32",
817
+ name: "s",
818
+ type: "bytes32",
819
+ },
820
+ ],
821
+ internalType: "struct EIP712Signature[]",
822
+ name: "signatures",
823
+ type: "tuple[]",
824
+ },
825
+ {
826
+ internalType: "address",
827
+ name: "revoker",
828
+ type: "address",
829
+ },
830
+ ],
831
+ internalType: "struct MultiDelegatedRevocationRequest[]",
832
+ name: "multiDelegatedRequests",
833
+ type: "tuple[]",
834
+ },
835
+ ],
836
+ name: "multiRevokeByDelegation",
837
+ outputs: [],
838
+ stateMutability: "payable",
839
+ type: "function",
840
+ },
841
+ {
842
+ inputs: [
843
+ {
844
+ internalType: "bytes32[]",
845
+ name: "data",
846
+ type: "bytes32[]",
847
+ },
848
+ ],
849
+ name: "multiRevokeOffchain",
850
+ outputs: [
851
+ {
852
+ internalType: "uint64",
853
+ name: "",
854
+ type: "uint64",
855
+ },
856
+ ],
857
+ stateMutability: "nonpayable",
858
+ type: "function",
859
+ },
860
+ {
861
+ inputs: [
862
+ {
863
+ internalType: "bytes32[]",
864
+ name: "data",
865
+ type: "bytes32[]",
866
+ },
867
+ ],
868
+ name: "multiTimestamp",
869
+ outputs: [
870
+ {
871
+ internalType: "uint64",
872
+ name: "",
873
+ type: "uint64",
874
+ },
875
+ ],
876
+ stateMutability: "nonpayable",
877
+ type: "function",
878
+ },
879
+ {
880
+ inputs: [
881
+ {
882
+ components: [
883
+ {
884
+ internalType: "bytes32",
885
+ name: "schema",
886
+ type: "bytes32",
887
+ },
888
+ {
889
+ components: [
890
+ {
891
+ internalType: "bytes32",
892
+ name: "uid",
893
+ type: "bytes32",
894
+ },
895
+ {
896
+ internalType: "uint256",
897
+ name: "value",
898
+ type: "uint256",
899
+ },
900
+ ],
901
+ internalType: "struct RevocationRequestData",
902
+ name: "data",
903
+ type: "tuple",
904
+ },
905
+ ],
906
+ internalType: "struct RevocationRequest",
907
+ name: "request",
908
+ type: "tuple",
909
+ },
910
+ ],
911
+ name: "revoke",
912
+ outputs: [],
913
+ stateMutability: "payable",
914
+ type: "function",
915
+ },
916
+ {
917
+ inputs: [
918
+ {
919
+ components: [
920
+ {
921
+ internalType: "bytes32",
922
+ name: "schema",
923
+ type: "bytes32",
924
+ },
925
+ {
926
+ components: [
927
+ {
928
+ internalType: "bytes32",
929
+ name: "uid",
930
+ type: "bytes32",
931
+ },
932
+ {
933
+ internalType: "uint256",
934
+ name: "value",
935
+ type: "uint256",
936
+ },
937
+ ],
938
+ internalType: "struct RevocationRequestData",
939
+ name: "data",
940
+ type: "tuple",
941
+ },
942
+ {
943
+ components: [
944
+ {
945
+ internalType: "uint8",
946
+ name: "v",
947
+ type: "uint8",
948
+ },
949
+ {
950
+ internalType: "bytes32",
951
+ name: "r",
952
+ type: "bytes32",
953
+ },
954
+ {
955
+ internalType: "bytes32",
956
+ name: "s",
957
+ type: "bytes32",
958
+ },
959
+ ],
960
+ internalType: "struct EIP712Signature",
961
+ name: "signature",
962
+ type: "tuple",
963
+ },
964
+ {
965
+ internalType: "address",
966
+ name: "revoker",
967
+ type: "address",
968
+ },
969
+ ],
970
+ internalType: "struct DelegatedRevocationRequest",
971
+ name: "delegatedRequest",
972
+ type: "tuple",
973
+ },
974
+ ],
975
+ name: "revokeByDelegation",
976
+ outputs: [],
977
+ stateMutability: "payable",
978
+ type: "function",
979
+ },
980
+ {
981
+ inputs: [
982
+ {
983
+ internalType: "bytes32",
984
+ name: "data",
985
+ type: "bytes32",
986
+ },
987
+ ],
988
+ name: "revokeOffchain",
989
+ outputs: [
990
+ {
991
+ internalType: "uint64",
992
+ name: "",
993
+ type: "uint64",
994
+ },
995
+ ],
996
+ stateMutability: "nonpayable",
997
+ type: "function",
998
+ },
999
+ {
1000
+ inputs: [
1001
+ {
1002
+ internalType: "bytes32",
1003
+ name: "data",
1004
+ type: "bytes32",
1005
+ },
1006
+ ],
1007
+ name: "timestamp",
1008
+ outputs: [
1009
+ {
1010
+ internalType: "uint64",
1011
+ name: "",
1012
+ type: "uint64",
1013
+ },
1014
+ ],
1015
+ stateMutability: "nonpayable",
1016
+ type: "function",
1017
+ },
1018
+ {
1019
+ inputs: [],
1020
+ name: "version",
1021
+ outputs: [
1022
+ {
1023
+ internalType: "string",
1024
+ name: "",
1025
+ type: "string",
1026
+ },
1027
+ ],
1028
+ stateMutability: "view",
1029
+ type: "function",
1030
+ },
1031
+ ];
1032
+ export class EthereumAttestationService__factory {
1033
+ static abi = _abi;
1034
+ static createInterface() {
1035
+ return new utils.Interface(_abi);
1036
+ }
1037
+ static connect(address, signerOrProvider) {
1038
+ return new Contract(address, _abi, signerOrProvider);
1039
+ }
1040
+ }
1041
+ //# sourceMappingURL=EthereumAttestationService__factory.js.map