1987WEB视界-分享互联网热门产品和行业

您现在的位置是:首页 > 域名 > 正文

域名

Web3系列教程之进阶篇——3.ETH域名服务(ENS)

1987web2022-12-28域名198

背景

当网络最初开始时,你在网上探索信息的唯一方法是输入IP地址。此后,DNS的概念被引入,帮助我们将域名与IP地址联系起来。

因此,只要你输入hicoldcat.com,DNS就会负责将其翻译成相应的IP,这就是计算机最终理解的内容。

什么是 ENS?

  • ENS 即The Ethereum Name Service,它与DNS在web2空间的行为非常相似。

  • 我们都知道,以太坊的地址很长,很难记住或输入。

  • ENS通过将这些钱包地址、哈希值等翻译成可读域,然后保存在以太坊区块链上,解决了这个问题

  • ENS最好的部分是,与集中式的DNS服务器不同,ENS在智能合约的帮助下工作,具有抗审查能力。

  • 因此,现在当你向某人发送你的钱包地址,看起来像0x1234huiahi....,你实际上可以向他们发送tom.eth,ENS会发现tom.eth实际上等于你的钱包地址(0x1234huiahi....)。

要求

是时候使用ENS开发一些东西了。

我们将开发一个网站,如果一个地址有ENS,它可以显示这个地址的ENS。

开始吧!

设置

  • 首先让我们为你的地址取一个 ENS 名称,从打开https://app.ens.domains/开始

  • 当你打开网站的时候,确保你的 MetaMask 已经连接到 Rinkeby 测试网络,并且它有一些 Rinkeby Ether

  • 搜索一个 ENS 域名,任何你喜欢的名称,只要它是可用的!

  • 点击Available

  • 然后点击Request To Register申请注册

  • 当进度条进入第三步时,点击Register注册

  • 然后在进度条完成后,点击Set As Primary ENS Name设置为主要ENS名称。

  • 然后从下拉列表中选择您刚刚创建的 ENS 名称

  • 点击save保存

  • 现在你在Rinkeby的地址上注册了一个ENS系统

牛逼,你做到了!

网站

  • 为了开发网站,我们将使用 React 和 Next Js。React 是一个用于创建网站的 javascript 框架,而 Next.js 是一个 React 框架,它也允许编写后端 API 代码以及前端,所以你不需要两个独立的前端和后端服务。

  • 首先,您需要创建一个新的next应用程序。您的文件夹结构应该类似于

-ENS-my-app
  • 要创建这个next-app应用程序,在终端指向ENS文件夹并输入

npxcreate-next-app@latest

然后按回车键确认所有问题

  • 现在运行应用程序,在终端中执行这些命令

cdmy-appnpmrun dev
  • 现在进入 http://localhost:3000,你的应用程序应该正在运行

  • 现在让我们安装Web3Modal 库[1]。Web3Modal 是一个易于使用的库,可以帮助开发人员轻松地允许用户使用各种不同的钱包连接到 dApps。默认情况下,Web3Modal Library 支持注入式提供者(Metamask、 Dapper、 Gnosis Safe、 Frame、 Web3 Browser 等)和 WalletConnect,你也可以轻松配置该库以支持 Portis、 Fortmatic、 Squarelink、 Torus、 Autherum、 D’cENT Wallet 和 Arkane。打开一个指向 my-app 目录的终端并执行以下命令

npminstall web3modal
  • 在同一终端中还要安装ethers.js

npminstall ethers
  • my-app/public文件夹中,下载该图像[2]并将其重命名为 Learnweb3Punks.png

  • 现在转到 style 文件夹,用下面的代码替换Home.modules.css文件的所有内容,这会给你的 dapp 添加一些样式:

.main{min-height:90vh;display: flex;flex-direction: row;justify-content: center;align-items: center;font-family:"Courier New", Courier, monospace;
}.footer{display: flex;padding:2rem0;border-top:1pxsolideaeaea;justify-content: center;align-items: center;
}.image{width:70%;height:50%;margin-left:20%;
}.title{font-size:2rem;margin:2rem0;
}.description{line-height:1;margin:2rem0;font-size:1.2rem;
}.button{border-radius:4px;background-color: blue;border: none;color:ffffff;font-size:15px;padding:20px;width:200px;cursor: pointer;margin-bottom:2%;
}@media(max-width:1000px) {.main{width:100%;flex-direction: column;justify-content: center;align-items: center;
  }
}
  • 在 page 文件夹下打开 index.js 文件并粘贴以下代码,代码说明可以在注释中找到。

import Headfrom"next/head";
import stylesfrom"../styles/Home.module.css";
import Web3Modalfrom"web3modal";
import { ethers, providers }from"ethers";
import { useEffect, useRef, useState }from"react";exportdefaultfunctionHome(){// walletConnected keep track of whether the users wallet is connected or notconst[walletConnected, setWalletConnected] = useState(false);// Create a reference to the Web3 Modal (used for connecting to Metamask) which persists as long as the page is openconstweb3ModalRef = useRef();// ENSconst[ens, setENS] = useState("");// Save the address of the currently connected accountconst[address, setAddress] = useState("");/**
   * Sets the ENS, if the current connected address has an associated ENS or else it sets
   * the address of the connected account
   */constsetENSOrAddress =async(address, web3Provider) => {// Lookup the ENS related to the given addressvar_ens =awaitweb3Provider.lookupAddress(address);// If the address has an ENS set the ENS or else just set the addressif(_ens) {
      setENS(_ens);
    }else{
      setAddress(address);
    }
  };/**
   * A `Provider` is needed to interact with the blockchain - reading transactions, reading balances, reading state, etc.
   *
   * A `Signer` is a special type of Provider used in case a `write` transaction needs to be made to the blockchain, which involves the connected account
   * needing to make a digital signature to authorize the transaction being sent. Metamask exposes a Signer API to allow your website to
   * request signatures from the user using Signer functions.
   */constgetProviderOrSigner =async() => {// Connect to Metamask// Since we store `web3Modal` as a reference, we need to access the `current` value to get access to the underlying objectconstprovider =awaitweb3ModalRef.current.connect();constweb3Provider =newproviders.Web3Provider(provider);// If user is not connected to the Rinkeby network, let them know and throw an errorconst{ chainId } =awaitweb3Provider.getNetwork();if(chainId !==4) {
      window.alert("Change the network to Rinkeby");thrownewError("Change network to Rinkeby");
    }constsigner = web3Provider.getSigner();// Get the address associated to the signer which is connected to  MetaMaskconstaddress =awaitsigner.getAddress();// Calls the function to set the ENS or AddressawaitsetENSOrAddress(address, web3Provider);returnsigner;
  };/*
    connectWallet: Connects the MetaMask wallet
  */constconnectWallet =async() => {try{// Get the provider from web3Modal, which in our case is MetaMask// When used for the first time, it prompts the user to connect their walletawaitgetProviderOrSigner(true);
      setWalletConnected(true);
    }catch(err) {
      console.error(err);
    }
  };/*
    renderButton: Returns a button based on the state of the dapp
  */constrenderButton = () => {if(walletConnected) {Wallet connected;
    }else{return(Connect your wallet);
    }
  };// useEffects are used to react to changes in state of the website// The array at the end of function call represents what state changes will trigger this effect// In this case, whenever the value of `walletConnected` changes - this effect will be calleduseEffect(() => {// if wallet is not connected, create a new instance of Web3Modal and connect the MetaMask walletif(!walletConnected) {// Assign the Web3Modal class to the reference object by setting its `current` value// The `current` value is persisted throughout as long as this page is openweb3ModalRef.current =newWeb3Modal({
        network:"rinkeby",
        providerOptions: {},
        disableInjectedProvider:false,
      });
      connectWallet();
    }
  }, [walletConnected]);return(ENS Dapp"description"content="ENS-Dapp"/>"icon"href="/favicon.ico"/>Welcome to LearnWeb3 Punks {ens ? ens : address}!Its an NFT collectionforLearnWeb3 Punks.{renderButton()}"./learnweb3punks.png"/>Made with ❤byLearnWeb3 Punks);
}
  • 现在在指向 my-app 文件夹的终端中,执行

npmrun dev

ENS 应用程序现在应该可以正常工作了

推到 Github

在继续之前,请确保已将所有代码推送到 github :)

部署 dApp

我们现在将部署您的 dApp,这样每个人都可以看到您的网站,您可以与您所有的 LearnWeb3DAO 朋友分享它。

  • 进入Vercel[3],用你的GitHub登录

  • 然后点击新建项目按钮,然后选择您的ENS dApp repo

  • 在配置你的新项目时,Vercel将允许你定制你的根目录

  • 点击根目录旁边的编辑,并将其设置为我的应用程序

  • 选择框架为Next.js

  • 单击 "部署"。

  • 现在,你可以通过进入你的仪表板,选择你的项目,并从那里复制URL,看到你部署的网站