From cb52aa436fa566744d6265a6bea412d10abd6980 Mon Sep 17 00:00:00 2001 From: arthurgousset <46296830+arthurgousset@users.noreply.github.com> Date: Thu, 25 Jan 2024 15:26:19 +0000 Subject: [PATCH] fix(example): increase `maxFeePerGas` to 5e9 wei --- 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',