From 6965116993e8a9f6d42a3d2ec9a8369e3eb7c5db Mon Sep 17 00:00:00 2001 From: pk1411 Date: Thu, 3 Mar 2022 23:39:14 +0530 Subject: [PATCH] converting gas values to number --- hardhat.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index ffa2c307..62f019f4 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -40,11 +40,11 @@ const mnemonic = process.env.MNEMONIC ?? "test test test test test test test test test test test junk"; -const networkGasPriceConfig: Record = { - "mainnet": "160", - "polygon": "50", - "avalanche": "50", - "arbitrum": "2" +const networkGasPriceConfig: Record = { + "mainnet": 160000000000, + "polygon": 50000000000, + "avalanche": 50000000000, + "arbitrum": 2000000000 } function createConfig(network: string) {