23 lines
420 B
JavaScript
23 lines
420 B
JavaScript
|
/* eslint-env node */
|
||
|
require('dotenv').config()
|
||
|
|
||
|
const mainnetFork = {
|
||
|
url: `https://mainnet.infura.io/v3/${process.env.REACT_APP_INFURA_KEY}`,
|
||
|
blockNumber: 17023328,
|
||
|
httpHeaders: {
|
||
|
Origin: 'localhost:3000', // infura allowlists requests by origin
|
||
|
},
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
networks: {
|
||
|
hardhat: {
|
||
|
chainId: 1,
|
||
|
forking: mainnetFork,
|
||
|
accounts: {
|
||
|
count: 1,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|