export function isValidAddress(address: string): boolean { return /^0x[0-9a-fA-F]{40}$/.test(address); }