CREATE2
Deployer
Solidity This library is a minimal utility for deploying ethereum contracts at detereministic addresss using CREATE2
. It allows for contracts to be deployed at the same address on all networks.
CREATE2
opcode was released in the Constantinople update for Ethereum.
Example Usage
// importconst ethers deployContract deployFactory getCreate2Address isDeployed } = ; // declare deployment parametersconst salt = "hello";const bytecode = "0x...";const privateKey = "0x...";const constructorTypes = "address" "uint256" "...";const constructorArgs = "0x..." "123..." "...";const provider = ethers;const signer = privateKey provider; // Calculate contract addressconst computedAddress = ; // Deploy contractconst txHash address receipt = await ; // Query if contract deployed at addressconst success = await ; // Deploy create2 factory (for local chains only)const factoryAddress = await ;
Caveats
Contracts deployed using this library need to follow these guidelines:
msg.sender
cannot be used in the constructor as it will refer to the factory contract.tx.origin
should not bee used in the constructor as the deploy transaction can be front-run.- In order to produce a deterministic address on all networks, the salt and constructor parameters must be the same.
API Documentation
/** * Deploy contract using create2. * * Deploy an arbitrary contract using a create2 factory. Can be used with an ethers provider on any network. * * @param * @param * @param * @param * @param * @param * * @return */ /** * Calculate create2 address of a contract. * * Calculates deterministic create2 address locally. * * @param * @param * @param * @param * @param * * @return */ /** * Determine if a given contract is deployed. * * Determines if a given contract is deployed at the address provided. * * @param * @param * * @return */ /** * Deploy create2 factory for local development. * * Deploys the create2 factory locally for development purposes. Requires funding address `0x2287Fa6efdEc6d8c3E0f4612ce551dEcf89A357A` with eth to perform deployment. * * @param * * @return */
Tutorial
These tutorial will show you how to predetermine a smart contract address off-chain and then deploy using create2
from a smart contract.
Factory.sol
- a contract that deploys other contracts using the create2
opcode:
pragma solidity >0.4.99 <0.6.0; contract Factory { event Deployed(address addr, uint256 salt); function deploy(bytes memory code, uint256 salt) public { address addr; assembly { addr := create2(0, add(code, 0x20), mload(code), salt) if iszero(extcodesize(addr)) { revert(0, 0) } } emit Deployed(addr, salt); }}
Account.sol
- the contract to counterfactual instantiate:
pragma solidity >0.4.99 <0.6.0; contract Account { address public owner; constructor(address payable _owner) public { owner = _owner; } function setOwner(address _owner) public { require(msg.sender == owner); owner = _owner; } function destroy(address payable recipient) public { require(msg.sender == owner); selfdestruct(recipient); } function() payable external {}}
Create helper functions:
// deterministically computes the smart contract address given// the account the will deploy the contract (factory contract)// the salt as uint256 and the contract bytecode { return `0x`;} // converts an int to uint256 { const hex = value; return `0x`;} // encodes parameter to pass as contract argument { const abiCoder = ethersutilsdefaultAbiCoder; return abiCoder;} // returns true if contract is deployed on-chain { const code = await ethersprovider; return codelength > 0;}
Now you can compute off-chain deterministically the address of the account contract:
// constructor arguments are appended to contract bytecodeconst bytecode = ``;const salt = 1; const computedAddr = ; console; // "0x45d673256f870c135b2858e593653fb22d39795f"console; // false (not deployed on-chain)
You can send eth to the precomputed contract address 0x45d673256f870c135b2858e593653fb22d39795f
even though it's not deployed. Once there's eth in the contract you can deploy the contract and have the funds sent to a different address if you wish. CREATE2 is useful because you don't need to deploy a new contract on-chain for new users; you or anyone can deploy the contract only once there's already funds in it (which the contract can have refund logic for gas).
Let's deploy the account contract using the factory:
const signer = await ethers0;const factory = factoryAddress factoryAbi signer;const salt = 1;const bytecode = ``;const result = await await factory; const addr = resultevents0argsaddr;console; // true (deployed contract address is the same as precomputed address)console; // "0x4b0f212af772aab80094b5fe6b5f3f3c544c099d43ce3ca7343c63bbb0776de4"console; // "0x45d673256f870c135b2858e593653fb22d39795f"console; // true (deployed on-chain)
Example code found here.
Development
Install dependencies:
yarn
Test contracts:
yarn test
Resources
Credits
- @stanislaw-glogowski for initial implementation example
- @miguelmota for factory implementation example with web3