mirror of
https://github.com/autistic-symposium/mev-toolkit.git
synced 2025-05-05 00:04:56 -04:00
move er721-101 to solidity dir
This commit is contained in:
parent
bb3dcb5b32
commit
ec24a4b414
8 changed files with 0 additions and 0 deletions
19
solidity/erc721-solidity-101/hardhat.config.js
Normal file
19
solidity/erc721-solidity-101/hardhat.config.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* @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}`]
|
||||
}
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue