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

Database register function based on `OffchainResolver` #227

Closed pikonha closed 1 month ago

pikonha commented 1 month ago

Database register function based on OffchainResolver

All Submissions:

Description

The DatabaseResolver now follows the OffchainResolver interface by implementing the following register function:

function register(
    bytes32 parentNode,
    string calldata label,
    address owner,
    uint256 duration,
    bytes32 secret,
    address resolver,
    bytes[] calldata data,
    bool reverseRecord,
    uint16 fuses,
    bytes memory extraData
)
    external
    payable;

Related Issue

206

Changes

Changes to Core Features: