A library to interact with Paymagic API.
npm install paymagic-js
or you can use yarn
yarn add paymagic-js
import { Client } from 'paymagic-js';
const client = new Client();
(async () => {
const resolvedName = await client.resolveName('vanxhh', 'twitter');
console.log(resolvedName);
})();