To set up the development environment, follow these steps:
-
Install dependencies:
pnpm install
-
Create a local environment file:
cp .env.example .env
-
Fill in the required environment variables in the
.env
file. Make sure to provide valid values for all necessary fields.PRIVATE_KEY
: The private key of the wallet that will be used to fill an intent.ALCHEMY_API_KEY
: The Alchemy API key to use for interacting with the Arbitrum network.
like this:
PRIVATE_KEY=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef ALCHEMY_API_KEY=abcdef1234567890abcdef123456-890
-
Start the development server:
pnpm dev
After completing these steps, your development environment should be up and running. You can now begin working on the project locally.