@usdu-finance/usdu-core 0.0.2 → 0.0.3

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