Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fredlacs committed Aug 21, 2023
1 parent bdaca1d commit 5e75d11
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/proposals/AIP7/deployAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const main = async () => {
console.log("UpdateL1CoreTimelockAction deployed at", action3.address);

await l1Verifier.verifyWithAddress(
"l1Timelock",
"l1TimelockLogic",
newTimelockLogic.address,
);

Expand Down
4 changes: 0 additions & 4 deletions scripts/proposals/AIP7/generateProposalData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,16 @@ dotenv.config();

const ARB_URL = process.env.ARB_URL;
const ARB_KEY = process.env.ARB_KEY;
const ARBISCAN_API_KEY = process.env.ARBISCAN_API_KEY;

const ETH_URL = process.env.ETH_URL;
const ETH_KEY = process.env.ETH_KEY;
const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY;


if (!ARB_URL) throw new Error("ARB_URL required");
if (!ARB_KEY) throw new Error("ARB_KEY required");
if (!ARBISCAN_API_KEY) throw new Error("ARBISCAN_API_KEY required");

if (!ETH_URL) throw new Error("ETH_URL required");
if (!ETH_KEY) throw new Error("ETH_KEY required");
if (!ETHERSCAN_API_KEY) throw new Error("ETHERSCAN_API_KEY required");

const mainnetDeployedContracts = importDeployedContracts("./files/mainnet/deployedContracts.json");

Expand Down

0 comments on commit 5e75d11

Please sign in to comment.