diff --git a/op-verifier/deploy_l1/01_testl2.ts b/op-verifier/deploy_l1/01_testl2.ts new file mode 100644 index 00000000..f781c1b2 --- /dev/null +++ b/op-verifier/deploy_l1/01_testl2.ts @@ -0,0 +1,17 @@ +import {HardhatRuntimeEnvironment} from 'hardhat/types'; +import {DeployFunction} from 'hardhat-deploy/types'; + +const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) { + const {deployments, getNamedAccounts} = hre; + const {deploy} = deployments; + + const {deployer} = await getNamedAccounts(); + + await deploy('TestL2', { + from: deployer, + args: [], + log: true, + }); +}; +export default func; +func.tags = ['TestL2']; \ No newline at end of file