Implement deploy script, version suggestion and more naming
Signed-off-by: AlienTornadosaurusHex <>
This commit is contained in:
parent
68f5be64e2
commit
bedb574aeb
@ -16,6 +16,10 @@ contract GovernancePatchUpgrade is GovernanceStakingUpgrade {
|
|||||||
address userVaultAddress
|
address userVaultAddress
|
||||||
) public GovernanceStakingUpgrade(stakingRewardsAddress, gasCompLogic, userVaultAddress) {}
|
) public GovernanceStakingUpgrade(stakingRewardsAddress, gasCompLogic, userVaultAddress) {}
|
||||||
|
|
||||||
|
function version() external pure virtual override returns (string memory) {
|
||||||
|
return "4.patch-exploit";
|
||||||
|
}
|
||||||
|
|
||||||
// This should guarantee that the proposal extcodehashes are good
|
// This should guarantee that the proposal extcodehashes are good
|
||||||
function execute(uint256 proposalId) public payable virtual override(Governance) {
|
function execute(uint256 proposalId) public payable virtual override(Governance) {
|
||||||
require(msg.sender != address(this), "pseudo-external function");
|
require(msg.sender != address(this), "pseudo-external function");
|
||||||
|
@ -18,7 +18,7 @@ interface Proxy {
|
|||||||
|
|
||||||
// We will have to do this because of the contract size limit
|
// We will have to do this because of the contract size limit
|
||||||
|
|
||||||
contract ProposalContractsFactory {
|
contract PatchProposalContractsFactory {
|
||||||
function createStakingRewards(
|
function createStakingRewards(
|
||||||
address governance,
|
address governance,
|
||||||
address torn,
|
address torn,
|
||||||
@ -48,10 +48,10 @@ contract PatchProposal {
|
|||||||
|
|
||||||
IERC20 public constant TORN = IERC20(0x77777FeDdddFfC19Ff86DB637967013e6C6A116C);
|
IERC20 public constant TORN = IERC20(0x77777FeDdddFfC19Ff86DB637967013e6C6A116C);
|
||||||
|
|
||||||
ProposalContractsFactory public immutable proposalContractsFactory;
|
PatchProposalContractsFactory public immutable patchProposalContractsFactory;
|
||||||
|
|
||||||
constructor(address _proposalContractsFactory) public {
|
constructor(address _patchProposalContractsFactory) public {
|
||||||
proposalContractsFactory = ProposalContractsFactory(_proposalContractsFactory);
|
patchProposalContractsFactory = PatchProposalContractsFactory(_patchProposalContractsFactory);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Aight lets do this sirs
|
// Aight lets do this sirs
|
||||||
@ -71,11 +71,11 @@ contract PatchProposal {
|
|||||||
|
|
||||||
// And create a new staking contract
|
// And create a new staking contract
|
||||||
TornadoStakingRewards newStaking = TornadoStakingRewards(
|
TornadoStakingRewards newStaking = TornadoStakingRewards(
|
||||||
proposalContractsFactory.createStakingRewards(address(governance), address(TORN), registry)
|
patchProposalContractsFactory.createStakingRewards(address(governance), address(TORN), registry)
|
||||||
);
|
);
|
||||||
|
|
||||||
// And a new registry implementation
|
// And a new registry implementation
|
||||||
address newRegistryImplementationAddress = proposalContractsFactory.createRegistryContract(
|
address newRegistryImplementationAddress = patchProposalContractsFactory.createRegistryContract(
|
||||||
address(TORN),
|
address(TORN),
|
||||||
address(governance),
|
address(governance),
|
||||||
ensAddress,
|
ensAddress,
|
||||||
|
84
deploy/deployPatch.js
Normal file
84
deploy/deployPatch.js
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
require('dotenv').config()
|
||||||
|
|
||||||
|
const hre = require('hardhat')
|
||||||
|
|
||||||
|
const { ethers } = hre
|
||||||
|
|
||||||
|
const { createInterface } = require('readline')
|
||||||
|
|
||||||
|
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)
|
||||||
|
} else _prompt('', resolve)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function prompt(prompt) {
|
||||||
|
return new Promise((resolve) => _prompt(prompt, resolve))
|
||||||
|
}
|
||||||
|
|
||||||
|
function deployedMessage(name, chainId, address) {
|
||||||
|
return `\n${name} deployed on ${idToNetwork(chainId)} @ ${address}\n`
|
||||||
|
}
|
||||||
|
|
||||||
|
function verifiedMessage(name, address) {
|
||||||
|
return `\n${name} @ ${address} verified on Etherscan!\n`
|
||||||
|
}
|
||||||
|
|
||||||
|
function timeout(seconds) {
|
||||||
|
return new Promise((resolve) => setTimeout(resolve, seconds * 1000))
|
||||||
|
}
|
||||||
|
|
||||||
|
const promptMessageBase = (middle) => `\n${middle}\n\nAre you sure you would like to continue? (y/n): `
|
||||||
|
|
||||||
|
async function deploy() {
|
||||||
|
const signer = await ethers.getSigner()
|
||||||
|
|
||||||
|
const patchProposalContractsFactoryDeployer = (
|
||||||
|
await ethers.getContractFactory('PatchProposalContractsFactory')
|
||||||
|
).connect(signer)
|
||||||
|
|
||||||
|
const patchProposalDeployer = (await ethers.getContractFactory('PatchProposal')).connect(signer)
|
||||||
|
|
||||||
|
let patchProposal, patchProposalContractsFactory
|
||||||
|
|
||||||
|
if (await prompt(promptMessageBase('Continuing to PatchProposalContractsFactory deployment.'))) {
|
||||||
|
patchProposalContractsFactory = await patchProposalContractsFactoryDeployer.deploy()
|
||||||
|
console.log(deployedMessage('PatchProposalContractsFactory', 1, patchProposalContractsFactory.address))
|
||||||
|
} else {
|
||||||
|
return '\nDecided to stop at PatchProposalContractsFactory deployment.\n'
|
||||||
|
}
|
||||||
|
|
||||||
|
if (await prompt(promptMessageBase('Continuing to PatchProposal deployment.'))) {
|
||||||
|
patchProposal = await patchProposalDeployer.deploy(patchProposalContractsFactory.address)
|
||||||
|
console.log(deployedMessage('PatchProposal', 1, patchProposal.address))
|
||||||
|
} else {
|
||||||
|
return '\nDecided to stop at PatchProposal deployment.\n'
|
||||||
|
}
|
||||||
|
|
||||||
|
if (await prompt(promptMessageBase('Continuing to contract verification.'))) {
|
||||||
|
await hre.run('verify:verify', {
|
||||||
|
address: patchProposalContractsFactory.address,
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(verifiedMessage('PatchProposalContractsFactory'))
|
||||||
|
console.log('\nWaiting 5 seconds.\n')
|
||||||
|
await timeout(5)
|
||||||
|
|
||||||
|
await hre.run('verify:verify', {
|
||||||
|
address: patchProposal.address,
|
||||||
|
constructorArguments: [patchProposalContractsFactory.address],
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(verifiedMessage('PatchProposal'))
|
||||||
|
} else {
|
||||||
|
return '\nDecided to stop at contract verification.\n'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
deploy()
|
@ -134,7 +134,7 @@ describe('Gov Exploit Patch Upgrade Tests', () => {
|
|||||||
|
|
||||||
initialProposalDeployer = await ethers.getContractFactory('InitialProposal')
|
initialProposalDeployer = await ethers.getContractFactory('InitialProposal')
|
||||||
maliciousProposalDeployer = await ethers.getContractFactory('MaliciousProposal')
|
maliciousProposalDeployer = await ethers.getContractFactory('MaliciousProposal')
|
||||||
proposalContractsDeployer = await ethers.getContractFactory('ProposalContractsFactory')
|
proposalContractsDeployer = await ethers.getContractFactory('PatchProposalContractsFactory')
|
||||||
proposalDeployer = await ethers.getContractFactory('PatchProposal')
|
proposalDeployer = await ethers.getContractFactory('PatchProposal')
|
||||||
|
|
||||||
// Metamorphic & Exploit
|
// Metamorphic & Exploit
|
||||||
|
Loading…
Reference in New Issue
Block a user