Skip to main content

6 posts tagged with "multi-chain"

View All Tags

Naming your contracts with Basenames

· 3 min read
Abhijeet Bhagat
Enscribe Senior Engineer

Basenames are growing in popularity. Users set them for their EOA accounts so that they don’t have to use hex addresses when interacting on Base. Basenames use the solid ENS infra underneath and are fully ENSIP-19 compliant.

Since Enscribe is on a mission to eradicate hex addresses from Web3 UX and contract naming is overlooked, we wanted to enable users to set Basenames for deployed contracts as well. We are excited to announce support for naming your contracts using Basenames.

ENSIP-19 in short

ENSIP-19 is an ENS Standardization Proposal that standardizes reverse and primary name resolution for all coin types, and defines how this resolution process operates across the multichain Ethereum ecosystem.

This is done by deploying an L2-specific Reverse Registrar contract that takes care of setting reverse records.

For example, suppose we want to set a Basename v1app.alice.base.eth. Then, we first create a subname on L2 ENS Registry by calling setSubnodeRecord:

setSubnodeRecord(namehash(alice.base.eth), labelhas(v1app), deployerAddress, resolverAddress, 0)

Then we can set a forward resolution that maps the name to address with:

setAddr(namehash(v1app.alice.base.eth), BASE_COIN_TYPE, contractAddress)

Finally, set the reverse record with the L2 Reverse Registrar:

setNameForAddr(contractAddress, v1app.alice.base.eth)

How to set a Basename for your contract?

Navigate to the Name Contract page & connect your wallet if you haven’t already. From the chain dropdown, select Base/Base Sepolia i.e. the chain you want to set the Basename on.

Name Contract

Enter your contract’s address in the Contract Address field and it should automatically detect the chain like shown above.

Click on Create New Name button and enter the new contract name you want to register and the parent domain under which you want to register the subname:

details

Note: the parent domain entered should already be registered. If you want to register a new parent domain, then use https://www.base.org/names to do so.

Click on Name Your Contract button & you’ll see all the transactions executing successfully:

success

And just like that, we have successfully set a Basename for our deployed Ownable contract!

Here's a video tutorial on how to set a Basename for your contract:

What This Means for the Ecosystem

We’re excited to see how the community puts this to use. As always, feedback is welcome—we’re continuing to refine our ENSIP-19 aligned features and would love to hear what you think.

Head over to Enscribe and use a Basename to name your contract!

Happy naming! 🚀

Enscribe Now Supports ENS L2 Primary Names

· 7 min read
Nischal Sharma
Co-Founder and Lead Engineer at Enscribe

Enscribe now supports L2 primary names, extending our smart contract naming capabilities across the Ethereum ecosystem. This feature helps developers maintain consistent contract identities across multiple Layer 2 networks.

L2 primary names interface

What Are L2 Primary Names?

L2 primary names solve a fundamental problem in the multi-chain Ethereum ecosystem. A single DApp can have different contract addresses across various Layer 2 networks, or sometimes the same address (often due to CREATE2 deployments). Without a standard way to name them, users and developers must manage a confusing list of addresses.

According to ENSIP-19, L2 primary names enable reverse and primary name resolution for all coin types across the multichain Ethereum ecosystem. This standardizes how ENS names resolve to different addresses based on the network, making the ecosystem more legible and trustworthy. This works regardless whether the contract's address is the same or different across networks.

This is possible through a coinType parameter in the ENS resolver function addr(bytes32 node, uint256 coinType), which specifies the network. A single ENS name like mycontract.eth can be configured to point to the correct contract address on each chain.

  • Coin type 60 (0x3c) for Ethereum mainnet
  • Coin type 2147483658 (0x8000000a) for Optimism
  • Coin type 2147483653 (0x80002105) for Base
  • Coin type 2147483656 (0x8000e708) for Linea
  • Coin type 2147483652 (0x8000a4b1) for Arbitrum
  • Coin type 2147483657 (0x80082750) for Scroll

L2 Primary Names in Enscribe

Enscribe supports L2 primary names across five Layer 2 networks:

  • Optimism (Mainnet & Sepolia)
  • Arbitrum (Mainnet & Sepolia)
  • Scroll (Mainnet & Sepolia)
  • Base (Mainnet & Sepolia)
  • Linea (Mainnet & Sepolia)

The feature works in two directions. Forward resolution means your ENS name resolves to the correct contract address on each L2. Reverse resolution means your contract address resolves back to your ENS name on each L2.

Example: If you set up myname.eth0x123... on Ethereum and Base:

Forward Resolution:

  • Ethereum: Coin type 60 (0x3c) - myname.eth resolves to 0x123...
  • Base: Coin type 2147483653 (0x80002105) - myname.eth resolves to 0x123...

Reverse Resolution:

  • Ethereum: 0x123...addr.reverse - resolves back to myname.eth
  • Base: 0x123...80014a34.reverse - resolves back to myname.eth

Note: L2 primary names for Linea and Base are different from currently supported .linea.eth and .base.eth names. L2 primary names work through ENSIP-19 coin types, while .linea.eth and .base.eth are separate ENS domains.

How to Use L2 Primary Names

L2 primary name filled

Prerequisites

You must set up L2 primary names from an L1 chain (Ethereum mainnet or Sepolia). This process cannot be done by connecting directly to an L2 network.

The reason is that the core ENS infrastructure, which manage name registration and resolution rules, reside on L1. Key actions, like creating subnames and configuring them to point to different addresses on various L2s—must be recorded on these foundational L1 contracts to ensure a single, authoritative source of truth.

L2 chain warning

Enscribe supports three main scenarios for setting up L2 primary names:

  1. L1 + L2 Naming: Set primary names on both L1 and selected L2 chains when your contract has the same address across all networks
  2. L2 Only Naming: Skip L1 naming and set primary names only on specific L2 chains
  3. Multi-Address Naming: Use the same ENS name for different contract addresses on different L2 chains

Case 1: Same Contract Address Across All Chains

This approach is for contracts that have the same address on different L2 chains. You can name this contract on all L2 chains together.

  1. Connect to L1: Connect your wallet to Ethereum mainnet or Sepolia
  2. Enter contract details:
    • Contract Address: Your contract's address on L1
    • Contract Name: Choose a name for your contract
    • ENS Parent: Select your preferred ENS parent domain
  3. Select L2 chains: Click "Choose L2 Chains" and select which L2 networks you want to set up
  4. Review steps: The system shows all steps that will execute:
    • Create subname on L1
    • Set forward resolution on L1
    • Set reverse resolution on L1 (if applicable)
    • Set forward resolution on each selected L2
    • Switch to each L2 and set primary name
  5. Execute transactions: The modal guides you through each step, automatically switching chains

Case 1 transaction steps

Case 2: Name Only on Selected L2 Chains

If you want to set up primary names only on specific L2 chains without L1 naming:

  1. Follow steps 1-3 from Case 1
  2. Enable "Skip L1 Naming" to skip L1 forward and reverse resolution
  3. Submit to execute only L2-related steps

Case 1 transaction steps with Skip L1 naming

Case 3: Different Contract Addresses on Different L2 Chains

If you deployed the same contract on different L2 chains but it has different contract addresses, you can use the same ENS name as the primary name for all chains.

Use the same name label and ENS parent, then:

  1. Enter the first contract address and select its corresponding L2 chain
  2. Enable "Skip L1 Naming" to focus only on L2 naming
  3. Execute the naming process
  4. Repeat for each different contract address on different L2 chains

Don't worry — it won't create a subname every time on L1. The subname creation happens only once, and subsequent operations just set up the L2 primary names.

Note: The default Enscribe parent domain, deployd.eth, is not yet compatible with L2 primary names. For now, please use your own ENS domain as the parent. We will resolve this issue in our next release, which will involve redeploying the Enscribe contract.

Benefits for Different Users

For Contract Deployers

Contract deployers get a unified identity for their contracts across all chains. Users can interact with your contract using the same name regardless of which chain they're on, eliminating the need to explain different addresses for the same contract.

For Users

Users benefit from simplified interactions — they can use the same ENS name to interact with contracts across chains. This reduces errors from sending transactions to wrong addresses and makes it easier to find and verify contract addresses.

For the Ecosystem

The broader ecosystem sees improved interoperability as cross-chain contract interactions work smoothly. Enhanced security comes from reduced risk of address confusion, leading to a more intuitive multi-chain experience.

Video Tutorials

Complete walkthroughs for above 2 use cases: same address across chains and L2-only naming

What's Next

L2 primary names support represents a step forward in making the multi-chain Ethereum ecosystem more legible. We plan to:

  • Add more L2 networks as the ENS team adds support for more L2 EVM chains
  • Improve the user experience with better chain switching and transaction flow
  • Offer analytics insights into L2 primary name usage and adoption

Try It Out

Ready to give your contracts a unified identity across the Ethereum ecosystem? Visit app.enscribe.xyz, connect your wallet to Ethereum mainnet or Sepolia, navigate to "Name Contract", enter your contract details, select your desired L2 chains, and execute the naming process.

Feedback and Community

We want to hear your experience with L2 primary names. Share your thoughts, suggestions, and any issues you encounter through our Discord community, Telegram, or Twitter/X.

L2 primary names help make the multi-chain Ethereum ecosystem more legible and trustworthy. We're excited to see how this feature helps developers and users navigate the onchain landscape more effectively.

Happy naming across chains! 🚀

Explore Accounts, Contracts and ENS Names Across Multiple Chains

· 5 min read
Nischal Sharma
Co-Founder and Lead Engineer at Enscribe

We've updated Enscribe to make contract exploration clear and useful across multiple networks. This update focuses on direct sharing links, multi-chain support, and better ENS integration to help you identify and trust smart contracts.

What's New

This update adds several improvements to the Enscribe platform:

  • Universal Search - Search for any address (EOA or contract) or ENS name without connecting your wallet first
  • Cross-Chain Exploration - View smart contracts and accounts on Ethereum, Linea, and Base networks
  • Contract Verification Display - See verification status from Sourcify, Etherscan, and Blockscout at a glance
  • ENS Details - Clear visibility of all associated and owned ENS names with expiry status
  • Shareable URLs - Direct links to any address on any supported chain

The updated search bar lets you look up any Ethereum address or ENS name without connecting your wallet first. Just paste a 0x address or type an ENS name, and Enscribe immediately shows you the relevant details.

Universal Search Bar

The search works with:

  • Standard Ethereum addresses (0x...)
  • ENS names
  • Automatic detection of which chain to use

The ENS resolution works correctly across different networks, using mainnet resolvers for production chains and Sepolia for test networks, then directing you to the right page based on chain context.

The Explore Page

Our new Explore page serves as a central hub for getting ENS details for any address onchain. It detects whether you're looking at a smart contract or a regular account (EOA) and shows you specific information that matters for each type.

You can directly access any address using this URL format:

https://app.enscribe.xyz/explore/<chainId>/<address>

This standardized URL structure makes addresses easy to bookmark and share with others, allowing for collaborative exploration of the Ethereum ecosystem.

Contract Details View

When viewing a contract, the display includes:

  • The contract's primary ENS name (if registered) with color-coded expiry status icons:
    • Green checkmark: Valid registration (more than 3 months until expiry)
    • Yellow exclamation: Expiring soon (within 3 months)
    • Red X: Expired (in grace period)
  • Verification status across multiple sources (Sourcify, Etherscan, Blockscout)
  • Direct links to view verified source code
  • If not verified, user can select "Verify" button to verify the contract on respective platform
  • All ENS names associated with this contract address
  • ENS names owned or managed by this contract with expiration status
  • Copy buttons for addresses and names with visual confirmation

Contract Details View

This clear layout helps developers quickly confirm contract identity and trustworthiness without navigating between multiple tools.

Account Details View

For regular accounts (EOAs), the page shows:

  • Primary ENS name (if available) with appropriate expiry status icon similar to contract view
  • All associated ENS names pointing to this address
  • ENS names owned or managed by this address with expiry information
  • Copy functionality for addresses and names

Account Details View

Both account and contract views include external links — addresses link to Etherscan while ENS names link to the ENS app. When you click on an ENS name that a contract or account owns, Enscribe resolves it to an address and opens that address in a new tab within Enscribe.

The ENS name resolution for owned names:

  • Opens resolved addresses in a new tab for convenient exploration
  • Shows toast notifications for failed resolutions

Smart Chain Selector

The chain selector helps you navigate between networks while examining an address. It sits at the top of the interface and changes how it works based on whether your wallet is connected.

When No Wallet is Connected:

Chain Selector - wallet disconnected

  • Choose any supported chain from the dropdown
  • Switch networks to compare the same address across chains
  • All data loads specifically for the selected network

When a Wallet is Connected:

Wallet Connected

  • Chain selector automatically syncs with your connected wallet's network
  • When switching chains on wallet, you'll be redirected to view the same address on the newly selected chain

Network Support

Enscribe supports multiple chains:

  • Ethereum Mainnet
  • Ethereum Sepolia
  • Linea Mainnet (with .linea.eth domains)
  • Linea Sepolia (with .linea-sepolia.eth domains)
  • Base Mainnet (with .base.eth domains)
  • Base Sepolia - Partial support (working with ENS node Namehash team for full integration)

This design handles the specific requirements of each chain, including ENS resolution differences and verification source availability. When you switch chains, the URL updates with the new chain ID, creating direct links to the same address across different networks.

Looking Forward

This update makes Enscribe a more useful tool for everyone who works with smart contracts. It creates clarity around contract identity and verification status across multiple networks.

Our upcoming development priorities include:

  • Support for Base Sepolia
  • Integration with Ethereum Follow Protocol
  • Enhanced ENS management tools and details

Try It Today

We're incredibly excited to share these new capabilities with our community. Checkout all these features today by visiting Enscribe App.

We build based on community feedback. Share your thoughts and suggestions in our Discord community or Telegram, or follow updates on Twitter/X.

Happy naming! 🚀

Enscribe Now Live on Ethereum, Linea, and Base Mainnets

· 2 min read
Nischal Sharma
Co-Founder and Lead Engineer at Enscribe

We’re thrilled to announce that Enscribe is now officially live on mainnet — across Ethereum, Linea, and Base networks.

Enscribe is a smart contract deployment and naming service purpose-built to bring human-readable identity to on-chain contracts. It allows developers to deploy contracts and assign ENS names — including subname creation, forward resolution, and reverse resolution (primary name) — all in a single, atomic transaction.

Until now, naming smart contracts using ENS was a fragmented and manual process that required interacting with multiple ENS contracts post-deployment. Enscribe abstracts that complexity entirely.

And yes — we’ve used Enscribe itself to name our production deployments.

Mainnet Deployments and ENS Names

Ethereum Mainnet

Linea Mainnet

Base Mainnet

We Enscribed Ourselves — Watch It in Action

We used Enscribe to name our own mainnet deployments — and captured the entire flow.

Ethereum Mainnet

Linea Mainnet

Base Mainnet

Name Your Contracts — Today

This is a major step toward bringing trust and transparency to on-chain contracts through meaningful naming and identity. We’re excited to see what you build with it. Enscribe your contracts. Make them recognizable.

For more details, visit our site, and don't hesitate to join our Discord community to share your feedback and experiences.

Happy deploying! 🚀

Enscribe Now Supports Base Sepolia Testnet

· 2 min read
Conor Svensson
Founder of Enscribe and Web3 Labs

Hot of the back of our Linea Sepolia announcement, we're also supporting the Base Sepolia testnet!

Base, developed by Coinbase, is an Ethereum Layer-2 solution built on Optimism’s OP Stack, designed to deliver faster, cheaper, and more scalable transactions while preserving Ethereum’s security guarantees. Our integration with Base Sepolia provides a powerful new way for developers to effortlessly deploy smart contracts and immediately assign them Ethereum Name Service (ENS) names.

It also can be used to easily name existing smart contracts too.

With Enscribe’s new support for Base Sepolia, your smart contracts gain human-readable ENS identities instantly upon deployment, greatly enhancing their discoverability, verifiability, and usability.

How to Get Started

Getting started with Base Sepolia on Enscribe is simple:

Visit the Enscribe App at app.enscribe.xyz

Enscribe Base app

Connect your Ethereum wallet (Coinbase Wallet recommended for Base).

Select "Base Sepolia" from the available network options.

Deploy your smart contract and assign it a user-friendly ENS subname in just a few clicks.

Enscribe deployed smart contract on Base

Benefits of Using Base

Base offers several key benefits over the Ethereum Mainnet:

Lower Transaction Fees: Benefit from reduced gas costs compared to Ethereum mainnet.

Fast & Efficient Transactions: Deploy and interact with contracts quickly and seamlessly.

Ethereum Compatibility: Deploy your existing Ethereum contracts with minimal changes required.

What's Next for Enscribe?

With Sepolia, Linea Sepolia and Base Sepolia all supported, we're getting ready for our mainnet deployments for developers to really start battle testing the Enscrbie services.

On top of this we're going to be announcing our first partner integrations which you'll definitely want to watch out for. This will be a bit step forward in establishing greater trust in smart contracts for users.

In the meantime, make sure you have a go with our Base service and let us know what you think!

Learn More & Get Involved

For more details, visit our documentation, and don't hesitate to join our Discord community to share your feedback and experiences.

Happy deploying! 🚀

Enscribe Now Supports Linea Sepolia Testnet

· 2 min read
Conor Svensson
Founder of Enscribe and Web3 Labs

We're excited to announce our latest milestone —  Enscribe has officially added support for the Linea Sepolia testnet!

Linea is an innovative Ethereum-equivalent zk-rollup solution developed by ConsenSys, designed to dramatically enhance Ethereum’s scalability. It also happens to be the layer 2 technology that the upcoming ENS Namechain will be built on. This integration brings quicker, cheaper, and more efficient transactions while retaining the strong security guarantees and decentralization of Ethereum.

With Enscribe's support for Linea Sepolia, developers can now easily deploy smart contracts directly to the Linea network and assign human-readable Ethereum Name Service (ENS) names at the point of deployment. This makes smart contracts easier to use, manage, and verify, significantly improving the overall user experience for both developers and end-users.

How to Get Started

Getting started with Linea Sepolia on Enscribe is simple:

Visit the Enscribe App at app.enscribe.xyz

Enscribe Linea app

Connect your Ethereum wallet (MetaMask recommended for Linea).

Select "Linea Sepolia" from the available network options.

Deploy your smart contract and assign it a user-friendly ENS subname in just a few clicks.

Enscribe deployed smart contract on Linea in Chainlens

Benefits of Using Linea

Linea Sepolia offers several key advantages over the Ethereum mainnet:

Faster Transactions: Experience significantly quicker smart contract deployments and interactions compared to traditional Ethereum networks.

Reduced Costs: Enjoy dramatically lower gas fees, enabling more affordable smart contract development and testing.

Ethereum Compatibility: Effortlessly deploy existing Ethereum-compatible smart contracts without needing code modifications, providing a seamless transition to improved scalability.

Enhanced User Experience: Instantly readable ENS names eliminate confusion associated with cryptic hexadecimal contract addresses, improving clarity, trust, and overall usability.

What's Next for Enscribe?

This integration with Linea Sepolia is just one step toward our broader vision of enhancing smart contract usability and trust across Ethereum and its vibrant ecosystem of Layer-2 solutions. We remain committed to supporting additional layer 2 network and continually improving our service based on community feedback and innovation.

We warmly invite you to explore Enscribe's Linea Sepolia integration and experience firsthand the future of scalable Ethereum deployments.

Learn More & Get Involved

For detailed information, comprehensive guides, and further resources, visit our documentation. To join the conversation, share your feedback, or ask questions, connect with our team and community on Discord.

Happy naming! 🚀