Skip to content

Commit 0b2eaf5

Browse files
committed
Typescript config
1 parent cb52dc5 commit 0b2eaf5

9 files changed

+205
-432
lines changed

.eslintrc.js

-64
This file was deleted.

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ coverage.json
88

99
yarn.lock
1010
!./yarn.lock
11+
12+
.env
13+
14+
typechain

.mocharc.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"require": "hardhat/register",
3+
"timeout": 20000
4+
}

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.prettierrc.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
trailingComma: 'all'
2+
tabWidth: 2
3+
singleQuote: true
4+
jsxBracketSameLine: false
5+
jsxSingleQuote: true
6+
arrowParens: always
7+
overrides:
8+
- files: "*.sol"
9+
options:
10+
printWidth: 80
11+
tabWidth: 2
12+
useTabs: false
13+
singleQuote: false
14+
bracketSpacing: false

hardhat.config.js hardhat.config.ts

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
const fs = require('fs');
2-
const path = require('path');
1+
import fs from 'fs';
2+
import path from 'path';
33

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';
912

10-
const {
11-
TASK_COMPILE,
12-
} = require('hardhat/builtin-tasks/task-names');
13+
Dotenv.config();
1314

1415
task(TASK_COMPILE, async function (args, hre, runSuper) {
1516
// preserve @solidstate/abi package data when ABI export directory is cleared
@@ -29,7 +30,7 @@ task(TASK_COMPILE, async function (args, hre, runSuper) {
2930
});
3031
});
3132

32-
module.exports = {
33+
export default {
3334
solidity: {
3435
version: '0.8.4',
3536
settings: {
@@ -43,9 +44,9 @@ module.exports = {
4344
networks: {
4445
generic: {
4546
// set URL for external network
46-
url: `${ process.env.URL }`,
47+
url: `${process.env.URL}`,
4748
accounts: {
48-
mnemonic: `${ process.env.MNEMONIC }`,
49+
mnemonic: `${process.env.MNEMONIC}`,
4950
},
5051
},
5152
},

package.json

+12-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,24 @@
77
"@nomiclabs/hardhat-ethers": "^2.0.2",
88
"@nomiclabs/hardhat-waffle": "^2.0.1",
99
"@solidstate/spec": "link:spec",
10+
"@typechain/ethers-v5": "^7.0.0",
11+
"@types/chai": "^4.2.18",
12+
"@types/mocha": "^8.2.2",
13+
"@types/node": "^15.6.0",
14+
"@types/rimraf": "^3.0.0",
1015
"chai": "^4.3.4",
11-
"eslint": "^7.24.0",
12-
"eslint-plugin-mocha": "^8.1.0",
16+
"dotenv": "^10.0.0",
1317
"ethereum-waffle": "^3.3.0",
1418
"hardhat": "^2.2.1",
1519
"hardhat-abi-exporter": "^2.2.1",
1620
"hardhat-gas-reporter": "^1.0.4",
1721
"hardhat-spdx-license-identifier": "^2.0.3",
1822
"lerna": "^4.0.0",
19-
"solidity-coverage": "^0.7.16"
23+
"prettier": "^2.3.0",
24+
"rimraf": "^3.0.2",
25+
"solidity-coverage": "^0.7.16",
26+
"ts-node": "^10.0.0",
27+
"typechain": "^5.0.0",
28+
"typescript": "^4.2.4"
2029
}
2130
}

tsconfig.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2018",
4+
"module": "commonjs",
5+
"strict": true,
6+
"esModuleInterop": true,
7+
"outDir": "dist"
8+
},
9+
"include": ["./scripts", "./test"],
10+
"files": ["./hardhat.config.ts"]
11+
}

0 commit comments

Comments
 (0)