@merkl/contracts 1.38.17 → 1.38.18

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 (43) hide show
  1. package/dist/src/RoycoAccountant.d.ts +110 -0
  2. package/dist/src/RoycoAccountant.js +2 -0
  3. package/dist/src/RoycoAccountant.js.map +1 -0
  4. package/dist/src/RoycoFactory.d.ts +1087 -0
  5. package/dist/src/RoycoFactory.js +2 -0
  6. package/dist/src/RoycoFactory.js.map +1 -0
  7. package/dist/src/RoycoVaultTranche.d.ts +74 -0
  8. package/dist/src/RoycoVaultTranche.js +2 -0
  9. package/dist/src/RoycoVaultTranche.js.map +1 -0
  10. package/dist/src/RoycoYDM.d.ts +110 -0
  11. package/dist/src/RoycoYDM.js +2 -0
  12. package/dist/src/RoycoYDM.js.map +1 -0
  13. package/dist/src/factories/RoycoAccountant__factory.d.ts +103 -0
  14. package/dist/src/factories/RoycoAccountant__factory.js +136 -0
  15. package/dist/src/factories/RoycoAccountant__factory.js.map +1 -0
  16. package/dist/src/factories/RoycoFactory__factory.d.ts +1613 -0
  17. package/dist/src/factories/RoycoFactory__factory.js +2098 -0
  18. package/dist/src/factories/RoycoFactory__factory.js.map +1 -0
  19. package/dist/src/factories/RoycoVaultTranche__factory.d.ts +36 -0
  20. package/dist/src/factories/RoycoVaultTranche__factory.js +52 -0
  21. package/dist/src/factories/RoycoVaultTranche__factory.js.map +1 -0
  22. package/dist/src/factories/RoycoYDM__factory.d.ts +107 -0
  23. package/dist/src/factories/RoycoYDM__factory.js +142 -0
  24. package/dist/src/factories/RoycoYDM__factory.js.map +1 -0
  25. package/dist/src/factories/index.d.ts +4 -0
  26. package/dist/src/factories/index.js +4 -0
  27. package/dist/src/factories/index.js.map +1 -1
  28. package/dist/src/index.d.ts +8 -0
  29. package/dist/src/index.js +4 -0
  30. package/dist/src/index.js.map +1 -1
  31. package/dist/src/interfaces/RoycoAccountantInterface.d.ts +7 -0
  32. package/dist/src/interfaces/RoycoAccountantInterface.js +7 -0
  33. package/dist/src/interfaces/RoycoAccountantInterface.js.map +1 -0
  34. package/dist/src/interfaces/RoycoFactoryInterface.d.ts +7 -0
  35. package/dist/src/interfaces/RoycoFactoryInterface.js +7 -0
  36. package/dist/src/interfaces/RoycoFactoryInterface.js.map +1 -0
  37. package/dist/src/interfaces/RoycoVaultTrancheInterface.d.ts +7 -0
  38. package/dist/src/interfaces/RoycoVaultTrancheInterface.js +7 -0
  39. package/dist/src/interfaces/RoycoVaultTrancheInterface.js.map +1 -0
  40. package/dist/src/interfaces/RoycoYDMInterface.d.ts +7 -0
  41. package/dist/src/interfaces/RoycoYDMInterface.js +7 -0
  42. package/dist/src/interfaces/RoycoYDMInterface.js.map +1 -0
  43. package/package.json +1 -1
@@ -0,0 +1,2098 @@
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
+ {
14
+ internalType: "address",
15
+ name: "deployedAddress",
16
+ type: "address",
17
+ },
18
+ {
19
+ internalType: "bytes32",
20
+ name: "salt",
21
+ type: "bytes32",
22
+ },
23
+ ],
24
+ name: "ALREADY_DEPLOYED",
25
+ type: "error",
26
+ },
27
+ {
28
+ inputs: [
29
+ {
30
+ internalType: "bytes32",
31
+ name: "operationId",
32
+ type: "bytes32",
33
+ },
34
+ ],
35
+ name: "AccessManagerAlreadyScheduled",
36
+ type: "error",
37
+ },
38
+ {
39
+ inputs: [],
40
+ name: "AccessManagerBadConfirmation",
41
+ type: "error",
42
+ },
43
+ {
44
+ inputs: [
45
+ {
46
+ internalType: "bytes32",
47
+ name: "operationId",
48
+ type: "bytes32",
49
+ },
50
+ ],
51
+ name: "AccessManagerExpired",
52
+ type: "error",
53
+ },
54
+ {
55
+ inputs: [
56
+ {
57
+ internalType: "address",
58
+ name: "initialAdmin",
59
+ type: "address",
60
+ },
61
+ ],
62
+ name: "AccessManagerInvalidInitialAdmin",
63
+ type: "error",
64
+ },
65
+ {
66
+ inputs: [
67
+ {
68
+ internalType: "uint64",
69
+ name: "roleId",
70
+ type: "uint64",
71
+ },
72
+ ],
73
+ name: "AccessManagerLockedRole",
74
+ type: "error",
75
+ },
76
+ {
77
+ inputs: [
78
+ {
79
+ internalType: "bytes32",
80
+ name: "operationId",
81
+ type: "bytes32",
82
+ },
83
+ ],
84
+ name: "AccessManagerNotReady",
85
+ type: "error",
86
+ },
87
+ {
88
+ inputs: [
89
+ {
90
+ internalType: "bytes32",
91
+ name: "operationId",
92
+ type: "bytes32",
93
+ },
94
+ ],
95
+ name: "AccessManagerNotScheduled",
96
+ type: "error",
97
+ },
98
+ {
99
+ inputs: [
100
+ {
101
+ internalType: "address",
102
+ name: "msgsender",
103
+ type: "address",
104
+ },
105
+ {
106
+ internalType: "uint64",
107
+ name: "roleId",
108
+ type: "uint64",
109
+ },
110
+ ],
111
+ name: "AccessManagerUnauthorizedAccount",
112
+ type: "error",
113
+ },
114
+ {
115
+ inputs: [
116
+ {
117
+ internalType: "address",
118
+ name: "caller",
119
+ type: "address",
120
+ },
121
+ {
122
+ internalType: "address",
123
+ name: "target",
124
+ type: "address",
125
+ },
126
+ {
127
+ internalType: "bytes4",
128
+ name: "selector",
129
+ type: "bytes4",
130
+ },
131
+ ],
132
+ name: "AccessManagerUnauthorizedCall",
133
+ type: "error",
134
+ },
135
+ {
136
+ inputs: [
137
+ {
138
+ internalType: "address",
139
+ name: "msgsender",
140
+ type: "address",
141
+ },
142
+ {
143
+ internalType: "address",
144
+ name: "caller",
145
+ type: "address",
146
+ },
147
+ {
148
+ internalType: "address",
149
+ name: "target",
150
+ type: "address",
151
+ },
152
+ {
153
+ internalType: "bytes4",
154
+ name: "selector",
155
+ type: "bytes4",
156
+ },
157
+ ],
158
+ name: "AccessManagerUnauthorizedCancel",
159
+ type: "error",
160
+ },
161
+ {
162
+ inputs: [
163
+ {
164
+ internalType: "address",
165
+ name: "target",
166
+ type: "address",
167
+ },
168
+ ],
169
+ name: "AccessManagerUnauthorizedConsume",
170
+ type: "error",
171
+ },
172
+ {
173
+ inputs: [
174
+ {
175
+ internalType: "address",
176
+ name: "target",
177
+ type: "address",
178
+ },
179
+ ],
180
+ name: "AddressEmptyCode",
181
+ type: "error",
182
+ },
183
+ {
184
+ inputs: [
185
+ {
186
+ internalType: "address",
187
+ name: "implementation",
188
+ type: "address",
189
+ },
190
+ ],
191
+ name: "ERC1967InvalidImplementation",
192
+ type: "error",
193
+ },
194
+ {
195
+ inputs: [],
196
+ name: "ERC1967NonPayable",
197
+ type: "error",
198
+ },
199
+ {
200
+ inputs: [],
201
+ name: "FailedCall",
202
+ type: "error",
203
+ },
204
+ {
205
+ inputs: [],
206
+ name: "INVALID_ACCESS_MANAGER",
207
+ type: "error",
208
+ },
209
+ {
210
+ inputs: [],
211
+ name: "INVALID_ACCOUNTANT_IMPLEMENTATION",
212
+ type: "error",
213
+ },
214
+ {
215
+ inputs: [],
216
+ name: "INVALID_ACCOUNTANT_INITIALIZATION_DATA",
217
+ type: "error",
218
+ },
219
+ {
220
+ inputs: [],
221
+ name: "INVALID_ACCOUNTANT_ON_KERNEL",
222
+ type: "error",
223
+ },
224
+ {
225
+ inputs: [],
226
+ name: "INVALID_ACCOUNTANT_PROXY_DEPLOYMENT_SALT",
227
+ type: "error",
228
+ },
229
+ {
230
+ inputs: [],
231
+ name: "INVALID_IMPLEMENTATION",
232
+ type: "error",
233
+ },
234
+ {
235
+ inputs: [],
236
+ name: "INVALID_JT_ASSET_ON_KERNEL",
237
+ type: "error",
238
+ },
239
+ {
240
+ inputs: [],
241
+ name: "INVALID_JUNIOR_TRANCHE_IMPLEMENTATION",
242
+ type: "error",
243
+ },
244
+ {
245
+ inputs: [],
246
+ name: "INVALID_JUNIOR_TRANCHE_ON_KERNEL",
247
+ type: "error",
248
+ },
249
+ {
250
+ inputs: [],
251
+ name: "INVALID_JUNIOR_TRANCHE_PROXY_DEPLOYMENT_SALT",
252
+ type: "error",
253
+ },
254
+ {
255
+ inputs: [],
256
+ name: "INVALID_KERNEL_IMPLEMENTATION",
257
+ type: "error",
258
+ },
259
+ {
260
+ inputs: [],
261
+ name: "INVALID_KERNEL_INITIALIZATION_DATA",
262
+ type: "error",
263
+ },
264
+ {
265
+ inputs: [],
266
+ name: "INVALID_KERNEL_ON_ACCOUNTANT",
267
+ type: "error",
268
+ },
269
+ {
270
+ inputs: [],
271
+ name: "INVALID_KERNEL_ON_JUNIOR_TRANCHE",
272
+ type: "error",
273
+ },
274
+ {
275
+ inputs: [],
276
+ name: "INVALID_KERNEL_ON_SENIOR_TRANCHE",
277
+ type: "error",
278
+ },
279
+ {
280
+ inputs: [],
281
+ name: "INVALID_KERNEL_PROXY_DEPLOYMENT_SALT",
282
+ type: "error",
283
+ },
284
+ {
285
+ inputs: [],
286
+ name: "INVALID_NAME",
287
+ type: "error",
288
+ },
289
+ {
290
+ inputs: [],
291
+ name: "INVALID_SCHEDULED_OPERATIONS_EXPIRY_SECONDS",
292
+ type: "error",
293
+ },
294
+ {
295
+ inputs: [],
296
+ name: "INVALID_SENIOR_TRANCHE_IMPLEMENTATION",
297
+ type: "error",
298
+ },
299
+ {
300
+ inputs: [],
301
+ name: "INVALID_SENIOR_TRANCHE_ON_KERNEL",
302
+ type: "error",
303
+ },
304
+ {
305
+ inputs: [],
306
+ name: "INVALID_SENIOR_TRANCHE_PROXY_DEPLOYMENT_SALT",
307
+ type: "error",
308
+ },
309
+ {
310
+ inputs: [],
311
+ name: "INVALID_ST_ASSET_ON_KERNEL",
312
+ type: "error",
313
+ },
314
+ {
315
+ inputs: [],
316
+ name: "INVALID_SYMBOL",
317
+ type: "error",
318
+ },
319
+ {
320
+ inputs: [
321
+ {
322
+ internalType: "address",
323
+ name: "target",
324
+ type: "address",
325
+ },
326
+ ],
327
+ name: "INVALID_TARGET",
328
+ type: "error",
329
+ },
330
+ {
331
+ inputs: [
332
+ {
333
+ internalType: "uint256",
334
+ name: "balance",
335
+ type: "uint256",
336
+ },
337
+ {
338
+ internalType: "uint256",
339
+ name: "needed",
340
+ type: "uint256",
341
+ },
342
+ ],
343
+ name: "InsufficientBalance",
344
+ type: "error",
345
+ },
346
+ {
347
+ inputs: [],
348
+ name: "InvalidInitialization",
349
+ type: "error",
350
+ },
351
+ {
352
+ inputs: [],
353
+ name: "NotInitializing",
354
+ type: "error",
355
+ },
356
+ {
357
+ inputs: [],
358
+ name: "ROLES_CONFIGURATION_LENGTH_MISMATCH",
359
+ type: "error",
360
+ },
361
+ {
362
+ inputs: [
363
+ {
364
+ internalType: "uint8",
365
+ name: "bits",
366
+ type: "uint8",
367
+ },
368
+ {
369
+ internalType: "uint256",
370
+ name: "value",
371
+ type: "uint256",
372
+ },
373
+ ],
374
+ name: "SafeCastOverflowedUintDowncast",
375
+ type: "error",
376
+ },
377
+ {
378
+ inputs: [
379
+ {
380
+ internalType: "uint64",
381
+ name: "role",
382
+ type: "uint64",
383
+ },
384
+ ],
385
+ name: "UNKNOWN_ROLE",
386
+ type: "error",
387
+ },
388
+ {
389
+ inputs: [],
390
+ name: "UUPSUnauthorizedCallContext",
391
+ type: "error",
392
+ },
393
+ {
394
+ inputs: [
395
+ {
396
+ internalType: "bytes32",
397
+ name: "slot",
398
+ type: "bytes32",
399
+ },
400
+ ],
401
+ name: "UUPSUnsupportedProxiableUUID",
402
+ type: "error",
403
+ },
404
+ {
405
+ anonymous: false,
406
+ inputs: [
407
+ {
408
+ indexed: false,
409
+ internalType: "uint64",
410
+ name: "version",
411
+ type: "uint64",
412
+ },
413
+ ],
414
+ name: "Initialized",
415
+ type: "event",
416
+ },
417
+ {
418
+ anonymous: false,
419
+ inputs: [
420
+ {
421
+ components: [
422
+ {
423
+ internalType: "contract IRoycoVaultTranche",
424
+ name: "seniorTranche",
425
+ type: "address",
426
+ },
427
+ {
428
+ internalType: "contract IRoycoVaultTranche",
429
+ name: "juniorTranche",
430
+ type: "address",
431
+ },
432
+ {
433
+ internalType: "contract IRoycoKernel",
434
+ name: "kernel",
435
+ type: "address",
436
+ },
437
+ {
438
+ internalType: "contract IRoycoAccountant",
439
+ name: "accountant",
440
+ type: "address",
441
+ },
442
+ ],
443
+ indexed: false,
444
+ internalType: "struct IRoycoFactory.RoycoMarket",
445
+ name: "roycoMarket",
446
+ type: "tuple",
447
+ },
448
+ {
449
+ components: [
450
+ {
451
+ internalType: "string",
452
+ name: "seniorTrancheName",
453
+ type: "string",
454
+ },
455
+ {
456
+ internalType: "string",
457
+ name: "seniorTrancheSymbol",
458
+ type: "string",
459
+ },
460
+ {
461
+ internalType: "string",
462
+ name: "juniorTrancheName",
463
+ type: "string",
464
+ },
465
+ {
466
+ internalType: "string",
467
+ name: "juniorTrancheSymbol",
468
+ type: "string",
469
+ },
470
+ {
471
+ internalType: "contract IRoycoVaultTranche",
472
+ name: "seniorTrancheImplementation",
473
+ type: "address",
474
+ },
475
+ {
476
+ internalType: "contract IRoycoVaultTranche",
477
+ name: "juniorTrancheImplementation",
478
+ type: "address",
479
+ },
480
+ {
481
+ internalType: "contract IRoycoKernel",
482
+ name: "kernelImplementation",
483
+ type: "address",
484
+ },
485
+ {
486
+ internalType: "contract IRoycoAccountant",
487
+ name: "accountantImplementation",
488
+ type: "address",
489
+ },
490
+ {
491
+ internalType: "bytes",
492
+ name: "seniorTrancheInitializationData",
493
+ type: "bytes",
494
+ },
495
+ {
496
+ internalType: "bytes",
497
+ name: "juniorTrancheInitializationData",
498
+ type: "bytes",
499
+ },
500
+ {
501
+ internalType: "bytes",
502
+ name: "kernelInitializationData",
503
+ type: "bytes",
504
+ },
505
+ {
506
+ internalType: "bytes",
507
+ name: "accountantInitializationData",
508
+ type: "bytes",
509
+ },
510
+ {
511
+ internalType: "bytes32",
512
+ name: "seniorTrancheProxyDeploymentSalt",
513
+ type: "bytes32",
514
+ },
515
+ {
516
+ internalType: "bytes32",
517
+ name: "juniorTrancheProxyDeploymentSalt",
518
+ type: "bytes32",
519
+ },
520
+ {
521
+ internalType: "bytes32",
522
+ name: "kernelProxyDeploymentSalt",
523
+ type: "bytes32",
524
+ },
525
+ {
526
+ internalType: "bytes32",
527
+ name: "accountantProxyDeploymentSalt",
528
+ type: "bytes32",
529
+ },
530
+ {
531
+ components: [
532
+ {
533
+ internalType: "address",
534
+ name: "target",
535
+ type: "address",
536
+ },
537
+ {
538
+ internalType: "bytes4[]",
539
+ name: "selectors",
540
+ type: "bytes4[]",
541
+ },
542
+ {
543
+ internalType: "uint64[]",
544
+ name: "roles",
545
+ type: "uint64[]",
546
+ },
547
+ ],
548
+ internalType: "struct IRoycoFactory.RolesTargetConfiguration[]",
549
+ name: "roles",
550
+ type: "tuple[]",
551
+ },
552
+ ],
553
+ indexed: false,
554
+ internalType: "struct IRoycoFactory.MarketDeploymentParams",
555
+ name: "params",
556
+ type: "tuple",
557
+ },
558
+ ],
559
+ name: "MarketDeployed",
560
+ type: "event",
561
+ },
562
+ {
563
+ anonymous: false,
564
+ inputs: [
565
+ {
566
+ indexed: true,
567
+ internalType: "bytes32",
568
+ name: "operationId",
569
+ type: "bytes32",
570
+ },
571
+ {
572
+ indexed: true,
573
+ internalType: "uint32",
574
+ name: "nonce",
575
+ type: "uint32",
576
+ },
577
+ ],
578
+ name: "OperationCanceled",
579
+ type: "event",
580
+ },
581
+ {
582
+ anonymous: false,
583
+ inputs: [
584
+ {
585
+ indexed: true,
586
+ internalType: "bytes32",
587
+ name: "operationId",
588
+ type: "bytes32",
589
+ },
590
+ {
591
+ indexed: true,
592
+ internalType: "uint32",
593
+ name: "nonce",
594
+ type: "uint32",
595
+ },
596
+ ],
597
+ name: "OperationExecuted",
598
+ type: "event",
599
+ },
600
+ {
601
+ anonymous: false,
602
+ inputs: [
603
+ {
604
+ indexed: true,
605
+ internalType: "bytes32",
606
+ name: "operationId",
607
+ type: "bytes32",
608
+ },
609
+ {
610
+ indexed: true,
611
+ internalType: "uint32",
612
+ name: "nonce",
613
+ type: "uint32",
614
+ },
615
+ {
616
+ indexed: false,
617
+ internalType: "uint48",
618
+ name: "schedule",
619
+ type: "uint48",
620
+ },
621
+ {
622
+ indexed: false,
623
+ internalType: "address",
624
+ name: "caller",
625
+ type: "address",
626
+ },
627
+ {
628
+ indexed: false,
629
+ internalType: "address",
630
+ name: "target",
631
+ type: "address",
632
+ },
633
+ {
634
+ indexed: false,
635
+ internalType: "bytes",
636
+ name: "data",
637
+ type: "bytes",
638
+ },
639
+ ],
640
+ name: "OperationScheduled",
641
+ type: "event",
642
+ },
643
+ {
644
+ anonymous: false,
645
+ inputs: [
646
+ {
647
+ indexed: true,
648
+ internalType: "uint64",
649
+ name: "roleId",
650
+ type: "uint64",
651
+ },
652
+ {
653
+ indexed: true,
654
+ internalType: "uint64",
655
+ name: "admin",
656
+ type: "uint64",
657
+ },
658
+ ],
659
+ name: "RoleAdminChanged",
660
+ type: "event",
661
+ },
662
+ {
663
+ anonymous: false,
664
+ inputs: [
665
+ {
666
+ indexed: true,
667
+ internalType: "uint64",
668
+ name: "roleId",
669
+ type: "uint64",
670
+ },
671
+ {
672
+ indexed: false,
673
+ internalType: "uint32",
674
+ name: "delay",
675
+ type: "uint32",
676
+ },
677
+ {
678
+ indexed: false,
679
+ internalType: "uint48",
680
+ name: "since",
681
+ type: "uint48",
682
+ },
683
+ ],
684
+ name: "RoleGrantDelayChanged",
685
+ type: "event",
686
+ },
687
+ {
688
+ anonymous: false,
689
+ inputs: [
690
+ {
691
+ indexed: true,
692
+ internalType: "uint64",
693
+ name: "roleId",
694
+ type: "uint64",
695
+ },
696
+ {
697
+ indexed: true,
698
+ internalType: "address",
699
+ name: "account",
700
+ type: "address",
701
+ },
702
+ {
703
+ indexed: false,
704
+ internalType: "uint32",
705
+ name: "delay",
706
+ type: "uint32",
707
+ },
708
+ {
709
+ indexed: false,
710
+ internalType: "uint48",
711
+ name: "since",
712
+ type: "uint48",
713
+ },
714
+ {
715
+ indexed: false,
716
+ internalType: "bool",
717
+ name: "newMember",
718
+ type: "bool",
719
+ },
720
+ ],
721
+ name: "RoleGranted",
722
+ type: "event",
723
+ },
724
+ {
725
+ anonymous: false,
726
+ inputs: [
727
+ {
728
+ indexed: true,
729
+ internalType: "uint64",
730
+ name: "roleId",
731
+ type: "uint64",
732
+ },
733
+ {
734
+ indexed: true,
735
+ internalType: "uint64",
736
+ name: "guardian",
737
+ type: "uint64",
738
+ },
739
+ ],
740
+ name: "RoleGuardianChanged",
741
+ type: "event",
742
+ },
743
+ {
744
+ anonymous: false,
745
+ inputs: [
746
+ {
747
+ indexed: true,
748
+ internalType: "uint64",
749
+ name: "roleId",
750
+ type: "uint64",
751
+ },
752
+ {
753
+ indexed: false,
754
+ internalType: "string",
755
+ name: "label",
756
+ type: "string",
757
+ },
758
+ ],
759
+ name: "RoleLabel",
760
+ type: "event",
761
+ },
762
+ {
763
+ anonymous: false,
764
+ inputs: [
765
+ {
766
+ indexed: true,
767
+ internalType: "uint64",
768
+ name: "roleId",
769
+ type: "uint64",
770
+ },
771
+ {
772
+ indexed: true,
773
+ internalType: "address",
774
+ name: "account",
775
+ type: "address",
776
+ },
777
+ ],
778
+ name: "RoleRevoked",
779
+ type: "event",
780
+ },
781
+ {
782
+ anonymous: false,
783
+ inputs: [
784
+ {
785
+ indexed: false,
786
+ internalType: "uint32",
787
+ name: "scheduledOperationsExpirySeconds",
788
+ type: "uint32",
789
+ },
790
+ ],
791
+ name: "ScheduledOperationsExpirySecondsSet",
792
+ type: "event",
793
+ },
794
+ {
795
+ anonymous: false,
796
+ inputs: [
797
+ {
798
+ indexed: true,
799
+ internalType: "address",
800
+ name: "target",
801
+ type: "address",
802
+ },
803
+ {
804
+ indexed: false,
805
+ internalType: "uint32",
806
+ name: "delay",
807
+ type: "uint32",
808
+ },
809
+ {
810
+ indexed: false,
811
+ internalType: "uint48",
812
+ name: "since",
813
+ type: "uint48",
814
+ },
815
+ ],
816
+ name: "TargetAdminDelayUpdated",
817
+ type: "event",
818
+ },
819
+ {
820
+ anonymous: false,
821
+ inputs: [
822
+ {
823
+ indexed: true,
824
+ internalType: "address",
825
+ name: "target",
826
+ type: "address",
827
+ },
828
+ {
829
+ indexed: false,
830
+ internalType: "bool",
831
+ name: "closed",
832
+ type: "bool",
833
+ },
834
+ ],
835
+ name: "TargetClosed",
836
+ type: "event",
837
+ },
838
+ {
839
+ anonymous: false,
840
+ inputs: [
841
+ {
842
+ indexed: true,
843
+ internalType: "address",
844
+ name: "target",
845
+ type: "address",
846
+ },
847
+ {
848
+ indexed: false,
849
+ internalType: "bytes4",
850
+ name: "selector",
851
+ type: "bytes4",
852
+ },
853
+ {
854
+ indexed: true,
855
+ internalType: "uint64",
856
+ name: "roleId",
857
+ type: "uint64",
858
+ },
859
+ ],
860
+ name: "TargetFunctionRoleUpdated",
861
+ type: "event",
862
+ },
863
+ {
864
+ anonymous: false,
865
+ inputs: [
866
+ {
867
+ indexed: true,
868
+ internalType: "address",
869
+ name: "implementation",
870
+ type: "address",
871
+ },
872
+ ],
873
+ name: "Upgraded",
874
+ type: "event",
875
+ },
876
+ {
877
+ inputs: [],
878
+ name: "ADMIN_ACCOUNTANT_ROLE",
879
+ outputs: [
880
+ {
881
+ internalType: "uint64",
882
+ name: "",
883
+ type: "uint64",
884
+ },
885
+ ],
886
+ stateMutability: "view",
887
+ type: "function",
888
+ },
889
+ {
890
+ inputs: [],
891
+ name: "ADMIN_KERNEL_ROLE",
892
+ outputs: [
893
+ {
894
+ internalType: "uint64",
895
+ name: "",
896
+ type: "uint64",
897
+ },
898
+ ],
899
+ stateMutability: "view",
900
+ type: "function",
901
+ },
902
+ {
903
+ inputs: [],
904
+ name: "ADMIN_ORACLE_QUOTER_ROLE",
905
+ outputs: [
906
+ {
907
+ internalType: "uint64",
908
+ name: "",
909
+ type: "uint64",
910
+ },
911
+ ],
912
+ stateMutability: "view",
913
+ type: "function",
914
+ },
915
+ {
916
+ inputs: [],
917
+ name: "ADMIN_PAUSER_ROLE",
918
+ outputs: [
919
+ {
920
+ internalType: "uint64",
921
+ name: "",
922
+ type: "uint64",
923
+ },
924
+ ],
925
+ stateMutability: "view",
926
+ type: "function",
927
+ },
928
+ {
929
+ inputs: [],
930
+ name: "ADMIN_PROTOCOL_FEE_SETTER_ROLE",
931
+ outputs: [
932
+ {
933
+ internalType: "uint64",
934
+ name: "",
935
+ type: "uint64",
936
+ },
937
+ ],
938
+ stateMutability: "view",
939
+ type: "function",
940
+ },
941
+ {
942
+ inputs: [],
943
+ name: "ADMIN_ROLE",
944
+ outputs: [
945
+ {
946
+ internalType: "uint64",
947
+ name: "",
948
+ type: "uint64",
949
+ },
950
+ ],
951
+ stateMutability: "view",
952
+ type: "function",
953
+ },
954
+ {
955
+ inputs: [],
956
+ name: "ADMIN_UPGRADER_ROLE",
957
+ outputs: [
958
+ {
959
+ internalType: "uint64",
960
+ name: "",
961
+ type: "uint64",
962
+ },
963
+ ],
964
+ stateMutability: "view",
965
+ type: "function",
966
+ },
967
+ {
968
+ inputs: [],
969
+ name: "DEPLOYER_ROLE",
970
+ outputs: [
971
+ {
972
+ internalType: "uint64",
973
+ name: "",
974
+ type: "uint64",
975
+ },
976
+ ],
977
+ stateMutability: "view",
978
+ type: "function",
979
+ },
980
+ {
981
+ inputs: [],
982
+ name: "DEPLOYER_ROLE_ADMIN_ROLE",
983
+ outputs: [
984
+ {
985
+ internalType: "uint64",
986
+ name: "",
987
+ type: "uint64",
988
+ },
989
+ ],
990
+ stateMutability: "view",
991
+ type: "function",
992
+ },
993
+ {
994
+ inputs: [],
995
+ name: "GUARDIAN_ROLE",
996
+ outputs: [
997
+ {
998
+ internalType: "uint64",
999
+ name: "",
1000
+ type: "uint64",
1001
+ },
1002
+ ],
1003
+ stateMutability: "view",
1004
+ type: "function",
1005
+ },
1006
+ {
1007
+ inputs: [],
1008
+ name: "JT_LP_ROLE",
1009
+ outputs: [
1010
+ {
1011
+ internalType: "uint64",
1012
+ name: "",
1013
+ type: "uint64",
1014
+ },
1015
+ ],
1016
+ stateMutability: "view",
1017
+ type: "function",
1018
+ },
1019
+ {
1020
+ inputs: [],
1021
+ name: "LP_ROLE_ADMIN_ROLE",
1022
+ outputs: [
1023
+ {
1024
+ internalType: "uint64",
1025
+ name: "",
1026
+ type: "uint64",
1027
+ },
1028
+ ],
1029
+ stateMutability: "view",
1030
+ type: "function",
1031
+ },
1032
+ {
1033
+ inputs: [],
1034
+ name: "PUBLIC_ROLE",
1035
+ outputs: [
1036
+ {
1037
+ internalType: "uint64",
1038
+ name: "",
1039
+ type: "uint64",
1040
+ },
1041
+ ],
1042
+ stateMutability: "view",
1043
+ type: "function",
1044
+ },
1045
+ {
1046
+ inputs: [],
1047
+ name: "ST_LP_ROLE",
1048
+ outputs: [
1049
+ {
1050
+ internalType: "uint64",
1051
+ name: "",
1052
+ type: "uint64",
1053
+ },
1054
+ ],
1055
+ stateMutability: "view",
1056
+ type: "function",
1057
+ },
1058
+ {
1059
+ inputs: [],
1060
+ name: "SYNC_ROLE",
1061
+ outputs: [
1062
+ {
1063
+ internalType: "uint64",
1064
+ name: "",
1065
+ type: "uint64",
1066
+ },
1067
+ ],
1068
+ stateMutability: "view",
1069
+ type: "function",
1070
+ },
1071
+ {
1072
+ inputs: [],
1073
+ name: "TRANSFER_AGENT_ROLE",
1074
+ outputs: [
1075
+ {
1076
+ internalType: "uint64",
1077
+ name: "",
1078
+ type: "uint64",
1079
+ },
1080
+ ],
1081
+ stateMutability: "view",
1082
+ type: "function",
1083
+ },
1084
+ {
1085
+ inputs: [],
1086
+ name: "UPGRADE_INTERFACE_VERSION",
1087
+ outputs: [
1088
+ {
1089
+ internalType: "string",
1090
+ name: "",
1091
+ type: "string",
1092
+ },
1093
+ ],
1094
+ stateMutability: "view",
1095
+ type: "function",
1096
+ },
1097
+ {
1098
+ inputs: [
1099
+ {
1100
+ internalType: "address",
1101
+ name: "caller",
1102
+ type: "address",
1103
+ },
1104
+ {
1105
+ internalType: "address",
1106
+ name: "target",
1107
+ type: "address",
1108
+ },
1109
+ {
1110
+ internalType: "bytes4",
1111
+ name: "selector",
1112
+ type: "bytes4",
1113
+ },
1114
+ ],
1115
+ name: "canCall",
1116
+ outputs: [
1117
+ {
1118
+ internalType: "bool",
1119
+ name: "immediate",
1120
+ type: "bool",
1121
+ },
1122
+ {
1123
+ internalType: "uint32",
1124
+ name: "delay",
1125
+ type: "uint32",
1126
+ },
1127
+ ],
1128
+ stateMutability: "view",
1129
+ type: "function",
1130
+ },
1131
+ {
1132
+ inputs: [
1133
+ {
1134
+ internalType: "address",
1135
+ name: "caller",
1136
+ type: "address",
1137
+ },
1138
+ {
1139
+ internalType: "address",
1140
+ name: "target",
1141
+ type: "address",
1142
+ },
1143
+ {
1144
+ internalType: "bytes",
1145
+ name: "data",
1146
+ type: "bytes",
1147
+ },
1148
+ ],
1149
+ name: "cancel",
1150
+ outputs: [
1151
+ {
1152
+ internalType: "uint32",
1153
+ name: "",
1154
+ type: "uint32",
1155
+ },
1156
+ ],
1157
+ stateMutability: "nonpayable",
1158
+ type: "function",
1159
+ },
1160
+ {
1161
+ inputs: [
1162
+ {
1163
+ internalType: "address",
1164
+ name: "caller",
1165
+ type: "address",
1166
+ },
1167
+ {
1168
+ internalType: "bytes",
1169
+ name: "data",
1170
+ type: "bytes",
1171
+ },
1172
+ ],
1173
+ name: "consumeScheduledOp",
1174
+ outputs: [],
1175
+ stateMutability: "nonpayable",
1176
+ type: "function",
1177
+ },
1178
+ {
1179
+ inputs: [
1180
+ {
1181
+ components: [
1182
+ {
1183
+ internalType: "string",
1184
+ name: "seniorTrancheName",
1185
+ type: "string",
1186
+ },
1187
+ {
1188
+ internalType: "string",
1189
+ name: "seniorTrancheSymbol",
1190
+ type: "string",
1191
+ },
1192
+ {
1193
+ internalType: "string",
1194
+ name: "juniorTrancheName",
1195
+ type: "string",
1196
+ },
1197
+ {
1198
+ internalType: "string",
1199
+ name: "juniorTrancheSymbol",
1200
+ type: "string",
1201
+ },
1202
+ {
1203
+ internalType: "contract IRoycoVaultTranche",
1204
+ name: "seniorTrancheImplementation",
1205
+ type: "address",
1206
+ },
1207
+ {
1208
+ internalType: "contract IRoycoVaultTranche",
1209
+ name: "juniorTrancheImplementation",
1210
+ type: "address",
1211
+ },
1212
+ {
1213
+ internalType: "contract IRoycoKernel",
1214
+ name: "kernelImplementation",
1215
+ type: "address",
1216
+ },
1217
+ {
1218
+ internalType: "contract IRoycoAccountant",
1219
+ name: "accountantImplementation",
1220
+ type: "address",
1221
+ },
1222
+ {
1223
+ internalType: "bytes",
1224
+ name: "seniorTrancheInitializationData",
1225
+ type: "bytes",
1226
+ },
1227
+ {
1228
+ internalType: "bytes",
1229
+ name: "juniorTrancheInitializationData",
1230
+ type: "bytes",
1231
+ },
1232
+ {
1233
+ internalType: "bytes",
1234
+ name: "kernelInitializationData",
1235
+ type: "bytes",
1236
+ },
1237
+ {
1238
+ internalType: "bytes",
1239
+ name: "accountantInitializationData",
1240
+ type: "bytes",
1241
+ },
1242
+ {
1243
+ internalType: "bytes32",
1244
+ name: "seniorTrancheProxyDeploymentSalt",
1245
+ type: "bytes32",
1246
+ },
1247
+ {
1248
+ internalType: "bytes32",
1249
+ name: "juniorTrancheProxyDeploymentSalt",
1250
+ type: "bytes32",
1251
+ },
1252
+ {
1253
+ internalType: "bytes32",
1254
+ name: "kernelProxyDeploymentSalt",
1255
+ type: "bytes32",
1256
+ },
1257
+ {
1258
+ internalType: "bytes32",
1259
+ name: "accountantProxyDeploymentSalt",
1260
+ type: "bytes32",
1261
+ },
1262
+ {
1263
+ components: [
1264
+ {
1265
+ internalType: "address",
1266
+ name: "target",
1267
+ type: "address",
1268
+ },
1269
+ {
1270
+ internalType: "bytes4[]",
1271
+ name: "selectors",
1272
+ type: "bytes4[]",
1273
+ },
1274
+ {
1275
+ internalType: "uint64[]",
1276
+ name: "roles",
1277
+ type: "uint64[]",
1278
+ },
1279
+ ],
1280
+ internalType: "struct IRoycoFactory.RolesTargetConfiguration[]",
1281
+ name: "roles",
1282
+ type: "tuple[]",
1283
+ },
1284
+ ],
1285
+ internalType: "struct IRoycoFactory.MarketDeploymentParams",
1286
+ name: "_params",
1287
+ type: "tuple",
1288
+ },
1289
+ ],
1290
+ name: "deployMarket",
1291
+ outputs: [
1292
+ {
1293
+ components: [
1294
+ {
1295
+ internalType: "contract IRoycoVaultTranche",
1296
+ name: "seniorTranche",
1297
+ type: "address",
1298
+ },
1299
+ {
1300
+ internalType: "contract IRoycoVaultTranche",
1301
+ name: "juniorTranche",
1302
+ type: "address",
1303
+ },
1304
+ {
1305
+ internalType: "contract IRoycoKernel",
1306
+ name: "kernel",
1307
+ type: "address",
1308
+ },
1309
+ {
1310
+ internalType: "contract IRoycoAccountant",
1311
+ name: "accountant",
1312
+ type: "address",
1313
+ },
1314
+ ],
1315
+ internalType: "struct IRoycoFactory.RoycoMarket",
1316
+ name: "roycoMarket",
1317
+ type: "tuple",
1318
+ },
1319
+ ],
1320
+ stateMutability: "nonpayable",
1321
+ type: "function",
1322
+ },
1323
+ {
1324
+ inputs: [
1325
+ {
1326
+ internalType: "address",
1327
+ name: "target",
1328
+ type: "address",
1329
+ },
1330
+ {
1331
+ internalType: "bytes",
1332
+ name: "data",
1333
+ type: "bytes",
1334
+ },
1335
+ ],
1336
+ name: "execute",
1337
+ outputs: [
1338
+ {
1339
+ internalType: "uint32",
1340
+ name: "",
1341
+ type: "uint32",
1342
+ },
1343
+ ],
1344
+ stateMutability: "payable",
1345
+ type: "function",
1346
+ },
1347
+ {
1348
+ inputs: [],
1349
+ name: "expiration",
1350
+ outputs: [
1351
+ {
1352
+ internalType: "uint32",
1353
+ name: "",
1354
+ type: "uint32",
1355
+ },
1356
+ ],
1357
+ stateMutability: "view",
1358
+ type: "function",
1359
+ },
1360
+ {
1361
+ inputs: [
1362
+ {
1363
+ internalType: "uint64",
1364
+ name: "roleId",
1365
+ type: "uint64",
1366
+ },
1367
+ {
1368
+ internalType: "address",
1369
+ name: "account",
1370
+ type: "address",
1371
+ },
1372
+ ],
1373
+ name: "getAccess",
1374
+ outputs: [
1375
+ {
1376
+ internalType: "uint48",
1377
+ name: "since",
1378
+ type: "uint48",
1379
+ },
1380
+ {
1381
+ internalType: "uint32",
1382
+ name: "currentDelay",
1383
+ type: "uint32",
1384
+ },
1385
+ {
1386
+ internalType: "uint32",
1387
+ name: "pendingDelay",
1388
+ type: "uint32",
1389
+ },
1390
+ {
1391
+ internalType: "uint48",
1392
+ name: "effect",
1393
+ type: "uint48",
1394
+ },
1395
+ ],
1396
+ stateMutability: "view",
1397
+ type: "function",
1398
+ },
1399
+ {
1400
+ inputs: [
1401
+ {
1402
+ internalType: "bytes32",
1403
+ name: "id",
1404
+ type: "bytes32",
1405
+ },
1406
+ ],
1407
+ name: "getNonce",
1408
+ outputs: [
1409
+ {
1410
+ internalType: "uint32",
1411
+ name: "",
1412
+ type: "uint32",
1413
+ },
1414
+ ],
1415
+ stateMutability: "view",
1416
+ type: "function",
1417
+ },
1418
+ {
1419
+ inputs: [
1420
+ {
1421
+ internalType: "uint64",
1422
+ name: "roleId",
1423
+ type: "uint64",
1424
+ },
1425
+ ],
1426
+ name: "getRoleAdmin",
1427
+ outputs: [
1428
+ {
1429
+ internalType: "uint64",
1430
+ name: "",
1431
+ type: "uint64",
1432
+ },
1433
+ ],
1434
+ stateMutability: "view",
1435
+ type: "function",
1436
+ },
1437
+ {
1438
+ inputs: [
1439
+ {
1440
+ internalType: "uint64",
1441
+ name: "role",
1442
+ type: "uint64",
1443
+ },
1444
+ ],
1445
+ name: "getRoleConfig",
1446
+ outputs: [
1447
+ {
1448
+ components: [
1449
+ {
1450
+ internalType: "uint64",
1451
+ name: "adminRole",
1452
+ type: "uint64",
1453
+ },
1454
+ {
1455
+ internalType: "uint64",
1456
+ name: "guardianRole",
1457
+ type: "uint64",
1458
+ },
1459
+ {
1460
+ internalType: "uint32",
1461
+ name: "executionDelay",
1462
+ type: "uint32",
1463
+ },
1464
+ ],
1465
+ internalType: "struct RolesConfiguration.RoleConfig",
1466
+ name: "config",
1467
+ type: "tuple",
1468
+ },
1469
+ ],
1470
+ stateMutability: "pure",
1471
+ type: "function",
1472
+ },
1473
+ {
1474
+ inputs: [
1475
+ {
1476
+ internalType: "uint64",
1477
+ name: "roleId",
1478
+ type: "uint64",
1479
+ },
1480
+ ],
1481
+ name: "getRoleGrantDelay",
1482
+ outputs: [
1483
+ {
1484
+ internalType: "uint32",
1485
+ name: "",
1486
+ type: "uint32",
1487
+ },
1488
+ ],
1489
+ stateMutability: "view",
1490
+ type: "function",
1491
+ },
1492
+ {
1493
+ inputs: [
1494
+ {
1495
+ internalType: "uint64",
1496
+ name: "roleId",
1497
+ type: "uint64",
1498
+ },
1499
+ ],
1500
+ name: "getRoleGuardian",
1501
+ outputs: [
1502
+ {
1503
+ internalType: "uint64",
1504
+ name: "",
1505
+ type: "uint64",
1506
+ },
1507
+ ],
1508
+ stateMutability: "view",
1509
+ type: "function",
1510
+ },
1511
+ {
1512
+ inputs: [
1513
+ {
1514
+ internalType: "bytes32",
1515
+ name: "id",
1516
+ type: "bytes32",
1517
+ },
1518
+ ],
1519
+ name: "getSchedule",
1520
+ outputs: [
1521
+ {
1522
+ internalType: "uint48",
1523
+ name: "",
1524
+ type: "uint48",
1525
+ },
1526
+ ],
1527
+ stateMutability: "view",
1528
+ type: "function",
1529
+ },
1530
+ {
1531
+ inputs: [
1532
+ {
1533
+ internalType: "address",
1534
+ name: "target",
1535
+ type: "address",
1536
+ },
1537
+ ],
1538
+ name: "getTargetAdminDelay",
1539
+ outputs: [
1540
+ {
1541
+ internalType: "uint32",
1542
+ name: "",
1543
+ type: "uint32",
1544
+ },
1545
+ ],
1546
+ stateMutability: "view",
1547
+ type: "function",
1548
+ },
1549
+ {
1550
+ inputs: [
1551
+ {
1552
+ internalType: "address",
1553
+ name: "target",
1554
+ type: "address",
1555
+ },
1556
+ {
1557
+ internalType: "bytes4",
1558
+ name: "selector",
1559
+ type: "bytes4",
1560
+ },
1561
+ ],
1562
+ name: "getTargetFunctionRole",
1563
+ outputs: [
1564
+ {
1565
+ internalType: "uint64",
1566
+ name: "",
1567
+ type: "uint64",
1568
+ },
1569
+ ],
1570
+ stateMutability: "view",
1571
+ type: "function",
1572
+ },
1573
+ {
1574
+ inputs: [
1575
+ {
1576
+ internalType: "uint64",
1577
+ name: "roleId",
1578
+ type: "uint64",
1579
+ },
1580
+ {
1581
+ internalType: "address",
1582
+ name: "account",
1583
+ type: "address",
1584
+ },
1585
+ {
1586
+ internalType: "uint32",
1587
+ name: "executionDelay",
1588
+ type: "uint32",
1589
+ },
1590
+ ],
1591
+ name: "grantRole",
1592
+ outputs: [],
1593
+ stateMutability: "nonpayable",
1594
+ type: "function",
1595
+ },
1596
+ {
1597
+ inputs: [
1598
+ {
1599
+ internalType: "uint64",
1600
+ name: "roleId",
1601
+ type: "uint64",
1602
+ },
1603
+ {
1604
+ internalType: "address",
1605
+ name: "account",
1606
+ type: "address",
1607
+ },
1608
+ ],
1609
+ name: "hasRole",
1610
+ outputs: [
1611
+ {
1612
+ internalType: "bool",
1613
+ name: "isMember",
1614
+ type: "bool",
1615
+ },
1616
+ {
1617
+ internalType: "uint32",
1618
+ name: "executionDelay",
1619
+ type: "uint32",
1620
+ },
1621
+ ],
1622
+ stateMutability: "view",
1623
+ type: "function",
1624
+ },
1625
+ {
1626
+ inputs: [
1627
+ {
1628
+ internalType: "address",
1629
+ name: "caller",
1630
+ type: "address",
1631
+ },
1632
+ {
1633
+ internalType: "address",
1634
+ name: "target",
1635
+ type: "address",
1636
+ },
1637
+ {
1638
+ internalType: "bytes",
1639
+ name: "data",
1640
+ type: "bytes",
1641
+ },
1642
+ ],
1643
+ name: "hashOperation",
1644
+ outputs: [
1645
+ {
1646
+ internalType: "bytes32",
1647
+ name: "",
1648
+ type: "bytes32",
1649
+ },
1650
+ ],
1651
+ stateMutability: "view",
1652
+ type: "function",
1653
+ },
1654
+ {
1655
+ inputs: [
1656
+ {
1657
+ internalType: "address",
1658
+ name: "_admin",
1659
+ type: "address",
1660
+ },
1661
+ {
1662
+ internalType: "address",
1663
+ name: "_deployer",
1664
+ type: "address",
1665
+ },
1666
+ {
1667
+ internalType: "uint32",
1668
+ name: "_scheduledOperationsExpirySeconds",
1669
+ type: "uint32",
1670
+ },
1671
+ {
1672
+ components: [
1673
+ {
1674
+ internalType: "uint64",
1675
+ name: "role",
1676
+ type: "uint64",
1677
+ },
1678
+ {
1679
+ internalType: "uint64",
1680
+ name: "roleAdminRole",
1681
+ type: "uint64",
1682
+ },
1683
+ {
1684
+ internalType: "address",
1685
+ name: "assignee",
1686
+ type: "address",
1687
+ },
1688
+ {
1689
+ internalType: "uint32",
1690
+ name: "executionDelay",
1691
+ type: "uint32",
1692
+ },
1693
+ ],
1694
+ internalType: "struct IRoycoFactory.RoleAssignmentConfiguration[]",
1695
+ name: "_roles",
1696
+ type: "tuple[]",
1697
+ },
1698
+ ],
1699
+ name: "initialize",
1700
+ outputs: [],
1701
+ stateMutability: "nonpayable",
1702
+ type: "function",
1703
+ },
1704
+ {
1705
+ inputs: [
1706
+ {
1707
+ internalType: "address",
1708
+ name: "initialAdmin",
1709
+ type: "address",
1710
+ },
1711
+ ],
1712
+ name: "initialize",
1713
+ outputs: [],
1714
+ stateMutability: "nonpayable",
1715
+ type: "function",
1716
+ },
1717
+ {
1718
+ inputs: [
1719
+ {
1720
+ internalType: "address",
1721
+ name: "target",
1722
+ type: "address",
1723
+ },
1724
+ ],
1725
+ name: "isTargetClosed",
1726
+ outputs: [
1727
+ {
1728
+ internalType: "bool",
1729
+ name: "",
1730
+ type: "bool",
1731
+ },
1732
+ ],
1733
+ stateMutability: "view",
1734
+ type: "function",
1735
+ },
1736
+ {
1737
+ inputs: [
1738
+ {
1739
+ internalType: "address",
1740
+ name: "_juniorTranche",
1741
+ type: "address",
1742
+ },
1743
+ ],
1744
+ name: "juniorTrancheToSeniorTranche",
1745
+ outputs: [
1746
+ {
1747
+ internalType: "address",
1748
+ name: "seniorTranche",
1749
+ type: "address",
1750
+ },
1751
+ ],
1752
+ stateMutability: "view",
1753
+ type: "function",
1754
+ },
1755
+ {
1756
+ inputs: [
1757
+ {
1758
+ internalType: "uint64",
1759
+ name: "roleId",
1760
+ type: "uint64",
1761
+ },
1762
+ {
1763
+ internalType: "string",
1764
+ name: "label",
1765
+ type: "string",
1766
+ },
1767
+ ],
1768
+ name: "labelRole",
1769
+ outputs: [],
1770
+ stateMutability: "nonpayable",
1771
+ type: "function",
1772
+ },
1773
+ {
1774
+ inputs: [],
1775
+ name: "minSetback",
1776
+ outputs: [
1777
+ {
1778
+ internalType: "uint32",
1779
+ name: "",
1780
+ type: "uint32",
1781
+ },
1782
+ ],
1783
+ stateMutability: "view",
1784
+ type: "function",
1785
+ },
1786
+ {
1787
+ inputs: [
1788
+ {
1789
+ internalType: "bytes[]",
1790
+ name: "data",
1791
+ type: "bytes[]",
1792
+ },
1793
+ ],
1794
+ name: "multicall",
1795
+ outputs: [
1796
+ {
1797
+ internalType: "bytes[]",
1798
+ name: "results",
1799
+ type: "bytes[]",
1800
+ },
1801
+ ],
1802
+ stateMutability: "nonpayable",
1803
+ type: "function",
1804
+ },
1805
+ {
1806
+ inputs: [
1807
+ {
1808
+ internalType: "bytes32",
1809
+ name: "_salt",
1810
+ type: "bytes32",
1811
+ },
1812
+ ],
1813
+ name: "predictDeterministicAddress",
1814
+ outputs: [
1815
+ {
1816
+ internalType: "address",
1817
+ name: "deployed",
1818
+ type: "address",
1819
+ },
1820
+ ],
1821
+ stateMutability: "view",
1822
+ type: "function",
1823
+ },
1824
+ {
1825
+ inputs: [],
1826
+ name: "proxiableUUID",
1827
+ outputs: [
1828
+ {
1829
+ internalType: "bytes32",
1830
+ name: "",
1831
+ type: "bytes32",
1832
+ },
1833
+ ],
1834
+ stateMutability: "view",
1835
+ type: "function",
1836
+ },
1837
+ {
1838
+ inputs: [
1839
+ {
1840
+ internalType: "uint64",
1841
+ name: "roleId",
1842
+ type: "uint64",
1843
+ },
1844
+ {
1845
+ internalType: "address",
1846
+ name: "callerConfirmation",
1847
+ type: "address",
1848
+ },
1849
+ ],
1850
+ name: "renounceRole",
1851
+ outputs: [],
1852
+ stateMutability: "nonpayable",
1853
+ type: "function",
1854
+ },
1855
+ {
1856
+ inputs: [
1857
+ {
1858
+ internalType: "uint64",
1859
+ name: "roleId",
1860
+ type: "uint64",
1861
+ },
1862
+ {
1863
+ internalType: "address",
1864
+ name: "account",
1865
+ type: "address",
1866
+ },
1867
+ ],
1868
+ name: "revokeRole",
1869
+ outputs: [],
1870
+ stateMutability: "nonpayable",
1871
+ type: "function",
1872
+ },
1873
+ {
1874
+ inputs: [
1875
+ {
1876
+ internalType: "address",
1877
+ name: "target",
1878
+ type: "address",
1879
+ },
1880
+ {
1881
+ internalType: "bytes",
1882
+ name: "data",
1883
+ type: "bytes",
1884
+ },
1885
+ {
1886
+ internalType: "uint48",
1887
+ name: "when",
1888
+ type: "uint48",
1889
+ },
1890
+ ],
1891
+ name: "schedule",
1892
+ outputs: [
1893
+ {
1894
+ internalType: "bytes32",
1895
+ name: "operationId",
1896
+ type: "bytes32",
1897
+ },
1898
+ {
1899
+ internalType: "uint32",
1900
+ name: "nonce",
1901
+ type: "uint32",
1902
+ },
1903
+ ],
1904
+ stateMutability: "nonpayable",
1905
+ type: "function",
1906
+ },
1907
+ {
1908
+ inputs: [
1909
+ {
1910
+ internalType: "address",
1911
+ name: "_seniorTranche",
1912
+ type: "address",
1913
+ },
1914
+ ],
1915
+ name: "seniorTrancheToJuniorTranche",
1916
+ outputs: [
1917
+ {
1918
+ internalType: "address",
1919
+ name: "juniorTranche",
1920
+ type: "address",
1921
+ },
1922
+ ],
1923
+ stateMutability: "view",
1924
+ type: "function",
1925
+ },
1926
+ {
1927
+ inputs: [
1928
+ {
1929
+ internalType: "uint64",
1930
+ name: "roleId",
1931
+ type: "uint64",
1932
+ },
1933
+ {
1934
+ internalType: "uint32",
1935
+ name: "newDelay",
1936
+ type: "uint32",
1937
+ },
1938
+ ],
1939
+ name: "setGrantDelay",
1940
+ outputs: [],
1941
+ stateMutability: "nonpayable",
1942
+ type: "function",
1943
+ },
1944
+ {
1945
+ inputs: [
1946
+ {
1947
+ internalType: "uint64",
1948
+ name: "roleId",
1949
+ type: "uint64",
1950
+ },
1951
+ {
1952
+ internalType: "uint64",
1953
+ name: "admin",
1954
+ type: "uint64",
1955
+ },
1956
+ ],
1957
+ name: "setRoleAdmin",
1958
+ outputs: [],
1959
+ stateMutability: "nonpayable",
1960
+ type: "function",
1961
+ },
1962
+ {
1963
+ inputs: [
1964
+ {
1965
+ internalType: "uint64",
1966
+ name: "roleId",
1967
+ type: "uint64",
1968
+ },
1969
+ {
1970
+ internalType: "uint64",
1971
+ name: "guardian",
1972
+ type: "uint64",
1973
+ },
1974
+ ],
1975
+ name: "setRoleGuardian",
1976
+ outputs: [],
1977
+ stateMutability: "nonpayable",
1978
+ type: "function",
1979
+ },
1980
+ {
1981
+ inputs: [
1982
+ {
1983
+ internalType: "uint32",
1984
+ name: "_scheduledOperationsExpirySeconds",
1985
+ type: "uint32",
1986
+ },
1987
+ ],
1988
+ name: "setScheduledOperationsExpiry",
1989
+ outputs: [],
1990
+ stateMutability: "nonpayable",
1991
+ type: "function",
1992
+ },
1993
+ {
1994
+ inputs: [
1995
+ {
1996
+ internalType: "address",
1997
+ name: "target",
1998
+ type: "address",
1999
+ },
2000
+ {
2001
+ internalType: "uint32",
2002
+ name: "newDelay",
2003
+ type: "uint32",
2004
+ },
2005
+ ],
2006
+ name: "setTargetAdminDelay",
2007
+ outputs: [],
2008
+ stateMutability: "nonpayable",
2009
+ type: "function",
2010
+ },
2011
+ {
2012
+ inputs: [
2013
+ {
2014
+ internalType: "address",
2015
+ name: "target",
2016
+ type: "address",
2017
+ },
2018
+ {
2019
+ internalType: "bool",
2020
+ name: "closed",
2021
+ type: "bool",
2022
+ },
2023
+ ],
2024
+ name: "setTargetClosed",
2025
+ outputs: [],
2026
+ stateMutability: "nonpayable",
2027
+ type: "function",
2028
+ },
2029
+ {
2030
+ inputs: [
2031
+ {
2032
+ internalType: "address",
2033
+ name: "target",
2034
+ type: "address",
2035
+ },
2036
+ {
2037
+ internalType: "bytes4[]",
2038
+ name: "selectors",
2039
+ type: "bytes4[]",
2040
+ },
2041
+ {
2042
+ internalType: "uint64",
2043
+ name: "roleId",
2044
+ type: "uint64",
2045
+ },
2046
+ ],
2047
+ name: "setTargetFunctionRole",
2048
+ outputs: [],
2049
+ stateMutability: "nonpayable",
2050
+ type: "function",
2051
+ },
2052
+ {
2053
+ inputs: [
2054
+ {
2055
+ internalType: "address",
2056
+ name: "target",
2057
+ type: "address",
2058
+ },
2059
+ {
2060
+ internalType: "address",
2061
+ name: "newAuthority",
2062
+ type: "address",
2063
+ },
2064
+ ],
2065
+ name: "updateAuthority",
2066
+ outputs: [],
2067
+ stateMutability: "nonpayable",
2068
+ type: "function",
2069
+ },
2070
+ {
2071
+ inputs: [
2072
+ {
2073
+ internalType: "address",
2074
+ name: "newImplementation",
2075
+ type: "address",
2076
+ },
2077
+ {
2078
+ internalType: "bytes",
2079
+ name: "data",
2080
+ type: "bytes",
2081
+ },
2082
+ ],
2083
+ name: "upgradeToAndCall",
2084
+ outputs: [],
2085
+ stateMutability: "payable",
2086
+ type: "function",
2087
+ },
2088
+ ];
2089
+ export class RoycoFactory__factory {
2090
+ static abi = _abi;
2091
+ static createInterface() {
2092
+ return new utils.Interface(_abi);
2093
+ }
2094
+ static connect(address, signerOrProvider) {
2095
+ return new Contract(address, _abi, signerOrProvider);
2096
+ }
2097
+ }
2098
+ //# sourceMappingURL=RoycoFactory__factory.js.map