mirror of
https://github.com/autistic-symposium/mev-toolkit.git
synced 2025-04-28 11:46:13 -04:00
20 lines
373 B
JavaScript
20 lines
373 B
JavaScript
/**
|
|
* @type import('hardhat/config').HardhatUserConfig
|
|
*/
|
|
require('dotenv').config();
|
|
require("@nomiclabs/hardhat-ethers");
|
|
|
|
const { API_URL, PRIVATE_KEY } = process.env;
|
|
|
|
module.exports = {
|
|
solidity: "0.7.3",
|
|
defaultNetwork: "rinkeby",
|
|
networks: {
|
|
hardhat: {},
|
|
rinkeby: {
|
|
url: API_URL,
|
|
accounts: [`0x${PRIVATE_KEY}`]
|
|
}
|
|
},
|
|
}
|