Files
trezor-suite/docs/packages/connect/methods/showDeviceTutorial.md

673 B

Show device tutorial

Start the on device tutorial.

const result = await TrezorConnect.showDeviceTutorial(params);

:note: Supported only by T2B1 with Firmware 2.6.1 or higher!

Params

Optional common params

Example:

TrezorConnect.showDeviceTutorial({
    device,
});

Result

Success type

{
    success: true,
    payload: {
        message: 'Tutorial shown'
    }
}

Error

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