From 7e9686cefd3ec1b140e1df435c23998c0bebda41 Mon Sep 17 00:00:00 2001 From: turupawn Date: Wed, 28 Sep 2022 14:58:22 -0600 Subject: [PATCH] fix actions --- .env.example | 2 +- hardhat.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 522dd96..5818656 100644 --- a/.env.example +++ b/.env.example @@ -1 +1 @@ -RPC_URL=https://eth-mainnet.g.alchemy.com/v2/YOURAPIHERE \ No newline at end of file +MAINNET_RPC_URL=https://eth-mainnet.g.alchemy.com/v2/YOURAPIHERE \ No newline at end of file diff --git a/hardhat.config.js b/hardhat.config.js index bc6a10c..23a3bfe 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -7,7 +7,7 @@ module.exports = { networks: { hardhat: { forking: { - url: process.env.RPC_URL, + url: process.env.MAINNET_RPC_URL, } } }