Commit 9e4e1cad authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: label EAS predeploys in tests

This commit labels the EAS and SchemaRegistry predeploy
contracts in the solidity unit tests. These contracts were
previously left out from the implementation work that labelled
all of the L2 predeploys. After a contract is labelled, it
will show up with a human readable name in the forge traces
instead of just being an address.
parent c27bff09
...@@ -185,5 +185,7 @@ contract Setup is Deploy { ...@@ -185,5 +185,7 @@ contract Setup is Deploy {
vm.label(Predeploys.GAS_PRICE_ORACLE, "GasPriceOracle"); vm.label(Predeploys.GAS_PRICE_ORACLE, "GasPriceOracle");
vm.label(Predeploys.LEGACY_MESSAGE_PASSER, "LegacyMessagePasser"); vm.label(Predeploys.LEGACY_MESSAGE_PASSER, "LegacyMessagePasser");
vm.label(Predeploys.GOVERNANCE_TOKEN, "GovernanceToken"); vm.label(Predeploys.GOVERNANCE_TOKEN, "GovernanceToken");
vm.label(Predeploys.EAS, "EAS");
vm.label(Predeploys.SCHEMA_REGISTRY, "SchemaRegistry");
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment