Skip to content

Commit 3ce34e4

Browse files
committed
chore: Remove EPv06 references from contract names and log messages for consistency
1 parent 73ca9f4 commit 3ce34e4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

script/bytecode-deploy/101_DeploySponsorPaymaster.s.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ contract DeploySponsorPaymasterScript is Script {
6565
}
6666

6767
console.log(
68-
"Deployed SponsorPaymasterImplementationEPv06 at address: %s on %s",
68+
"Deployed SponsorPaymasterImplementation at address: %s on %s",
6969
address(bytes20(result)),
7070
chains[i]
7171
);
7272
} else {
7373
console.log(
74-
"Found existing SponsorPaymasterImplementationEPv06 at expected address: %s on %s",
74+
"Found existing SponsorPaymasterImplementation at expected address: %s on %s",
7575
EXPECTED_PAYMASTER_IMPL_ADDRESS,
7676
chains[i]
7777
);
@@ -103,13 +103,13 @@ contract DeploySponsorPaymasterScript is Script {
103103
}
104104

105105
console.log(
106-
"Deployed internal SponsorPaymasterProxyEPv06 at address: %s on %s",
106+
"Deployed internal SponsorPaymasterProxy at address: %s on %s",
107107
address(bytes20(result)),
108108
chains[i]
109109
);
110110
} else {
111111
console.log(
112-
"Found existing internal SponsorPaymasterProxyEPv06 at expected address: %s on %s",
112+
"Found existing internal SponsorPaymasterProxy at expected address: %s on %s",
113113
EXPECTED_PAYMASTER_INTERNAL_ADDRESS,
114114
chains[i]
115115
);

script/bytecode-deploy/104_DeployColdStorageAddressBookPlugin.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
import {DeployFailed} from "./Errors.sol";
2525
import {Script, console} from "forge-std/src/Script.sol";
2626

27-
contract DeployColdStorageAddressBookPluginEPv06Script is Script {
27+
contract DeployColdStorageAddressBookPluginScript is Script {
2828
address internal constant EXPECTED_PLUGIN_ADDRESS = COLD_STORAGE_ADDRESS_BOOK_PLUGIN_ADDRESS;
2929

3030
function run() public {

0 commit comments

Comments
 (0)