Skip to content

Commit

Permalink
updated: removing explicit import in config, node versions in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Salmandabbakuti committed Nov 3, 2023
1 parent e9fc847 commit ce06e5d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 21.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
runs-on: ${{ matrix.os }}

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ cache
artifacts/
coverage/
coverage.json
.DS_Store
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, a sample script that deploys that contract, and an example of a task implementation, which simply lists the available accounts with balances.

> Recommended to use Node.js v16+ and npm v8+
> Recommended to use Node.js v18+ and npm v8+
> Rename `env.example` to `.env` and add your env specific keys.
Expand Down
2 changes: 0 additions & 2 deletions hardhat.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
require('@nomicfoundation/hardhat-toolbox');
require('@nomicfoundation/hardhat-chai-matchers');
require("@nomiclabs/hardhat-solhint");
require('dotenv').config();

// defining accounts to reuse.
Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "hardhat-boilerplate",
"version": "1.0.0",
"version": "1.2.0",
"description": "hardhat and ethersjs boilerplate for Dapp development",
"main": "index.js",
"private": true,
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
Expand All @@ -13,9 +13,7 @@
"author": "Salman Dabbakuti",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"dotenv": "^16.3.1",
"hardhat": "^2.17.4"
}
Expand Down

0 comments on commit ce06e5d

Please sign in to comment.