-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
39 lines (30 loc) · 1.03 KB
/
.env.example
File metadata and controls
39 lines (30 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Global Configuration
NODE_ENV=development
PROJECT_NAME=cosmosswap-fusion
# Network Configuration
ETHEREUM_CHAIN_ID=11155111
COSMOS_CHAIN_ID=cosmoshub-4
# Contract Addresses (update after deployment)
ETHEREUM_CONTRACT_ADDRESS=
COSMOS_CONTRACT_ADDRESS=
# RPC URLs (replace with your actual URLs)
ETHEREUM_RPC_URL=https://eth-sepolia.g.alchemy.com/v2/YOUR_API_KEY
COSMOS_RPC_URL=https://rpc-cosmoshub.cosmos-apis.com
# Deployment Keys (NEVER commit real keys)
ETHEREUM_PRIVATE_KEY=your_ethereum_private_key_here
COSMOS_MNEMONIC=your cosmos mnemonic phrase here
# API Keys
ETHERSCAN_API_KEY=your_etherscan_api_key
ALCHEMY_API_KEY=your_alchemy_api_key
# Security
JWT_SECRET=your_super_secure_jwt_secret_here
ENCRYPTION_KEY=your_32_character_encryption_key
# External Services
MONGODB_URI=mongodb://localhost:27017/cosmosswap
REDIS_URL=redis://localhost:6379
# Monitoring & Alerts
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK
EMAIL_SERVICE_API_KEY=your_email_service_api_key
# Development
DEBUG=cosmosswap:*
LOG_LEVEL=debug