-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
98 lines (83 loc) · 2.45 KB
/
.env.example
File metadata and controls
98 lines (83 loc) · 2.45 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Falconer Environment Configuration Example
# Copy this file to .env and update the values for your environment
# Environment
ENV=dev
# Bitcoin Knots Configuration
BITCOIND_SCHEME=http
BITCOIND_HOST_LOCAL=127.0.0.1
BITCOIND_HOST_IP=127.0.0.1
BITCOIND_PORT=8332
BITCOIND_RPC_USER=bitcoin
BITCOIND_RPC_PASS=
# Electrs Configuration
ELECTRS_SCHEME=http
ELECTRS_HOST_LOCAL=127.0.0.1
ELECTRS_HOST_IP=127.0.0.1
ELECTRS_PORT=3002
# LNbits Configuration
LNBITS_SCHEME=http
LNBITS_HOST_LOCAL=127.0.0.1
LNBITS_HOST_IP=127.0.0.1
LNBITS_PORT=5000
LNBITS_API_KEY=
LNBITS_WALLET_ID=
# Policy Configuration
POLICY_PATH=policy/dev.policy.json
# Spending Limits
MAX_DAILY_SPEND_SATS=100000
MAX_SINGLE_TX_SATS=50000
ALLOWED_DESTINATIONS=
# AI Configuration (vLLM, OpenAI-compatible API)
VLLM_MODEL=llama3.1:8b
VLLM_BASE_URL=http://localhost:8000/v1
AI_RISK_TOLERANCE=medium
AI_CONFIDENCE_THRESHOLD=0.6
AI_DECISION_INTERVAL_MINUTES=5
# Funding Proposal Configuration
# Enable/disable funding proposal generation when balance is low
FUNDING_PROPOSAL_ENABLED=false
# Balance threshold below which proposals are generated (in satoshis)
FUNDING_PROPOSAL_THRESHOLD_SATS=50000
# Default amount to request in proposals (in satoshis)
FUNDING_PROPOSAL_DEFAULT_AMOUNT_SATS=500000
# Maximum number of pending proposals allowed
FUNDING_PROPOSAL_MAX_PENDING=3
# Hours after which pending proposals expire
FUNDING_PROPOSAL_EXPIRY_HOURS=24
# n8n Integration Configuration
# Webhook URL for sending funding proposals to n8n workflows
N8N_WEBHOOK_URL=
# Optional authentication token for n8n webhook
N8N_WEBHOOK_AUTH_TOKEN=
# Secret key for webhook signature verification
N8N_WEBHOOK_SECRET=
# Timeout for n8n webhook requests (seconds)
N8N_WEBHOOK_TIMEOUT_SECONDS=30
# Webhook Server Configuration
# Enable/disable the webhook server for receiving approvals
WEBHOOK_SERVER_ENABLED=true
# Host address for the webhook server (bind to loopback by default)
WEBHOOK_SERVER_HOST=127.0.0.1
# Port for the webhook server
WEBHOOK_SERVER_PORT=8080
# Enable auto-reload for development
WEBHOOK_SERVER_RELOAD=false
# Wallet Configuration
CHANGE_ADDRESS=
# Logging Configuration
LOG_LEVEL=INFO
LOG_FILE=
# Mempool Configuration (for mempool adapter)
MEMPOOL_MODE=auto
MEMPOOL_LAN_SCHEME=http
MEMPOOL_LAN_HOST_LOCAL=
MEMPOOL_LAN_PORT=
MEMPOOL_TOR_URL=
TOR_SOCKS_URL=
# Ollama AI Configuration
OLLAMA_MODEL=llama3.1:8b
OLLAMA_HOST=http://localhost:11434
# OpenClaw Integration (PoC)
OPENCLAW_ENABLED=false
OPENCLAW_API_KEY=
OPENCLAW_WEBHOOK_URL=