/hardhat.config.js Secret
Created
March 19, 2023 13:41
DappBnb Project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('@nomiclabs/hardhat-waffle') | |
require('dotenv').config() | |
module.exports = { | |
defaultNetwork: 'localhost', | |
networks: { | |
hardhat: {}, | |
localhost: { | |
url: 'http://127.0.0.1:8545', | |
}, | |
}, | |
solidity: { | |
version: '0.8.11', | |
settings: { | |
optimizer: { | |
enabled: true, | |
runs: 200, | |
}, | |
}, | |
}, | |
paths: { | |
sources: './src/contracts', | |
artifacts: './src/abis', | |
}, | |
mocha: { | |
timeout: 40000, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment