@krobinalpha/dotarb-interface
v1.0.3
Published
A javascript library for generating Ethereum Name Service (ENS) namehashes per [spec](https://github.com/ethereum/EIPs/issues/137).
Downloads
3
Readme
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)
})