# Fibrous MCP Server Configuration
# Copy this file to .env and fill in your values.
# SECURITY WARNING: Never commit your actual .env file to version control!
# Server Configuration
NODE_ENV=development
DEFAULT_SLIPPAGE=1.0
# Chain Configurations
# Configure only the chains you want to use for swaps.
# Core tools work without wallet config, swap tools require private keys.
# Base Network
BASE_RPC_URL=https://mainnet.base.org
BASE_PRIVATE_KEY=0x...
# Scroll Network
SCROLL_RPC_URL=https://rpc.scroll.io
SCROLL_PRIVATE_KEY=0x...
# Starknet
STARKNET_RPC_URL=https://starknet-mainnet.public.blastapi.io
STARKNET_PRIVATE_KEY=0x...
STARKNET_PUBLIC_KEY=0x...
# DEVELOPMENT CONFIGURATION
# Enable debug logging
DEBUG=false
# Log level (error, warn, info, debug)
LOG_LEVEL=info
# Enable performance monitoring
ENABLE_METRICS=false