Create a .env file in your project root with the following variables:
.env
Copy
Ask AI
# Test wallet seed phrase (NEVER use production wallets!)E2E_TEST_SEED_PHRASE="test test test test test test test test test test test junk"# Optional: Fork configuration for testing against mainnet stateE2E_TEST_FORK_URL="https://mainnet.base.org"E2E_TEST_FORK_BLOCK_NUMBER="12345678"# Optional: Smart contract project rootE2E_CONTRACT_PROJECT_ROOT="../smart-contracts"
Never commit .env files to version control. Add .env to your .gitignore file.