From 0ed4c1e63e8233dfc0ae0dd5e586cd02a1136be1 Mon Sep 17 00:00:00 2001 From: blockchaindevsh Date: Tue, 23 Jul 2024 15:20:43 +0800 Subject: [PATCH] change token name to QKC --- packages/contracts-bedrock/scripts/L2Genesis.s.sol | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/packages/contracts-bedrock/scripts/L2Genesis.s.sol b/packages/contracts-bedrock/scripts/L2Genesis.s.sol index f0a8ed6d745a..d3098851eb98 100644 --- a/packages/contracts-bedrock/scripts/L2Genesis.s.sol +++ b/packages/contracts-bedrock/scripts/L2Genesis.s.sol @@ -291,16 +291,12 @@ contract L2Genesis is Deployer { if (cfg.isSoulBackedByNative()) { SoulGasToken(impl).initialize({ name_: "", symbol_: "", owner_: address(0) }); - SoulGasToken(Predeploys.SOUL_GAS_TOKEN).initialize({ - name_: "WorldSuperComputer", - symbol_: "WSC", - owner_: address(0) - }); + SoulGasToken(Predeploys.SOUL_GAS_TOKEN).initialize({ name_: "QKC", symbol_: "QKC", owner_: address(0) }); } else { SoulGasToken(impl).initialize({ name_: "", symbol_: "", owner_: cfg.proxyAdminOwner() }); SoulGasToken(Predeploys.SOUL_GAS_TOKEN).initialize({ - name_: "WorldSuperComputer", - symbol_: "WSC", + name_: "QKC", + symbol_: "QKC", owner_: cfg.proxyAdminOwner() }); }