How it works

Third-party library

It communicates with Doge by using BIP39 bitcoinjs-lib and WIF

Client URL

  • Mainnet: https://api.blockcypher.com/v1
  • Testnet: https://api.blockcypher.com/v1

Explorer URL

Dependencies

Address Generation

By default, the index is 0. - m/44'/3'/0'/0/ for mainnet, m/44'/3'/0'/0/ for testnet

Blockchain-specific functions

Additional functions to get fee information

  • getFeesWithRates
  • getFeesWithMemo
  • getFeeRates
type FeeRate = number
type FeeRates = Record<FeeOptionKey, FeeRate>
type FeesWithRates = { rates: FeeRates; fees: Fees }

getFeesWithRates(memo?: string): Promise<FeesWithRates>
getFeesWithMemo(memo: string): Promise<Fees>
getFeeRates(): Promise<FeeRates>

Scans UTXOs on the address

scanUTXOs(): Promise<void>