From d57cfc69cd65bc7710e89b084a63b085b989e51d Mon Sep 17 00:00:00 2001 From: benbierens Date: Mon, 17 Apr 2023 13:58:52 +0200 Subject: [PATCH] Fix "invalid value undefined" in hardhat configuration --- hardhat.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hardhat.config.js b/hardhat.config.js index 3cbedf2..faf9057 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -25,7 +25,7 @@ module.exports = { tags: ["local"], }, codexdisttestnetwork: { - url: process.env.DISTTEST_NETWORK_URL - } + url: `${process.env.DISTTEST_NETWORK_URL}`, + }, }, }