From c68d166762c928a3bfa30a124848b83a3e159afa Mon Sep 17 00:00:00 2001 From: clipartinc Date: Sun, 23 Jan 2022 01:36:08 -0700 Subject: [PATCH] Update App.js Added... maxPriorityFeePerGas: null, maxFeePerGas: null, This is so MetaMask would set the Max Priority fee and Max Fee for Gas properly. --- src/App.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.js b/src/App.js index f2d22e687..6e81bc93e 100644 --- a/src/App.js +++ b/src/App.js @@ -133,6 +133,8 @@ function App() { .mint(mintAmount) .send({ gasLimit: String(totalGasLimit), + maxPriorityFeePerGas: null, + maxFeePerGas: null, to: CONFIG.CONTRACT_ADDRESS, from: blockchain.account, value: totalCostWei,