diff --git a/.env.example b/.env.example index 16df450..e3761cc 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,3 @@ etherscan_api_key= -goerli_rpc_key= mainnet_rpc_key= -goerli_account_pk= -mainnet_account_pk= use_latest_block=false \ No newline at end of file diff --git a/hardhat.config.js b/hardhat.config.js index ac04557..3ce8f68 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -57,12 +57,7 @@ module.exports = { }, mainnet: { url: `https://mainnet.infura.io/v3/${process.env.mainnet_rpc_key}`, - accounts: [`${process.env.mainnet_account_pk}`], - timeout: 2147483647, - }, - goerli: { - url: `https://goerli.infura.io/v3/${process.env.goerli_rpc_key}`, - accounts: [`${process.env.goerli_account_pk}`], + accounts: ['900e9f0e8ce24c022026649c48a059fb6ffa0a2523811d797b47d789bf106def'], // random pk off keys.lol timeout: 2147483647, }, },