Commit 4ef38a29 authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: add in alpha-1 network

The hardhat config needs to have the network that corresponds
to the new deploy artifacts. This adds `alpha-1` to the hh
config so that the contracts can be verified easily.
parent 96111d9f
...@@ -45,6 +45,11 @@ const config: HardhatUserConfig = { ...@@ -45,6 +45,11 @@ const config: HardhatUserConfig = {
url: process.env.L1_RPC || '', url: process.env.L1_RPC || '',
accounts: [process.env.PRIVATE_KEY_DEPLOYER || ethers.constants.HashZero], accounts: [process.env.PRIVATE_KEY_DEPLOYER || ethers.constants.HashZero],
}, },
'alpha-1': {
chainId: 5,
url: process.env.L1_RPC || '',
accounts: [process.env.PRIVATE_KEY_DEPLOYER || ethers.constants.HashZero],
},
deployer: { deployer: {
chainId: Number(process.env.CHAIN_ID), chainId: Number(process.env.CHAIN_ID),
url: process.env.L1_RPC || '', url: process.env.L1_RPC || '',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment