1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-04-14 06:16:12 +00:00
Go to file
2019-04-09 14:47:22 +02:00
public hide bitcoin using feature flag 2019-04-09 14:47:22 +02:00
scripts echo build directory from docker-build 2018-10-24 23:35:48 +02:00
server lint everything 2019-04-02 17:41:28 +02:00
src add empty summary and receive 2019-04-09 14:38:16 +02:00
test
translations updated master.json 2019-04-02 14:24:11 +02:00
webpack
.dockerignore
.eslintignore lint everything 2019-04-02 17:41:28 +02:00
.eslintrc Fixed lint 2019-03-06 16:44:47 +01:00
.flowconfig
.gitignore update .gitignore 2019-02-28 15:03:07 +01:00
.gitlab-ci.yml
.prettierignore Merge pull request #487 from trezor/lint-everything 2019-04-02 17:45:00 +02:00
.prettierrc Added config 2019-03-04 12:15:22 +01:00
.stylelintrc Fix stylelint rule 2019-03-06 15:49:12 +01:00
babel.config.js
browserslist Add error message for IE8 and lower 2018-09-21 16:54:02 +02:00
CHANGELOG.md
cypress.json Integration tests (#311) 2019-02-05 14:26:40 +01:00
Dockerfile Separate production and test docker 2019-03-04 16:29:11 +01:00
Dockerfile.test
jest.config.js
jsconfig.json
l10n.config.json
LICENSE.md
Makefile Makefile: added "sync-" prefix and default goal with usage description 2018-10-26 11:50:31 +02:00
package.json
README.md
trezor-rocks.png
yarn.lock

Alt text

Trezor Wallet

You can try this wallet live HERE

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

trezor-connect

If you are implementing a new feature from 'trezor-connect' which is not deployed on npm yet follow these steps:

  1. Build trezor-connect npm module locally:
  • go to trezor-connect project
  • call yarn build:npm
  • cd npm
  1. Call yarn link to register this module
  2. go to trezor-wallet project
  3. Call yarn link trezor-connect to link registered module with trezor-wallet

Additionally you can publish trezor-connect to dev server (sisyfos.trezor.io/connect):

  1. go to trezor-connect project
  2. call make build-test