remove Counter contract and add basic Raffle contract

This commit is contained in:
han
2025-01-03 10:34:36 +07:00
parent 6ec32143b7
commit 938ea14d44
4 changed files with 48 additions and 57 deletions

View File

@@ -1,19 +0,0 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import {Script, console} from "forge-std/Script.sol";
import {Counter} from "../src/Counter.sol";
contract CounterScript is Script {
Counter public counter;
function setUp() public {}
function run() public {
vm.startBroadcast();
counter = new Counter();
vm.stopBroadcast();
}
}