1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
🦊 Minimalized version of MetaMask for my own personal use.
Go to file
2018-06-17 19:16:30 +02:00
.circleci ci - breakout firefox helpers into scripts 2018-06-01 12:16:14 -07:00
.storybook Merge branch 'develop' into i3725-refactor-send-component- 2018-05-14 11:44:50 -02:30
app set the popup id returned by create promise 2018-06-17 19:16:30 +02:00
development notices - replace getLatestNotice with getNextNotice 2018-06-13 23:30:31 -07:00
docs Update publishing.md 2018-05-23 14:58:09 -07:00
mascara notices - replace getLatestNotice with getNextNotice 2018-06-13 23:30:31 -07:00
notices test - e2e - check for phishing warning 2018-06-13 23:52:51 -07:00
old-ui notices - replace getLatestNotice with getNextNotice 2018-06-13 23:30:31 -07:00
test Merge pull request #4566 from MetaMask/notice-phishing 2018-06-14 09:49:38 -07:00
ui Merge pull request #4566 from MetaMask/notice-phishing 2018-06-14 09:49:38 -07:00
.babelrc
.dockerignore
.editorconfig
.eslintignore
.eslintrc Replaces currency-input.js with NumericInput 2018-05-29 09:21:54 -02:30
.gitattributes
.gitignore Add JSDoc to various background scripts 2018-04-18 21:30:13 -04:00
.nsprc Merge branch 'develop' into i3725-refactor-send-component- 2018-05-14 11:44:50 -02:30
.nvmrc
.stylelintignore
.stylelintrc
.travis.yml
.yo-rc.json
CHANGELOG.md Merge branch 'develop' into save-brave 2018-06-14 10:11:35 -07:00
CONTRIBUTING.md Merge branch 'develop' into i3725-refactor-send-component- 2018-05-14 11:44:50 -02:30
docker-compose.yml
Dockerfile
fonts
gentests.js Merge branch 'develop' into i3725-refactor-send-component- 2018-05-14 11:44:50 -02:30
gulpfile.js Merge branch 'develop' into i3725-refactor-send-component- 2018-05-14 11:44:50 -02:30
images
ISSUE_TEMPLATE
LICENSE
MISSION.md Mission v2 2018-05-29 09:30:59 -07:00
package-lock.json Merge branch 'develop' of github.com:MetaMask/metamask-extension into ValidateEmptyKey 2018-06-13 21:11:04 -07:00
package.json notices - notices collection is now manually edited 2018-06-13 22:56:46 -07:00
README.md recommend yarn for node >= 10 2018-05-31 19:01:25 -07:00
USER_AGREEMENT.md

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.

Introduction

Mission Statement

Internal documentation

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 dependencies:
    • For node versions up to and including 9, install local dependencies with npm install.
    • For node versions 10 and later, install Yarn and use yarn 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