-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
31 lines (24 loc) · 770 Bytes
/
.env.example
File metadata and controls
31 lines (24 loc) · 770 Bytes
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
# Server Configuration
MCP_SERVER_PORT=3000
MCP_SERVER_HOST=localhost
# Logging Configuration
LOG_LEVEL=info
LOG_FORMAT=json
# Bitcoin Configuration
BITCOIN_RPC_URL=https://blockstream.info/api
BITCOIN_TESTNET_RPC_URL=https://blockstream.info/testnet/api
# Ethereum Configuration
ETHEREUM_RPC_URL=https://ethereum-rpc.publicnode.com
ETHEREUM_TESTNET_RPC_URL=https://ethereum-sepolia-rpc.publicnode.com
# Base Configuration
BASE_RPC_URL=https://mainnet.base.org
BASE_TESTNET_RPC_URL=https://sepolia.base.org
# Optimism Configuration
OPTIMISM_RPC_URL=https://mainnet.optimism.io
OPTIMISM_TESTNET_RPC_URL=https://sepolia.optimism.io
# Security Configuration
RATE_LIMIT_REQUESTS=100
RATE_LIMIT_WINDOW=60000
# Development Configuration
NODE_ENV=development
DEBUG=true