Documentation ¶
Overview ¶
+build ignore
+build ignore
This file contains the implementation for interacting with the Trezor hardware wallets. The wire protocol spec can be found on the SatoshiLabs website: https://doc.satoshilabs.com/trezor-tech/api-protobuf.html +build ignore
Package usbwallet implements support for USB hardware wallets. +build ignore
Index ¶
Constants ¶
const LedgerScheme = "ledger"
LedgerScheme is the protocol scheme prefixing account and wallet URLs.
const TrezorScheme = "trezor"
TrezorScheme is the protocol scheme prefixing account and wallet URLs.
Variables ¶
var ErrTrezorPINNeeded = errors.New("trezor: pin needed")
ErrTrezorPINNeeded is returned if opening the trezor requires a PIN code. In this case, the calling application should display a pinpad and send back the encoded passphrase.
Functions ¶
This section is empty.
Types ¶
type Hub ¶ added in v1.7.0
type Hub struct {
// contains filtered or unexported fields
}
Hub is a accounts.Backend that can find and handle generic USB hardware wallets.
func NewLedgerHub ¶
NewLedgerHub creates a new hardware wallet manager for Ledger devices.
func NewTrezorHub ¶ added in v1.7.0
NewTrezorHub creates a new hardware wallet manager for Trezor devices.
func (*Hub) Subscribe ¶ added in v1.7.0
func (hub *Hub) Subscribe(sink chan<- accounts.WalletEvent) event.Subscription
Subscribe implements accounts.Backend, creating an async subscription to receive notifications on the addition or removal of USB wallets.