Files

14 lines
425 B
Solidity
Raw Permalink Normal View History

2023-04-29 13:11:35 +03:00
// SPDX-License-Identifier: UNLICENSED
2023-07-03 12:42:23 +03:00
pragma solidity >=0.8.19 <=0.9.0;
2023-04-29 13:11:35 +03:00
import { Foo } from "../src/Foo.sol";
import { BaseScript } from "./Base.s.sol";
import { DeploymentConfig } from "./DeploymentConfig.s.sol";
2023-04-29 13:11:35 +03:00
contract Deploy is BaseScript {
function run() public returns (Foo foo, DeploymentConfig deploymentConfig) {
deploymentConfig = new DeploymentConfig(broadcaster);
2023-04-29 13:11:35 +03:00
foo = new Foo();
}
}