export interface L2RegistryResponse { name: string; // ENS name (e.g., "example.eth") owner: string; // Address of the registry owner tokenSymbol: string; // Symbol of the ERC-721 token (e.g., "OPN") tokenName: string; // Name of the ERC-721 token (e.g., "Oppunk Names") tokenAddress: string; // Address of the subname contract on L2 is_expirable: boolean; // Whether the subnames have an expiry date is_burnable: boolean; // Whether the subnames can be burned chain_id: number; // ID of the L2 network}