vault/orderlib initial impl compiles

This commit is contained in:
Tim Olson
2023-09-21 16:51:57 -04:00
parent 46501a7e6d
commit 2925a1cc0c
9 changed files with 285 additions and 204 deletions

View File

@@ -3,6 +3,7 @@ pragma solidity =0.7.6;
import "forge-std/Script.sol";
import "../src/VaultDeployer.sol";
import "forge-std/console2.sol";
contract Deploy is Script {
function run() external {
@@ -10,5 +11,7 @@ contract Deploy is Script {
vm.startBroadcast(deployerPrivateKey);
VaultDeployer deployer = new VaultDeployer{salt:keccak256(abi.encode(1))}();
vm.stopBroadcast();
console2.log('VaultDeployer');
console2.log(address(deployer));
}
}