From 83e057c400dc30d8349ba26a5c45396245473ddf Mon Sep 17 00:00:00 2001 From: 0x4tl4nt Date: Fri, 20 Feb 2026 11:20:40 +0100 Subject: [PATCH] Update README.md --- crates/alloy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/alloy/README.md b/crates/alloy/README.md index a218c5fc35..14c51bc4fe 100644 --- a/crates/alloy/README.md +++ b/crates/alloy/README.md @@ -56,7 +56,7 @@ async fn main() -> Result<(), Box> { let receipt = token .transfer( address!("0x742d35Cc6634C0532925a3b844Bc9e7595f0bEbb"), - U256::from(100).pow(U256::from(10e6)), // 100 tokens (6 decimals) + U256::from(100_000_000), // 100 tokens (6 decimals) ) .send() .await? @@ -67,4 +67,4 @@ async fn main() -> Result<(), Box> { } ``` -See the [examples directory](https://github.com/tempoxyz/tempo/tree/main/crates/alloy/examples) for additional runnable code samples. \ No newline at end of file +See the [examples directory](https://github.com/tempoxyz/tempo/tree/main/crates/alloy/examples) for additional runnable code samples.