Skip to content

Custom Derivation Paths and Improved UI for Hardware Wallets

Compare
Choose a tag to compare
@lnbc1QWFyb24 lnbc1QWFyb24 released this 20 Mar 03:02
bb7af45

This release adds a new wallet check module for hardware wallets that allow user's to select a derivation path from a list of common paths or input a custom path to access accounts on their hardware wallets:

Screen Shot 2020-03-20 at 1 26 13 PM
Screen Shot 2020-03-20 at 1 26 43 PM

To add this extra check to your app:

const config = {
  //... other config options
  walletCheck: [
    { checkName: "derivationPath" },
    { checkName: "accounts" },
    { checkName: "connect" },
    { checkName: "network" }
  ]
}

const onboard = Onboard(config)

Changelog:

  • Make sure SDK wallets disconnect correctly (#254)
  • Feature: Custom Derivation Path (#256)
  • Enhancement: click close modal (#259)
  • Clear hardware accs when derivation path changed (#261)