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
14 stars 3 forks source link

`register` function handle records data #180

Closed pikonha closed 2 months ago

pikonha commented 2 months ago

Feature Request

The register function used to issue new subdomains should receive an array of encoded function calls that are meant to change the records of the given domain during the register phase.

Describe Preferred Solution

The function signature should be like follows:

function register(bytes memory name, uint32 ttl, address owner, bytes[] calldata data ) external view;

Architecture Diagram

QA Replication steps