1.0.3 • Published 2 years ago

@krobinalpha/dotarb-interface v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Dotarb Interface

A javascript library for generating Ethereum Name Service (ENS) namehashes per spec.

Installation

yarn add @krobinalpha/dotarb-interface

or

npm install @krobinalpha/dotarb-interface -S

Usage

const dotarb = require("@krobinalpha/dotarb-interface");
const domain = "robin.arb";
dotarb.getAddressFromEns(domain).then(address => {
    console.log(domain, address);
});
  • typescript
import {getAddressFromEns} from '@krobinalpha/dotarb-interface'

const domain = "robin.arb"
getAddressFromEns(domain).then(address=>{
    console.log(domain, address)
})
1.0.3

2 years ago

1.0.2

2 years ago