chore: forge init

This commit is contained in:
JulesCrown 2024-03-12 10:00:53 +01:00
parent f22910069a
commit 8549b848b8
5 changed files with 98 additions and 0 deletions

View file

@ -0,0 +1,12 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "forge-std/Script.sol";
contract CounterScript is Script {
function setUp() public {}
function run() public {
vm.broadcast();
}
}