Skip to content

Commit

Permalink
Showing the signer list on deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
brickpop committed Nov 14, 2024
1 parent c837b87 commit 702c38e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,19 @@ contract Deploy is Script {
console.log("- Optimistic token voting plugin:", address(daoDeployment.optimisticTokenVotingPlugin));
console.log("");

console.log("Helpers");
console.log("- Signer list", address(daoDeployment.signerList));
console.log("- Encryption registry", address(daoDeployment.encryptionRegistry));
console.log("- Delegation wall", address(delegationWall));

console.log("");

console.log("Plugin repositories");
console.log("- Multisig plugin repository:", address(daoDeployment.multisigPluginRepo));
console.log("- Emergency multisig plugin repository:", address(daoDeployment.emergencyMultisigPluginRepo));
console.log(
"- Optimistic token voting plugin repository:", address(daoDeployment.optimisticTokenVotingPluginRepo)
);
console.log("");

console.log("Helpers");
console.log("- Encryption registry", address(daoDeployment.encryptionRegistry));
console.log("- Delegation wall", address(delegationWall));
}

function getProductionSettings() internal view returns (TaikoDaoFactory.DeploymentSettings memory settings) {
Expand Down

0 comments on commit 702c38e

Please sign in to comment.