-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathdeploy.js
58 lines (47 loc) · 1.62 KB
/
deploy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// This is a script for deploying your contracts. You can adapt it to deploy
// yours, or create new ones.
async function main() {
// This is just a convenience check
if (network.name === 'hardhat') {
console.warn(
'You are trying to deploy a contract to the Hardhat Network, which' +
'gets automatically created and destroyed every time. Use the Hardhat' +
" option '--network localhost'"
)
}
// ethers is avaialble in the global scope
const [deployer] = await ethers.getSigners()
console.log(
'Deploying the contracts with the account:',
await deployer.getAddress()
)
console.log('Account balance:', (await ethers.provider.getBalance(deployer.address)).toString())
const Token = await ethers.getContractFactory('SimpleToken')
const token = await Token.deploy('Test', 'SimpleToken', 1, 10000)
await token.waitForDeployment();
console.log('Token address:', token.target)
// We also save the contract's artifacts and address in the frontend directory
saveFrontendFiles(token)
}
function saveFrontendFiles(token) {
const fs = require('fs')
const contractsDir = __dirname + '/../frontend/src/contracts'
if (!fs.existsSync(contractsDir)) {
fs.mkdirSync(contractsDir)
}
fs.writeFileSync(
contractsDir + '/contract-address.json',
JSON.stringify({ Token: token.address }, undefined, 2)
)
const TokenArtifact = artifacts.readArtifactSync('SimpleToken')
fs.writeFileSync(
contractsDir + '/Token.json',
JSON.stringify(TokenArtifact, null, 2)
)
}
main()
.then(() => process.exit(0))
.catch((error) => {
console.error(error)
process.exit(1)
})