Skip to content

Commit

Permalink
Merge pull request #121 from ourzora/v2-audit-min
Browse files Browse the repository at this point in the history
V2 final
  • Loading branch information
neokry authored Mar 9, 2024
2 parents 82e00ed + 760380d commit 9e3ca64
Show file tree
Hide file tree
Showing 82 changed files with 3,388 additions and 653 deletions.
54 changes: 29 additions & 25 deletions .storage-layout
Original file line number Diff line number Diff line change
Expand Up @@ -18,36 +18,39 @@
➡ Auction
=======================

| Name | Type | Slot | Offset | Bytes | Contract |
|---------------|--------------------------------|------|--------|-------|---------------------------------|
| _initialized | uint8 | 0 | 0 | 1 | src/auction/Auction.sol:Auction |
| _initializing | bool | 0 | 1 | 1 | src/auction/Auction.sol:Auction |
| _owner | address | 0 | 2 | 20 | src/auction/Auction.sol:Auction |
| _pendingOwner | address | 1 | 0 | 20 | src/auction/Auction.sol:Auction |
| _status | uint256 | 2 | 0 | 32 | src/auction/Auction.sol:Auction |
| _paused | bool | 3 | 0 | 1 | src/auction/Auction.sol:Auction |
| settings | struct AuctionTypesV1.Settings | 4 | 0 | 64 | src/auction/Auction.sol:Auction |
| token | contract Token | 6 | 0 | 20 | src/auction/Auction.sol:Auction |
| auction | struct AuctionTypesV1.Auction | 7 | 0 | 96 | src/auction/Auction.sol:Auction |
| Name | Type | Slot | Offset | Bytes | Contract |
|--------------------|-------------------------------------|------|--------|-------|---------------------------------|
| _initialized | uint8 | 0 | 0 | 1 | src/auction/Auction.sol:Auction |
| _initializing | bool | 0 | 1 | 1 | src/auction/Auction.sol:Auction |
| _owner | address | 0 | 2 | 20 | src/auction/Auction.sol:Auction |
| _pendingOwner | address | 1 | 0 | 20 | src/auction/Auction.sol:Auction |
| _status | uint256 | 2 | 0 | 32 | src/auction/Auction.sol:Auction |
| _paused | bool | 3 | 0 | 1 | src/auction/Auction.sol:Auction |
| settings | struct AuctionTypesV1.Settings | 4 | 0 | 64 | src/auction/Auction.sol:Auction |
| token | contract Token | 6 | 0 | 20 | src/auction/Auction.sol:Auction |
| auction | struct AuctionTypesV1.Auction | 7 | 0 | 96 | src/auction/Auction.sol:Auction |
| currentBidReferral | address | 10 | 0 | 20 | src/auction/Auction.sol:Auction |
| founderReward | struct AuctionTypesV2.FounderReward | 11 | 0 | 32 | src/auction/Auction.sol:Auction |

=======================
➡ Governor
=======================

| Name | Type | Slot | Offset | Bytes | Contract |
|--------------------------|-----------------------------------------------------|------|--------|-------|-----------------------------------------------|
| _initialized | uint8 | 0 | 0 | 1 | src/governance/governor/Governor.sol:Governor |
| _initializing | bool | 0 | 1 | 1 | src/governance/governor/Governor.sol:Governor |
| _owner | address | 0 | 2 | 20 | src/governance/governor/Governor.sol:Governor |
| _pendingOwner | address | 1 | 0 | 20 | src/governance/governor/Governor.sol:Governor |
| HASHED_NAME | bytes32 | 2 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| HASHED_VERSION | bytes32 | 3 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| INITIAL_DOMAIN_SEPARATOR | bytes32 | 4 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| INITIAL_CHAIN_ID | uint256 | 5 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| nonces | mapping(address => uint256) | 6 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| settings | struct GovernorTypesV1.Settings | 7 | 0 | 96 | src/governance/governor/Governor.sol:Governor |
| proposals | mapping(bytes32 => struct GovernorTypesV1.Proposal) | 10 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| hasVoted | mapping(bytes32 => mapping(address => bool)) | 11 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| Name | Type | Slot | Offset | Bytes | Contract |
|--------------------------------------|-----------------------------------------------------|------|--------|-------|-----------------------------------------------|
| _initialized | uint8 | 0 | 0 | 1 | src/governance/governor/Governor.sol:Governor |
| _initializing | bool | 0 | 1 | 1 | src/governance/governor/Governor.sol:Governor |
| _owner | address | 0 | 2 | 20 | src/governance/governor/Governor.sol:Governor |
| _pendingOwner | address | 1 | 0 | 20 | src/governance/governor/Governor.sol:Governor |
| HASHED_NAME | bytes32 | 2 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| HASHED_VERSION | bytes32 | 3 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| INITIAL_DOMAIN_SEPARATOR | bytes32 | 4 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| INITIAL_CHAIN_ID | uint256 | 5 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| nonces | mapping(address => uint256) | 6 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| settings | struct GovernorTypesV1.Settings | 7 | 0 | 96 | src/governance/governor/Governor.sol:Governor |
| proposals | mapping(bytes32 => struct GovernorTypesV1.Proposal) | 10 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| hasVoted | mapping(bytes32 => mapping(address => bool)) | 11 | 0 | 32 | src/governance/governor/Governor.sol:Governor |
| delayedGovernanceExpirationTimestamp | uint256 | 12 | 0 | 32 | src/governance/governor/Governor.sol:Governor |

=======================
➡ Treasury
Expand Down Expand Up @@ -91,3 +94,4 @@
| founder | mapping(uint256 => struct TokenTypesV1.Founder) | 19 | 0 | 32 | src/token/Token.sol:Token |
| tokenRecipient | mapping(uint256 => struct TokenTypesV1.Founder) | 20 | 0 | 32 | src/token/Token.sol:Token |
| minter | mapping(address => bool) | 21 | 0 | 32 | src/token/Token.sol:Token |
| reservedUntilTokenId | uint256 | 22 | 0 | 32 | src/token/Token.sol:Token |
2 changes: 2 additions & 0 deletions addresses/1.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"BuilderDAO": "0x7498e6e471f31e869f038D8DBffbDFdf650c3F95",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"Manager": "0xd310a3041dfcf14def5ccbc508668974b5da7174",
"ManagerImpl": "0x138D8Aef5Cbbbb9Ea8da98CC0847FE0F3b573b40",
"WETH": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
Expand Down
13 changes: 9 additions & 4 deletions addresses/10.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"BuilderDAO": "0x7C69609645837a77915410B9B5605f54C79Da5D2",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"Manager": "0x3ac0e64fe2931f8e082c6bb29283540de9b5371c",
"ManagerImpl": "0x15567b396077f698fcf211629e650d898e4b4e26",
"ManagerImpl": "0x7bf440c100240A6154cDc6013dc6CdA647b994e2",
"WETH": "0x4200000000000000000000000000000000000006",
"Auction": "0x639dc4bdcaa16dd626eaa6a1480a852d5427252c",
"Token": "0x127f22a79d123780f7e9ff38578d16a78799c131",
"Auction": "0xf958872ceb73bA7d0acA0c7a9905119BCb371dEC",
"Token": "0xE77e4FA003b2cC07ad10a9D1dB216Cae5Ed14d3f",
"MetadataRenderer": "0xb4ca85d61f7fcce0d176fdb743860dabf3fc03f9",
"Treasury": "0xaf75199b91aedbe2b99476899782c5bb507393e0",
"Governor": "0x46e4eae74254346867bbf53e7d30baa6f6c8cd5a"
"Governor": "0x9Af9f31BAE469c13528B458E007A7EA965BD14bB",
"L2MigrationDeployer": "0x7D8Ea0D056f5B8443cdD8495D4e90FFCf0a8A354",
"MerkleReserveMinter": "0x8DFEd5737cd21e25009A2a2CB56dca8EA618e5D3"
}
13 changes: 13 additions & 0 deletions addresses/11155111.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"BuilderDAO": "0x7498e6e471f31e869f038D8DBffbDFdf650c3F95",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"Manager": "0x0ca90a96ac58f19b1f69f67103245c9263bc4bfc",
"ManagerImpl": "0xABdEdc8730410716DD0a5E54A89C85546A3458bA",
"WETH": "0x7b79995e5f793a07bc00c21412e50ecae098e7f9",
"Auction": "0xca8F9A4805CCFfdCcfc5Bf7973302a0c01f4347b",
"Token": "0x44D9FD02e6d8d96ca9c2bBD26C232024977674C5",
"MetadataRenderer": "0xec23ce6407ef841adf52e7232d3df5a44cb38041",
"Treasury": "0x5daabe9382158c3f133b360a5f0b46ca5a7f6e86",
"Governor": "0xaa21AFD73e6Fd5f69C87A6839D0beEDEE075e9a3"
}
15 changes: 15 additions & 0 deletions addresses/11155420.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"BuilderDAO": "0x7498e6e471f31e869f038D8DBffbDFdf650c3F95",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"Manager": "0x1004e43b540af4dfde2737c29893716817b0a1d7",
"ManagerImpl": "0x93f9d43a7bD751f8546A54785AE48D049dDd2697",
"WETH": "0x7b79995e5f793a07bc00c21412e50ecae098e7f9",
"Auction": "0xaa21AFD73e6Fd5f69C87A6839D0beEDEE075e9a3",
"Token": "0xca8F9A4805CCFfdCcfc5Bf7973302a0c01f4347b",
"MetadataRenderer": "0xDA804D6e0Da967E2A7359Dd0777898f577A0B995",
"Treasury": "0x7abe363c6dd3a4dec6a3311681723f35740f69e7",
"Governor": "0xABdEdc8730410716DD0a5E54A89C85546A3458bA",
"L2MigrationDeployer": "0xF3a4ca161a88e26115d1C1DBcB8C4874E1786F42",
"MerkleReserveMinter": "0xDEDAA98037030060DD385Deb19Fa332DF79F43a8"
}
3 changes: 3 additions & 0 deletions addresses/420.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"BuilderDAO": "0x7498e6e471f31e869f038D8DBffbDFdf650c3F95",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"Manager": "0x5f9c1e7e31875beaa6ba6b0ab573a4abecc95d67",
"ManagerImpl": "0x93f9d43a7bd751f8546a54785ae48d049ddd2697",
"WETH": "0x4200000000000000000000000000000000000006",
Expand Down
13 changes: 9 additions & 4 deletions addresses/7777777.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"BuilderDAO": "0x7229F0c537e64f3EA9E9b993601578A7B09c402C",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"Manager": "0x3ac0e64fe2931f8e082c6bb29283540de9b5371c",
"ManagerImpl": "0x15567b396077f698fcf211629e650d898e4b4e26",
"ManagerImpl": "0x7bf440c100240A6154cDc6013dc6CdA647b994e2",
"WETH": "0x4200000000000000000000000000000000000006",
"Auction": "0x639dc4bdcaa16dd626eaa6a1480a852d5427252c",
"Token": "0x127f22a79d123780f7e9ff38578d16a78799c131",
"Auction": "0xf958872ceb73ba7d0aca0c7a9905119bcb371dec",
"Token": "0xe77e4fa003b2cc07ad10a9d1db216cae5ed14d3f",
"MetadataRenderer": "0xb4ca85d61f7fcce0d176fdb743860dabf3fc03f9",
"Treasury": "0xaf75199b91aedbe2b99476899782c5bb507393e0",
"Governor": "0x46e4eae74254346867bbf53e7d30baa6f6c8cd5a"
"Governor": "0x9af9f31bae469c13528b458e007a7ea965bd14bb",
"L2MigrationDeployer": "0x7D8Ea0D056f5B8443cdD8495D4e90FFCf0a8A354.",
"MerkleReserveMinter": "0x8DFEd5737cd21e25009A2a2CB56dca8EA618e5D3."
}
13 changes: 9 additions & 4 deletions addresses/8453.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"BuilderDAO": "0x894F30da29216516b5aE85207dED77038C107f22",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"Manager": "0x3ac0e64fe2931f8e082c6bb29283540de9b5371c",
"ManagerImpl": "0x15567b396077f698fcf211629e650d898e4b4e26",
"ManagerImpl": "0x7bf440c100240A6154cDc6013dc6CdA647b994e2",
"WETH": "0x4200000000000000000000000000000000000006",
"Auction": "0x639dc4bdcaa16dd626eaa6a1480a852d5427252c",
"Token": "0x127f22a79d123780f7e9ff38578d16a78799c131",
"Auction": "0xf958872ceb73bA7d0acA0c7a9905119BCb371dEC",
"Token": "0xE77e4FA003b2cC07ad10a9D1dB216Cae5Ed14d3f",
"MetadataRenderer": "0xb4ca85d61f7fcce0d176fdb743860dabf3fc03f9",
"Treasury": "0xaf75199b91aedbe2b99476899782c5bb507393e0",
"Governor": "0x46e4eae74254346867bbf53e7d30baa6f6c8cd5a"
"Governor": "0x9Af9f31BAE469c13528B458E007A7EA965BD14bB",
"L2MigrationDeployer": "0x8ef7b563Ff9F4A1f2d294845000cDf782d9afd7c",
"MerkleReserveMinter": "0x7D8Ea0D056f5B8443cdD8495D4e90FFCf0a8A354"
}
5 changes: 4 additions & 1 deletion addresses/84531.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"BuilderDAO": "0x7498e6e471f31e869f038D8DBffbDFdf650c3F95",
"WETH": "0x4200000000000000000000000000000000000006",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"Manager": "0x550c326d688fD51ae65AC6A2d48749E631023A03",
"ManagerImpl": "0xA644bA2dD0740ACD6FE6f9a031C6b7B2Ce466299",
"WETH": "0x4200000000000000000000000000000000000006",
"Auction": "0x3fb5d8E80835D07056c12757A183Ab659B1a44BF",
"Token": "0x3CC6ba057f394B00aC1fF48707d5C04DE29504C6",
"MetadataRenderer": "0x0B3a22E5C5824d9d227986F76190f504c0906aD6",
Expand Down
15 changes: 15 additions & 0 deletions addresses/84532.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"BuilderDAO": "0x7498e6e471f31e869f038D8DBffbDFdf650c3F95",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"Manager": "0x550c326d688fd51ae65ac6a2d48749e631023a03",
"ManagerImpl": "0xf896daA9E7CdCa767202D2f9699e7A30B22F6087",
"WETH": "0x7b79995e5f793a07bc00c21412e50ecae098e7f9",
"Auction": "0xEe970F19eD4960234e75ee8d3A42c98cA65B5c34",
"Token": "0xec23Ce6407Ef841aDf52e7232d3dF5A44cB38041",
"MetadataRenderer": "0x0b3a22e5c5824d9d227986f76190f504c0906ad6",
"Treasury": "0x047b1e00eb4726afc57d559f851146e84e31d1dc",
"Governor": "0x5DaabE9382158C3F133B360a5F0b46cA5a7f6E86",
"L2MigrationDeployer": "0x1e57Cad7C22042BD765011d0F2eb36606Fe12C3F",
"MerkleReserveMinter": "0x7AbE363C6DD3a4dEC6a3311681723f35740f69E7"
}
3 changes: 3 additions & 0 deletions addresses/999.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"BuilderDAO": "0x7498e6e471f31e869f038D8DBffbDFdf650c3F95",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"Manager": "0xc521f85613985b7e417fccd5b348f64263d79397",
"ManagerImpl": "0x50704311b9732bf7dd7d892859c4a60f752e736b",
"WETH": "0x4200000000000000000000000000000000000006",
Expand Down
15 changes: 15 additions & 0 deletions addresses/999999999.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"BuilderDAO": "0x7498e6e471f31e869f038D8DBffbDFdf650c3F95",
"CrossDomainMessenger": "0x4200000000000000000000000000000000000007",
"ProtocolRewards": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
"Manager": "0x550c326d688fd51ae65ac6a2d48749e631023a03",
"ManagerImpl": "0xf896daA9E7CdCa767202D2f9699e7A30B22F6087",
"WETH": "0x7b79995e5f793a07bc00c21412e50ecae098e7f9",
"Auction": "0xee970f19ed4960234e75ee8d3a42c98ca65b5c34",
"Token": "0xec23ce6407ef841adf52e7232d3df5a44cb38041",
"MetadataRenderer": "0x0b3a22e5c5824d9d227986f76190f504c0906ad6",
"Treasury": "0x047b1e00eb4726afc57d559f851146e84e31d1dc",
"Governor": "0x5daabe9382158c3f133b360a5f0b46ca5a7f6e86",
"L2MigrationDeployer": "0x1e57Cad7C22042BD765011d0F2eb36606Fe12C3F",
"MerkleReserveMinter": "0x7AbE363C6DD3a4dEC6a3311681723f35740f69E7"
}
2 changes: 2 additions & 0 deletions deploys/10.version2_new.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Merkle Reserve Minter: 0x8dfed5737cd21e25009a2a2cb56dca8ea618e5d3
Migration Deployer: 0x7d8ea0d056f5b8443cdd8495d4e90ffcf0a8a354
4 changes: 4 additions & 0 deletions deploys/10.version2_upgrade.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Token implementation: 0xe77e4fa003b2cc07ad10a9d1db216cae5ed14d3f
Auction implementation: 0xf958872ceb73ba7d0aca0c7a9905119bcb371dec
Governor implementation: 0x9af9f31bae469c13528b458e007a7ea965bd14bb
Manager implementation: 0x7bf440c100240a6154cdc6013dc6cda647b994e2
7 changes: 7 additions & 0 deletions deploys/11155111.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Manager: 0x0ca90a96ac58f19b1f69f67103245c9263bc4bfc
Token implementation: 0x5652d5fc630d3334a961b0b6be876e9f94899baa
Metadata Renderer implementation: 0xec23ce6407ef841adf52e7232d3df5a44cb38041
Auction implementation: 0xee970f19ed4960234e75ee8d3a42c98ca65b5c34
Treasury implementation: 0x5daabe9382158c3f133b360a5f0b46ca5a7f6e86
Governor implementation: 0xf896daa9e7cdca767202d2f9699e7a30b22f6087
Manager implementation: 0x30bc8ae9bfe8a4132e4bb3393e0cbe439557fd68
2 changes: 2 additions & 0 deletions deploys/11155111.version2_new.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Merkle Reserve Minter: 0xf3a4ca161a88e26115d1c1dbcb8c4874e1786f42
Migration Deployer: 0x381846d1933d00b4a9d239d9f0759e72e1009b22
4 changes: 4 additions & 0 deletions deploys/11155111.version2_upgrade.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Token implementation: 0x44d9fd02e6d8d96ca9c2bbd26c232024977674c5
Auction implementation: 0xca8f9a4805ccffdccfc5bf7973302a0c01f4347b
Governor implementation: 0xaa21afd73e6fd5f69c87a6839d0beedee075e9a3
Manager implementation: 0xabdedc8730410716dd0a5e54a89c85546a3458ba
7 changes: 7 additions & 0 deletions deploys/11155420.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Manager: 0x1004e43b540af4dfde2737c29893716817b0a1d7
Token implementation: 0x424f1c2b85bcec187fc22fba2b307e31950992bc
Metadata Renderer implementation: 0xda804d6e0da967e2a7359dd0777898f577a0b995
Auction implementation: 0xd91e5a7f72b41c1eb443110299c4961795b6c69c
Treasury implementation: 0x7abe363c6dd3a4dec6a3311681723f35740f69e7
Governor implementation: 0x1e57cad7c22042bd765011d0f2eb36606fe12c3f
Manager implementation: 0xf888b57b0cf99052dcd55d021f8bd0c916374a84
2 changes: 2 additions & 0 deletions deploys/11155420.version2_new.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Merkle Reserve Minter: 0xdedaa98037030060dd385deb19fa332df79f43a8
Migration Deployer: 0xf3a4ca161a88e26115d1c1dbcb8c4874e1786f42
4 changes: 4 additions & 0 deletions deploys/11155420.version2_upgrade.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Token implementation: 0xca8f9a4805ccffdccfc5bf7973302a0c01f4347b
Auction implementation: 0xaa21afd73e6fd5f69c87a6839d0beedee075e9a3
Governor implementation: 0xabdedc8730410716dd0a5e54a89c85546a3458ba
Manager implementation: 0x93f9d43a7bd751f8546a54785ae48d049ddd2697
2 changes: 2 additions & 0 deletions deploys/420.version2_new.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Merkle Reserve Minter: 0xe77e4fa003b2cc07ad10a9d1db216cae5ed14d3f
Migration Deployer: 0xf958872ceb73ba7d0aca0c7a9905119bcb371dec
4 changes: 4 additions & 0 deletions deploys/420.version2_upgrade.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Token implementation: 0xef49483419bc5516ec4c6d601adfac4a359ef8a6
Auction implementation: 0xdd908dfaf5e13bac01abe96e4b6d992f92c1fca0
Governor implementation: 0xef36580d07a0649e616d8dff968762ec703e12bb
Manager implementation: 0x5f94ae9dca1d215331d627f38a721c6f3f7e9872
2 changes: 2 additions & 0 deletions deploys/7777777.version2_new.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Merkle Reserve Minter: 0x8dfed5737cd21e25009a2a2cb56dca8ea618e5d3
Migration Deployer: 0x7d8ea0d056f5b8443cdd8495d4e90ffcf0a8a354
4 changes: 4 additions & 0 deletions deploys/7777777.version2_upgrade.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Token implementation: 0xe77e4fa003b2cc07ad10a9d1db216cae5ed14d3f
Auction implementation: 0xf958872ceb73ba7d0aca0c7a9905119bcb371dec
Governor implementation: 0x9af9f31bae469c13528b458e007a7ea965bd14bb
Manager implementation: 0x7bf440c100240a6154cdc6013dc6cda647b994e2
2 changes: 2 additions & 0 deletions deploys/8453.version2_new.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Merkle Reserve Minter: 0x7d8ea0d056f5b8443cdd8495d4e90ffcf0a8a354
Migration Deployer: 0x8ef7b563ff9f4a1f2d294845000cdf782d9afd7c
4 changes: 4 additions & 0 deletions deploys/8453.version2_upgrade.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Token implementation: 0xe77e4fa003b2cc07ad10a9d1db216cae5ed14d3f
Auction implementation: 0xf958872ceb73ba7d0aca0c7a9905119bcb371dec
Governor implementation: 0x9af9f31bae469c13528b458e007a7ea965bd14bb
Manager implementation: 0x7bf440c100240a6154cdc6013dc6cda647b994e2
Loading

0 comments on commit 9e3ca64

Please sign in to comment.