mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-23 07:37:10 +01:00
577 B
577 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
Example:
TrezorConnect.showDeviceTutorial({
device,
});
Result
Success type
{
success: true,
payload: {
message: 'Tutorial shown'
}
}
Error
{
success: false,
payload: {
error: string // error message
}
}