mirror of
https://github.com/vacp2p/foundry-template.git
synced 2025-03-04 00:50:56 +00:00
This is an initial take on adjusting the foundry-template to the Vac's smart contract unit's needs. In a nutshell what this does is: 1. Update README to not refer to upstream repo where not necessary 2. Removes PRBergTest library from dependencies 3. Removes `FUNDING.qml` 4. Adjust CI actions There are more things to be done and decided on in follow-up commits.
12 lines
277 B
Solidity
12 lines
277 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity >=0.8.19 <=0.9.0;
|
|
|
|
import { Foo } from "../src/Foo.sol";
|
|
import { BaseScript } from "./Base.s.sol";
|
|
|
|
contract Deploy is BaseScript {
|
|
function run() public broadcast returns (Foo foo) {
|
|
foo = new Foo();
|
|
}
|
|
}
|