Go to file
Victor Baranov 07122b9bbf Add CHANGELOG entry 2020-07-10 16:22:14 +03:00
.circleci Refactoring 2020-03-27 14:17:25 +03:00
.github
.storybook
app 10 gWei 2020-07-10 15:07:15 +03:00
development Refactoring 2020-03-27 14:17:25 +03:00
docs Return to mainn screenn from removal of account 2020-03-20 14:50:20 +03:00
mascara Support 24 words mnemonic 2020-06-15 11:18:04 +03:00
notices Return to mainn screenn from removal of account 2020-03-20 14:50:20 +03:00
old-ui Fix RNS resolving 2020-07-10 16:15:12 +03:00
test Update test 2020-07-10 15:35:53 +03:00
ui Send all option for tokens send 2020-06-15 15:45:29 +03:00
.dockerignore
.editorconfig
.eslintignore Trezor API v 6.0.3 2019-01-18 16:03:30 +03:00
.eslintrc Update npm dependencies 2020-03-21 00:40:04 +03:00
.gitattributes
.gitignore Add html reporter to test coverage output 2018-09-11 09:39:16 -07:00
.nsprc
.nvmrc node 12 support 2019-11-25 00:35:01 +03:00
.stylelintignore
.stylelintrc
CHANGELOG.md Add CHANGELOG entry 2020-07-10 16:22:14 +03:00
CONTRIBUTING.md
Dockerfile
ISSUE_TEMPLATE Update issue template 2018-08-22 17:10:28 +03:00
LICENSE
MISSION.md
README.md Refactoring 2020-03-27 14:17:25 +03:00
USER_AGREEMENT.md fix wiki link, link to post a comment 2018-11-12 12:51:54 +03:00
babel.config.js Update npm dependencies 2020-03-21 00:40:04 +03:00
colors.js
docker-compose.yml
fonts
gentests.js Refactoring 2020-03-27 14:17:25 +03:00
gulpfile.js Update RSK contracts metadata repo 2020-04-30 12:45:54 +03:00
images
package-lock.json Update deps: eth-net-props, RSK metadata, fix vulnerabilities 2020-07-10 14:11:55 +03:00
package.json Update deps: eth-net-props, RSK metadata, fix vulnerabilities 2020-07-10 14:11:55 +03:00

README.md

Nifty Wallet Browser Extension

Build Status Coverage Status

Introduction

Internal documentation

Building locally

  • Install Node.js version 10.x.x and npm version 6.13.4
    • If you are using nvm (recommended) running nvm use will automatically choose the right node version for you.
    • Select npm 6.9.0: npm install -g npm@6.9.0
  • Install dependencies: npm install
  • Install gulp globally with npm install -g gulp-cli.
  • Build the project to the ./dist/ folder with gulp build.
  • Optionally, to rebuild on file changes, run gulp dev.
  • To package .zip files for distribution, run gulp zip, or run the full build & zip with gulp dist.

Uncompressed builds can be found in /dist, compressed builds can be found in /builds once they're built.

Running Tests

Requires mocha installed. Run npm install -g mocha.

Then just run npm test.

You can also test with a continuously watching process, via npm run watch.

You can run the linter by itself with gulp lint.

Architecture

Architecture Diagram

Development

npm install
npm start

Build for Publishing

npm run dist

Writing Browser Tests

To write tests that will be run in the browser using QUnit, add your test files to test/integration/lib.

Other Docs