Convert Figma logo to code with AI

MetaMask logometamask-extension

:globe_with_meridians: :electric_plug: The MetaMask browser extension enables browsing Ethereum blockchain enabled websites

11,837
4,831
11,837
1,984

Top Related Projects

WalletConnect Monorepo

3,875

🌈‒ the Ethereum wallet that lives in your pocket

Cross-platform, cross-blockchain wallet library.

Brave browser for Android, iOS, Linux, macOS, Windows.

Quick Overview

MetaMask is a popular browser extension and mobile app that serves as a cryptocurrency wallet and gateway to blockchain applications. It allows users to manage Ethereum accounts, interact with decentralized applications (dApps), and securely store and transfer digital assets.

Pros

  • User-friendly interface for managing Ethereum accounts and interacting with dApps
  • Supports multiple networks, including Ethereum mainnet and various testnets
  • Robust security features, including encrypted storage of private keys
  • Large and active community, with frequent updates and improvements

Cons

  • As a browser extension, it can be vulnerable to certain types of attacks
  • Some users may find the initial setup process complex
  • Performance can be slow when interacting with complex dApps or during network congestion
  • Limited support for non-Ethereum blockchains (although this is expanding)

Getting Started

To get started with MetaMask as a user:

  1. Visit the official MetaMask website (https://metamask.io/)
  2. Download and install the extension for your preferred browser
  3. Create a new wallet or import an existing one
  4. Securely store your seed phrase
  5. Configure your preferred networks and start interacting with dApps

For developers looking to integrate MetaMask into their dApps:

  1. Install the @metamask/detect-provider package:

    npm install @metamask/detect-provider
    
  2. Use the following code to detect and connect to MetaMask:

    import detectEthereumProvider from '@metamask/detect-provider';
    
    const provider = await detectEthereumProvider();
    
    if (provider) {
      console.log('Ethereum successfully detected!');
      // From now on, use window.ethereum
    } else {
      console.log('Please install MetaMask!');
    }
    
  3. Request account access:

    const accounts = await window.ethereum.request({ method: 'eth_requestAccounts' });
    const account = accounts[0];
    console.log('Connected account:', account);
    

For more detailed information and advanced usage, refer to the MetaMask documentation and API reference.

Competitor Comparisons

WalletConnect Monorepo

Pros of walletconnect-monorepo

  • Multi-chain support: Enables connections to various blockchain networks
  • Protocol-agnostic: Works with different wallet types and dApps
  • Modular architecture: Easier to maintain and extend functionality

Cons of walletconnect-monorepo

  • Less user-friendly for non-technical users
  • Requires integration with existing wallets or dApps
  • Smaller community and ecosystem compared to MetaMask

Code Comparison

metamask-extension:

const provider = new ethers.providers.Web3Provider(window.ethereum);
const signer = provider.getSigner();
const contract = new ethers.Contract(address, abi, signer);

walletconnect-monorepo:

const connector = new WalletConnect({ bridge: "https://bridge.walletconnect.org" });
await connector.createSession();
const provider = new ethers.providers.Web3Provider(connector);
const signer = provider.getSigner();
const contract = new ethers.Contract(address, abi, signer);

The code snippets show that walletconnect-monorepo requires an additional step to create a session, while metamask-extension can directly use the injected provider. However, walletconnect-monorepo offers more flexibility in connecting to different wallets and chains.

3,875

🌈‒ the Ethereum wallet that lives in your pocket

Pros of Rainbow

  • More modern and user-friendly interface
  • Built-in support for NFTs and DeFi protocols
  • Faster transaction processing and lower fees

Cons of Rainbow

  • Limited browser extension support
  • Fewer supported networks compared to MetaMask
  • Less extensive developer documentation

Code Comparison

Rainbow (React Native):

const WalletConnect = () => {
  const { connect } = useWalletConnect();
  return (
    <Button onPress={connect}>
      Connect Wallet
    </Button>
  );
};

MetaMask (JavaScript):

const connectWallet = async () => {
  try {
    await ethereum.request({ method: 'eth_requestAccounts' });
  } catch (error) {
    console.error(error);
  }
};

Both repositories focus on creating cryptocurrency wallets, but they differ in their approach and target platforms. Rainbow is built using React Native, making it more suitable for mobile applications, while MetaMask is primarily a browser extension with a focus on web3 interactions.

Rainbow's codebase emphasizes a more modern, component-based architecture, which can lead to better maintainability and easier feature additions. MetaMask, being more established, has a larger community and more extensive documentation, which can be beneficial for developers integrating it into their projects.

Overall, the choice between Rainbow and MetaMask depends on the specific use case, target platform, and desired features for the cryptocurrency wallet implementation.

Cross-platform, cross-blockchain wallet library.

Pros of wallet-core

  • Multi-chain support: Wallet-core supports a wide range of blockchain networks, offering greater versatility compared to MetaMask's primary focus on Ethereum and EVM-compatible chains.
  • Native implementation: Built with C++, wallet-core provides better performance and can be easily integrated into mobile applications.
  • Open-source library: Allows developers to build their own wallets using Trust Wallet's core functionality.

Cons of wallet-core

  • Less user-friendly for non-developers: Requires more technical knowledge to implement and use compared to MetaMask's browser extension.
  • Limited direct user interface: Primarily a backend library, lacking the polished UI that MetaMask offers out-of-the-box.

Code Comparison

wallet-core (C++):

auto wallet = HDWallet(mnemonic, passphrase);
auto privateKey = wallet.getKey(TWCoinTypeEthereum, derivationPath);
auto address = privateKey.getPublicKey(TWPublicKeyTypeSECP256k1).string();

metamask-extension (JavaScript):

const provider = new ethers.providers.Web3Provider(window.ethereum);
await provider.send("eth_requestAccounts", []);
const signer = provider.getSigner();
const address = await signer.getAddress();

Both examples demonstrate how to obtain an Ethereum address, showcasing the different approaches and languages used in each project.

Brave browser for Android, iOS, Linux, macOS, Windows.

Pros of Brave Browser

  • Full-featured web browser with built-in privacy features
  • Integrated cryptocurrency wallet and rewards system
  • Larger codebase with more comprehensive functionality

Cons of Brave Browser

  • More complex setup and contribution process
  • Heavier resource usage due to full browser implementation
  • Slower release cycle compared to a browser extension

Code Comparison

Metamask Extension (JavaScript):

const signTypedData = async (msgParams) => {
  const { domain, types, primaryType, message } = msgParams;
  const signer = getSigner();
  return signer._signTypedData(domain, types, message);
};

Brave Browser (C++):

bool BraveWalletProviderImpl::SignTypedMessage(
    const std::string& address,
    const std::string& message,
    SignTypedMessageCallback callback) {
  if (!IsValidAddress(address)) {
    std::move(callback).Run(false, "Invalid address");
    return false;
  }
  // Implementation details...
}

Summary

Metamask Extension focuses on providing a dedicated cryptocurrency wallet and Web3 interface as a browser extension, while Brave Browser offers a complete web browsing experience with integrated cryptocurrency features. Brave has a more extensive codebase and broader functionality, but this comes at the cost of increased complexity and resource usage. Metamask Extension is more lightweight and specialized, allowing for quicker updates and easier integration into existing browsers.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

MetaMask Browser Extension

You can find the latest version of MetaMask on our official website. For help using MetaMask, visit our User Support Site.

For general questions, feature requests, or developer questions, visit our Community Forum.

MetaMask supports Firefox, Google Chrome, and Chromium-based browsers. We recommend using the latest available browser version.

For up to the minute news, follow our Twitter or Medium pages.

To learn how to develop MetaMask-compatible applications, visit our Developer Docs.

To learn how to contribute to the MetaMask codebase, visit our Contributor Docs.

To learn how to contribute to the MetaMask Extension project itself, visit our Extension Docs.

GitHub Codespaces quickstart

As an alternative to building on your local machine, there is a new option to get a development environment up and running in less than 5 minutes by using GitHub Codespaces. Please note that there is a Limited Free Monthly Quota, and after that GitHub will start charging you.

Note: You are billed for both time spent running, and for storage used

Open in GitHub Codespaces

  1. Start by clicking the button above
  2. A new browser tab will open with a remote version of Visual Studio Code (this will take a few minutes to load)
  3. A "Simple Browser" will open inside the browser with noVNC -- click Connect
    • Optional steps:
      • Click the button at the upper-right of the Simple Browser tab to open the noVNC window in its own tab
      • Open the noVNC sidebar on the left, click the gear icon, change the Scaling Mode to Remote Resizing
  4. Wait about 20 extra seconds on the first launch, for the scripts to finish
  5. Right-click on the noVNC desktop to launch Chrome or Firefox with MetaMask pre-installed
  6. Change some code, then run yarn start to build in dev mode
  7. After a minute or two, it will finish building, and you can see your changes in the noVNC desktop

Tips to keep your Codespaces usage lower

  • You are billed for both time spent running, and for storage used
  • Codespaces pause after 30 minutes of inactivity, and auto-delete after 30 days of inactivity
  • You can manage your Codespaces here: https://github.com/codespaces
    • You may want to manually pause them before the 30 minute timeout
    • If you have several idle Codespaces hanging around for several days, you can quickly run out of storage quota. You should delete the ones you do not plan to use anymore, and probably keep only 1 or 2 in the long-term. It's also possible to re-use old Codespaces and switch the branch, instead of creating new ones and deleting the old ones.

Codespaces on a fork

If you are not a MetaMask Internal Developer, or are otherwise developing on a fork, the default Infura key will be on the Free Plan and have very limited requests per second. If you want to use your own Infura key, follow the .metamaskrc and INFURA_PROJECT_ID instructions in the section Building on your local machine.

Building on your local machine

  • Install Node.js version 20

    • If you are using nvm (recommended) running nvm use will automatically choose the right node version for you.
  • Enable Corepack by executing the command corepack enable within the metamask-extension project. Corepack is a utility included with Node.js by default. It manages Yarn on a per-project basis, using the version specified by the packageManager property in the project's package.json file. Please note that modern releases of Yarn are not intended to be installed globally or via npm.

  • Duplicate .metamaskrc.dist within the root and rename it to .metamaskrc by running cp .metamaskrc{.dist,}.

  • Run yarn install to install the dependencies.

  • Build the project to the ./dist/ folder with yarn dist (for Chromium-based browsers) or yarn dist:mv2 (for Firefox)

    • Optionally, to create a development build you can instead run yarn start (for Chromium-based browsers) or yarn start:mv2 (for Firefox)
    • Uncompressed builds can be found in /dist, compressed builds can be found in /builds once they're built.
    • See the build system readme for build system usage information.
  • Follow these instructions to verify that your local build runs correctly:

Git Hooks

To get quick feedback from our shared code quality fitness functions before committing the code, you can install our git hooks with Husky.

$ yarn githooks:install

You can read more about them in our testing documentation.

If you are using VS Code and are unable to make commits from the source control sidebar due to a "command not found" error, try these steps from the Husky docs.

Contributing

Development builds

To start a development build (e.g. with logging and file watching) run yarn start.

Alternatively, one can skip wallet onboarding and preload the vault state with a specific SRP by adding TEST_SRP='<insert SRP here>' and PASSWORD='<insert wallet password here>' to the .metamaskrc file and running yarn start:skip-onboarding.

You can also start a development build using the yarn webpack command, or yarn webpack --watch. This uses an alternative build system that is much faster, but not yet production ready. See the Webpack README for more information.

React and Redux DevTools

To start the React DevTools, run yarn devtools:react with a development build installed in a browser. This will open in a separate window; no browser extension is required.

To start the Redux DevTools Extension:

  • Install the package remotedev-server globally (e.g. yarn global add remotedev-server)
  • Install the Redux Devtools extension.
  • Open the Redux DevTools extension and check the "Use custom (local) server" checkbox in the Remote DevTools Settings, using the default server configuration (host localhost, port 8000, secure connection checkbox unchecked).

Then run the command yarn devtools:redux with a development build installed in a browser. This will enable you to use the Redux DevTools extension to inspect MetaMask.

To create a development build and run both of these tools simultaneously, run yarn start:dev.

Test Dapp

This test site can be used to execute different user flows.

Running Unit Tests and Linting

Run unit tests and the linter with yarn test. To run just unit tests, run yarn test:unit.

You can run the linter by itself with yarn lint, and you can automatically fix some lint problems with yarn lint:fix. You can also run these two commands just on your local changes to save time with yarn lint:changed and yarn lint:changed:fix respectively.

For Jest debugging guide using Node.js, see docs/tests/jest.md.

Running E2E Tests

Our e2e test suite can be run on either Firefox or Chrome. Here's how to get started with e2e testing:

Preparing a Test Build

Before running e2e tests, ensure you've run yarn install to download dependencies. Next, you'll need a test build. You have 3 options:

  1. Use yarn download-builds:test to quickly download and unzip test builds for Chrome and Firefox into the ./dist/ folder. This method is fast and convenient for standard testing.
  2. Create a custom test build: for testing against different build types, use yarn build:test. This command allows you to generate test builds for various types, including:
    • yarn build:test for main build
    • yarn build:test:flask for flask build
    • yarn build:test:mmi for mmi build
    • yarn build:test:mv2 for mv2 build
  3. Start a test build with live changes: yarn start:test is particularly useful for development. It starts a test build that automatically recompiles application code upon changes. This option is ideal for iterative testing and development. This command also allows you to generate test builds for various types, including:
    • yarn start:test for main build
    • yarn start:test:flask for flask build
    • yarn start:test:mv2 for mv2 build

Note: The yarn start:test command (which initiates the testDev build type) has LavaMoat disabled for both the build system and the application, offering a streamlined testing experience during development. On the other hand, yarn build:test enables LavaMoat for enhanced security in both the build system and application, mirroring production environments more closely.

Running Tests

Once you have your test build ready, choose the browser for your e2e tests:

  • For Firefox, run yarn test:e2e:firefox.
    • Note: If you are running Firefox as a snap package on Linux, ensure you enable the appropriate environment variable: FIREFOX_SNAP=true yarn test:e2e:firefox
  • For Chrome, run yarn test:e2e:chrome.

These scripts support additional options for debugging. Use --helpto see all available options.

Running a single e2e test

Single e2e tests can be run with yarn test:e2e:single test/e2e/tests/TEST_NAME.spec.js along with the options below.

  --browser           Set the browser to be used; specify 'chrome', 'firefox', 'all'
                      or leave unset to run on 'all' by default.
                                                          [string] [default: 'all']
  --debug             Run tests in debug mode, logging each driver interaction
                                                         [boolean] [default: true]
  --retries           Set how many times the test should be retried upon failure.
                                                              [number] [default: 0]
  --leave-running     Leaves the browser running after a test fails, along with
                      anything else that the test used (ganache, the test dapp,
                      etc.)                              [boolean] [default: false]
  --update-snapshot   Update E2E test snapshots
                                             [alias: -u] [boolean] [default: false]

For example, to run the account-details tests using Chrome, with debug logging and with the browser set to remain open upon failure, you would use: yarn test:e2e:single test/e2e/tests/account-menu/account-details.spec.js --browser=chrome --leave-running

Running e2e tests against specific feature flag

While developing new features, we often use feature flags. As we prepare to make these features generally available (GA), we remove the feature flags. Existing feature flags are listed in the .metamaskrc.dist file. To execute e2e tests with a particular feature flag enabled, it's necessary to first generate a test build with that feature flag activated. There are two ways to achieve this:

  • To enable a feature flag in your local configuration, you should first ensure you have a .metamaskrc file copied from .metamaskrc.dist. Then, within your local .metamaskrc file, you can set the desired feature flag to true. Following this, a test build with the feature flag enabled can be created by executing yarn build:test.

  • Alternatively, for enabling a feature flag directly during the test build creation, you can pass the parameter as true via the command line. For instance, activating the MULTICHAIN feature flag can be done by running MULTICHAIN=1 yarn build:test or MULTICHAIN=1 yarn start:test . This method allows for quick adjustments to feature flags without altering the .metamaskrc file.

Once you've created a test build with the desired feature flag enabled, proceed to run your tests as usual. Your tests will now run against the version of the extension with the specific feature flag activated. For example: yarn test:e2e:single test/e2e/tests/account-menu/account-details.spec.js --browser=chrome

This approach ensures that your e2e tests accurately reflect the user experience for the upcoming GA features.

Running specific builds types e2e test

Different build types have different e2e tests sets. In order to run them look in the package.json file. You will find:

    "test:e2e:chrome:mmi": "SELENIUM_BROWSER=chrome node test/e2e/run-all.js --mmi",
    "test:e2e:chrome:snaps": "SELENIUM_BROWSER=chrome node test/e2e/run-all.js --snaps",
    "test:e2e:firefox": "ENABLE_MV3=false SELENIUM_BROWSER=firefox node test/e2e/run-all.js",

Note: Running MMI e2e tests

When running e2e on an MMI build you need to know that there are 2 separated set of tests:

  • MMI runs a subset of MetaMask's e2e tests. To facilitate this, we have appended the @no-mmi tags to the names of those tests that are not applicable to this build type.
  • MMI runs another specific set of e2e legacy tests which are better documented here

Changing dependencies

Whenever you change dependencies (adding, removing, or updating, either in package.json or yarn.lock), there are various files that must be kept up-to-date.

  • yarn.lock:
    • Run yarn again after your changes to ensure yarn.lock has been properly updated.
    • Run yarn lint:lockfile:dedupe:fix to remove duplicate dependencies from the lockfile.
  • The allow-scripts configuration in package.json
    • Run yarn allow-scripts auto to update the allow-scripts configuration automatically. This config determines whether the package's install/postinstall scripts are allowed to run. Review each new package to determine whether the install script needs to run or not, testing if necessary.
    • Unfortunately, yarn allow-scripts auto will behave inconsistently on different platforms. macOS and Windows users may see extraneous changes relating to optional dependencies.
  • The LavaMoat policy files
    • If you are a MetaMask team member and your PR is on a repository branch, you can use the bot command @metamaskbot update-policies to ask the MetaMask bot to automatically update the policies for you.
    • If your PR is from a fork, you can ask a MetaMask team member to help with updating the policy files.
    • Manual update instructions: The tl;dr is to run yarn lavamoat:auto to update these files, but there can be devils in the details:
      • There are two sets of LavaMoat policy files:
        • The production LavaMoat policy files (lavamoat/browserify/*/policy.json), which are re-generated using yarn lavamoat:webapp:auto. Add --help for usage.
          • These should be regenerated whenever the production dependencies for the webapp change.
        • The build system LavaMoat policy file (lavamoat/build-system/policy.json), which is re-generated using yarn lavamoat:build:auto.
          • This should be regenerated whenever the dependencies used by the build system itself change.
      • Whenever you regenerate a policy file, review the changes to determine whether the access granted to each package seems appropriate.
      • Unfortunately, yarn lavamoat:auto will behave inconsistently on different platforms. macOS and Windows users may see extraneous changes relating to optional dependencies.
      • If you keep getting policy failures even after regenerating the policy files, try regenerating the policies after a clean install by doing:
        • rm -rf node_modules/ && yarn && yarn lavamoat:auto
      • Keep in mind that any kind of dynamic import or dynamic use of globals may elude LavaMoat's static analysis. Refer to the LavaMoat documentation or ask for help if you run into any issues.
  • The Attributions file
    • If you are a MetaMask team member and your PR is on a repository branch, you can use the bot command @metamaskbot update-attributions to ask the MetaMask bot to automatically update the attributions file for you.
    • Manual update: run yarn attributions:generate.

Architecture

Architecture Diagram

Other Docs

Dapp Developer Resources