1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-13 11:58:58 +00:00
Go to file
2019-03-29 13:44:37 +01:00
public fix bengali flag, changed flag for en to UK 2019-03-22 16:27:39 +01:00
scripts echo build directory from docker-build 2018-10-24 23:35:48 +02:00
server Fix prod and beta local servers 2018-10-24 17:58:10 +02:00
src disabled sign and verify buttons when device is not connected 2019-03-29 10:51:02 +01:00
test Fix unexpected import 2019-02-11 14:51:25 +01:00
translations fix msgs 2019-02-28 16:02:33 +01:00
webpack apply file-loader to node_modules/trezor-ui-component 2019-03-21 16:53:51 +01:00
.dockerignore Added scripts for easy run and build 2018-10-09 14:46:39 +02:00
.eslintignore do not lint cache on whole folder 2019-03-04 15:25:54 +01:00
.eslintrc Fixed lint 2019-03-06 16:44:47 +01:00
.flowconfig ignore flow errors in react-select 2019-03-01 12:40:51 +01:00
.gitignore update .gitignore 2019-02-28 15:03:07 +01:00
.gitlab-ci.yml merge beta 2019-03-06 14:10:39 +01:00
.prettierignore Add prettier ignore 2019-03-04 15:30:33 +01: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 remove unused packages 2019-02-28 14:59:33 +01:00
browserslist Add error message for IE8 and lower 2018-09-21 16:54:02 +02:00
CHANGELOG.md Update CHANGELOG.md 2019-03-12 16:45:23 +01:00
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 Separate production and test docker 2019-03-04 16:29:11 +01:00
jest.config.js Tweak config 2019-02-28 16:56:13 +01:00
jsconfig.json Removed /js folder 2018-08-27 17:15:22 +02:00
l10n.config.json handle locale to filename mapping by TTM 2019-02-15 21:19:01 +01:00
LICENSE.md fix format in license 2018-09-13 16:40:16 +02:00
Makefile Makefile: added "sync-" prefix and default goal with usage description 2018-10-26 11:50:31 +02:00
package.json upgrade tuc 2019-03-28 15:00:39 +01:00
README.md Update README.md 2019-03-28 17:53:46 +01:00
trezor-rocks.png move img to root folder to prevent image preloading 2019-03-19 13:33:52 +01:00
yarn.lock upgrade tuc 2019-03-28 15:00:39 +01:00

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