You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
885 B
27 lines
885 B
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity >=0.6.0 <0.8.0;
|
|
|
|
import "../utils/Create2.sol";
|
|
import "../introspection/ERC1820Implementer.sol";
|
|
|
|
contract Create2Impl {
|
|
function deploy(uint256 value, bytes32 salt, bytes memory code) public {
|
|
Create2.deploy(value, salt, code);
|
|
}
|
|
|
|
function deployERC1820Implementer(uint256 value, bytes32 salt) public {
|
|
// solhint-disable-next-line indent
|
|
Create2.deploy(value, salt, type(ERC1820Implementer).creationCode);
|
|
}
|
|
|
|
function computeAddress(bytes32 salt, bytes32 codeHash) public view returns (address) {
|
|
return Create2.computeAddress(salt, codeHash);
|
|
}
|
|
|
|
function computeAddressWithDeployer(bytes32 salt, bytes32 codeHash, address deployer) public pure returns (address) {
|
|
return Create2.computeAddress(salt, codeHash, deployer);
|
|
}
|
|
|
|
receive() external payable {}
|
|
}
|
|
|