JSPM

  • Created
  • Published
  • Downloads 3454
  • Score
    100M100P100Q128783F
  • License MIT

Unstoppable Domains resolution plugin for matic.js

Package Exports

  • @unstoppabledomains/resolution
  • @unstoppabledomains/resolution/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@unstoppabledomains/resolution) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

maticjs-resolution

Unstoppable Domains Resolution plugin for matic.js

Installation

npm i @unstoppabledomains/maticjs-resolution

Sample

const { POSClient, use } = require('@maticnetwork/maticjs')
const { Web3ClientPlugin } = require('@maticnetwork/maticjs-web3')
const {
  UnstoppableDomainsClientPlugin
} = require('maticjs-unstoppable-domains')

use(Web3ClientPlugin)
use(UnstoppableDomainsClientPlugin)

const getPOSClient = (network = 'testnet', version = 'mumbai') => {
  const posClient = new POSClient()
  return posClient.init({
    log: true,
    network: network,
    version: version,
    child: {
      provider: new HDWalletProvider(privateKey, config.child.rpc),
      defaultConfig: {
        from: userAddress
      }
    },
    parent: {
      provider: new HDWalletProvider(privateKey, config.parent.rpc),
      defaultConfig: {
        from: userAddress
      }
    }
  })
}

async function showUnstoppableAddress() {
  const client = await getPOSClient()

  const addr = client.client.unstoppableDomains.addr('brad.crypto', 'ETH')

  console.log('Resolves Unstoppable Domains address', await addr)
}

showUnstoppableAddress();