1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
🦊 Minimalized version of MetaMask for my own personal use.
Go to file
Chi Kei Chan 931aaeb700 Add token selection to the send screen (#6445)
* Move send to pages/

* Fix unit tests

* Finish UI

* Integrate asset dropdown to send actions

* Remove console.log

* Hide asset change during edit

* Enable switch from send token to seand eth

* Enable switching from token to eth when editing

* Fix linter

* Fixing test

* Fix unit tests

* Fix linter

* Fix react warning; remove console.log

* fix flat test

* Add metrics

* Address code review comments

* Consistent spacing between send screen form rows.

* Reduce height of gas buttons on send screen.

* Make send screen gas button height dependent on size of contents.
2019-04-17 16:45:13 -02:30
.circleci ci: Add build:test Gulp task for e2e build 2019-03-29 11:13:39 -02:30
.github
.storybook
app Add token selection to the send screen (#6445) 2019-04-17 16:45:13 -02:30
development feature: add Goerli support (#6459) 2019-04-17 15:04:49 -02:30
docs update publishing.md with dev diagram 2019-04-17 10:30:17 -07:00
test Add token selection to the send screen (#6445) 2019-04-17 16:45:13 -02:30
ui Add token selection to the send screen (#6445) 2019-04-17 16:45:13 -02:30
.babelrc build - babel - move config to babelrc (#6284) 2019-03-12 13:25:28 -02:30
.dockerignore
.editorconfig
.eslintignore mascara - remove from project (#6283) 2019-03-12 11:17:21 -02:30
.eslintrc
.gitattributes
.gitignore
.nvmrc Update Node minor version 2019-03-13 09:56:36 -02:30
.stylelintignore mascara - remove from project (#6283) 2019-03-12 11:17:21 -02:30
.stylelintrc
CHANGELOG.md Version 6.3.2 (#6418) 2019-04-08 11:22:23 -07:00
CONTRIBUTING.md
fonts
gentests.js
gulpfile.js ci: Add build:test Gulp task for e2e build 2019-03-29 11:13:39 -02:30
images
ISSUE_TEMPLATE
LICENSE
MISSION.md
package-lock.json Update to eth-method-registry@1.2.0 (#6403) 2019-04-17 15:51:21 -02:30
package.json Update to eth-method-registry@1.2.0 (#6403) 2019-04-17 15:51:21 -02:30
README.md
USER_AGREEMENT.md

MetaMask Browser Extension

Build Status Coverage Status Stories in Ready

You can find the latest version of MetaMask on our official website. For help using MetaMask, visit our User Support Site.

For up to the minute news, follow our Twitter or Medium pages.

To learn how to develop MetaMask-compatible applications, visit our Developer Docs.

To learn how to contribute to the MetaMask project itself, visit our Internal Docs.

Building locally

  • Install Node.js version 8 and the latest available npm@6
    • If you are using nvm (recommended) running nvm use will automatically choose the right node version for you.
    • If you install Node.js manually, ensure you're using npm@6
      • Install npm@6 using npm install -g npm@6
  • Install dependencies: npm install
    • If you have issues with node-sass compilation, try npm rebuild node-sass
  • 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.

Contributing

You can read our internal docs here.

You can re-generate the docs locally by running npm run doc, and contributors can update the hosted docs by running npm run publish-docs.

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