1.0.1 • Published 6 years ago
inblox-handlename v1.0.1
Inblox Handlename
Package which can be used to retrieve the public address of the given handlename and vice versa.
Installation
npm install inblox-handlename --saveUsage
Import the package.
const inbloxHandlename = require('inblox-handlename);This initialises the constructor.
const handlename = new inbloxHandlename();The public address of a corresponding handlename can be resolved by,
const address = await handlename.addressOfHandlename(handlename);The handlename of a corresponding public address can be resolved by,
const handlename = await handlename.handlenameOfAddress(publicAddress);