BluxBlux

Trezor

Configure the Trezor hardware wallet integration.

Blux supports the Trezor hardware wallet. Trezor requires a small manifest so its Connect service can identify your app — set it with the optional trezor config option.

Type

trezor?: {
  email: string;   // a developer contact email
  appUrl: string;  // the public URL of your app
};

Usage

<BluxProvider
  config={{
    appName: "MyApp",
    trezor: {
      email: "[email protected]",
      appUrl: "https://myapp.com",
    },
  }}
>
  {children}
</BluxProvider>
createConfig({
  appName: "MyApp",
  trezor: {
    email: "[email protected]",
    appUrl: "https://myapp.com",
  },
});

The trezor config is optional. Provide it when you offer Trezor as a wallet option so Trezor Connect can attribute requests to your app. The email and appUrl should identify a real contact and your app's public URL.

On this page