neo-ns
v0.0.1
Published
Interface for resolving domains to addresses on NEO Name Service
Downloads
8
Readme
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
<script src="https://cdn.jsdelivr.net/npm/neo-ns/lib/browser/nns.min.js"></script>
window.NeoNS
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.');
})