forked from ArbitrumFoundation/governance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
31 lines (31 loc) · 882 Bytes
/
types.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
export interface DeployedContracts {
l1UpgradeExecutorLogic: string;
l2TimelockLogic: string;
l2GovernorLogic: string;
l2FixedDelegateLogic: string;
l2TokenLogic: string;
l2UpgradeExecutorLogic: string;
l1GovernanceFactory: string;
l2GovernanceFactory: string;
l1ReverseCustomGatewayLogic: string;
l1ReverseCustomGatewayProxy: string;
l2ReverseCustomGatewayLogic: string;
l2ReverseCustomGatewayProxy: string;
l1TokenLogic: string;
l1TokenProxy: string;
l2CoreGoverner: string;
l2CoreTimelock: string;
l2Executor: string;
l2ProxyAdmin: string;
l2Token: string;
l2TreasuryGoverner: string;
l2ArbTreasury: string;
arbitrumDAOConstitution: string;
l2TreasuryTimelock: string;
l1Executor: string;
l1ProxyAdmin: string;
l1Timelock: string;
l1AddressRegistry: string;
l2AddressRegistry: string;
novaUpgradeExecutorProxy?: string
}