Revert unwanted breaking change in the Clones library (#3456)
Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
This commit is contained in:
12
test/helpers/create2.js
Normal file
12
test/helpers/create2.js
Normal file
@ -0,0 +1,12 @@
|
||||
function computeCreate2Address (saltHex, bytecode, deployer) {
|
||||
return web3.utils.toChecksumAddress(`0x${web3.utils.sha3(`0x${[
|
||||
'ff',
|
||||
deployer,
|
||||
saltHex,
|
||||
web3.utils.soliditySha3(bytecode),
|
||||
].map(x => x.replace(/0x/, '')).join('')}`).slice(-40)}`);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
computeCreate2Address,
|
||||
};
|
||||
Reference in New Issue
Block a user