Skip to content

Commit

Permalink
Sepolia deployment info
Browse files Browse the repository at this point in the history
  • Loading branch information
brickpop committed Jul 15, 2024
1 parent 118b5b6 commit c3982f3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions DEPLOYMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,23 @@
On June 6th 2024:

```
Chain ID: 11155111
Deploying from: 0x424797Ed6d902E17b9180BFcEF452658e148e0Ab
Test voting token: 0xf7A8F99a1d0AFB3C95f80770223b00e062C6Ec19
Factory contract: 0x8c99CDb5567206660CA9b77C3B26C13F6C674952
DAO contract: 0x6C477915CC803518723d4Bdd5B2170cf38A57203
- Multisig plugin: 0x0fC611670228A61824c317926f30e8a2615aa1A3
- Emergency multisig plugin: 0x619d6661eA06b917e26694f23c5Bb32fa0456773
- Optimistic token voting plugin: 0xC9304930f6a4fB2DAe74A17032426Aa1E817897A
- Multisig plugin repository: 0x841E3dA30697C8FC7224a43952041001545a2443
- Emergency multisig plugin repository: 0x6E8578B1519a04BA9262CB633B06624f636D4795
- Optimistic token voting plugin repository: 0x58CA6f90edB98f9213353f456c685ABF253edAA7
Public key registry 0xadAb459A189AAaa17D4807805e6Fab55d3fb5C44
Delegation wall 0x0cE7f031BA69abFB404fE148dD09F597db8AB3a0
```

4 changes: 2 additions & 2 deletions script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ contract Deploy is Script {
);

console.log("Chain ID:", block.chainid);
console.log("Deploying from:", vm.addr(vm.envUint("DEPLOYMENT_PRIVATE_KEY")));
console.log("");
console.log("Deploying from:", vm.addr(vm.envUint("DEPLOYMENT_PRIVATE_KEY")));

TaikoDaoFactory.DeploymentSettings memory settings;
if (block.chainid == 1) {
Expand All @@ -55,6 +55,7 @@ contract Deploy is Script {

// Print summary
console.log("Factory contract:", address(factory));
console.log("");
console.log("DAO contract:", address(daoDeployment.dao));
console.log("");

Expand Down Expand Up @@ -110,7 +111,6 @@ contract Deploy is Script {
address votingToken = createTestToken(multisigMembers, taikoBridgeAddress);

console.log("Test voting token:", votingToken);
console.log("");

settings = TaikoDaoFactory.DeploymentSettings({
// Taiko contract settings
Expand Down

0 comments on commit c3982f3

Please sign in to comment.