-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
32 lines (24 loc) · 886 Bytes
/
.env.example
File metadata and controls
32 lines (24 loc) · 886 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
32
# Base URL of aelfscan API
AELFSCAN_API_BASE_URL=https://aelfscan.io
# Default chain id for requests when chainId is omitted.
# Use empty string for multi-chain scope.
AELFSCAN_DEFAULT_CHAIN_ID=
# HTTP timeout in milliseconds
AELFSCAN_TIMEOUT_MS=10000
# Retry count for transient request failures
AELFSCAN_RETRY=1
# Retry backoff base milliseconds and max milliseconds (exponential + jitter)
AELFSCAN_RETRY_BASE_MS=200
AELFSCAN_RETRY_MAX_MS=3000
# HTTP client concurrency limit
AELFSCAN_MAX_CONCURRENT_REQUESTS=5
# Default in-memory cache TTL for statistics GET requests (milliseconds)
AELFSCAN_CACHE_TTL_MS=60000
# Maximum in-memory cache entries before FIFO eviction
AELFSCAN_CACHE_MAX_ENTRIES=500
# Pagination maxResultCount upper bound
AELFSCAN_MAX_RESULT_COUNT=200
# MCP output controls
AELFSCAN_MCP_MAX_ITEMS=50
AELFSCAN_MCP_MAX_CHARS=60000
AELFSCAN_MCP_INCLUDE_RAW=false