Quick Access
Coin Methods
Bitcoin
Miscellaneous
Methods
Device
changePin

Change pin

🚫

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

This method initiates pin change sequence.

const result = await TrezorConnect.changePin(params);

Params

Including CommonParams

PROTO.ChangePin

Result

{
    success: true,
    payload: {
        message: "PIN enabled" | "PIN removed"
    }
}
 

Error

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