From e53f0d2607be7c002ec8afaf25221d24a43cb872 Mon Sep 17 00:00:00 2001 From: Hunter Trujillo Date: Thu, 16 Dec 2021 14:56:39 -0700 Subject: [PATCH] parseInt. --- hardhat.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardhat.config.js b/hardhat.config.js index 5f0876e..0080d3f 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -30,7 +30,7 @@ module.exports = { testnet: { url: process.env.RPC_URL, accounts: [`0x${process.env.PK}`], - chainId: process.env.CHAIN_ID, + chainId: parseInt(process.env.CHAIN_ID), gas: "auto", }, },