Skip to content

Commit

Permalink
Remove blank space from the file
Browse files Browse the repository at this point in the history
  • Loading branch information
makoto committed Nov 10, 2023
1 parent f01b031 commit a5a9006
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions op-verifier/deploy_l1/01_testl2.ts
Original file line number Diff line number Diff line change
@@ -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'];

0 comments on commit a5a9006

Please sign in to comment.