Skip to content

Commit

Permalink
chore: removed create3 deployer dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Orlando committed Nov 15, 2023
1 parent a2a863c commit 1b26822
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@
path = lib/openzeppelin-contracts
url = https://github.com/Openzeppelin/openzeppelin-contracts
branch = v5.0.0
[submodule "lib/create3-factory"]
path = lib/create3-factory
url = https://github.com/lifinance/create3-factory
7 changes: 5 additions & 2 deletions script/Deployer.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ pragma solidity ^0.8.21;

import "forge-std/Script.sol";
import "../src/Schnaps.sol";
import "../lib/create3-factory/src/ICREATE3Factory.sol";

interface ICREATE3Factory {
function deploy(bytes32 salt, bytes memory bytecode) external returns (address deployedAddress);
}

contract Deployer is Script {
using stdJson for string;
Expand Down Expand Up @@ -32,4 +35,4 @@ contract Deployer is Script {

vm.stopBroadcast();
}
}
}

0 comments on commit 1b26822

Please sign in to comment.