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
Thomas Huang 453bfd34e3
Merge pull request #2706 from danjm/MM-fix-buy-cancel-button
Fixes the cancel button in the buy screen to take the user home.
2017-12-14 15:06:53 -05:00
app Merge pull request #2662 from williamchong007/master 2017-12-14 14:34:21 -05:00
development Add development state 2017-12-06 22:55:04 -05:00
docs
mascara Add markdown class to mascara ui markdown field 2017-11-29 13:34:19 -08:00
notices Migrate old data to include firstVersion info 2017-11-28 16:56:45 -08:00
test Add tests for exponential backoff code in _resubmitTx 2017-12-06 14:11:14 -03:30
ui Merge pull request #2706 from danjm/MM-fix-buy-cancel-button 2017-12-14 15:06:53 -05:00
.babelrc
.dockerignore
.editorconfig
.eslintignore
.eslintrc
.gitattributes
.gitignore
.jshintrc
.nvmrc
.travis.yml
.yo-rc.json
CHANGELOG.md Bump changelog 2017-12-12 09:48:09 -08:00
circle.yml
CONTRIBUTING.md
docker-compose.yml
Dockerfile
fonts
gulpfile.js Ensure Opera build excludes chromereload file 2017-11-21 15:19:10 -08:00
images
ISSUE_TEMPLATE Point issue template at new support center 2017-11-17 11:27:02 -08:00
LICENSE license 2016-07-14 14:37:40 -07:00
mock-dev.js
package.json Revert "Revert "network - for infura networks use the infura block tracker provider"" 2017-12-13 18:57:27 -08:00
README.md
ui-dev.js
USER_AGREEMENT.md
yarn.lock Add Import With Seed Phrase 2017-10-20 22:31:59 -07: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