Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Convert addresses to EIP-55 checksummed format for safer usage
import { Address } from '@tevm/voltaire/Address'; // Lowercase address (no checksum) const lowercaseAddr = "0x5aaeb6053f3e94c9b9a09f33669435e7ef1beaed"; // Convert to checksummed format const addr = Address(lowercaseAddr); const checksummed = Address.toChecksummed(addr); // Verify the checksum is valid const isValid = Address.isValidChecksum(checksummed);
examples/addresses/checksum-address.ts
Was this page helpful?
Suggestions