dgf-prototype/ethereum/scripts/deploy.js

22 lines
598 B
JavaScript
Raw Normal View History

2024-03-06 16:50:59 -06:00
const { ethers } = require('hardhat');
2024-03-04 19:33:06 -06:00
async function main() {
2024-03-06 16:50:59 -06:00
const dao = await ethers.deployContract('DAO');
await dao.waitForDeployment();
2024-03-04 19:33:06 -06:00
2024-03-06 16:50:59 -06:00
console.log(`DAO deployed to ${dao.target}`);
2024-03-04 19:33:06 -06:00
2024-03-06 16:50:59 -06:00
const WORK1_PRICE = ethers.parseEther('0.001');
const work1 = await ethers.deployContract('Work1', [dao.target, WORK1_PRICE]);
await work1.waitForDeployment();
2024-03-04 19:33:06 -06:00
2024-03-06 16:50:59 -06:00
console.log(`Work1 deployed to ${work1.target}`);
2024-03-04 19:33:06 -06:00
}
// We recommend this pattern to be able to use async/await everywhere
// and properly handle errors.
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});