Code Monkey home page Code Monkey logo

ensbuilder's Introduction

Depreciation notice

This npm is deprecated and not supported anymore. For ENS testing functionality use @ethereum-waffle/ens.

Build Status

ENSBuilder

ENSBuilder lets you set up your own ENS instance for testing purposes.

Works best with ethers.js, but can also be used with web3js (see Using with Web3 section below).

Basic usage

To install:

npm install ens-builder

To create a new instance of the builder using ethers.js wallet:

import ENSBuilder from 'ens-builder';
const builder = new ENSBuilder(wallet);

The fastest way to start is to use the bootstrapWith convenience method:

const ensAddress = await builder.bootstrapWith('example', 'eth');

This will setup ENS, register the eth top-level domain and the example.eth subdomain under it. It will also create a registrar for example.eth, a reverse registrar, as well as a global resolver.

The method will return the address of the deployed ENS. It can then be used, for example, to setup a new ethers provider and use it's methods for domain resolution:

const provider = ethers.providers.getDefaultProvider({..., ensAddress})
const address = provider.resolveName('example.eth');
const name = provider.lookupAddress('example.eth');

You can also use the registerAddress to add even more domains. For example:

await builder.registerAddress('alex', 'mylogin.eth', givenAddress);

Or it's registerAddressWithReverse variant that also registers a revers record:

await builder.registerAddressWithReverse('alex', 'mylogin.eth', wallet);

Using with web3

To use with web3 you will have to wrap a web3 provider with an ethers Web3Provider, as well as adding the private key into a ethers wallet:

const privateKey = ...;
const web3Provider = ...;
const ethersProvider = new providers.Web3Provider(web3Provider);
wallet = new ethers.Wallet(privateKey, ethersProvider);
builder = new ENSBuilder(deployer);

Advanced usage

To bootstrap system without any domains yet:

await builder.bootstrap();

Single resolver for all domains is available with resolver property:

builder.resolver

To created top level domain:

await builder.registerTLD('eth');

To add reverse registrar for reverse ENS lookup:

await builder.registerReverseRegistrar();

To register a domain with a registrar:

await builder.registerDomain('mylogin', 'eth');

The registrar for the domain is available with registrars property:

builder.registrars['mylogin.eth']

To register domain with registrar pointing to given address:

await builder.registerAddress('alex', 'mylogin.eth', givenAddress);

ensbuilder's People

Contributors

giulio2002 avatar justynabroniszewska avatar marekkirejczyk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

ensbuilder's Issues

Tx error deploying ENS

Hi,
I am unable to use ENSBuilder, this code below doesn't work:

    const provider = new providers.JsonRpcProvider(endpoint);
    const wallet = new Wallet(privateKey, provider);
    const builder = new ENSBuilder(wallet);
    const ensAddress = await builder.bootstrapWith('example', 'eth');

when I run it I get this error:

UnhandledPromiseRejectionWarning: Error: Transaction gas price is too low. There is another transaction with same nonce in the queue. Try increasing the gas price or incrementing the nonce.

The same error I got when I tried the advanced usage. In that case the error raised on registerTLD() method.

Does anyone have any suggestions?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.