Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions yieldswarm/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Production Environment Configuration
# Copy this file to .env and fill in your values

# Ethereum RPC URL (get from Infura, Alchemy, or other provider)
ETHEREUM_RPC_URL=https://mainnet.infura.io/v3/YOUR_PROJECT_ID

# Solana RPC URL (you can use public endpoints for basic functionality)
SOLANA_RPC_URL=https://api.mainnet-beta.solana.com

# Optional: Private keys for automated execution (USE WITH EXTREME CAUTION)
# PRIVATE_KEY_ETHEREUM=your_ethereum_private_key_here
# PRIVATE_KEY_SOLANA=your_solana_private_key_here

# Flask Configuration
FLASK_ENV=production
FLASK_SECRET_KEY=your_secret_key_here

# API Keys (optional, for enhanced features)
# COINGECKO_API_KEY=your_coingecko_api_key
# DEFILLAMA_API_KEY=your_defillama_api_key
Loading