0.0.1 • Published 6 years ago

neo-ns v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

NEO Name Service

A domain resolver for the NEO Name Service.

Provide a NNS domain name to resolve, eg. test.neo, and if it is mapped, it will return the address.

Usage

In a browser - cdn npm.io

<script src="https://cdn.jsdelivr.net/npm/neo-ns/lib/browser/nns.min.js"></script>
window.NeoNS

Install via npm npm version

npm i --save neo-ns

or

yarn add neo-ns
var NeoNS = require('neo-ns');

import NeoNS from 'neo-ns';

import { resolveDomain } from 'neo-ns';

Example

NeoNS.resolveDomain('test.neo')
.then(address => {
  console.log('Success!', address)
})
.catch(err => {
  console.log('Domain name not found.');
})