Skip to content

Commit

Permalink
add sourcechainid to deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimo99 committed Aug 20, 2024
1 parent fdc7640 commit d31ebce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/evm/tasks/deploy/dendreth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ import { verify } from "."

task("deploy:DendrETH")
.addParam("lightclient", "address of the the light client contract", undefined, types.string)
.addParam("sourcechainid", "source chain ID", undefined, types.int)
.addFlag("verify", "whether to verify the contract on Etherscan")
.setAction(async function (taskArguments: TaskArguments, hre) {
console.log("Deploying DendrETH adapter...")
const signers: SignerWithAddress[] = await hre.ethers.getSigners()
const DendrETHAdapter = await hre.ethers.getContractFactory("DendrETHAdapter")
const constructorArguments = [taskArguments.lightclient] as const
const constructorArguments = [taskArguments.sourcechainid, taskArguments.lightclient] as const
const dendrethAdapter = await DendrETHAdapter.connect(signers[0]).deploy(...constructorArguments)
await dendrethAdapter.deployed()
console.log("DendrETH adapter deployed to:", dendrethAdapter.address)
Expand Down

0 comments on commit d31ebce

Please sign in to comment.