0.2.0 • Published 2 years ago
xype-resolver v0.2.0
Install
npm install xype-resolverUsage
Import and initialization
import { XypeResolver } from 'xype-resolver';
const xypeResolver = await XypeResolver.init(RPC_NODE);Name resolution
- This function should be used when the input is a human readable name or alias like
alex.sxt. The sample code:
const addr = await xypeResolver.resolveName('alex.sxt');Lookup the address
- This function performs reverse resolution returning the primary alias of the given address. Typically it is used when the Ethereum account is connected to the dApp. The sample code:
const addr = await xypeResolver.lookupAddress(
'0x084B5B4967b6EaB4EeDc628C12c7E63292cD5FC6'
);Running tests
npm run testPublish package
There are two supported versions of this package depending on version of ethers.js (v5 and v6):
- Publish ethers-v5 version
xype-resolver@ethers-v5:
npm publish --tag ethers-v5- Publish ethers-v6 version
xype-resolver@latest:
npm publish --tag latest