Trezor Bridge connects your hardware wallet to supported browsers, providing secure communication. Download from official page and follow installation instructions.
Bridge runs silently in background. Verify at 127.0.0.1:21325/status.
Bridge acts as a secure local service, transmitting encrypted messages between device and app. No private keys leave the device. Open-source code is available on GitHub.
Use Trezor Connect API for apps, exchanges, or wallets. Example:
import TrezorConnect from 'trezor-connect';
TrezorConnect.init({
manifest:{email:'dev@yourapp.com',appUrl:'https://yourapp.com'}
});
TrezorConnect.getFeatures()
.then(info => console.log(info))
.catch(err => console.error(err));
Connects hardware wallet to Suite or compatible apps.
Yes, desktop users need it for compatibility.
Yes, digitally signed, open-source, and handles no private keys.
Guide to safely logging in, enabling 2FA, and preventing unauthorized access.