Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions addresses/Addresses.sol
Original file line number Diff line number Diff line change
Expand Up @@ -333,11 +333,10 @@ contract Addresses is IAddresses, Test {
if (names.length > 0) {
console.log("\n\n--------- Addresses added ---------");
for (uint256 j = 0; j < names.length; j++) {
console.log("{\n 'addr': '%s', ", addresses[j]);
console.log(" 'chainId': %d,", block.chainid);
console.log(" 'isContract': %s", true, ",");
console.log("{\n \"addr\": \"%s\", ", addresses[j]);
console.log(" \"isContract\": %s,", true);
console.log(
" 'name': '%s'\n}%s",
" \"name\": \"%s\"\n}%s",
names[j],
j < names.length - 1 ? "," : ""
);
Expand Down
14 changes: 6 additions & 8 deletions docs/guides/customizing-proposal.md
Original file line number Diff line number Diff line change
Expand Up @@ -632,16 +632,14 @@ The script will output the following:

--------- Addresses added ---------
{
'addr': '0x6801E4888A91180238A8c36594EC65797eC2dDDf',
'chainId': 42161,
'isContract': true ,
'name': 'ARBITRUM_L2_WETH_GATEWAY_IMPLEMENTATION'
"addr": "0x6801E4888A91180238A8c36594EC65797eC2dDDf",
"isContract": true,
"name": "ARBITRUM_L2_WETH_GATEWAY_IMPLEMENTATION"
},
{
'addr': '0xA98deC0C8e0326756C956033bbF091081986d0eD',
'chainId': 42161,
'isContract': true ,
'name': 'PROXY_UPGRADE_ACTION'
"addr": "0xA98deC0C8e0326756C956033bbF091081986d0eD",
"isContract": true,
"name": "PROXY_UPGRADE_ACTION"
}

---------------- Proposal Description ----------------
Expand Down
14 changes: 6 additions & 8 deletions docs/guides/governor-bravo-proposal.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,16 +347,14 @@ The script will output the following:

--------- Addresses added ---------
{
'addr': '0x69A5DfCD97eF074108b480e369CecfD9335565A2',
'chainId': 11155111,
'isContract': true ,
'name': 'BRAVO_VAULT'
"addr": "0x69A5DfCD97eF074108b480e369CecfD9335565A2",
"isContract": true,
"name": "BRAVO_VAULT"
},
{
'addr': '0x541234b61c081eaAE62c9EF52A633cD2aaf92A05',
'chainId': 11155111,
'isContract': true ,
'name': 'BRAVO_VAULT_TOKEN'
"addr": "0x541234b61c081eaAE62c9EF52A633cD2aaf92A05",
"isContract": true,
"name": "BRAVO_VAULT_TOKEN"
}

---------------- Proposal Description ----------------
Expand Down
14 changes: 6 additions & 8 deletions docs/guides/multisig-proposal.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,16 +218,14 @@ The script will output the following:

--------- Addresses added ---------
{
'addr': '0x69A5DfCD97eF074108b480e369CecfD9335565A2',
'chainId': 11155111,
'isContract': true ,
'name': 'MULTISIG_VAULT'
"addr": "0x69A5DfCD97eF074108b480e369CecfD9335565A2",
"isContract": true,
"name": "MULTISIG_VAULT"
},
{
'addr': '0x541234b61c081eaAE62c9EF52A633cD2aaf92A05',
'chainId': 11155111,
'isContract': true ,
'name': 'MULTISIG_TOKEN'
"addr": "0x541234b61c081eaAE62c9EF52A633cD2aaf92A05",
"isContract": true,
"name": "MULTISIG_TOKEN"
}

---------------- Proposal Description ----------------
Expand Down
14 changes: 6 additions & 8 deletions docs/guides/oz-governor-proposal.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,16 +344,14 @@ The script will output the following:

--------- Addresses added ---------
{
'addr': '0x69A5DfCD97eF074108b480e369CecfD9335565A2',
'chainId': 11155111,
'isContract': true ,
'name': 'OZ_GOVERNOR_VAULT'
"addr": "0x69A5DfCD97eF074108b480e369CecfD9335565A2",
"isContract": true,
"name": "OZ_GOVERNOR_VAULT"
},
{
'addr': '0x541234b61c081eaAE62c9EF52A633cD2aaf92A05',
'chainId': 11155111,
'isContract': true ,
'name': 'OZ_GOVERNOR_VAULT_TOKEN'
"addr": "0x541234b61c081eaAE62c9EF52A633cD2aaf92A05",
"isContract": true,
"name": "OZ_GOVERNOR_VAULT_TOKEN"
}

---------------- Proposal Description ----------------
Expand Down
14 changes: 6 additions & 8 deletions docs/guides/timelock-proposal.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,16 +227,14 @@ The script will output the following:

--------- Addresses added ---------
{
'addr': '0x69A5DfCD97eF074108b480e369CecfD9335565A2',
'chainId': 11155111,
'isContract': true ,
'name': 'TIMELOCK_VAULT'
"addr": "0x69A5DfCD97eF074108b480e369CecfD9335565A2",
"isContract": true,
"name": "TIMELOCK_VAULT"
},
{
'addr': '0x541234b61c081eaAE62c9EF52A633cD2aaf92A05',
'chainId': 11155111,
'isContract': true ,
'name': 'TIMELOCK_TOKEN'
"addr": "0x541234b61c081eaAE62c9EF52A633cD2aaf92A05",
"isContract": true,
"name": "TIMELOCK_TOKEN"
}

---------------- Proposal Description ----------------
Expand Down
14 changes: 6 additions & 8 deletions docs/mainnet-examples/ArbitrumTimelock.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,16 +169,14 @@ The script will output the following:

--------- Addresses added ---------
{
'addr': '0x714CB817EfD08fEe91558b07A924a87C3587F3C1',
'chainId': 1,
'isContract': true ,
'name': 'ARBITRUM_L1_WETH_GATEWAY_IMPLEMENTATION'
"addr": "0x714CB817EfD08fEe91558b07A924a87C3587F3C1",
"isContract": true,
"name": "ARBITRUM_L1_WETH_GATEWAY_IMPLEMENTATION"
},
{
'addr': '0x56a0dFA59fD02284D1b39327CfE92251051Da6bb',
'chainId': 1,
'isContract': true ,
'name': 'ARBITRUM_GAC_UPGRADE_WETH_GATEWAY'
"addr": "0x56a0dFA59fD02284D1b39327CfE92251051Da6bb",
"isContract": true,
"name": "ARBITRUM_GAC_UPGRADE_WETH_GATEWAY"
}

---------------- Proposal Description ----------------
Expand Down
7 changes: 3 additions & 4 deletions docs/mainnet-examples/ENSOzGovernor.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,9 @@ The script will output the following:

--------- Addresses added ---------
{
'addr': '0x714CB817EfD08fEe91558b07A924a87C3587F3C1',
'chainId': 1,
'isContract': true ,
'name': 'ENS_DNSSEC'
"addr": "0x714CB817EfD08fEe91558b07A924a87C3587F3C1",
"isContract": true,
"name": "ENS_DNSSEC"
}

---------------- Proposal Description ----------------
Expand Down
7 changes: 3 additions & 4 deletions docs/mainnet-examples/OptimismMultisig.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,9 @@ The script will output the following:

--------- Addresses added ---------
{
'addr': '0x714CB817EfD08fEe91558b07A924a87C3587F3C1',
'chainId': 1,
'isContract': true ,
'name': 'OPTIMISM_L1_NFT_BRIDGE_IMPLEMENTATION'
"addr": "0x714CB817EfD08fEe91558b07A924a87C3587F3C1",
"isContract": true,
"name": "OPTIMISM_L1_NFT_BRIDGE_IMPLEMENTATION"
}

---------------- Proposal Description ----------------
Expand Down
Loading