npm install xype-resolver
import { XypeResolver } from 'xype-resolver';
const xypeResolver = await XypeResolver.init(RPC_NODE);
- 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');
- 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'
);
npm run test
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