Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/alloy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
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?
Expand All @@ -67,4 +67,4 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
}
```

See the [examples directory](https://github.com/tempoxyz/tempo/tree/main/crates/alloy/examples) for additional runnable code samples.
See the [examples directory](https://github.com/tempoxyz/tempo/tree/main/crates/alloy/examples) for additional runnable code samples.