1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 02:58:09 +01:00
🦊 Minimalized version of MetaMask for my own personal use.
Go to file
2017-11-25 15:52:46 -07:00
app toggle wired up to preferences property store 2017-11-24 10:35:17 -07:00
development
docs
mascara Merge branch 'master' into NewUI-flat 2017-10-25 18:49:02 -07:00
notices
test Merge branch 'master' into merge-master 2017-11-15 12:03:13 -08:00
ui making eslint happy 2017-11-25 15:47:34 -07:00
.babelrc
.dockerignore
.editorconfig
.eslintignore adding blockies lib to eslint ignore so it doesn't blow up the style checker and fail the build 2017-11-25 15:52:46 -07:00
.eslintrc Fix linter 2017-10-20 21:51:37 -07:00
.gitattributes
.gitignore incremental commit 2017-11-23 18:33:44 -07:00
.jshintrc
.nvmrc
.stylelintignore
.stylelintrc
.travis.yml
.yo-rc.json
CHANGELOG.md Correct changelog. 2017-10-26 16:23:58 -07:00
circle.yml
CONTRIBUTING.md
docker-compose.yml
Dockerfile
fonts
gulpfile.js Merge branch 'master' into NewUI-flat 2017-10-24 16:56:49 -07:00
images
ISSUE_TEMPLATE
LICENSE
mock-dev.js
package.json swapped out ethereum-blockies lib for MEW blockies library, tightened up identicon.js code 2017-11-25 14:33:42 -07:00
README.md
ui-dev.js
USER_AGREEMENT.md
yarn.lock Version Bump 2017-11-15 12:23:39 -08:00

MetaMask Plugin

Build Status Coverage Status Greenkeeper badge Stories in Ready

Support

If you're a user seeking support, here is our support site.

Developing Compatible Dapps

If you're a web dapp developer, we've got two types of guides for you:

New Dapp Developers

Current Dapp Developers

Building locally

  • Install Node.js version 6.3.1 or later.
  • Install local dependencies with 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