Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generalize ens-deployments package #192

Merged
merged 17 commits into from
Feb 12, 2025
Merged

Generalize ens-deployments package #192

merged 17 commits into from
Feb 12, 2025

Conversation

lightwalker-eth
Copy link
Member

@lightwalker-eth lightwalker-eth commented Feb 8, 2025

Fixes #190

Related ideas: #87

Goals

  • Prepare the ens-deployments package for publishing on NPM (in some future PR) for broader use by the ENS community.
  • Carefully refine our documentation of important ENS nuances and subtleties.
    • Mitigate the risks that expert ENS devs might find disagreement with how this package models the details of ENS deployments.
    • Help non-expert ENS devs achieve more accurate mental models of how ENS actually works (such that they are less likely to make bad assumptions about the true implementation of ENS).

Subtasks

@lightwalker-eth has proposed a starting point for this PR. Additional work remains, including:

  • Refine ens-deployments package
    • Remove any remaining use of "plugin" language within ens-deployments.
    • Remove any remaining references or dependencies to Ponder within ens-deployments
      • Refine comments / definition of SubregistryContractConfig.
      • Refine any references to ContractConfig#filter
    • Add root README.md file that provides a simple introduce to the package. Suggest lifting content from src/index.ts as relevant.
    • Refine package.json
      • Refine description field. Ex: "Catalog of ENS deployments, including key contract addresses and other attributes."
      • Refine description of package in monorepo root README.md
      • Remove ponder dependency.
      • Change viem dependency so that it falls under peerDependencies.
    • Question: Perhaps we should change the SubregistryName enum values as follows:
      • base -> base.eth
      • linea -> linea.eth
    • Question: Would it make sense to move our abis into ens-deployments?
  • Refine ensnode app to make use of the new ens-deployments package structure
    • NOTE: Initial commits on this PR from @lightwalker-eth that made changes to the ensnode app are all side effects of proposed renamings within ens-deployments. Perhaps ensnode retains the concept of a "plugin" but it will need to "translate" from the generic "subregistry" definitions in ens-deployments as necessary.
  • Suggest next steps on the ideas discussed in the following:

After the above items are actioned, please feel welcome to ask @lightwalker-eth to take the lead on the following:

  • Document how we're fully aware there's currently no standards defined in ENS for subregistries / subregistrars. This includes how we're fully aware that the implementation of contracts for the base.eth and linea.eth subregistries are not identical to the eth subregistry.
  • Make a review of the content in docs/ensnode/src/content/docs/reference/mainnet-registered-subnames-of-subregistries.mdx

@lightwalker-eth lightwalker-eth requested a review from a team as a code owner February 8, 2025 20:55
Copy link

vercel bot commented Feb 8, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
ensnode.io ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 12, 2025 5:02pm
ensrainbow.io ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 12, 2025 5:02pm

Copy link
Contributor

@tk-o tk-o left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@shrugs
Copy link
Contributor

shrugs commented Feb 10, 2025

  • note the duplicate registrations and their undefined behavior when running multiple plugins

@shrugs
Copy link
Contributor

shrugs commented Feb 11, 2025

I've made a bunch of changes as per the above. personally in favor of keeping 'plugin' terminology on the ponder side just because it's already there and makes a lot of sense in the context of ponder. and while changing the subregistry names to base.eth or linea.eth is pretty reasonable i'm happy with them as-is.

@lightwalker-eth back to you to review my wording and follow up

Copy link
Member Author

@lightwalker-eth lightwalker-eth left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shrugs Hey super updates! This package is so cool!

Reviewed and shared some suggestions with feedback 👍

"exports": "./src/index.ts"
"exports": "./src/index.ts",
"dependencies": {
"@ponder/utils": "^0.2.3"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah this dependency is a little bit of a bummer. Ok to keep it, but ideally not needed.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's for the mergeAbis helper which while not necessary is definitely helpful and i think this specific dependency is acceptable since it's their utils package and not the whole ponder package

@@ -0,0 +1,46 @@
---
title: Mainnet-Registered Subnames of Subregistries
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is super! Thanks!

I need to review this file 1 more time before we merge the PR. It's currently past 5am here though and quite tired. Better come back to review this file while fresh 👍

@shrugs
Copy link
Contributor

shrugs commented Feb 12, 2025

@lightwalker-eth ready for re-review

Copy link
Member Author

@lightwalker-eth lightwalker-eth left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shrugs PR looks awesome 🚀 Just a small point of feedback. GitHub won't let me approve this PR because I was the one who originally created it. You're welcome to take the lead on merging this PR after following up on the suggestion 👍

// access the address and abi for the NameWrapper on mainnet
const nameWrapperConfig = DeploymentConfigs.mainnet.contracts.NameWrapper;

// for example, querying the NameWrapper with viem...
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this updated example. Pretty cool!

Maybe I'm doing something wrong, but my understanding is that this would actually return a zero address since vitalik.eth is not wrapped by the namewrapper?

A few quick ideas:

  1. Change this example to something where the value returned is a bit interesting. Ex: ask the ENS Registry for the owner of the node associated with vitalik.eth (instead of asking the NameWrapper). I expect this should then return something like: 0x220866B1A2219f40e72f5c628B65D54268cA3A9D.
  2. Could we add a comment at the end of this example with a description of the expected value that would be returned?

@shrugs
Copy link
Contributor

shrugs commented Feb 12, 2025

i merged my main branch (which for some reason had the docker-related changes i was making) into this branch to bring it up to date so this branch now has a bunch of changes from #224 included, which is not ideal. will take time to fix that later today. please ignore any changes related to that for the purposes of reviewing

@shrugs
Copy link
Contributor

shrugs commented Feb 12, 2025

diff has been fixed

@shrugs shrugs merged commit 7a3df57 into main Feb 12, 2025
6 checks passed
@shrugs shrugs deleted the generalize-ens-deployments branch February 12, 2025 17:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request ensnode ENSNode related
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

rework the @namehash/ens-deployments package to avoid usage of 'plugins'
4 participants