Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wip: deploy utils cleanup #12027

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion packages/contracts-bedrock/scripts/deploy/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import { LibStateDiff } from "scripts/libraries/LibStateDiff.sol";
import { Process } from "scripts/libraries/Process.sol";
import { ForgeArtifacts } from "scripts/libraries/ForgeArtifacts.sol";
import { ChainAssertions } from "scripts/deploy/ChainAssertions.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";

// Contracts
import { ProxyAdmin } from "src/universal/ProxyAdmin.sol";
Expand Down Expand Up @@ -665,7 +666,14 @@ contract Deploy is Deployer {

/// @notice Deploy the SuperchainConfig contract
function deploySuperchainConfig() public broadcast {
ISuperchainConfig superchainConfig = ISuperchainConfig(_deploy("SuperchainConfig", hex""));
ISuperchainConfig superchainConfig = ISuperchainConfig(
DeployUtils.create2AndSave({
_save: this,
_name: "SuperchainConfig",
_args: abi.encodeCall(ISuperchainConfig.__constructor__, ()),
_salt: _implSalt()
})
);

require(superchainConfig.guardian() == address(0));
bytes32 initialized = vm.load(address(superchainConfig), bytes32(0));
Expand Down
207 changes: 197 additions & 10 deletions packages/contracts-bedrock/scripts/libraries/DeployUtils.sol
Original file line number Diff line number Diff line change
@@ -1,27 +1,212 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;

import { Proxy } from "src/universal/Proxy.sol";
import { LibString } from "@solady/utils/LibString.sol";
// Scripts
import { Vm } from "forge-std/Vm.sol";
import { console2 as console } from "forge-std/console2.sol";
import { Artifacts } from "scripts/Artifacts.s.sol";

// Libraries
import { LibString } from "@solady/utils/LibString.sol";

// Contracts
import { Proxy } from "src/universal/Proxy.sol";

library DeployUtils {
Vm internal constant vm = Vm(address(uint160(uint256(keccak256("hevm cheat code")))));

// This takes a sender and an identifier and returns a deterministic address based on the two.
// The result is used to etch the input and output contracts to a deterministic address based on
// those two values, where the identifier represents the input or output contract, such as
// `optimism.DeploySuperchainInput` or `optimism.DeployOPChainOutput`.
// Example: `toIOAddress(msg.sender, "optimism.DeploySuperchainInput")`
/// @notice Deploys a contract the given name and arguments via CREATE.
/// @param _name Name of the contract to deploy.
/// @param _args ABI-encoded constructor arguments.
/// @return addr_ Address of the deployed contract.
function create1(string memory _name, bytes memory _args) internal returns (address payable addr_) {
bytes memory bytecode = abi.encodePacked(vm.getCode(_name), _args);
assembly {
addr_ := create(0, add(bytecode, 0x20), mload(bytecode))
}
assertValidContractAddress(addr_);
}

/// @notice Deploys a contract with the given name via CREATE.
/// @param _name Name of the contract to deploy.
/// @return Address of the deployed contract.
function create1(string memory _name) internal returns (address payable) {
smartcontracts marked this conversation as resolved.
Show resolved Hide resolved
return create1(_name, hex"");
}

/// @notice Deploys a contract with the given name via CREATE and saves the result.
/// @param _save Artifacts contract.
/// @param _name Name of the contract to deploy.
/// @param _nick Nickname to save the address to.
/// @param _args ABI-encoded constructor arguments.
/// @return addr_ Address of the deployed contract.
function create1AndSave(
Artifacts _save,
string memory _name,
string memory _nick,
bytes memory _args
)
internal
returns (address payable addr_)
{
console.log("Deploying %s", _nick);
addr_ = create1(_name, _args);
_save.save(_nick, addr_);
console.log("%s deployed at %s", _nick, addr_);
}

/// @notice Deploys a contract with the given name via CREATE and saves the result.
/// @param _save Artifacts contract.
/// @param _name Name of the contract to deploy.
/// @param _nickname Nickname to save the address to.
/// @return addr_ Address of the deployed contract.
function create1AndSave(
Artifacts _save,
string memory _name,
string memory _nickname
)
internal
returns (address payable addr_)
{
return create1AndSave(_save, _name, _nickname, hex"");
}

/// @notice Deploys a contract with the given name via CREATE and saves the result.
/// @param _save Artifacts contract.
/// @param _name Name of the contract to deploy.
/// @param _args ABI-encoded constructor arguments.
/// @return addr_ Address of the deployed contract.
function create1AndSave(
Artifacts _save,
string memory _name,
bytes memory _args
)
internal
returns (address payable addr_)
{
return create1AndSave(_save, _name, _name, _args);
}

/// @notice Deploys a contract with the given name and arguments via CREATE2.
/// @param _name Name of the contract to deploy.
/// @param _args ABI-encoded constructor arguments.
/// @param _salt Salt for the CREATE2 operation.
/// @return addr_ Address of the deployed contract.
function create2(string memory _name, bytes memory _args, bytes32 _salt) internal returns (address payable addr_) {
bytes memory initCode = abi.encodePacked(vm.getCode(_name), _args);
address preComputedAddress = vm.computeCreate2Address(_salt, keccak256(initCode));
require(preComputedAddress.code.length == 0, "DeployUtils: contract already deployed");
assembly {
addr_ := create2(0, add(initCode, 0x20), mload(initCode), _salt)
}
assertValidContractAddress(addr_);
}

/// @notice Deploys a contract with the given name via CREATE2.
/// @param _name Name of the contract to deploy.
/// @param _salt Salt for the CREATE2 operation.
/// @return Address of the deployed contract.
function create2(string memory _name, bytes32 _salt) internal returns (address payable) {
smartcontracts marked this conversation as resolved.
Show resolved Hide resolved
return create2(_name, hex"", _salt);
}

/// @notice Deploys a contract with the given name and arguments via CREATE2 and saves the result.
/// @param _save Artifacts contract.
/// @param _name Name of the contract to deploy.
/// @param _nick Nickname to save the address to.
/// @param _args ABI-encoded constructor arguments.
/// @param _salt Salt for the CREATE2 operation.
/// @return addr_ Address of the deployed contract.
function create2AndSave(
Artifacts _save,
string memory _name,
string memory _nick,
bytes memory _args,
bytes32 _salt
)
internal
returns (address payable addr_)
{
console.log("Deploying %s", _nick);
addr_ = create2(_name, _args, _salt);
_save.save(_nick, addr_);
console.log("%s deployed at %s", _nick, addr_);
}

/// @notice Deploys a contract with the given name via CREATE2 and saves the result.
/// @param _save Artifacts contract.
/// @param _name Name of the contract to deploy.
/// @param _nick Nickname to save the address to.
/// @param _salt Salt for the CREATE2 operation.
/// @return addr_ Address of the deployed contract.
function create2AndSave(
Artifacts _save,
string memory _name,
string memory _nick,
bytes32 _salt
)
internal
returns (address payable addr_)
{
return create2AndSave(_save, _name, _nick, hex"", _salt);
}

/// @notice Deploys a contract with the given name and arguments via CREATE2 and saves the result.
/// @param _save Artifacts contract.
/// @param _name Name of the contract to deploy.
/// @param _args ABI-encoded constructor arguments.
/// @param _salt Salt for the CREATE2 operation.
/// @return addr_ Address of the deployed contract.
function create2AndSave(
Artifacts _save,
string memory _name,
bytes memory _args,
bytes32 _salt
)
internal
returns (address payable addr_)
{
return create2AndSave(_save, _name, _name, _args, _salt);
}

/// @notice Deploys a contract with the given name via CREATE2 and saves the result.
/// @param _save Artifacts contract.
/// @param _name Name of the contract to deploy.
/// @param _salt Salt for the CREATE2 operation.
/// @return addr_ Address of the deployed contract.
function create2AndSave(
Artifacts _save,
string memory _name,
bytes32 _salt
)
internal
returns (address payable addr_)
{
return create2AndSave(_save, _name, _name, hex"", _salt);
}

/// @notice Takes a sender and an identifier and returns a deterministic address based on the
/// two. The result is used to etch the input and output contracts to a deterministic
/// address based on those two values, where the identifier represents the input or
/// output contract, such as `optimism.DeploySuperchainInput` or
/// `optimism.DeployOPChainOutput`.
/// Example: `toIOAddress(msg.sender, "optimism.DeploySuperchainInput")`
/// @param _sender Address of the sender.
/// @param _identifier Additional identifier.
/// @return Deterministic address.
function toIOAddress(address _sender, string memory _identifier) internal pure returns (address) {
return address(uint160(uint256(keccak256(abi.encode(_sender, _identifier)))));
}

/// @notice Asserts that the given address is a valid contract address.
/// @param _who Address to check.
function assertValidContractAddress(address _who) internal view {
require(_who != address(0), "DeployUtils: zero address");
require(_who.code.length > 0, string.concat("DeployUtils: no code at ", LibString.toHexStringChecksummed(_who)));
}

/// @notice Asserts that the given proxy has an implementation set.
/// @param _proxy Proxy to check.
function assertImplementationSet(address _proxy) internal {
// We prank as the zero address due to the Proxy's `proxyCallIfNotAdmin` modifier.
// Pranking inside this function also means it can no longer be considered `view`.
Expand All @@ -30,6 +215,8 @@ library DeployUtils {
assertValidContractAddress(implementation);
}

/// @notice Asserts that the given addresses are valid contract addresses.
/// @param _addrs Addresses to check.
function assertValidContractAddresses(address[] memory _addrs) internal view {
// Assert that all addresses are non-zero and have code.
// We use LibString to avoid the need for adding cheatcodes to this contract.
Expand All @@ -48,9 +235,9 @@ library DeployUtils {
}
}

// Asserts that for a given contract the value of a storage slot at an offset is 1 or
// `type(uint8).max`. The value is set to 1 when a contract is initialized, and set to
// `type(uint8).max` when `_disableInitializers` is called.
/// @notice Asserts that for a given contract the value of a storage slot at an offset is 1 or
/// `type(uint8).max`. The value is set to 1 when a contract is initialized, and set to
/// `type(uint8).max` when `_disableInitializers` is called.
function assertInitialized(address _contractAddress, uint256 _slot, uint256 _offset) internal view {
bytes32 slotVal = vm.load(_contractAddress, bytes32(_slot));
uint8 value = uint8((uint256(slotVal) >> (_offset * 8)) & 0xFF);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ interface ISuperchainConfig {
function paused() external view returns (bool paused_);
function unpause() external;
function version() external view returns (string memory);

function __constructor__() external;
}