fix deploy

This commit is contained in:
Drygin 2022-02-14 17:17:57 +03:00
parent e7b360b7f9
commit 696b41b1dd
3 changed files with 22 additions and 15 deletions

View File

@ -26,10 +26,10 @@ There is Tornado governance proposal for upgrade nova contract on Xdai chain.
## Deploy
1. Check `config.json` for actual values.
1. Check `config.js` for actual values. Take `newNovaImpl` address from README of [repository](https://github.com/tornadocash/tornado-nova).
2. Run deploy:
```
npx hardhat run scripts/deploy.js --network <network-name>
npx hardhat run scripts/deploy.js --network mainnet
```

13
config.js Normal file
View File

@ -0,0 +1,13 @@
module.exports = {
gasLimit: 200000,
// BSC TEST VALUES
// novaProxy: "0xC953965A9287d298bbECF13fd59aA3F4cE69d322",
// newNovaImpl: "0x75Df5AF045d91108662D8080fD1FEFAd6aA0bb59", // random contract
// ethAmbBridge: "0x05185872898b6f94AA600177EF41B9334B1FA48B",
// MAINNET VALUES
novaProxy: '0xD692Fd2D0b2Fbd2e52CFa5B5b9424bC981C30696',
newNovaImpl: '0xAEE471D6FD5c6B3f377f45B0a3c705505d172090',
ethAmbBridge: '0x4C36d2919e407f0Cc2Ee3c993ccF8ac26d9CE64e',
}

View File

@ -1,18 +1,7 @@
const { ethers } = require('hardhat')
const config = require('../config')
async function main() {
const gasLimit = 200000
// BSC TEST VALUES
const novaProxy = '0xC953965A9287d298bbECF13fd59aA3F4cE69d322' // test one
const newNovaImpl = '0x75Df5AF045d91108662D8080fD1FEFAd6aA0bb59' // random contract
const ethAmbBridge = '0x05185872898b6f94AA600177EF41B9334B1FA48B' // on bsc
// MAINNET VALUES
// const novaProxy = "0xD692Fd2D0b2Fbd2e52CFa5B5b9424bC981C30696"
// const newNovaImpl = "TODO"
// const ethAmbBridge = "0x4C36d2919e407f0Cc2Ee3c993ccF8ac26d9CE64e"
const [deployer] = await ethers.getSigners()
console.log('Deploying contracts with the account:', deployer.address)
@ -20,7 +9,12 @@ async function main() {
console.log('Account balance:', (await deployer.getBalance()).toString())
const Proposal = await ethers.getContractFactory('NovaUpgradeProposal')
const proposal = await Proposal.deploy(novaProxy, newNovaImpl, ethAmbBridge, gasLimit)
const proposal = await Proposal.deploy(
config.novaProxy,
config.newNovaImpl,
config.ethAmbBridge,
config.gasLimit,
)
console.log('Proposal address:', proposal.address)
}