Skip to content

Commit

Permalink
fix gov executor verification with l2 networks
Browse files Browse the repository at this point in the history
  • Loading branch information
kovalgek committed Dec 11, 2024
1 parent f644e84 commit 8e13b6e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
[submodule "governance-crosschain-bridges"]
path = governance-crosschain-bridges
url = [email protected]:lidofinance/governance-crosschain-bridges.git
branch = deployment/unichain-sepolia
branch = automaton-config
2 changes: 1 addition & 1 deletion governance-crosschain-bridges
8 changes: 5 additions & 3 deletions src/lido-l2-with-steth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,11 @@ export function runVerificationGovExecutor(fileName: string, networkName: string
dotenv.populate(
process.env as { [key: string]: string },
{
OPTIMISTIC_ETHERSCAN_KEY: process.env.L2_EXPLORER_TOKEN ?? "",
ALCHEMY_KEY: process.env.ALCHEMY_KEY ?? "",
PRIVATE_KEY: process.env.DEPLOYER_PRIVATE_KEY ?? "",
L2_PRC_URL: process.env.L2_REMOTE_RPC_URL ?? "",
L2_BLOCK_EXPLORER_API_KEY: process.env.L2_EXPLORER_TOKEN ?? "",
L2_CHAIN_ID: process.env.L2_CHAIN_ID ?? "",
L2_BLOCK_EXPLORER_API_URL: process.env.L2_BLOCK_EXPLORER_API_URL ?? "",
L2_BLOCK_EXPLORER_BROWSER_URL: process.env.L2_BLOCK_EXPLORER_BROWSER_URL ?? "",
},
{ override: true },
);
Expand Down

0 comments on commit 8e13b6e

Please sign in to comment.