mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 00:18:03 -05:00
Co-authored-by: zimpha <zimpha@users.noreply.github.com> Co-authored-by: Haichen Shen <shenhaichen@gmail.com>
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
/* eslint-disable node/no-missing-import */
|
|
import * as dotenv from "dotenv";
|
|
|
|
import { constants } from "ethers";
|
|
import * as hre from "hardhat";
|
|
import { ethers } from "hardhat";
|
|
import { selectAddressFile } from "./utils";
|
|
|
|
dotenv.config();
|
|
|
|
async function main() {
|
|
const addressFile = selectAddressFile(hre.network.name);
|
|
|
|
const [deployer] = await ethers.getSigners();
|
|
|
|
const L2StandardERC20Gateway = await ethers.getContractAt(
|
|
"L2StandardERC20Gateway",
|
|
addressFile.get("L2StandardERC20Gateway.proxy"),
|
|
deployer
|
|
);
|
|
|
|
const L2GatewayRouterAddress = addressFile.get("L2GatewayRouter.proxy");
|
|
const L2ScrollMessengerAddress = addressFile.get("L2ScrollMessenger");
|
|
const L2StandardERC20FactoryAddress = addressFile.get("ScrollStandardERC20Factory");
|
|
const L1StandardERC20GatewayAddress = process.env.L1_STANDARD_ERC20_GATEWAY_PROXY_ADDR!;
|
|
|
|
if ((await L2StandardERC20Gateway.counterpart()) === constants.AddressZero) {
|
|
const tx = await L2StandardERC20Gateway.initialize(
|
|
L1StandardERC20GatewayAddress,
|
|
L2GatewayRouterAddress,
|
|
L2ScrollMessengerAddress,
|
|
L2StandardERC20FactoryAddress
|
|
);
|
|
console.log("initialize L2StandardERC20Gateway, hash:", tx.hash);
|
|
const receipt = await tx.wait();
|
|
console.log(`✅ Done, gas used: ${receipt.gasUsed}`);
|
|
}
|
|
}
|
|
|
|
// We recommend this pattern to be able to use async/await everywhere
|
|
// and properly handle errors.
|
|
main().catch((error) => {
|
|
console.error(error);
|
|
process.exitCode = 1;
|
|
});
|