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