Init
To initiate TrezorConnect, please provide the manifest object with your email and appURL. This is crucial for us to identify your use of TrezorConnect and to contact you if necessary. If the manifest object is not set, TrezorConnect methods will not be available.
It is also possible to customize more advanced options for TrezorConnect.
const result = await TrezorConnect.init({
manifest: {
appUrl: 'https://your.application.com',
email: 'your@email.com',
},
// More advanced options
debug: true,
lazyLoad: true,
coreMode: 'auto',
});
Params
manifest
Object
Application manifest with your email and appUrl.
connectSrc
String
Set custom src for TrezorConnect iframe.
debug
Boolean
default false
. Prints debug logs.
transportReconnect
Boolean
default true
. If transport dies during lifecycle of application, this field decides whether TrezorConnect tries to reestablish connection with transport layer.
pendingTransportEvent
Boolean
default true
. Postpone emitting TRANSPORT.START event to the moment when connected device becomes available.
interactionTimeout
Number
default 600
. Time in seconds after which popup automatically closes.
lazyLoad
Boolean
default false
. Postpone iframe creation until TrezorConnect is called for the first time.
popup
Boolean
default true
. Projects running on trusted domains (trezor.io) are not required to use popup. For other domains this option is ignored.
transports
Array<"BridgeTransport" | "WebUsbTransport" | "NodeUsbTransport">
Array of transports that should be use. If not provided, TrezorConnect will choose a reasonable default based on your environment.
coreMode
"auto" | "iframe" | "popup"
default auto
.
If set to popup
, webUSB transport would work cross-origin on the web. The disadvantage of this mode is that Connect popup does not retain a stateful connection to the device, which means for example that device events are not sent to the application when the popup is not open.
If set to iframe
, TrezorConnect will use iframe with persistent connection for the communication between popup and 3rd party wallet.
In the default auto
mode, TrezorConnect will automatically choose iframe
if bridge transport is available and popup
otherwise, to allow for webUSB use.
Result
TrezorConnect.init returns Promise<void>