Skip to content

Commit

Permalink
Merge pull request #44 from ethstorage/change_token_name
Browse files Browse the repository at this point in the history
change token name to QKC
  • Loading branch information
blockchaindevsh authored Jul 23, 2024
2 parents fd6682a + 0ed4c1e commit c6ebf9b
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 c6ebf9b

Please sign in to comment.