Skip to content
Merged
Show file tree
Hide file tree
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
Remove address_format: lowercase from init templates to default to ch…
…ecksum

The greeter and erc20 templates explicitly set address_format: lowercase.
Removing the field lets the config parser default to checksum addresses,
which is the preferred default for new projects.

https://claude.ai/code/session_0168y16Gw2hqSrZmoWJGLWNK
  • Loading branch information
claude committed Feb 16, 2026
commit 8734706527a0206d0c4c668a15386737979d99a7
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,3 @@ chains:
contracts:
- name: ERC20
address: 0x4537e328Bf7e4eFA29D05CAeA260D7fE26af9D74 #UNI
# Address format for Ethereum addresses: 'checksum' or 'lowercase'
# using lowercase addresses is slightly faster
address_format: lowercase
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,3 @@ chains:
contracts:
- name: Greeter #A reference to the global contract definition
address: 0xdEe21B97AB77a16B4b236F952e586cf8408CF32A
# Address format for Ethereum addresses: 'checksum' or 'lowercase'
# using lowercase addresses is slightly faster
address_format: lowercase