Skip to content

Commit

Permalink
change token name to QKC
Browse files Browse the repository at this point in the history
  • Loading branch information
blockchaindevsh committed Jul 23, 2024
1 parent fd6682a commit 0ed4c1e
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions packages/contracts-bedrock/scripts/L2Genesis.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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()
});
}
Expand Down

0 comments on commit 0ed4c1e

Please sign in to comment.