From c9abe7131c011419c7dbcbcd319c1391aa5c3c38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toni=20Wahrst=C3=A4tter?= Date: Fri, 3 Apr 2026 13:38:58 +0200 Subject: [PATCH] Fix Ethereum tx gas limit cap --- src/pages/quickstart/evm-compatibility.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/quickstart/evm-compatibility.mdx b/src/pages/quickstart/evm-compatibility.mdx index 84c2dee6..a4575abd 100644 --- a/src/pages/quickstart/evm-compatibility.mdx +++ b/src/pages/quickstart/evm-compatibility.mdx @@ -104,7 +104,7 @@ Tempo uses higher gas costs for state-creating operations to prevent state growt | New storage slot (SSTORE 0→non-zero) | 250,000 gas | 20,000 gas | | Account creation | 250,000 gas | 0 gas | | Contract creation per byte | 1,000 gas | 200 gas | -| Transaction gas cap | 30M gas | 30M gas | +| Transaction gas cap | 30M gas | 16.78M gas (2²⁴) | This means transfers to new addresses cost ~300k gas, and contract deployments cost 5-10x more than on Ethereum. Update your `gas_limit` estimates accordingly.