blockful-io / external-resolver

This project aims to scale the Ethereum Name Service (ENS) by consolidating existing patterns and proofs of concept into a unified and production-ready codebase.
MIT License
10 stars 3 forks source link

Gateway support register with DNS name #141

Closed pikonha closed 1 month ago

pikonha commented 1 month ago

Refactor Request

Describe the Refactor Request

We need access to some properties that can't be gathered from the namehash of the domain. We need to have access to the DNS-encoded domain name instead.

Describe Preferred Solution

Change register handler to support the name instead of node.

function register(bytes memory name, uint32 ttl)

We then need to store the following properties onto the database:

pikonha commented 1 month ago

handled by #140