diff --git a/src/screens/mints/MintSheet.tsx b/src/screens/mints/MintSheet.tsx index 1682a368b15..3c2fbc51566 100644 --- a/src/screens/mints/MintSheet.tsx +++ b/src/screens/mints/MintSheet.tsx @@ -269,10 +269,14 @@ const MintSheet = () => { ) )?.balance?.amount ?? 0; const txFee = getTotalGasPrice(); + const txFeeWithBuffer = multiply(txFee, 1.2); const totalMintPrice = multiply(price.amount, quantity); // gas price + mint price setInsufficientEth( - greaterThanOrEqualTo(add(txFee, totalMintPrice), nativeBalance) + greaterThanOrEqualTo( + add(txFeeWithBuffer, totalMintPrice), + nativeBalance + ) ); }; checkInsufficientEth();