1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-13 20:08:56 +00:00
trezor-wallet/README.md

27 lines
865 B
Markdown
Raw Normal View History

![Alt text](trezor-rocks.png?raw=true "Trezor Wallet rocks")
2019-03-04 13:39:59 +00:00
2018-10-19 13:32:43 +00:00
# Trezor Wallet
2018-10-02 14:32:46 +00:00
2019-02-19 16:12:56 +00:00
You can try this wallet live [HERE](https://beta-wallet.trezor.io/next/)
To install dependencies run `npm install` or `yarn`
To start locally run `npm run dev` or `yarn run dev`
To build the project run `npm run build` or `yarn run build`
2018-10-09 15:55:01 +00:00
## trezor-connect
2018-10-10 13:37:59 +00:00
If you are implementing a new feature from 'trezor-connect' which is not deployed on npm yet follow these steps:
2018-10-09 15:55:01 +00:00
1. Build trezor-connect npm module locally:
- go to trezor-connect project
- call `yarn build:npm`
- `cd npm`
2. Call `yarn link` to register this module
3. go to trezor-wallet project
4. Call `yarn link trezor-connect` to link registered module with trezor-wallet
2018-10-10 13:37:59 +00:00
Additionally you can publish trezor-connect to dev server (sisyfos.trezor.io/connect):
2018-10-09 15:55:01 +00:00
1. go to trezor-connect project
2. call `make build-test`