Skip to content

Instantly share code, notes, and snippets.

@covelitein
Created September 19, 2023 08:54
Show Gist options
  • Save covelitein/9cac21f0ffaa36027f9cf5def1b9e339 to your computer and use it in GitHub Desktop.
Save covelitein/9cac21f0ffaa36027f9cf5def1b9e339 to your computer and use it in GitHub Desktop.
dappworks
const { ethers } = require('hardhat')
const fs = require('fs')
const toWei = (num) => ethers.utils.parseEther(num.toString())
async function main() {
const contract_name = 'DappWorks'
const Contract = await ethers.getContractFactory(contract_name)
const contract = await Contract.deploy()
await contract.deployed()
const address = JSON.stringify({ address: contract.address }, null, 4)
fs.writeFile('./src/abis/contractAddress.json', address, 'utf8', (err) => {
if (err) {
console.error(err)
return
}
console.log('Deployed contract address', contract.address)
})
}
main().catch((error) => {
console.error(error)
process.exitCode = 1
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment