-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
55 lines (42 loc) · 1.75 KB
/
.env.example
File metadata and controls
55 lines (42 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# VELO Backend Environment Variables
# Database
DATABASE_URL=postgresql://user:password@localhost:5432/velo_db
# JWT
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
JWT_EXPIRES_IN=7d
JWT_REFRESH_EXPIRES_IN=30d
# Email Service
EMAIL_SERVICE=gmail
EMAIL_USER=your-email@gmail.com
EMAIL_PASSWORD=your-app-password
# ===================================
# VELO TREASURY WALLETS (FEE COLLECTION)
# ===================================
# These wallets receive all transaction fees
# Replace with your actual VELO treasury addresses
# Ethereum Treasury Wallets
VELO_TREASURY_ETH_MAINNET=0xYourEthereumMainnetTreasuryAddress
VELO_TREASURY_ETH_SEPOLIA=0xYourEthereumSepoliaTreasuryAddress
# Bitcoin Treasury Wallets
VELO_TREASURY_BTC_MAINNET=YourBitcoinMainnetTreasuryAddress
VELO_TREASURY_BTC_TESTNET=YourBitcoinTestnetTreasuryAddress
# Starknet Treasury Wallets
VELO_TREASURY_STRK_MAINNET=0xYourStarknetMainnetTreasuryAddress
VELO_TREASURY_STRK_TESTNET=0xYourStarknetSepoliaTreasuryAddress
# Solana Treasury Wallets
VELO_TREASURY_SOL_MAINNET=YourSolanaMainnetTreasuryAddress
VELO_TREASURY_SOL_TESTNET=YourSolanaTestnetTreasuryAddress
# Stellar Treasury Wallets
VELO_TREASURY_XLM_MAINNET=GYourStellarMainnetTreasuryAddress
VELO_TREASURY_XLM_TESTNET=GYourStellarTestnetTreasuryAddress
# Polkadot Treasury Wallets
VELO_TREASURY_DOT_MAINNET=1YourPolkadotMainnetTreasuryAddress
VELO_TREASURY_DOT_TESTNET=1YourPolkadotTestnetTreasuryAddress
# RPC Endpoints (optional overrides)
ETH_MAINNET_RPC=https://eth-mainnet.alchemyapi.io/v2/your-api-key
ETH_SEPOLIA_RPC=https://eth-sepolia.alchemyapi.io/v2/your-api-key
STARKNET_MAINNET_RPC=https://starknet-mainnet.public.blastapi.io
STARKNET_SEPOLIA_RPC=https://starknet-sepolia.public.blastapi.io
# Server
PORT=5500
NODE_ENV=development