Quick Access
Coin Methods
Bitcoin
Miscellaneous
Methods
Device
backupDevice

Backup device

🚫

Management command - this method is restricted to Trezor.io and can't be used in 3rd party applications.

Start seed backup process on the device. Can only be called if the seed is not backed up yet.

const result = await TrezorConnect.backupDevice(params);

Params

Including CommonParams

No other parameters.

Example

TrezorConnect.backupDevice({
    device,
});

Result

Success type

{
    success: true,
    payload: {
        message: 'Seed successfully backed up'
    }
}

Error

{
    success: false,
    payload: {
        error: string // error message
    }
}