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-14 10:09:45 -07:00
.circleci ci - breakout firefox helpers into scripts 2018-06-01 12:16:14 -07:00
.storybook
app Handle brave throws 2018-06-14 10:09:45 -07:00
development Merge branch 'develop' into i3725-refactor-send-component- 2018-06-06 16:40:43 -02:30
docs Update publishing.md 2018-05-23 14:58:09 -07:00
mascara Reduce height of notice container in onboarding (#4435) 2018-06-04 10:02:32 -07:00
notices
old-ui Fix account list order for the old UI 2018-06-05 17:17:27 -07:00
test Bump beta e2e timeouts on faucet page. 2018-06-06 22:15:38 -02:30
ui Merge branch 'develop' into i3725-refactor-send-component- 2018-06-06 16:40:43 -02:30
.babelrc
.dockerignore
.editorconfig
.eslintignore
.eslintrc Replaces currency-input.js with NumericInput 2018-05-29 09:21:54 -02:30
.gitattributes
.gitignore
.nsprc
.nvmrc
.stylelintignore
.stylelintrc
.travis.yml
.yo-rc.json
CHANGELOG.md changelog - version fix 2018-06-08 21:04:20 -07:00
CONTRIBUTING.md
docker-compose.yml
Dockerfile
fonts
gentests.js
gulpfile.js
images
ISSUE_TEMPLATE
LICENSE
MISSION.md Mission v2 2018-05-29 09:30:59 -07:00
package-lock.json Merge branch 'develop' into i3725-refactor-send-component- 2018-06-04 22:32:30 -02:30
package.json Merge branch 'develop' into i3725-refactor-send-component- 2018-05-31 15:28:03 -02:30
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