Transpile 7bce2b72
This commit is contained in:
65
contracts/utils/Create2Upgradeable.sol
Normal file
65
contracts/utils/Create2Upgradeable.sol
Normal file
@ -0,0 +1,65 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// OpenZeppelin Contracts v4.4.1 (utils/Create2.sol)
|
||||
|
||||
pragma solidity ^0.8.0;
|
||||
|
||||
/**
|
||||
* @dev Helper to make usage of the `CREATE2` EVM opcode easier and safer.
|
||||
* `CREATE2` can be used to compute in advance the address where a smart
|
||||
* contract will be deployed, which allows for interesting new mechanisms known
|
||||
* as 'counterfactual interactions'.
|
||||
*
|
||||
* See the https://eips.ethereum.org/EIPS/eip-1014#motivation[EIP] for more
|
||||
* information.
|
||||
*/
|
||||
library Create2Upgradeable {
|
||||
/**
|
||||
* @dev Deploys a contract using `CREATE2`. The address where the contract
|
||||
* will be deployed can be known in advance via {computeAddress}.
|
||||
*
|
||||
* The bytecode for a contract can be obtained from Solidity with
|
||||
* `type(contractName).creationCode`.
|
||||
*
|
||||
* Requirements:
|
||||
*
|
||||
* - `bytecode` must not be empty.
|
||||
* - `salt` must have not been used for `bytecode` already.
|
||||
* - the factory must have a balance of at least `amount`.
|
||||
* - if `amount` is non-zero, `bytecode` must have a `payable` constructor.
|
||||
*/
|
||||
function deploy(
|
||||
uint256 amount,
|
||||
bytes32 salt,
|
||||
bytes memory bytecode
|
||||
) internal returns (address) {
|
||||
address addr;
|
||||
require(address(this).balance >= amount, "Create2: insufficient balance");
|
||||
require(bytecode.length != 0, "Create2: bytecode length is zero");
|
||||
assembly {
|
||||
addr := create2(amount, add(bytecode, 0x20), mload(bytecode), salt)
|
||||
}
|
||||
require(addr != address(0), "Create2: Failed on deploy");
|
||||
return addr;
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Returns the address where a contract will be stored if deployed via {deploy}. Any change in the
|
||||
* `bytecodeHash` or `salt` will result in a new destination address.
|
||||
*/
|
||||
function computeAddress(bytes32 salt, bytes32 bytecodeHash) internal view returns (address) {
|
||||
return computeAddress(salt, bytecodeHash, address(this));
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Returns the address where a contract will be stored if deployed via {deploy} from a contract located at
|
||||
* `deployer`. If `deployer` is this contract's address, returns the same value as {computeAddress}.
|
||||
*/
|
||||
function computeAddress(
|
||||
bytes32 salt,
|
||||
bytes32 bytecodeHash,
|
||||
address deployer
|
||||
) internal pure returns (address) {
|
||||
bytes32 _data = keccak256(abi.encodePacked(bytes1(0xff), deployer, salt, bytecodeHash));
|
||||
return address(uint160(uint256(_data)));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user