mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-02-23 15:48:11 +00:00
14 lines
510 B
Solidity
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();
|
|
}
|
|
}
|