dgf-prototype/ethereum/hardhat.config.js

16 lines
306 B
JavaScript
Raw Normal View History

2024-03-05 21:21:27 -06:00
require('@nomicfoundation/hardhat-toolbox');
2024-03-10 11:55:59 -05:00
require('dotenv').config();
2024-03-04 19:33:06 -06:00
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
2024-03-05 21:21:27 -06:00
solidity: '0.8.24',
2024-03-10 11:55:59 -05:00
networks: {
hardhat: {
accounts: {
mnemonic: process.env.SEED_PHRASE,
},
chainId: 1337,
},
},
2024-03-04 19:33:06 -06:00
};