Skip to content

Latest commit

 

History

History
 
 

connect-popup

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

@trezor/connect-popup

Build @trezor/connect popup, which serves as a UI for communication with Trezor device via @trezor/connect. UI shows a loading screen until a communication channel between popup and @trezor/connect-iframe is established.

Official versions of the app are hosted on connect.trezor.io/<version>/popup.html

Build

yarn workspace @trezor/connect-popup build

Develop

yarn workspace @trezor/connect-popup dev

Open http://localhost:8088/popup.html.

Example how to change src/index onLoad function to display view you are working on:

const onLoad = () => {
    showView('pin');
};