From 5395eada940869f3cb59094fe4f8875819d8b673 Mon Sep 17 00:00:00 2001 From: Arthur Gousset <46296830+arthurgousset@users.noreply.github.com> Date: Thu, 25 Jan 2024 18:33:38 +0100 Subject: [PATCH] fix(example): increase `maxFeePerGas` to 5e9 wei (#103) --- apps/example/pages/fee-currency.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/example/pages/fee-currency.tsx b/apps/example/pages/fee-currency.tsx index 177e39a..fa37639 100644 --- a/apps/example/pages/fee-currency.tsx +++ b/apps/example/pages/fee-currency.tsx @@ -146,7 +146,7 @@ function OverTheWire() { const tx: SendTransactionParameters = { account: client.data?.account!, feeCurrency: cUSDAddress.data, - maxFeePerGas: BigInt(700000), + maxFeePerGas: BigInt(5000000000), maxPriorityFeePerGas: BigInt(700000), value: BigInt(100000000000000000), to: '0x22579CA45eE22E2E16dDF72D955D6cf4c767B0eF',