2023-04-13 23:03:12 +03:00
|
|
|
require('dotenv').config()
|
|
|
|
|
2023-04-14 22:16:26 +03:00
|
|
|
const hre = require('hardhat')
|
|
|
|
const { ethers } = hre
|
2023-04-13 23:03:12 +03:00
|
|
|
const config = require('../config')
|
|
|
|
const { createInterface } = require('readline')
|
|
|
|
|
|
|
|
function idToNetwork(id) {
|
|
|
|
switch (id) {
|
|
|
|
case 1:
|
|
|
|
return 'Mainnet'
|
|
|
|
case 3:
|
|
|
|
return 'Ropsten'
|
|
|
|
case 4:
|
|
|
|
return 'Rinkeby'
|
|
|
|
case 5:
|
|
|
|
return 'Goerli'
|
|
|
|
case 11155111:
|
|
|
|
return 'Sepolia'
|
|
|
|
default:
|
2023-04-14 22:16:26 +03:00
|
|
|
throw Error('\nChain Id could not be recognized. What network are you using?\n')
|
2023-04-13 23:03:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const prompter = createInterface({ input: process.stdin, output: process.stdout })
|
|
|
|
|
|
|
|
function _prompt(prompt, resolve) {
|
|
|
|
prompter.question(prompt, (answer) => {
|
|
|
|
if (answer == 'y') {
|
|
|
|
resolve(true)
|
|
|
|
} else if (answer == 'n') {
|
|
|
|
resolve(false)
|
2023-04-14 22:16:26 +03:00
|
|
|
} else _prompt('', resolve)
|
2023-04-13 23:03:12 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function prompt(prompt) {
|
|
|
|
return new Promise((resolve) => _prompt(prompt, resolve))
|
|
|
|
}
|
|
|
|
|
|
|
|
function happyDeployedMessage(name, chainId, address) {
|
2023-04-14 22:16:26 +03:00
|
|
|
return `\n${name} successfully deployed on ${idToNetwork(chainId)} @ ${address} 🥳\n`
|
2023-04-13 23:03:12 +03:00
|
|
|
}
|
|
|
|
|
2023-04-14 22:16:26 +03:00
|
|
|
function happyVerifiedMessage(name, address) {
|
|
|
|
return `\n${name} @ ${address} successfully verified on Etherscan! 🥳\n`
|
2023-04-13 23:03:12 +03:00
|
|
|
}
|
|
|
|
|
2023-04-15 20:51:29 +03:00
|
|
|
function timeout(seconds) {
|
|
|
|
return new Promise((resolve) => setTimeout(resolve, seconds * 1000))
|
|
|
|
}
|
|
|
|
|
2023-04-13 23:03:12 +03:00
|
|
|
const promptMessageBase = (middle) => `\n${middle}\n\nAre you sure you would like to continue? 🧐 (y/n): `
|
|
|
|
|
|
|
|
async function main() {
|
2023-04-15 20:51:29 +03:00
|
|
|
const minimalFactoryFactory = await ethers.getContractFactory('MinimalInstanceFactory')
|
|
|
|
const chainId = (await ethers.provider.getNetwork()).chainId
|
|
|
|
|
2023-06-12 19:13:21 +03:00
|
|
|
let minimalFactory, ethImplAddr, ERC20ImplAddr
|
2023-04-13 23:03:12 +03:00
|
|
|
|
2023-04-14 22:16:26 +03:00
|
|
|
if (await prompt(promptMessageBase('Continuing to MinimalInstanceFactory deployment.'))) {
|
2023-04-15 20:51:29 +03:00
|
|
|
minimalFactory = await minimalFactoryFactory.deploy(
|
2023-04-14 22:16:26 +03:00
|
|
|
config.verifier,
|
|
|
|
config.hasher,
|
2023-06-12 19:13:21 +03:00
|
|
|
config.router,
|
2023-04-14 22:16:26 +03:00
|
|
|
config.merkleTreeHeight,
|
|
|
|
)
|
2023-06-12 19:13:21 +03:00
|
|
|
|
2023-04-15 20:51:29 +03:00
|
|
|
console.log(happyDeployedMessage('MinimalInstanceFactory', chainId, minimalFactory.address))
|
2023-06-12 18:50:25 +03:00
|
|
|
|
|
|
|
await hre.run('verify:verify', {
|
|
|
|
address: minimalFactory.address,
|
2023-06-12 19:13:21 +03:00
|
|
|
constructorArguments: [config.verifier, config.hasher, config.router, config.merkleTreeHeight],
|
2023-06-12 18:50:25 +03:00
|
|
|
})
|
2023-04-14 22:16:26 +03:00
|
|
|
} else {
|
2023-04-15 20:51:29 +03:00
|
|
|
return '\nDecided to stop at MinimalInstanceFactory deployment.\n'
|
2023-04-14 22:16:26 +03:00
|
|
|
}
|
|
|
|
|
2023-04-15 20:51:29 +03:00
|
|
|
console.log(happyDeployedMessage('MinimalInstanceFactory', chainId, minimalFactory.address))
|
2023-04-14 22:16:26 +03:00
|
|
|
|
2023-06-12 19:13:21 +03:00
|
|
|
ethImplAddr = await minimalFactory.ethImpl()
|
|
|
|
ERC20ImplAddr = await minimalFactory.ERC20Impl()
|
2023-04-13 23:03:12 +03:00
|
|
|
|
2023-06-12 19:13:21 +03:00
|
|
|
console.log(happyDeployedMessage('ETHTornadoCloneable', chainId, ethImplAddr))
|
|
|
|
console.log(happyDeployedMessage('ERC20TornadoCloneable', chainId, ERC20ImplAddr))
|
2023-04-13 23:03:12 +03:00
|
|
|
|
2023-06-12 19:13:21 +03:00
|
|
|
if (await prompt(promptMessageBase('Continuing to impl verifications.'))) {
|
|
|
|
console.log('\nWaiting 3 seconds.\n')
|
|
|
|
await timeout(3)
|
2023-04-14 22:16:26 +03:00
|
|
|
|
|
|
|
await hre.run('verify:verify', {
|
2023-06-12 19:13:21 +03:00
|
|
|
address: ethImplAddr,
|
2023-04-14 22:16:26 +03:00
|
|
|
constructorArguments: [config.verifier, config.hasher],
|
|
|
|
})
|
|
|
|
|
2023-06-12 19:13:21 +03:00
|
|
|
console.log(happyVerifiedMessage('ETHTornadoCloneable', ethImplAddr))
|
2023-04-15 20:51:29 +03:00
|
|
|
console.log('\nWaiting 5 seconds.\n')
|
|
|
|
await timeout(5)
|
2023-04-14 22:16:26 +03:00
|
|
|
|
|
|
|
await hre.run('verify:verify', {
|
2023-06-12 19:13:21 +03:00
|
|
|
address: ERC20ImplAddr,
|
2023-04-14 22:16:26 +03:00
|
|
|
constructorArguments: [config.verifier, config.hasher],
|
|
|
|
})
|
|
|
|
|
2023-06-12 19:13:21 +03:00
|
|
|
console.log(happyVerifiedMessage('ERC20TornadoCloneable', ERC20ImplAddr))
|
2023-04-13 23:03:12 +03:00
|
|
|
} else {
|
|
|
|
return '\nDecided to stop at contract verification.\n'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
main().then((res) => {
|
2023-04-14 22:16:26 +03:00
|
|
|
console.log(res ?? '\nScript succesfully finished.\n')
|
2023-04-13 23:03:12 +03:00
|
|
|
})
|