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
kumavis f42a808bea
Merge pull request #2899 from MetaMask/danfinlay-patch-1
Default to estimating 1 gwei for empty blocks.
2018-01-08 15:05:00 -08:00
app Default to estimating 1 gwei for empty blocks. 2018-01-08 14:58:38 -08: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 Merge pull request #2891 from MetaMask/i2621-0xRecipientAddress 2018-01-08 11:47:47 -08:00
ui Merge pull request #2851 from MetaMask/i2812-seedworderrorfix 2018-01-08 11:43:43 -08:00
.babelrc
.dockerignore
.editorconfig
.eslintignore
.eslintrc
.gitattributes
.gitignore
.jshintrc
.nvmrc
.travis.yml
.yo-rc.json
CHANGELOG.md Merge pull request #2891 from MetaMask/i2621-0xRecipientAddress 2018-01-08 11:47:47 -08:00
circle.yml
CONTRIBUTING.md Add contributing.md file 2016-06-15 10:35:23 -07:00
docker-compose.yml
Dockerfile
fonts
gulpfile.js
images
ISSUE_TEMPLATE
LICENSE
mock-dev.js
package.json Merge pull request #2854 from MetaMask/UpdateVinyl-BufferPackage 2018-01-08 12:40:54 -08:00
README.md readme - fix "plugin" to "extension" 2017-12-15 15:06:06 -08:00
ui-dev.js
USER_AGREEMENT.md
yarn.lock

MetaMask Browser Extension

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