@usdu-finance/usdu-core 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -40,6 +40,9 @@ var ADDRESS = {
40
40
  chainSelector: "5009297550715157269",
41
41
  // curator / DAO
42
42
  curator: "0x9fe66037c44236c87D9Ac8345F489b4413fDFf06",
43
+ aragonMultiSig: "0x369C21c8cB56C0211772F003c917b2807204BB4D",
44
+ aragonDelayedAction: "0x8E8Bec995809bF29712C89149603a8C48329aF51",
45
+ aragonVetoMultiSig: "0xF786531776903BaE94A1A4f4F17a0233dca5f9d5",
43
46
  // deployer and stable
44
47
  usduDeployer: "0x745211a1e1a58b2b11b932855b30d411c31e25d5",
45
48
  usduStable: "0xdde3ec717f220fc6a29d6a4be73f91da5b718e55",
@@ -159,6 +162,2064 @@ var SupportedChainsMap = {
159
162
  };
160
163
  var SupportedChainIds = Object.values(SupportedChains).map((chain) => chain.id);
161
164
 
165
+ // exports/abis/aragon/AragonMultiSig.ts
166
+ var AragonMultiSig_ABI = [
167
+ {
168
+ inputs: [
169
+ { internalType: "uint16", name: "limit", type: "uint16" },
170
+ { internalType: "uint256", name: "actual", type: "uint256" }
171
+ ],
172
+ name: "AddresslistLengthOutOfBounds",
173
+ type: "error"
174
+ },
175
+ { inputs: [], name: "AlreadyInitialized", type: "error" },
176
+ {
177
+ inputs: [
178
+ { internalType: "uint256", name: "proposalId", type: "uint256" },
179
+ { internalType: "address", name: "sender", type: "address" }
180
+ ],
181
+ name: "ApprovalCastForbidden",
182
+ type: "error"
183
+ },
184
+ {
185
+ inputs: [
186
+ { internalType: "address", name: "dao", type: "address" },
187
+ { internalType: "address", name: "where", type: "address" },
188
+ { internalType: "address", name: "who", type: "address" },
189
+ { internalType: "bytes32", name: "permissionId", type: "bytes32" }
190
+ ],
191
+ name: "DaoUnauthorized",
192
+ type: "error"
193
+ },
194
+ {
195
+ inputs: [
196
+ { internalType: "uint64", name: "limit", type: "uint64" },
197
+ { internalType: "uint64", name: "actual", type: "uint64" }
198
+ ],
199
+ name: "DateOutOfBounds",
200
+ type: "error"
201
+ },
202
+ { inputs: [], name: "DelegateCallFailed", type: "error" },
203
+ { inputs: [], name: "FunctionDeprecated", type: "error" },
204
+ { inputs: [{ internalType: "address", name: "member", type: "address" }], name: "InvalidAddresslistUpdate", type: "error" },
205
+ {
206
+ inputs: [
207
+ {
208
+ components: [
209
+ { internalType: "address", name: "target", type: "address" },
210
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
211
+ ],
212
+ internalType: "struct IPlugin.TargetConfig",
213
+ name: "targetConfig",
214
+ type: "tuple"
215
+ }
216
+ ],
217
+ name: "InvalidTargetConfig",
218
+ type: "error"
219
+ },
220
+ {
221
+ inputs: [
222
+ { internalType: "uint16", name: "limit", type: "uint16" },
223
+ { internalType: "uint16", name: "actual", type: "uint16" }
224
+ ],
225
+ name: "MinApprovalsOutOfBounds",
226
+ type: "error"
227
+ },
228
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "NonexistentProposal", type: "error" },
229
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "ProposalAlreadyExists", type: "error" },
230
+ { inputs: [{ internalType: "address", name: "sender", type: "address" }], name: "ProposalCreationForbidden", type: "error" },
231
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "ProposalExecutionForbidden", type: "error" },
232
+ {
233
+ anonymous: false,
234
+ inputs: [
235
+ { indexed: false, internalType: "address", name: "previousAdmin", type: "address" },
236
+ { indexed: false, internalType: "address", name: "newAdmin", type: "address" }
237
+ ],
238
+ name: "AdminChanged",
239
+ type: "event"
240
+ },
241
+ {
242
+ anonymous: false,
243
+ inputs: [
244
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
245
+ { indexed: true, internalType: "address", name: "approver", type: "address" }
246
+ ],
247
+ name: "Approved",
248
+ type: "event"
249
+ },
250
+ {
251
+ anonymous: false,
252
+ inputs: [{ indexed: true, internalType: "address", name: "beacon", type: "address" }],
253
+ name: "BeaconUpgraded",
254
+ type: "event"
255
+ },
256
+ {
257
+ anonymous: false,
258
+ inputs: [{ indexed: false, internalType: "uint8", name: "version", type: "uint8" }],
259
+ name: "Initialized",
260
+ type: "event"
261
+ },
262
+ {
263
+ anonymous: false,
264
+ inputs: [{ indexed: false, internalType: "address[]", name: "members", type: "address[]" }],
265
+ name: "MembersAdded",
266
+ type: "event"
267
+ },
268
+ {
269
+ anonymous: false,
270
+ inputs: [{ indexed: false, internalType: "address[]", name: "members", type: "address[]" }],
271
+ name: "MembersRemoved",
272
+ type: "event"
273
+ },
274
+ {
275
+ anonymous: false,
276
+ inputs: [{ indexed: true, internalType: "address", name: "definingContract", type: "address" }],
277
+ name: "MembershipContractAnnounced",
278
+ type: "event"
279
+ },
280
+ {
281
+ anonymous: false,
282
+ inputs: [{ indexed: false, internalType: "bytes", name: "metadata", type: "bytes" }],
283
+ name: "MetadataSet",
284
+ type: "event"
285
+ },
286
+ {
287
+ anonymous: false,
288
+ inputs: [
289
+ { indexed: false, internalType: "bool", name: "onlyListed", type: "bool" },
290
+ { indexed: true, internalType: "uint16", name: "minApprovals", type: "uint16" }
291
+ ],
292
+ name: "MultisigSettingsUpdated",
293
+ type: "event"
294
+ },
295
+ {
296
+ anonymous: false,
297
+ inputs: [
298
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
299
+ { indexed: true, internalType: "address", name: "creator", type: "address" },
300
+ { indexed: false, internalType: "uint64", name: "startDate", type: "uint64" },
301
+ { indexed: false, internalType: "uint64", name: "endDate", type: "uint64" },
302
+ { indexed: false, internalType: "bytes", name: "metadata", type: "bytes" },
303
+ {
304
+ components: [
305
+ { internalType: "address", name: "to", type: "address" },
306
+ { internalType: "uint256", name: "value", type: "uint256" },
307
+ { internalType: "bytes", name: "data", type: "bytes" }
308
+ ],
309
+ indexed: false,
310
+ internalType: "struct Action[]",
311
+ name: "actions",
312
+ type: "tuple[]"
313
+ },
314
+ { indexed: false, internalType: "uint256", name: "allowFailureMap", type: "uint256" }
315
+ ],
316
+ name: "ProposalCreated",
317
+ type: "event"
318
+ },
319
+ {
320
+ anonymous: false,
321
+ inputs: [{ indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" }],
322
+ name: "ProposalExecuted",
323
+ type: "event"
324
+ },
325
+ {
326
+ anonymous: false,
327
+ inputs: [
328
+ {
329
+ components: [
330
+ { internalType: "address", name: "target", type: "address" },
331
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
332
+ ],
333
+ indexed: false,
334
+ internalType: "struct IPlugin.TargetConfig",
335
+ name: "newTargetConfig",
336
+ type: "tuple"
337
+ }
338
+ ],
339
+ name: "TargetSet",
340
+ type: "event"
341
+ },
342
+ {
343
+ anonymous: false,
344
+ inputs: [{ indexed: true, internalType: "address", name: "implementation", type: "address" }],
345
+ name: "Upgraded",
346
+ type: "event"
347
+ },
348
+ {
349
+ inputs: [],
350
+ name: "CREATE_PROPOSAL_PERMISSION_ID",
351
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
352
+ stateMutability: "view",
353
+ type: "function"
354
+ },
355
+ {
356
+ inputs: [],
357
+ name: "EXECUTE_PROPOSAL_PERMISSION_ID",
358
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
359
+ stateMutability: "view",
360
+ type: "function"
361
+ },
362
+ {
363
+ inputs: [],
364
+ name: "SET_METADATA_PERMISSION_ID",
365
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
366
+ stateMutability: "view",
367
+ type: "function"
368
+ },
369
+ {
370
+ inputs: [],
371
+ name: "SET_TARGET_CONFIG_PERMISSION_ID",
372
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
373
+ stateMutability: "view",
374
+ type: "function"
375
+ },
376
+ {
377
+ inputs: [],
378
+ name: "UPDATE_MULTISIG_SETTINGS_PERMISSION_ID",
379
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
380
+ stateMutability: "view",
381
+ type: "function"
382
+ },
383
+ {
384
+ inputs: [],
385
+ name: "UPGRADE_PLUGIN_PERMISSION_ID",
386
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
387
+ stateMutability: "view",
388
+ type: "function"
389
+ },
390
+ {
391
+ inputs: [{ internalType: "address[]", name: "_members", type: "address[]" }],
392
+ name: "addAddresses",
393
+ outputs: [],
394
+ stateMutability: "nonpayable",
395
+ type: "function"
396
+ },
397
+ {
398
+ inputs: [],
399
+ name: "addresslistLength",
400
+ outputs: [{ internalType: "uint256", name: "", type: "uint256" }],
401
+ stateMutability: "view",
402
+ type: "function"
403
+ },
404
+ {
405
+ inputs: [{ internalType: "uint256", name: "_blockNumber", type: "uint256" }],
406
+ name: "addresslistLengthAtBlock",
407
+ outputs: [{ internalType: "uint256", name: "", type: "uint256" }],
408
+ stateMutability: "view",
409
+ type: "function"
410
+ },
411
+ {
412
+ inputs: [
413
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
414
+ { internalType: "bool", name: "_tryExecution", type: "bool" }
415
+ ],
416
+ name: "approve",
417
+ outputs: [],
418
+ stateMutability: "nonpayable",
419
+ type: "function"
420
+ },
421
+ {
422
+ inputs: [
423
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
424
+ { internalType: "address", name: "_account", type: "address" }
425
+ ],
426
+ name: "canApprove",
427
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
428
+ stateMutability: "view",
429
+ type: "function"
430
+ },
431
+ {
432
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
433
+ name: "canExecute",
434
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
435
+ stateMutability: "view",
436
+ type: "function"
437
+ },
438
+ {
439
+ inputs: [
440
+ { internalType: "bytes", name: "_metadata", type: "bytes" },
441
+ {
442
+ components: [
443
+ { internalType: "address", name: "to", type: "address" },
444
+ { internalType: "uint256", name: "value", type: "uint256" },
445
+ { internalType: "bytes", name: "data", type: "bytes" }
446
+ ],
447
+ internalType: "struct Action[]",
448
+ name: "_actions",
449
+ type: "tuple[]"
450
+ },
451
+ { internalType: "uint64", name: "_startDate", type: "uint64" },
452
+ { internalType: "uint64", name: "_endDate", type: "uint64" },
453
+ { internalType: "bytes", name: "_data", type: "bytes" }
454
+ ],
455
+ name: "createProposal",
456
+ outputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }],
457
+ stateMutability: "nonpayable",
458
+ type: "function"
459
+ },
460
+ {
461
+ inputs: [
462
+ { internalType: "bytes", name: "_metadata", type: "bytes" },
463
+ {
464
+ components: [
465
+ { internalType: "address", name: "to", type: "address" },
466
+ { internalType: "uint256", name: "value", type: "uint256" },
467
+ { internalType: "bytes", name: "data", type: "bytes" }
468
+ ],
469
+ internalType: "struct Action[]",
470
+ name: "_actions",
471
+ type: "tuple[]"
472
+ },
473
+ { internalType: "uint256", name: "_allowFailureMap", type: "uint256" },
474
+ { internalType: "bool", name: "_approveProposal", type: "bool" },
475
+ { internalType: "bool", name: "_tryExecution", type: "bool" },
476
+ { internalType: "uint64", name: "_startDate", type: "uint64" },
477
+ { internalType: "uint64", name: "_endDate", type: "uint64" }
478
+ ],
479
+ name: "createProposal",
480
+ outputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }],
481
+ stateMutability: "nonpayable",
482
+ type: "function"
483
+ },
484
+ {
485
+ inputs: [],
486
+ name: "customProposalParamsABI",
487
+ outputs: [{ internalType: "string", name: "", type: "string" }],
488
+ stateMutability: "pure",
489
+ type: "function"
490
+ },
491
+ {
492
+ inputs: [],
493
+ name: "dao",
494
+ outputs: [{ internalType: "contract IDAO", name: "", type: "address" }],
495
+ stateMutability: "view",
496
+ type: "function"
497
+ },
498
+ {
499
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
500
+ name: "execute",
501
+ outputs: [],
502
+ stateMutability: "nonpayable",
503
+ type: "function"
504
+ },
505
+ {
506
+ inputs: [],
507
+ name: "getCurrentTargetConfig",
508
+ outputs: [
509
+ {
510
+ components: [
511
+ { internalType: "address", name: "target", type: "address" },
512
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
513
+ ],
514
+ internalType: "struct IPlugin.TargetConfig",
515
+ name: "",
516
+ type: "tuple"
517
+ }
518
+ ],
519
+ stateMutability: "view",
520
+ type: "function"
521
+ },
522
+ {
523
+ inputs: [],
524
+ name: "getMetadata",
525
+ outputs: [{ internalType: "bytes", name: "", type: "bytes" }],
526
+ stateMutability: "view",
527
+ type: "function"
528
+ },
529
+ {
530
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
531
+ name: "getProposal",
532
+ outputs: [
533
+ { internalType: "bool", name: "executed", type: "bool" },
534
+ { internalType: "uint16", name: "approvals", type: "uint16" },
535
+ {
536
+ components: [
537
+ { internalType: "uint16", name: "minApprovals", type: "uint16" },
538
+ { internalType: "uint64", name: "snapshotBlock", type: "uint64" },
539
+ { internalType: "uint64", name: "startDate", type: "uint64" },
540
+ { internalType: "uint64", name: "endDate", type: "uint64" }
541
+ ],
542
+ internalType: "struct Multisig.ProposalParameters",
543
+ name: "parameters",
544
+ type: "tuple"
545
+ },
546
+ {
547
+ components: [
548
+ { internalType: "address", name: "to", type: "address" },
549
+ { internalType: "uint256", name: "value", type: "uint256" },
550
+ { internalType: "bytes", name: "data", type: "bytes" }
551
+ ],
552
+ internalType: "struct Action[]",
553
+ name: "actions",
554
+ type: "tuple[]"
555
+ },
556
+ { internalType: "uint256", name: "allowFailureMap", type: "uint256" },
557
+ {
558
+ components: [
559
+ { internalType: "address", name: "target", type: "address" },
560
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
561
+ ],
562
+ internalType: "struct IPlugin.TargetConfig",
563
+ name: "targetConfig",
564
+ type: "tuple"
565
+ }
566
+ ],
567
+ stateMutability: "view",
568
+ type: "function"
569
+ },
570
+ {
571
+ inputs: [],
572
+ name: "getTargetConfig",
573
+ outputs: [
574
+ {
575
+ components: [
576
+ { internalType: "address", name: "target", type: "address" },
577
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
578
+ ],
579
+ internalType: "struct IPlugin.TargetConfig",
580
+ name: "",
581
+ type: "tuple"
582
+ }
583
+ ],
584
+ stateMutability: "view",
585
+ type: "function"
586
+ },
587
+ {
588
+ inputs: [
589
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
590
+ { internalType: "address", name: "_account", type: "address" }
591
+ ],
592
+ name: "hasApproved",
593
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
594
+ stateMutability: "view",
595
+ type: "function"
596
+ },
597
+ {
598
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
599
+ name: "hasSucceeded",
600
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
601
+ stateMutability: "view",
602
+ type: "function"
603
+ },
604
+ {
605
+ inputs: [],
606
+ name: "implementation",
607
+ outputs: [{ internalType: "address", name: "", type: "address" }],
608
+ stateMutability: "view",
609
+ type: "function"
610
+ },
611
+ {
612
+ inputs: [
613
+ { internalType: "contract IDAO", name: "_dao", type: "address" },
614
+ { internalType: "address[]", name: "_members", type: "address[]" },
615
+ {
616
+ components: [
617
+ { internalType: "bool", name: "onlyListed", type: "bool" },
618
+ { internalType: "uint16", name: "minApprovals", type: "uint16" }
619
+ ],
620
+ internalType: "struct Multisig.MultisigSettings",
621
+ name: "_multisigSettings",
622
+ type: "tuple"
623
+ },
624
+ {
625
+ components: [
626
+ { internalType: "address", name: "target", type: "address" },
627
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
628
+ ],
629
+ internalType: "struct IPlugin.TargetConfig",
630
+ name: "_targetConfig",
631
+ type: "tuple"
632
+ },
633
+ { internalType: "bytes", name: "_pluginMetadata", type: "bytes" }
634
+ ],
635
+ name: "initialize",
636
+ outputs: [],
637
+ stateMutability: "nonpayable",
638
+ type: "function"
639
+ },
640
+ {
641
+ inputs: [
642
+ { internalType: "uint16", name: "_fromBuild", type: "uint16" },
643
+ { internalType: "bytes", name: "_initData", type: "bytes" }
644
+ ],
645
+ name: "initializeFrom",
646
+ outputs: [],
647
+ stateMutability: "nonpayable",
648
+ type: "function"
649
+ },
650
+ {
651
+ inputs: [{ internalType: "address", name: "_account", type: "address" }],
652
+ name: "isListed",
653
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
654
+ stateMutability: "view",
655
+ type: "function"
656
+ },
657
+ {
658
+ inputs: [
659
+ { internalType: "address", name: "_account", type: "address" },
660
+ { internalType: "uint256", name: "_blockNumber", type: "uint256" }
661
+ ],
662
+ name: "isListedAtBlock",
663
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
664
+ stateMutability: "view",
665
+ type: "function"
666
+ },
667
+ {
668
+ inputs: [{ internalType: "address", name: "_account", type: "address" }],
669
+ name: "isMember",
670
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
671
+ stateMutability: "view",
672
+ type: "function"
673
+ },
674
+ {
675
+ inputs: [],
676
+ name: "lastMultisigSettingsChange",
677
+ outputs: [{ internalType: "uint64", name: "", type: "uint64" }],
678
+ stateMutability: "view",
679
+ type: "function"
680
+ },
681
+ {
682
+ inputs: [],
683
+ name: "multisigSettings",
684
+ outputs: [
685
+ { internalType: "bool", name: "onlyListed", type: "bool" },
686
+ { internalType: "uint16", name: "minApprovals", type: "uint16" }
687
+ ],
688
+ stateMutability: "view",
689
+ type: "function"
690
+ },
691
+ {
692
+ inputs: [],
693
+ name: "pluginType",
694
+ outputs: [{ internalType: "enum IPlugin.PluginType", name: "", type: "uint8" }],
695
+ stateMutability: "pure",
696
+ type: "function"
697
+ },
698
+ {
699
+ inputs: [],
700
+ name: "proposalCount",
701
+ outputs: [{ internalType: "uint256", name: "", type: "uint256" }],
702
+ stateMutability: "view",
703
+ type: "function"
704
+ },
705
+ {
706
+ inputs: [],
707
+ name: "protocolVersion",
708
+ outputs: [{ internalType: "uint8[3]", name: "", type: "uint8[3]" }],
709
+ stateMutability: "pure",
710
+ type: "function"
711
+ },
712
+ {
713
+ inputs: [],
714
+ name: "proxiableUUID",
715
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
716
+ stateMutability: "view",
717
+ type: "function"
718
+ },
719
+ {
720
+ inputs: [{ internalType: "address[]", name: "_members", type: "address[]" }],
721
+ name: "removeAddresses",
722
+ outputs: [],
723
+ stateMutability: "nonpayable",
724
+ type: "function"
725
+ },
726
+ {
727
+ inputs: [{ internalType: "bytes", name: "_metadata", type: "bytes" }],
728
+ name: "setMetadata",
729
+ outputs: [],
730
+ stateMutability: "nonpayable",
731
+ type: "function"
732
+ },
733
+ {
734
+ inputs: [
735
+ {
736
+ components: [
737
+ { internalType: "address", name: "target", type: "address" },
738
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
739
+ ],
740
+ internalType: "struct IPlugin.TargetConfig",
741
+ name: "_targetConfig",
742
+ type: "tuple"
743
+ }
744
+ ],
745
+ name: "setTargetConfig",
746
+ outputs: [],
747
+ stateMutability: "nonpayable",
748
+ type: "function"
749
+ },
750
+ {
751
+ inputs: [{ internalType: "bytes4", name: "_interfaceId", type: "bytes4" }],
752
+ name: "supportsInterface",
753
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
754
+ stateMutability: "view",
755
+ type: "function"
756
+ },
757
+ {
758
+ inputs: [
759
+ {
760
+ components: [
761
+ { internalType: "bool", name: "onlyListed", type: "bool" },
762
+ { internalType: "uint16", name: "minApprovals", type: "uint16" }
763
+ ],
764
+ internalType: "struct Multisig.MultisigSettings",
765
+ name: "_multisigSettings",
766
+ type: "tuple"
767
+ }
768
+ ],
769
+ name: "updateMultisigSettings",
770
+ outputs: [],
771
+ stateMutability: "nonpayable",
772
+ type: "function"
773
+ },
774
+ {
775
+ inputs: [{ internalType: "address", name: "newImplementation", type: "address" }],
776
+ name: "upgradeTo",
777
+ outputs: [],
778
+ stateMutability: "nonpayable",
779
+ type: "function"
780
+ },
781
+ {
782
+ inputs: [
783
+ { internalType: "address", name: "newImplementation", type: "address" },
784
+ { internalType: "bytes", name: "data", type: "bytes" }
785
+ ],
786
+ name: "upgradeToAndCall",
787
+ outputs: [],
788
+ stateMutability: "payable",
789
+ type: "function"
790
+ }
791
+ ];
792
+
793
+ // exports/abis/aragon/AragonDelayedAction.ts
794
+ var AragonDelayedAction_ABI = [
795
+ { inputs: [], name: "AlreadyInitialized", type: "error" },
796
+ { inputs: [{ internalType: "address", name: "body", type: "address" }], name: "BodyResultTypeNotSet", type: "error" },
797
+ {
798
+ inputs: [
799
+ { internalType: "address", name: "dao", type: "address" },
800
+ { internalType: "address", name: "where", type: "address" },
801
+ { internalType: "address", name: "who", type: "address" },
802
+ { internalType: "bytes32", name: "permissionId", type: "bytes32" }
803
+ ],
804
+ name: "DaoUnauthorized",
805
+ type: "error"
806
+ },
807
+ { inputs: [], name: "DelegateCallFailed", type: "error" },
808
+ {
809
+ inputs: [
810
+ { internalType: "uint256", name: "stageId", type: "uint256" },
811
+ { internalType: "address", name: "body", type: "address" }
812
+ ],
813
+ name: "DuplicateBodyAddress",
814
+ type: "error"
815
+ },
816
+ { inputs: [], name: "FunctionDeprecated", type: "error" },
817
+ { inputs: [], name: "InsufficientGas", type: "error" },
818
+ { inputs: [], name: "InterfaceNotSupported", type: "error" },
819
+ {
820
+ inputs: [
821
+ {
822
+ components: [
823
+ { internalType: "address", name: "target", type: "address" },
824
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
825
+ ],
826
+ internalType: "struct IPlugin.TargetConfig",
827
+ name: "targetConfig",
828
+ type: "tuple"
829
+ }
830
+ ],
831
+ name: "InvalidTargetConfig",
832
+ type: "error"
833
+ },
834
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "NonexistentProposal", type: "error" },
835
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "ProposalAdvanceForbidden", type: "error" },
836
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "ProposalAlreadyExists", type: "error" },
837
+ {
838
+ inputs: [
839
+ { internalType: "uint256", name: "proposalId", type: "uint256" },
840
+ { internalType: "uint16", name: "stageId", type: "uint16" }
841
+ ],
842
+ name: "ProposalCanNotBeCancelled",
843
+ type: "error"
844
+ },
845
+ {
846
+ inputs: [
847
+ { internalType: "uint256", name: "proposalId", type: "uint256" },
848
+ { internalType: "uint16", name: "stageId", type: "uint16" }
849
+ ],
850
+ name: "ProposalCanNotBeEdited",
851
+ type: "error"
852
+ },
853
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "ProposalExecutionForbidden", type: "error" },
854
+ { inputs: [], name: "StageCountZero", type: "error" },
855
+ { inputs: [], name: "StageDurationsInvalid", type: "error" },
856
+ {
857
+ inputs: [
858
+ { internalType: "uint64", name: "currentStageId", type: "uint64" },
859
+ { internalType: "uint64", name: "reportedStageId", type: "uint64" }
860
+ ],
861
+ name: "StageIdInvalid",
862
+ type: "error"
863
+ },
864
+ { inputs: [], name: "StageThresholdsInvalid", type: "error" },
865
+ { inputs: [{ internalType: "uint64", name: "", type: "uint64" }], name: "StartDateInvalid", type: "error" },
866
+ { inputs: [], name: "Uint16MaxSizeExceeded", type: "error" },
867
+ {
868
+ inputs: [
869
+ { internalType: "uint256", name: "proposalId", type: "uint256" },
870
+ { internalType: "uint8", name: "currentState", type: "uint8" },
871
+ { internalType: "bytes32", name: "allowedStates", type: "bytes32" }
872
+ ],
873
+ name: "UnexpectedProposalState",
874
+ type: "error"
875
+ },
876
+ {
877
+ anonymous: false,
878
+ inputs: [
879
+ { indexed: false, internalType: "address", name: "previousAdmin", type: "address" },
880
+ { indexed: false, internalType: "address", name: "newAdmin", type: "address" }
881
+ ],
882
+ name: "AdminChanged",
883
+ type: "event"
884
+ },
885
+ {
886
+ anonymous: false,
887
+ inputs: [{ indexed: true, internalType: "address", name: "beacon", type: "address" }],
888
+ name: "BeaconUpgraded",
889
+ type: "event"
890
+ },
891
+ {
892
+ anonymous: false,
893
+ inputs: [{ indexed: false, internalType: "uint8", name: "version", type: "uint8" }],
894
+ name: "Initialized",
895
+ type: "event"
896
+ },
897
+ {
898
+ anonymous: false,
899
+ inputs: [{ indexed: false, internalType: "bytes", name: "metadata", type: "bytes" }],
900
+ name: "MetadataSet",
901
+ type: "event"
902
+ },
903
+ {
904
+ anonymous: false,
905
+ inputs: [
906
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
907
+ { indexed: true, internalType: "uint16", name: "stageId", type: "uint16" },
908
+ { indexed: true, internalType: "address", name: "sender", type: "address" }
909
+ ],
910
+ name: "ProposalAdvanced",
911
+ type: "event"
912
+ },
913
+ {
914
+ anonymous: false,
915
+ inputs: [
916
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
917
+ { indexed: true, internalType: "uint16", name: "stageId", type: "uint16" },
918
+ { indexed: true, internalType: "address", name: "sender", type: "address" }
919
+ ],
920
+ name: "ProposalCanceled",
921
+ type: "event"
922
+ },
923
+ {
924
+ anonymous: false,
925
+ inputs: [
926
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
927
+ { indexed: true, internalType: "address", name: "creator", type: "address" },
928
+ { indexed: false, internalType: "uint64", name: "startDate", type: "uint64" },
929
+ { indexed: false, internalType: "uint64", name: "endDate", type: "uint64" },
930
+ { indexed: false, internalType: "bytes", name: "metadata", type: "bytes" },
931
+ {
932
+ components: [
933
+ { internalType: "address", name: "to", type: "address" },
934
+ { internalType: "uint256", name: "value", type: "uint256" },
935
+ { internalType: "bytes", name: "data", type: "bytes" }
936
+ ],
937
+ indexed: false,
938
+ internalType: "struct Action[]",
939
+ name: "actions",
940
+ type: "tuple[]"
941
+ },
942
+ { indexed: false, internalType: "uint256", name: "allowFailureMap", type: "uint256" }
943
+ ],
944
+ name: "ProposalCreated",
945
+ type: "event"
946
+ },
947
+ {
948
+ anonymous: false,
949
+ inputs: [
950
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
951
+ { indexed: true, internalType: "uint16", name: "stageId", type: "uint16" },
952
+ { indexed: true, internalType: "address", name: "sender", type: "address" },
953
+ { indexed: false, internalType: "bytes", name: "metadata", type: "bytes" },
954
+ {
955
+ components: [
956
+ { internalType: "address", name: "to", type: "address" },
957
+ { internalType: "uint256", name: "value", type: "uint256" },
958
+ { internalType: "bytes", name: "data", type: "bytes" }
959
+ ],
960
+ indexed: false,
961
+ internalType: "struct Action[]",
962
+ name: "actions",
963
+ type: "tuple[]"
964
+ }
965
+ ],
966
+ name: "ProposalEdited",
967
+ type: "event"
968
+ },
969
+ {
970
+ anonymous: false,
971
+ inputs: [{ indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" }],
972
+ name: "ProposalExecuted",
973
+ type: "event"
974
+ },
975
+ {
976
+ anonymous: false,
977
+ inputs: [
978
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
979
+ { indexed: true, internalType: "uint16", name: "stageId", type: "uint16" },
980
+ { indexed: true, internalType: "address", name: "body", type: "address" }
981
+ ],
982
+ name: "ProposalResultReported",
983
+ type: "event"
984
+ },
985
+ {
986
+ anonymous: false,
987
+ inputs: [
988
+ {
989
+ components: [
990
+ {
991
+ components: [
992
+ { internalType: "address", name: "addr", type: "address" },
993
+ { internalType: "bool", name: "isManual", type: "bool" },
994
+ { internalType: "bool", name: "tryAdvance", type: "bool" },
995
+ { internalType: "enum StagedProposalProcessor.ResultType", name: "resultType", type: "uint8" }
996
+ ],
997
+ internalType: "struct StagedProposalProcessor.Body[]",
998
+ name: "bodies",
999
+ type: "tuple[]"
1000
+ },
1001
+ { internalType: "uint64", name: "maxAdvance", type: "uint64" },
1002
+ { internalType: "uint64", name: "minAdvance", type: "uint64" },
1003
+ { internalType: "uint64", name: "voteDuration", type: "uint64" },
1004
+ { internalType: "uint16", name: "approvalThreshold", type: "uint16" },
1005
+ { internalType: "uint16", name: "vetoThreshold", type: "uint16" },
1006
+ { internalType: "bool", name: "cancelable", type: "bool" },
1007
+ { internalType: "bool", name: "editable", type: "bool" }
1008
+ ],
1009
+ indexed: false,
1010
+ internalType: "struct StagedProposalProcessor.Stage[]",
1011
+ name: "stages",
1012
+ type: "tuple[]"
1013
+ }
1014
+ ],
1015
+ name: "StagesUpdated",
1016
+ type: "event"
1017
+ },
1018
+ {
1019
+ anonymous: false,
1020
+ inputs: [
1021
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
1022
+ { indexed: true, internalType: "uint16", name: "stageId", type: "uint16" },
1023
+ { indexed: true, internalType: "address", name: "body", type: "address" },
1024
+ { indexed: false, internalType: "uint256", name: "bodyProposalId", type: "uint256" }
1025
+ ],
1026
+ name: "SubProposalCreated",
1027
+ type: "event"
1028
+ },
1029
+ {
1030
+ anonymous: false,
1031
+ inputs: [
1032
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
1033
+ { indexed: true, internalType: "uint16", name: "stageId", type: "uint16" },
1034
+ { indexed: true, internalType: "address", name: "body", type: "address" },
1035
+ { indexed: false, internalType: "bytes", name: "reason", type: "bytes" }
1036
+ ],
1037
+ name: "SubProposalNotCreated",
1038
+ type: "event"
1039
+ },
1040
+ {
1041
+ anonymous: false,
1042
+ inputs: [
1043
+ {
1044
+ components: [
1045
+ { internalType: "address", name: "target", type: "address" },
1046
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1047
+ ],
1048
+ indexed: false,
1049
+ internalType: "struct IPlugin.TargetConfig",
1050
+ name: "newTargetConfig",
1051
+ type: "tuple"
1052
+ }
1053
+ ],
1054
+ name: "TargetSet",
1055
+ type: "event"
1056
+ },
1057
+ {
1058
+ anonymous: false,
1059
+ inputs: [{ indexed: true, internalType: "address", name: "forwarder", type: "address" }],
1060
+ name: "TrustedForwarderUpdated",
1061
+ type: "event"
1062
+ },
1063
+ {
1064
+ anonymous: false,
1065
+ inputs: [{ indexed: true, internalType: "address", name: "implementation", type: "address" }],
1066
+ name: "Upgraded",
1067
+ type: "event"
1068
+ },
1069
+ {
1070
+ inputs: [],
1071
+ name: "SET_METADATA_PERMISSION_ID",
1072
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1073
+ stateMutability: "view",
1074
+ type: "function"
1075
+ },
1076
+ {
1077
+ inputs: [],
1078
+ name: "SET_TARGET_CONFIG_PERMISSION_ID",
1079
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1080
+ stateMutability: "view",
1081
+ type: "function"
1082
+ },
1083
+ {
1084
+ inputs: [],
1085
+ name: "UPGRADE_PLUGIN_PERMISSION_ID",
1086
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1087
+ stateMutability: "view",
1088
+ type: "function"
1089
+ },
1090
+ {
1091
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1092
+ name: "advanceProposal",
1093
+ outputs: [],
1094
+ stateMutability: "nonpayable",
1095
+ type: "function"
1096
+ },
1097
+ {
1098
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1099
+ name: "canExecute",
1100
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
1101
+ stateMutability: "view",
1102
+ type: "function"
1103
+ },
1104
+ {
1105
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1106
+ name: "canProposalAdvance",
1107
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
1108
+ stateMutability: "view",
1109
+ type: "function"
1110
+ },
1111
+ {
1112
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1113
+ name: "cancel",
1114
+ outputs: [],
1115
+ stateMutability: "nonpayable",
1116
+ type: "function"
1117
+ },
1118
+ {
1119
+ inputs: [
1120
+ { internalType: "bytes", name: "_metadata", type: "bytes" },
1121
+ {
1122
+ components: [
1123
+ { internalType: "address", name: "to", type: "address" },
1124
+ { internalType: "uint256", name: "value", type: "uint256" },
1125
+ { internalType: "bytes", name: "data", type: "bytes" }
1126
+ ],
1127
+ internalType: "struct Action[]",
1128
+ name: "_actions",
1129
+ type: "tuple[]"
1130
+ },
1131
+ { internalType: "uint128", name: "_allowFailureMap", type: "uint128" },
1132
+ { internalType: "uint64", name: "_startDate", type: "uint64" },
1133
+ { internalType: "bytes[][]", name: "_proposalParams", type: "bytes[][]" }
1134
+ ],
1135
+ name: "createProposal",
1136
+ outputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }],
1137
+ stateMutability: "nonpayable",
1138
+ type: "function"
1139
+ },
1140
+ {
1141
+ inputs: [
1142
+ { internalType: "bytes", name: "_metadata", type: "bytes" },
1143
+ {
1144
+ components: [
1145
+ { internalType: "address", name: "to", type: "address" },
1146
+ { internalType: "uint256", name: "value", type: "uint256" },
1147
+ { internalType: "bytes", name: "data", type: "bytes" }
1148
+ ],
1149
+ internalType: "struct Action[]",
1150
+ name: "_actions",
1151
+ type: "tuple[]"
1152
+ },
1153
+ { internalType: "uint64", name: "_startDate", type: "uint64" },
1154
+ { internalType: "uint64", name: "", type: "uint64" },
1155
+ { internalType: "bytes", name: "_data", type: "bytes" }
1156
+ ],
1157
+ name: "createProposal",
1158
+ outputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }],
1159
+ stateMutability: "nonpayable",
1160
+ type: "function"
1161
+ },
1162
+ {
1163
+ inputs: [],
1164
+ name: "customProposalParamsABI",
1165
+ outputs: [{ internalType: "string", name: "", type: "string" }],
1166
+ stateMutability: "pure",
1167
+ type: "function"
1168
+ },
1169
+ {
1170
+ inputs: [],
1171
+ name: "dao",
1172
+ outputs: [{ internalType: "contract IDAO", name: "", type: "address" }],
1173
+ stateMutability: "view",
1174
+ type: "function"
1175
+ },
1176
+ {
1177
+ inputs: [
1178
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
1179
+ { internalType: "bytes", name: "_metadata", type: "bytes" },
1180
+ {
1181
+ components: [
1182
+ { internalType: "address", name: "to", type: "address" },
1183
+ { internalType: "uint256", name: "value", type: "uint256" },
1184
+ { internalType: "bytes", name: "data", type: "bytes" }
1185
+ ],
1186
+ internalType: "struct Action[]",
1187
+ name: "_actions",
1188
+ type: "tuple[]"
1189
+ }
1190
+ ],
1191
+ name: "edit",
1192
+ outputs: [],
1193
+ stateMutability: "nonpayable",
1194
+ type: "function"
1195
+ },
1196
+ {
1197
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1198
+ name: "execute",
1199
+ outputs: [],
1200
+ stateMutability: "nonpayable",
1201
+ type: "function"
1202
+ },
1203
+ {
1204
+ inputs: [
1205
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
1206
+ { internalType: "uint16", name: "_stageId", type: "uint16" },
1207
+ { internalType: "address", name: "_body", type: "address" }
1208
+ ],
1209
+ name: "getBodyProposalId",
1210
+ outputs: [{ internalType: "uint256", name: "", type: "uint256" }],
1211
+ stateMutability: "view",
1212
+ type: "function"
1213
+ },
1214
+ {
1215
+ inputs: [
1216
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
1217
+ { internalType: "uint16", name: "_stageId", type: "uint16" },
1218
+ { internalType: "address", name: "_body", type: "address" }
1219
+ ],
1220
+ name: "getBodyResult",
1221
+ outputs: [{ internalType: "enum StagedProposalProcessor.ResultType", name: "", type: "uint8" }],
1222
+ stateMutability: "view",
1223
+ type: "function"
1224
+ },
1225
+ {
1226
+ inputs: [
1227
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
1228
+ { internalType: "uint16", name: "_stageId", type: "uint16" },
1229
+ { internalType: "uint256", name: "_index", type: "uint256" }
1230
+ ],
1231
+ name: "getCreateProposalParams",
1232
+ outputs: [{ internalType: "bytes", name: "", type: "bytes" }],
1233
+ stateMutability: "view",
1234
+ type: "function"
1235
+ },
1236
+ {
1237
+ inputs: [],
1238
+ name: "getCurrentConfigIndex",
1239
+ outputs: [{ internalType: "uint16", name: "", type: "uint16" }],
1240
+ stateMutability: "view",
1241
+ type: "function"
1242
+ },
1243
+ {
1244
+ inputs: [],
1245
+ name: "getCurrentTargetConfig",
1246
+ outputs: [
1247
+ {
1248
+ components: [
1249
+ { internalType: "address", name: "target", type: "address" },
1250
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1251
+ ],
1252
+ internalType: "struct IPlugin.TargetConfig",
1253
+ name: "",
1254
+ type: "tuple"
1255
+ }
1256
+ ],
1257
+ stateMutability: "view",
1258
+ type: "function"
1259
+ },
1260
+ {
1261
+ inputs: [],
1262
+ name: "getMetadata",
1263
+ outputs: [{ internalType: "bytes", name: "", type: "bytes" }],
1264
+ stateMutability: "view",
1265
+ type: "function"
1266
+ },
1267
+ {
1268
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1269
+ name: "getProposal",
1270
+ outputs: [
1271
+ {
1272
+ components: [
1273
+ { internalType: "uint128", name: "allowFailureMap", type: "uint128" },
1274
+ { internalType: "uint64", name: "lastStageTransition", type: "uint64" },
1275
+ { internalType: "uint16", name: "currentStage", type: "uint16" },
1276
+ { internalType: "uint16", name: "stageConfigIndex", type: "uint16" },
1277
+ { internalType: "bool", name: "executed", type: "bool" },
1278
+ { internalType: "bool", name: "canceled", type: "bool" },
1279
+ { internalType: "address", name: "creator", type: "address" },
1280
+ {
1281
+ components: [
1282
+ { internalType: "address", name: "to", type: "address" },
1283
+ { internalType: "uint256", name: "value", type: "uint256" },
1284
+ { internalType: "bytes", name: "data", type: "bytes" }
1285
+ ],
1286
+ internalType: "struct Action[]",
1287
+ name: "actions",
1288
+ type: "tuple[]"
1289
+ },
1290
+ {
1291
+ components: [
1292
+ { internalType: "address", name: "target", type: "address" },
1293
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1294
+ ],
1295
+ internalType: "struct IPlugin.TargetConfig",
1296
+ name: "targetConfig",
1297
+ type: "tuple"
1298
+ }
1299
+ ],
1300
+ internalType: "struct StagedProposalProcessor.Proposal",
1301
+ name: "",
1302
+ type: "tuple"
1303
+ }
1304
+ ],
1305
+ stateMutability: "view",
1306
+ type: "function"
1307
+ },
1308
+ {
1309
+ inputs: [
1310
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
1311
+ { internalType: "uint16", name: "_stageId", type: "uint16" }
1312
+ ],
1313
+ name: "getProposalTally",
1314
+ outputs: [
1315
+ { internalType: "uint256", name: "approvals", type: "uint256" },
1316
+ { internalType: "uint256", name: "vetoes", type: "uint256" }
1317
+ ],
1318
+ stateMutability: "view",
1319
+ type: "function"
1320
+ },
1321
+ {
1322
+ inputs: [{ internalType: "uint256", name: "_index", type: "uint256" }],
1323
+ name: "getStages",
1324
+ outputs: [
1325
+ {
1326
+ components: [
1327
+ {
1328
+ components: [
1329
+ { internalType: "address", name: "addr", type: "address" },
1330
+ { internalType: "bool", name: "isManual", type: "bool" },
1331
+ { internalType: "bool", name: "tryAdvance", type: "bool" },
1332
+ { internalType: "enum StagedProposalProcessor.ResultType", name: "resultType", type: "uint8" }
1333
+ ],
1334
+ internalType: "struct StagedProposalProcessor.Body[]",
1335
+ name: "bodies",
1336
+ type: "tuple[]"
1337
+ },
1338
+ { internalType: "uint64", name: "maxAdvance", type: "uint64" },
1339
+ { internalType: "uint64", name: "minAdvance", type: "uint64" },
1340
+ { internalType: "uint64", name: "voteDuration", type: "uint64" },
1341
+ { internalType: "uint16", name: "approvalThreshold", type: "uint16" },
1342
+ { internalType: "uint16", name: "vetoThreshold", type: "uint16" },
1343
+ { internalType: "bool", name: "cancelable", type: "bool" },
1344
+ { internalType: "bool", name: "editable", type: "bool" }
1345
+ ],
1346
+ internalType: "struct StagedProposalProcessor.Stage[]",
1347
+ name: "",
1348
+ type: "tuple[]"
1349
+ }
1350
+ ],
1351
+ stateMutability: "view",
1352
+ type: "function"
1353
+ },
1354
+ {
1355
+ inputs: [],
1356
+ name: "getTargetConfig",
1357
+ outputs: [
1358
+ {
1359
+ components: [
1360
+ { internalType: "address", name: "target", type: "address" },
1361
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1362
+ ],
1363
+ internalType: "struct IPlugin.TargetConfig",
1364
+ name: "",
1365
+ type: "tuple"
1366
+ }
1367
+ ],
1368
+ stateMutability: "view",
1369
+ type: "function"
1370
+ },
1371
+ {
1372
+ inputs: [],
1373
+ name: "getTrustedForwarder",
1374
+ outputs: [{ internalType: "address", name: "", type: "address" }],
1375
+ stateMutability: "view",
1376
+ type: "function"
1377
+ },
1378
+ {
1379
+ inputs: [{ internalType: "address", name: "_account", type: "address" }],
1380
+ name: "hasAdvancePermission",
1381
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
1382
+ stateMutability: "view",
1383
+ type: "function"
1384
+ },
1385
+ {
1386
+ inputs: [{ internalType: "address", name: "_account", type: "address" }],
1387
+ name: "hasExecutePermission",
1388
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
1389
+ stateMutability: "view",
1390
+ type: "function"
1391
+ },
1392
+ {
1393
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1394
+ name: "hasSucceeded",
1395
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
1396
+ stateMutability: "view",
1397
+ type: "function"
1398
+ },
1399
+ {
1400
+ inputs: [],
1401
+ name: "implementation",
1402
+ outputs: [{ internalType: "address", name: "", type: "address" }],
1403
+ stateMutability: "view",
1404
+ type: "function"
1405
+ },
1406
+ {
1407
+ inputs: [
1408
+ { internalType: "contract IDAO", name: "_dao", type: "address" },
1409
+ { internalType: "address", name: "_trustedForwarder", type: "address" },
1410
+ {
1411
+ components: [
1412
+ {
1413
+ components: [
1414
+ { internalType: "address", name: "addr", type: "address" },
1415
+ { internalType: "bool", name: "isManual", type: "bool" },
1416
+ { internalType: "bool", name: "tryAdvance", type: "bool" },
1417
+ { internalType: "enum StagedProposalProcessor.ResultType", name: "resultType", type: "uint8" }
1418
+ ],
1419
+ internalType: "struct StagedProposalProcessor.Body[]",
1420
+ name: "bodies",
1421
+ type: "tuple[]"
1422
+ },
1423
+ { internalType: "uint64", name: "maxAdvance", type: "uint64" },
1424
+ { internalType: "uint64", name: "minAdvance", type: "uint64" },
1425
+ { internalType: "uint64", name: "voteDuration", type: "uint64" },
1426
+ { internalType: "uint16", name: "approvalThreshold", type: "uint16" },
1427
+ { internalType: "uint16", name: "vetoThreshold", type: "uint16" },
1428
+ { internalType: "bool", name: "cancelable", type: "bool" },
1429
+ { internalType: "bool", name: "editable", type: "bool" }
1430
+ ],
1431
+ internalType: "struct StagedProposalProcessor.Stage[]",
1432
+ name: "_stages",
1433
+ type: "tuple[]"
1434
+ },
1435
+ { internalType: "bytes", name: "_pluginMetadata", type: "bytes" },
1436
+ {
1437
+ components: [
1438
+ { internalType: "address", name: "target", type: "address" },
1439
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1440
+ ],
1441
+ internalType: "struct IPlugin.TargetConfig",
1442
+ name: "_targetConfig",
1443
+ type: "tuple"
1444
+ }
1445
+ ],
1446
+ name: "initialize",
1447
+ outputs: [],
1448
+ stateMutability: "nonpayable",
1449
+ type: "function"
1450
+ },
1451
+ {
1452
+ inputs: [{ internalType: "address", name: "_forwarder", type: "address" }],
1453
+ name: "isTrustedForwarder",
1454
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
1455
+ stateMutability: "view",
1456
+ type: "function"
1457
+ },
1458
+ {
1459
+ inputs: [],
1460
+ name: "pluginType",
1461
+ outputs: [{ internalType: "enum IPlugin.PluginType", name: "", type: "uint8" }],
1462
+ stateMutability: "pure",
1463
+ type: "function"
1464
+ },
1465
+ {
1466
+ inputs: [],
1467
+ name: "proposalCount",
1468
+ outputs: [{ internalType: "uint256", name: "", type: "uint256" }],
1469
+ stateMutability: "view",
1470
+ type: "function"
1471
+ },
1472
+ {
1473
+ inputs: [],
1474
+ name: "protocolVersion",
1475
+ outputs: [{ internalType: "uint8[3]", name: "", type: "uint8[3]" }],
1476
+ stateMutability: "pure",
1477
+ type: "function"
1478
+ },
1479
+ {
1480
+ inputs: [],
1481
+ name: "proxiableUUID",
1482
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1483
+ stateMutability: "view",
1484
+ type: "function"
1485
+ },
1486
+ {
1487
+ inputs: [
1488
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
1489
+ { internalType: "uint16", name: "_stageId", type: "uint16" },
1490
+ { internalType: "enum StagedProposalProcessor.ResultType", name: "_resultType", type: "uint8" },
1491
+ { internalType: "bool", name: "_tryAdvance", type: "bool" }
1492
+ ],
1493
+ name: "reportProposalResult",
1494
+ outputs: [],
1495
+ stateMutability: "nonpayable",
1496
+ type: "function"
1497
+ },
1498
+ {
1499
+ inputs: [{ internalType: "bytes", name: "_metadata", type: "bytes" }],
1500
+ name: "setMetadata",
1501
+ outputs: [],
1502
+ stateMutability: "nonpayable",
1503
+ type: "function"
1504
+ },
1505
+ {
1506
+ inputs: [
1507
+ {
1508
+ components: [
1509
+ { internalType: "address", name: "target", type: "address" },
1510
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1511
+ ],
1512
+ internalType: "struct IPlugin.TargetConfig",
1513
+ name: "_targetConfig",
1514
+ type: "tuple"
1515
+ }
1516
+ ],
1517
+ name: "setTargetConfig",
1518
+ outputs: [],
1519
+ stateMutability: "nonpayable",
1520
+ type: "function"
1521
+ },
1522
+ {
1523
+ inputs: [{ internalType: "address", name: "_forwarder", type: "address" }],
1524
+ name: "setTrustedForwarder",
1525
+ outputs: [],
1526
+ stateMutability: "nonpayable",
1527
+ type: "function"
1528
+ },
1529
+ {
1530
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1531
+ name: "state",
1532
+ outputs: [{ internalType: "enum StagedProposalProcessor.ProposalState", name: "", type: "uint8" }],
1533
+ stateMutability: "view",
1534
+ type: "function"
1535
+ },
1536
+ {
1537
+ inputs: [{ internalType: "bytes4", name: "_interfaceId", type: "bytes4" }],
1538
+ name: "supportsInterface",
1539
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
1540
+ stateMutability: "view",
1541
+ type: "function"
1542
+ },
1543
+ {
1544
+ inputs: [
1545
+ {
1546
+ components: [
1547
+ {
1548
+ components: [
1549
+ { internalType: "address", name: "addr", type: "address" },
1550
+ { internalType: "bool", name: "isManual", type: "bool" },
1551
+ { internalType: "bool", name: "tryAdvance", type: "bool" },
1552
+ { internalType: "enum StagedProposalProcessor.ResultType", name: "resultType", type: "uint8" }
1553
+ ],
1554
+ internalType: "struct StagedProposalProcessor.Body[]",
1555
+ name: "bodies",
1556
+ type: "tuple[]"
1557
+ },
1558
+ { internalType: "uint64", name: "maxAdvance", type: "uint64" },
1559
+ { internalType: "uint64", name: "minAdvance", type: "uint64" },
1560
+ { internalType: "uint64", name: "voteDuration", type: "uint64" },
1561
+ { internalType: "uint16", name: "approvalThreshold", type: "uint16" },
1562
+ { internalType: "uint16", name: "vetoThreshold", type: "uint16" },
1563
+ { internalType: "bool", name: "cancelable", type: "bool" },
1564
+ { internalType: "bool", name: "editable", type: "bool" }
1565
+ ],
1566
+ internalType: "struct StagedProposalProcessor.Stage[]",
1567
+ name: "_stages",
1568
+ type: "tuple[]"
1569
+ }
1570
+ ],
1571
+ name: "updateStages",
1572
+ outputs: [],
1573
+ stateMutability: "nonpayable",
1574
+ type: "function"
1575
+ },
1576
+ {
1577
+ inputs: [{ internalType: "address", name: "newImplementation", type: "address" }],
1578
+ name: "upgradeTo",
1579
+ outputs: [],
1580
+ stateMutability: "nonpayable",
1581
+ type: "function"
1582
+ },
1583
+ {
1584
+ inputs: [
1585
+ { internalType: "address", name: "newImplementation", type: "address" },
1586
+ { internalType: "bytes", name: "data", type: "bytes" }
1587
+ ],
1588
+ name: "upgradeToAndCall",
1589
+ outputs: [],
1590
+ stateMutability: "payable",
1591
+ type: "function"
1592
+ }
1593
+ ];
1594
+
1595
+ // exports/abis/aragon/AragonVetoMultiSig.ts
1596
+ var AragonVetoMultiSig_ABI = [
1597
+ {
1598
+ inputs: [
1599
+ { internalType: "uint16", name: "limit", type: "uint16" },
1600
+ { internalType: "uint256", name: "actual", type: "uint256" }
1601
+ ],
1602
+ name: "AddresslistLengthOutOfBounds",
1603
+ type: "error"
1604
+ },
1605
+ { inputs: [], name: "AlreadyInitialized", type: "error" },
1606
+ {
1607
+ inputs: [
1608
+ { internalType: "uint256", name: "proposalId", type: "uint256" },
1609
+ { internalType: "address", name: "sender", type: "address" }
1610
+ ],
1611
+ name: "ApprovalCastForbidden",
1612
+ type: "error"
1613
+ },
1614
+ {
1615
+ inputs: [
1616
+ { internalType: "address", name: "dao", type: "address" },
1617
+ { internalType: "address", name: "where", type: "address" },
1618
+ { internalType: "address", name: "who", type: "address" },
1619
+ { internalType: "bytes32", name: "permissionId", type: "bytes32" }
1620
+ ],
1621
+ name: "DaoUnauthorized",
1622
+ type: "error"
1623
+ },
1624
+ {
1625
+ inputs: [
1626
+ { internalType: "uint64", name: "limit", type: "uint64" },
1627
+ { internalType: "uint64", name: "actual", type: "uint64" }
1628
+ ],
1629
+ name: "DateOutOfBounds",
1630
+ type: "error"
1631
+ },
1632
+ { inputs: [], name: "DelegateCallFailed", type: "error" },
1633
+ { inputs: [], name: "FunctionDeprecated", type: "error" },
1634
+ { inputs: [{ internalType: "address", name: "member", type: "address" }], name: "InvalidAddresslistUpdate", type: "error" },
1635
+ {
1636
+ inputs: [
1637
+ {
1638
+ components: [
1639
+ { internalType: "address", name: "target", type: "address" },
1640
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1641
+ ],
1642
+ internalType: "struct IPlugin.TargetConfig",
1643
+ name: "targetConfig",
1644
+ type: "tuple"
1645
+ }
1646
+ ],
1647
+ name: "InvalidTargetConfig",
1648
+ type: "error"
1649
+ },
1650
+ {
1651
+ inputs: [
1652
+ { internalType: "uint16", name: "limit", type: "uint16" },
1653
+ { internalType: "uint16", name: "actual", type: "uint16" }
1654
+ ],
1655
+ name: "MinApprovalsOutOfBounds",
1656
+ type: "error"
1657
+ },
1658
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "NonexistentProposal", type: "error" },
1659
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "ProposalAlreadyExists", type: "error" },
1660
+ { inputs: [{ internalType: "address", name: "sender", type: "address" }], name: "ProposalCreationForbidden", type: "error" },
1661
+ { inputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }], name: "ProposalExecutionForbidden", type: "error" },
1662
+ {
1663
+ anonymous: false,
1664
+ inputs: [
1665
+ { indexed: false, internalType: "address", name: "previousAdmin", type: "address" },
1666
+ { indexed: false, internalType: "address", name: "newAdmin", type: "address" }
1667
+ ],
1668
+ name: "AdminChanged",
1669
+ type: "event"
1670
+ },
1671
+ {
1672
+ anonymous: false,
1673
+ inputs: [
1674
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
1675
+ { indexed: true, internalType: "address", name: "approver", type: "address" }
1676
+ ],
1677
+ name: "Approved",
1678
+ type: "event"
1679
+ },
1680
+ {
1681
+ anonymous: false,
1682
+ inputs: [{ indexed: true, internalType: "address", name: "beacon", type: "address" }],
1683
+ name: "BeaconUpgraded",
1684
+ type: "event"
1685
+ },
1686
+ {
1687
+ anonymous: false,
1688
+ inputs: [{ indexed: false, internalType: "uint8", name: "version", type: "uint8" }],
1689
+ name: "Initialized",
1690
+ type: "event"
1691
+ },
1692
+ {
1693
+ anonymous: false,
1694
+ inputs: [{ indexed: false, internalType: "address[]", name: "members", type: "address[]" }],
1695
+ name: "MembersAdded",
1696
+ type: "event"
1697
+ },
1698
+ {
1699
+ anonymous: false,
1700
+ inputs: [{ indexed: false, internalType: "address[]", name: "members", type: "address[]" }],
1701
+ name: "MembersRemoved",
1702
+ type: "event"
1703
+ },
1704
+ {
1705
+ anonymous: false,
1706
+ inputs: [{ indexed: true, internalType: "address", name: "definingContract", type: "address" }],
1707
+ name: "MembershipContractAnnounced",
1708
+ type: "event"
1709
+ },
1710
+ {
1711
+ anonymous: false,
1712
+ inputs: [{ indexed: false, internalType: "bytes", name: "metadata", type: "bytes" }],
1713
+ name: "MetadataSet",
1714
+ type: "event"
1715
+ },
1716
+ {
1717
+ anonymous: false,
1718
+ inputs: [
1719
+ { indexed: false, internalType: "bool", name: "onlyListed", type: "bool" },
1720
+ { indexed: true, internalType: "uint16", name: "minApprovals", type: "uint16" }
1721
+ ],
1722
+ name: "MultisigSettingsUpdated",
1723
+ type: "event"
1724
+ },
1725
+ {
1726
+ anonymous: false,
1727
+ inputs: [
1728
+ { indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" },
1729
+ { indexed: true, internalType: "address", name: "creator", type: "address" },
1730
+ { indexed: false, internalType: "uint64", name: "startDate", type: "uint64" },
1731
+ { indexed: false, internalType: "uint64", name: "endDate", type: "uint64" },
1732
+ { indexed: false, internalType: "bytes", name: "metadata", type: "bytes" },
1733
+ {
1734
+ components: [
1735
+ { internalType: "address", name: "to", type: "address" },
1736
+ { internalType: "uint256", name: "value", type: "uint256" },
1737
+ { internalType: "bytes", name: "data", type: "bytes" }
1738
+ ],
1739
+ indexed: false,
1740
+ internalType: "struct Action[]",
1741
+ name: "actions",
1742
+ type: "tuple[]"
1743
+ },
1744
+ { indexed: false, internalType: "uint256", name: "allowFailureMap", type: "uint256" }
1745
+ ],
1746
+ name: "ProposalCreated",
1747
+ type: "event"
1748
+ },
1749
+ {
1750
+ anonymous: false,
1751
+ inputs: [{ indexed: true, internalType: "uint256", name: "proposalId", type: "uint256" }],
1752
+ name: "ProposalExecuted",
1753
+ type: "event"
1754
+ },
1755
+ {
1756
+ anonymous: false,
1757
+ inputs: [
1758
+ {
1759
+ components: [
1760
+ { internalType: "address", name: "target", type: "address" },
1761
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1762
+ ],
1763
+ indexed: false,
1764
+ internalType: "struct IPlugin.TargetConfig",
1765
+ name: "newTargetConfig",
1766
+ type: "tuple"
1767
+ }
1768
+ ],
1769
+ name: "TargetSet",
1770
+ type: "event"
1771
+ },
1772
+ {
1773
+ anonymous: false,
1774
+ inputs: [{ indexed: true, internalType: "address", name: "implementation", type: "address" }],
1775
+ name: "Upgraded",
1776
+ type: "event"
1777
+ },
1778
+ {
1779
+ inputs: [],
1780
+ name: "CREATE_PROPOSAL_PERMISSION_ID",
1781
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1782
+ stateMutability: "view",
1783
+ type: "function"
1784
+ },
1785
+ {
1786
+ inputs: [],
1787
+ name: "EXECUTE_PROPOSAL_PERMISSION_ID",
1788
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1789
+ stateMutability: "view",
1790
+ type: "function"
1791
+ },
1792
+ {
1793
+ inputs: [],
1794
+ name: "SET_METADATA_PERMISSION_ID",
1795
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1796
+ stateMutability: "view",
1797
+ type: "function"
1798
+ },
1799
+ {
1800
+ inputs: [],
1801
+ name: "SET_TARGET_CONFIG_PERMISSION_ID",
1802
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1803
+ stateMutability: "view",
1804
+ type: "function"
1805
+ },
1806
+ {
1807
+ inputs: [],
1808
+ name: "UPDATE_MULTISIG_SETTINGS_PERMISSION_ID",
1809
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1810
+ stateMutability: "view",
1811
+ type: "function"
1812
+ },
1813
+ {
1814
+ inputs: [],
1815
+ name: "UPGRADE_PLUGIN_PERMISSION_ID",
1816
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
1817
+ stateMutability: "view",
1818
+ type: "function"
1819
+ },
1820
+ {
1821
+ inputs: [{ internalType: "address[]", name: "_members", type: "address[]" }],
1822
+ name: "addAddresses",
1823
+ outputs: [],
1824
+ stateMutability: "nonpayable",
1825
+ type: "function"
1826
+ },
1827
+ {
1828
+ inputs: [],
1829
+ name: "addresslistLength",
1830
+ outputs: [{ internalType: "uint256", name: "", type: "uint256" }],
1831
+ stateMutability: "view",
1832
+ type: "function"
1833
+ },
1834
+ {
1835
+ inputs: [{ internalType: "uint256", name: "_blockNumber", type: "uint256" }],
1836
+ name: "addresslistLengthAtBlock",
1837
+ outputs: [{ internalType: "uint256", name: "", type: "uint256" }],
1838
+ stateMutability: "view",
1839
+ type: "function"
1840
+ },
1841
+ {
1842
+ inputs: [
1843
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
1844
+ { internalType: "bool", name: "_tryExecution", type: "bool" }
1845
+ ],
1846
+ name: "approve",
1847
+ outputs: [],
1848
+ stateMutability: "nonpayable",
1849
+ type: "function"
1850
+ },
1851
+ {
1852
+ inputs: [
1853
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
1854
+ { internalType: "address", name: "_account", type: "address" }
1855
+ ],
1856
+ name: "canApprove",
1857
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
1858
+ stateMutability: "view",
1859
+ type: "function"
1860
+ },
1861
+ {
1862
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1863
+ name: "canExecute",
1864
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
1865
+ stateMutability: "view",
1866
+ type: "function"
1867
+ },
1868
+ {
1869
+ inputs: [
1870
+ { internalType: "bytes", name: "_metadata", type: "bytes" },
1871
+ {
1872
+ components: [
1873
+ { internalType: "address", name: "to", type: "address" },
1874
+ { internalType: "uint256", name: "value", type: "uint256" },
1875
+ { internalType: "bytes", name: "data", type: "bytes" }
1876
+ ],
1877
+ internalType: "struct Action[]",
1878
+ name: "_actions",
1879
+ type: "tuple[]"
1880
+ },
1881
+ { internalType: "uint64", name: "_startDate", type: "uint64" },
1882
+ { internalType: "uint64", name: "_endDate", type: "uint64" },
1883
+ { internalType: "bytes", name: "_data", type: "bytes" }
1884
+ ],
1885
+ name: "createProposal",
1886
+ outputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }],
1887
+ stateMutability: "nonpayable",
1888
+ type: "function"
1889
+ },
1890
+ {
1891
+ inputs: [
1892
+ { internalType: "bytes", name: "_metadata", type: "bytes" },
1893
+ {
1894
+ components: [
1895
+ { internalType: "address", name: "to", type: "address" },
1896
+ { internalType: "uint256", name: "value", type: "uint256" },
1897
+ { internalType: "bytes", name: "data", type: "bytes" }
1898
+ ],
1899
+ internalType: "struct Action[]",
1900
+ name: "_actions",
1901
+ type: "tuple[]"
1902
+ },
1903
+ { internalType: "uint256", name: "_allowFailureMap", type: "uint256" },
1904
+ { internalType: "bool", name: "_approveProposal", type: "bool" },
1905
+ { internalType: "bool", name: "_tryExecution", type: "bool" },
1906
+ { internalType: "uint64", name: "_startDate", type: "uint64" },
1907
+ { internalType: "uint64", name: "_endDate", type: "uint64" }
1908
+ ],
1909
+ name: "createProposal",
1910
+ outputs: [{ internalType: "uint256", name: "proposalId", type: "uint256" }],
1911
+ stateMutability: "nonpayable",
1912
+ type: "function"
1913
+ },
1914
+ {
1915
+ inputs: [],
1916
+ name: "customProposalParamsABI",
1917
+ outputs: [{ internalType: "string", name: "", type: "string" }],
1918
+ stateMutability: "pure",
1919
+ type: "function"
1920
+ },
1921
+ {
1922
+ inputs: [],
1923
+ name: "dao",
1924
+ outputs: [{ internalType: "contract IDAO", name: "", type: "address" }],
1925
+ stateMutability: "view",
1926
+ type: "function"
1927
+ },
1928
+ {
1929
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1930
+ name: "execute",
1931
+ outputs: [],
1932
+ stateMutability: "nonpayable",
1933
+ type: "function"
1934
+ },
1935
+ {
1936
+ inputs: [],
1937
+ name: "getCurrentTargetConfig",
1938
+ outputs: [
1939
+ {
1940
+ components: [
1941
+ { internalType: "address", name: "target", type: "address" },
1942
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1943
+ ],
1944
+ internalType: "struct IPlugin.TargetConfig",
1945
+ name: "",
1946
+ type: "tuple"
1947
+ }
1948
+ ],
1949
+ stateMutability: "view",
1950
+ type: "function"
1951
+ },
1952
+ {
1953
+ inputs: [],
1954
+ name: "getMetadata",
1955
+ outputs: [{ internalType: "bytes", name: "", type: "bytes" }],
1956
+ stateMutability: "view",
1957
+ type: "function"
1958
+ },
1959
+ {
1960
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
1961
+ name: "getProposal",
1962
+ outputs: [
1963
+ { internalType: "bool", name: "executed", type: "bool" },
1964
+ { internalType: "uint16", name: "approvals", type: "uint16" },
1965
+ {
1966
+ components: [
1967
+ { internalType: "uint16", name: "minApprovals", type: "uint16" },
1968
+ { internalType: "uint64", name: "snapshotBlock", type: "uint64" },
1969
+ { internalType: "uint64", name: "startDate", type: "uint64" },
1970
+ { internalType: "uint64", name: "endDate", type: "uint64" }
1971
+ ],
1972
+ internalType: "struct Multisig.ProposalParameters",
1973
+ name: "parameters",
1974
+ type: "tuple"
1975
+ },
1976
+ {
1977
+ components: [
1978
+ { internalType: "address", name: "to", type: "address" },
1979
+ { internalType: "uint256", name: "value", type: "uint256" },
1980
+ { internalType: "bytes", name: "data", type: "bytes" }
1981
+ ],
1982
+ internalType: "struct Action[]",
1983
+ name: "actions",
1984
+ type: "tuple[]"
1985
+ },
1986
+ { internalType: "uint256", name: "allowFailureMap", type: "uint256" },
1987
+ {
1988
+ components: [
1989
+ { internalType: "address", name: "target", type: "address" },
1990
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
1991
+ ],
1992
+ internalType: "struct IPlugin.TargetConfig",
1993
+ name: "targetConfig",
1994
+ type: "tuple"
1995
+ }
1996
+ ],
1997
+ stateMutability: "view",
1998
+ type: "function"
1999
+ },
2000
+ {
2001
+ inputs: [],
2002
+ name: "getTargetConfig",
2003
+ outputs: [
2004
+ {
2005
+ components: [
2006
+ { internalType: "address", name: "target", type: "address" },
2007
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
2008
+ ],
2009
+ internalType: "struct IPlugin.TargetConfig",
2010
+ name: "",
2011
+ type: "tuple"
2012
+ }
2013
+ ],
2014
+ stateMutability: "view",
2015
+ type: "function"
2016
+ },
2017
+ {
2018
+ inputs: [
2019
+ { internalType: "uint256", name: "_proposalId", type: "uint256" },
2020
+ { internalType: "address", name: "_account", type: "address" }
2021
+ ],
2022
+ name: "hasApproved",
2023
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
2024
+ stateMutability: "view",
2025
+ type: "function"
2026
+ },
2027
+ {
2028
+ inputs: [{ internalType: "uint256", name: "_proposalId", type: "uint256" }],
2029
+ name: "hasSucceeded",
2030
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
2031
+ stateMutability: "view",
2032
+ type: "function"
2033
+ },
2034
+ {
2035
+ inputs: [],
2036
+ name: "implementation",
2037
+ outputs: [{ internalType: "address", name: "", type: "address" }],
2038
+ stateMutability: "view",
2039
+ type: "function"
2040
+ },
2041
+ {
2042
+ inputs: [
2043
+ { internalType: "contract IDAO", name: "_dao", type: "address" },
2044
+ { internalType: "address[]", name: "_members", type: "address[]" },
2045
+ {
2046
+ components: [
2047
+ { internalType: "bool", name: "onlyListed", type: "bool" },
2048
+ { internalType: "uint16", name: "minApprovals", type: "uint16" }
2049
+ ],
2050
+ internalType: "struct Multisig.MultisigSettings",
2051
+ name: "_multisigSettings",
2052
+ type: "tuple"
2053
+ },
2054
+ {
2055
+ components: [
2056
+ { internalType: "address", name: "target", type: "address" },
2057
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
2058
+ ],
2059
+ internalType: "struct IPlugin.TargetConfig",
2060
+ name: "_targetConfig",
2061
+ type: "tuple"
2062
+ },
2063
+ { internalType: "bytes", name: "_pluginMetadata", type: "bytes" }
2064
+ ],
2065
+ name: "initialize",
2066
+ outputs: [],
2067
+ stateMutability: "nonpayable",
2068
+ type: "function"
2069
+ },
2070
+ {
2071
+ inputs: [
2072
+ { internalType: "uint16", name: "_fromBuild", type: "uint16" },
2073
+ { internalType: "bytes", name: "_initData", type: "bytes" }
2074
+ ],
2075
+ name: "initializeFrom",
2076
+ outputs: [],
2077
+ stateMutability: "nonpayable",
2078
+ type: "function"
2079
+ },
2080
+ {
2081
+ inputs: [{ internalType: "address", name: "_account", type: "address" }],
2082
+ name: "isListed",
2083
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
2084
+ stateMutability: "view",
2085
+ type: "function"
2086
+ },
2087
+ {
2088
+ inputs: [
2089
+ { internalType: "address", name: "_account", type: "address" },
2090
+ { internalType: "uint256", name: "_blockNumber", type: "uint256" }
2091
+ ],
2092
+ name: "isListedAtBlock",
2093
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
2094
+ stateMutability: "view",
2095
+ type: "function"
2096
+ },
2097
+ {
2098
+ inputs: [{ internalType: "address", name: "_account", type: "address" }],
2099
+ name: "isMember",
2100
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
2101
+ stateMutability: "view",
2102
+ type: "function"
2103
+ },
2104
+ {
2105
+ inputs: [],
2106
+ name: "lastMultisigSettingsChange",
2107
+ outputs: [{ internalType: "uint64", name: "", type: "uint64" }],
2108
+ stateMutability: "view",
2109
+ type: "function"
2110
+ },
2111
+ {
2112
+ inputs: [],
2113
+ name: "multisigSettings",
2114
+ outputs: [
2115
+ { internalType: "bool", name: "onlyListed", type: "bool" },
2116
+ { internalType: "uint16", name: "minApprovals", type: "uint16" }
2117
+ ],
2118
+ stateMutability: "view",
2119
+ type: "function"
2120
+ },
2121
+ {
2122
+ inputs: [],
2123
+ name: "pluginType",
2124
+ outputs: [{ internalType: "enum IPlugin.PluginType", name: "", type: "uint8" }],
2125
+ stateMutability: "pure",
2126
+ type: "function"
2127
+ },
2128
+ {
2129
+ inputs: [],
2130
+ name: "proposalCount",
2131
+ outputs: [{ internalType: "uint256", name: "", type: "uint256" }],
2132
+ stateMutability: "view",
2133
+ type: "function"
2134
+ },
2135
+ {
2136
+ inputs: [],
2137
+ name: "protocolVersion",
2138
+ outputs: [{ internalType: "uint8[3]", name: "", type: "uint8[3]" }],
2139
+ stateMutability: "pure",
2140
+ type: "function"
2141
+ },
2142
+ {
2143
+ inputs: [],
2144
+ name: "proxiableUUID",
2145
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
2146
+ stateMutability: "view",
2147
+ type: "function"
2148
+ },
2149
+ {
2150
+ inputs: [{ internalType: "address[]", name: "_members", type: "address[]" }],
2151
+ name: "removeAddresses",
2152
+ outputs: [],
2153
+ stateMutability: "nonpayable",
2154
+ type: "function"
2155
+ },
2156
+ {
2157
+ inputs: [{ internalType: "bytes", name: "_metadata", type: "bytes" }],
2158
+ name: "setMetadata",
2159
+ outputs: [],
2160
+ stateMutability: "nonpayable",
2161
+ type: "function"
2162
+ },
2163
+ {
2164
+ inputs: [
2165
+ {
2166
+ components: [
2167
+ { internalType: "address", name: "target", type: "address" },
2168
+ { internalType: "enum IPlugin.Operation", name: "operation", type: "uint8" }
2169
+ ],
2170
+ internalType: "struct IPlugin.TargetConfig",
2171
+ name: "_targetConfig",
2172
+ type: "tuple"
2173
+ }
2174
+ ],
2175
+ name: "setTargetConfig",
2176
+ outputs: [],
2177
+ stateMutability: "nonpayable",
2178
+ type: "function"
2179
+ },
2180
+ {
2181
+ inputs: [{ internalType: "bytes4", name: "_interfaceId", type: "bytes4" }],
2182
+ name: "supportsInterface",
2183
+ outputs: [{ internalType: "bool", name: "", type: "bool" }],
2184
+ stateMutability: "view",
2185
+ type: "function"
2186
+ },
2187
+ {
2188
+ inputs: [
2189
+ {
2190
+ components: [
2191
+ { internalType: "bool", name: "onlyListed", type: "bool" },
2192
+ { internalType: "uint16", name: "minApprovals", type: "uint16" }
2193
+ ],
2194
+ internalType: "struct Multisig.MultisigSettings",
2195
+ name: "_multisigSettings",
2196
+ type: "tuple"
2197
+ }
2198
+ ],
2199
+ name: "updateMultisigSettings",
2200
+ outputs: [],
2201
+ stateMutability: "nonpayable",
2202
+ type: "function"
2203
+ },
2204
+ {
2205
+ inputs: [{ internalType: "address", name: "newImplementation", type: "address" }],
2206
+ name: "upgradeTo",
2207
+ outputs: [],
2208
+ stateMutability: "nonpayable",
2209
+ type: "function"
2210
+ },
2211
+ {
2212
+ inputs: [
2213
+ { internalType: "address", name: "newImplementation", type: "address" },
2214
+ { internalType: "bytes", name: "data", type: "bytes" }
2215
+ ],
2216
+ name: "upgradeToAndCall",
2217
+ outputs: [],
2218
+ stateMutability: "payable",
2219
+ type: "function"
2220
+ }
2221
+ ];
2222
+
162
2223
  // exports/abis/curve/CurveAdapterV1.ts
163
2224
  var CurveAdapterV1_ABI = [
164
2225
  {
@@ -21038,6 +23099,9 @@ var VaultAdapterV1_ABI = [
21038
23099
  export {
21039
23100
  ADDRESS,
21040
23101
  AggregatorV3Interface_ABI,
23102
+ AragonDelayedAction_ABI,
23103
+ AragonMultiSig_ABI,
23104
+ AragonVetoMultiSig_ABI,
21041
23105
  ChainMain,
21042
23106
  ChainSide,
21043
23107
  CurveAdapterV1_1_ABI,