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