mirror of
https://github.com/autistic-symposium/blockchains-security-toolkit.git
synced 2025-05-13 12:12:19 -04:00
chore: forge init
This commit is contained in:
parent
203a3d393a
commit
fc5bd836fc
6 changed files with 104 additions and 0 deletions
12
foundry_exploits/script/Counter.s.sol
Normal file
12
foundry_exploits/script/Counter.s.sol
Normal 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();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue