Skip to content

Commit

Permalink
fix: add base addr from env
Browse files Browse the repository at this point in the history
Signed-off-by: Vasyl Ivanchuk <[email protected]>
  • Loading branch information
sanekmelnikov authored and vasyl-ivanchuk committed Aug 22, 2024
1 parent cfad4be commit 5a985fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/setup-hyperchain-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const buildAppConfig = (zkSyncEnvs: { [key: string]: string }) => ({
name: zkSyncEnvs.CHAIN_ETH_ZKSYNC_NETWORK || "",
published: true,
rpcUrl: zkSyncEnvs.API_WEB3_JSON_RPC_HTTP_URL || "",
baseTokenAddress: "0x000000000000000000000000000000000000800A",
baseTokenAddress: zkSyncEnvs.ETH_TOKEN_L2_ADDRESS || "0x000000000000000000000000000000000000800A",
}]
});

Expand Down

0 comments on commit 5a985fd

Please sign in to comment.