Skip to content

Commit

Permalink
chore: Initial project setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mgnfy-view committed Sep 14, 2024
1 parent 9f4b329 commit aaaff2c
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 57 deletions.
19 changes: 0 additions & 19 deletions script/Counter.s.sol

This file was deleted.

12 changes: 12 additions & 0 deletions script/Deploy.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

import {Script} from "forge-std/Script.sol";

contract Deploy is Script {
function run() public {
vm.startBroadcast();

vm.stopBroadcast();
}
}
14 changes: 0 additions & 14 deletions src/Counter.sol

This file was deleted.

4 changes: 4 additions & 0 deletions src/FlashLoaner.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

contract FlashLoaner {}
24 changes: 0 additions & 24 deletions test/Counter.t.sol

This file was deleted.

8 changes: 8 additions & 0 deletions test/FlashLoaner.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

import {Test} from "forge-std/Test.sol";

contract FlashLoanerTest is Test {
function setUp() public {}
}

0 comments on commit aaaff2c

Please sign in to comment.