Custom Derivation Paths and Improved UI for Hardware Wallets
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:
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: