ens-usernames/script/Deploy.s.sol
Ricardo Guilherme Schmidt 5a11efcae6 feat: tests
2024-06-14 12:32:16 -03:00

14 lines
510 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.25 <=0.9.0;
import { UsernameRegistrar } from "../contracts/registry/UsernameRegistrar.sol";
import { BaseScript } from "./Base.s.sol";
import { DeploymentConfig } from "./DeploymentConfig.s.sol";
contract Deploy is BaseScript {
function run() public returns (UsernameRegistrar registrar, DeploymentConfig deploymentConfig) {
deploymentConfig = new DeploymentConfig(broadcaster);
//registrar = new UsernameRegistrar();
}
}