diff --git a/README.md b/README.md index 6d76fd6..8a59c2c 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,6 @@ For more information on how to use Foundry, check out the [Foundry Github Reposi ## Todo - [x] Dynamically splice owner account into bytecode -- [ ] Deploy as minimal clone ## License diff --git a/script/Deploy.s.sol b/script/Deploy.s.sol deleted file mode 100644 index 1b204c8..0000000 --- a/script/Deploy.s.sol +++ /dev/null @@ -1,16 +0,0 @@ -// SPDX-License-Identifier: Unlicense -pragma solidity ^0.8.15; - -import "foundry-huff/HuffDeployer.sol"; -import "forge-std/Script.sol"; - -interface SimpleStore { - function setValue(uint256) external; - function getValue() external returns (uint256); -} - -contract Deploy is Script { - function run() public returns (SimpleStore simpleStore) { - simpleStore = SimpleStore(HuffDeployer.deploy("SimpleStore")); - } -}