forked from scroll-tech/scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransfer_ownership.ts
36 lines (29 loc) · 1.22 KB
/
transfer_ownership.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* eslint-disable node/no-missing-import */
import * as dotenv from "dotenv";
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();
if (process.env.CONTRACT_NAME === undefined) {
throw new Error("env CONTRACT_NAME undefined");
}
const contractName = process.env.CONTRACT_NAME!;
const contractAddress = addressFile.get(`${contractName}.proxy`) || addressFile.get(`${contractName}`);
const Contract = await ethers.getContractAt(contractName, contractAddress, deployer);
const owner = process.env.CONTRACT_OWNER || deployer.address;
if ((await Contract.owner()).toLowerCase() !== owner.toLowerCase()) {
const tx = await Contract.transferOwnership(owner);
console.log(`${contractName} transfer ownership to ${owner}, 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;
});