This commit is contained in:
2023-07-16 11:38:40 +02:00
commit 4d60aa44b4
59 changed files with 11355 additions and 0 deletions

12
script/Counter.s.sol Normal file
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();
}
}