Skip to main content

Setting Up the Development Environment

This tutorial will guide you through setting up your development environment for working with Morpho Bundlers.

Prerequisites

  • Git
  • Node.js and Yarn
  • Alchemy API key

Steps

  1. Clone the repository:

    git clone https://github.com/morpho-org/morpho-blue-bundlers
    cd morpho-blue-bundlers
  2. Install dependencies:

    yarn install
  3. Set up your Alchemy API key:

    export ALCHEMY_KEY=<your_alchemy_key>
  4. Run tests to ensure everything is set up correctly:

    yarn test:forge

    Note: The first time you run the tests, it will build Morpho, which may take a few minutes.

Now your development environment is ready for working with Morpho Bundlers!