1
- const fs = require ( 'fs' ) ;
2
- const path = require ( 'path' ) ;
1
+ import fs from 'fs' ;
2
+ import path from 'path' ;
3
3
4
- require ( '@nomiclabs/hardhat-waffle' ) ;
5
- require ( 'hardhat-abi-exporter' ) ;
6
- require ( 'hardhat-gas-reporter' ) ;
7
- require ( 'hardhat-spdx-license-identifier' ) ;
8
- require ( 'solidity-coverage' ) ;
4
+ import { task } from 'hardhat/config' ;
5
+ import { TASK_COMPILE } from 'hardhat/builtin-tasks/task-names' ;
6
+ import '@nomiclabs/hardhat-waffle' ;
7
+ import 'hardhat-abi-exporter' ;
8
+ import 'hardhat-gas-reporter' ;
9
+ import 'hardhat-spdx-license-identifier' ;
10
+ import 'solidity-coverage' ;
11
+ import Dotenv from 'dotenv' ;
9
12
10
- const {
11
- TASK_COMPILE ,
12
- } = require ( 'hardhat/builtin-tasks/task-names' ) ;
13
+ Dotenv . config ( ) ;
13
14
14
15
task ( TASK_COMPILE , async function ( args , hre , runSuper ) {
15
16
// preserve @solidstate /abi package data when ABI export directory is cleared
@@ -29,7 +30,7 @@ task(TASK_COMPILE, async function (args, hre, runSuper) {
29
30
} ) ;
30
31
} ) ;
31
32
32
- module . exports = {
33
+ export default {
33
34
solidity : {
34
35
version : '0.8.4' ,
35
36
settings : {
@@ -43,9 +44,9 @@ module.exports = {
43
44
networks : {
44
45
generic : {
45
46
// set URL for external network
46
- url : `${ process . env . URL } ` ,
47
+ url : `${ process . env . URL } ` ,
47
48
accounts : {
48
- mnemonic : `${ process . env . MNEMONIC } ` ,
49
+ mnemonic : `${ process . env . MNEMONIC } ` ,
49
50
} ,
50
51
} ,
51
52
} ,
0 commit comments