From 936fb9441f741668cd7928cad8d77ff82dc588b5 Mon Sep 17 00:00:00 2001 From: Timidan Date: Tue, 8 Sep 2026 02:44:17 +0100 Subject: [PATCH] Correct the Value field help text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hint said wei or decimal ETH, but the parser treats any non-0x input as decimal ETH — plain-integer wei was silently read as ETH. State the actual convention: decimal ETH, or 0x-prefixed hex wei. --- src/components/SimulationOverridesPanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SimulationOverridesPanel.tsx b/src/components/SimulationOverridesPanel.tsx index 9596d34..7beb024 100644 --- a/src/components/SimulationOverridesPanel.tsx +++ b/src/components/SimulationOverridesPanel.tsx @@ -217,7 +217,7 @@ const SimulationOverridesPanel: React.FC = ({ className="font-mono text-sm h-9" />

- Amount of ETH to send with the transaction (in wei or decimal ETH). + Sent with the transaction. Decimal ETH (0.1) or hex wei (0x...).