forked from bakaxbaka/CryptoAutoPilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (32 loc) · 1.29 KB
/
.env.example
File metadata and controls
41 lines (32 loc) · 1.29 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
# Bitcoin Vulnerability Scanner Configuration
# Copy this file to .env and customize as needed
# API Configuration
BLOCKSTREAM_API=https://blockstream.info/api
REQUEST_TIMEOUT=15
MAX_RETRIES=3
RATE_LIMIT_DELAY=0.1
# Blockchain Explorer URLs
# You can customize these URLs to use different blockchain explorers
BLOCKCHAIN_COM_TX_URL=https://www.blockchain.com/explorer/transactions/btc/
BLOCKCHAIN_COM_ADDRESS_URL=https://www.blockchain.com/explorer/addresses/btc/
BLOCKCHAIN_COM_BLOCK_URL=https://www.blockchain.com/explorer/blocks/btc/
BLOCKSTREAM_INFO_TX_URL=https://blockstream.info/tx/
BLOCKSTREAM_INFO_ADDRESS_URL=https://blockstream.info/address/
BLOCKSTREAM_INFO_BLOCK_URL=https://blockstream.info/block/
MEMPOOL_SPACE_TX_URL=https://mempool.space/tx/
MEMPOOL_SPACE_ADDRESS_URL=https://mempool.space/address/
MEMPOOL_SPACE_BLOCK_URL=https://mempool.space/block/
# Default explorer to use (blockstream.info, blockchain.com, or mempool.space)
DEFAULT_EXPLORER=blockstream.info
# Application Configuration
MAX_CONCURRENT_ANALYSIS=4
ANALYSIS_TIMEOUT=30
AUTOPLOT_DELAY=1.0
# Database Configuration
DATABASE_URL=sqlite:///bitcoin_vulnerabilities.db
# Flask Configuration
SECRET_KEY=your-secret-key-here-change-in-production
FLASK_ENV=development
# Logging Configuration
LOG_LEVEL=INFO
LOG_FILE=bitcoin_scanner.log