mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-10 18:39:36 +00:00
public | ||
scripts | ||
server | ||
src | ||
test | ||
translations | ||
webpack | ||
.dockerignore | ||
.eslintignore | ||
.eslintrc | ||
.flowconfig | ||
.gitignore | ||
.gitlab-ci.yml | ||
.prettierignore | ||
.prettierrc | ||
.stylelintrc | ||
babel.config.js | ||
browserslist | ||
CHANGELOG.md | ||
cypress.json | ||
Dockerfile | ||
Dockerfile.test | ||
jest.config.js | ||
jsconfig.json | ||
l10n.config.json | ||
LICENSE.md | ||
Makefile | ||
package.json | ||
README.md | ||
trezor-rocks.png | ||
yarn.lock |
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:
- Build trezor-connect npm module locally:
- go to trezor-connect project
- call
yarn build:npm
cd npm
- Call
yarn link
to register this module - go to trezor-wallet project
- 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):
- go to trezor-connect project
- call
make build-test