forked from ArbitrumFoundation/governance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.ts
63 lines (57 loc) · 1.82 KB
/
utils.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { DeployedContracts } from "./types";
import * as fs from "fs";
import {
L2ArbitrumGovernor__factory,
SecurityCouncilNomineeElectionGovernor__factory,
} from "../typechain-types";
import { Contract } from "ethers";
import { Provider } from "@ethersproject/providers";
export const wait = async (ms: number) => new Promise((res) => setTimeout(res, ms));
export const importDeployedContracts = (path: string): DeployedContracts => {
const res = JSON.parse(fs.readFileSync(path).toString());
if (isDeployedContracts(res)) {
return res;
} else {
throw new Error("Invalid deployed contracts");
}
};
const isDeployedContracts = (obj: any): obj is DeployedContracts => {
return obj.l1Timelock !== undefined && obj.l2Executor !== undefined;
};
export const hasTimelock = async (govAddress: string, provider: Provider) => {
try {
await L2ArbitrumGovernor__factory.connect(govAddress, provider).timelock();
return true;
} catch (e) {
return false;
}
};
export const hasVettingPeriod = async (govAddress: string, provider: Provider) => {
try {
await SecurityCouncilNomineeElectionGovernor__factory.connect(
govAddress,
provider
).nomineeVetter();
return true;
} catch (e) {
return false;
}
};
export const getL1BlockNumberFromL2 = async (provider: Provider) => {
const multicallAddress = await (async () => {
switch ((await provider.getNetwork()).chainId) {
case 42161:
return "0x7eCfBaa8742fDf5756DAC92fbc8b90a19b8815bF";
case 421613:
return "0x108B25170319f38DbED14cA9716C54E5D1FF4623";
default:
throw new Error("Multicall address not supported");
}
})();
const multicall = new Contract(
multicallAddress,
["function getL1BlockNumber() view returns (uint256)"],
provider
);
return multicall.getL1BlockNumber();
};