-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (36 loc) · 1.16 KB
/
.env.example
File metadata and controls
45 lines (36 loc) · 1.16 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
# Pump.fun Bot environment configuration
#
# Notes:
# - You can run the service with *only* env vars (no `config.yaml` required).
# - `RPC_URLS` is preferred (comma/space separated). `RPC_URL` is also supported.
# Solana RPC
RPC_URLS="https://api.mainnet-beta.solana.com"
# RPC_URL="https://api.mainnet-beta.solana.com"
# Pump.fun Program ID (optional)
PUMP_PROGRAM_ID="6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P"
# Telegram
TELEGRAM_BOT_TOKEN="1234567890:ABCDEF_your_bot_token"
# TELEGRAM_CHAT_ID="0"
# Database (PostgreSQL)
DATABASE_URL="postgres://user:password@host:5432/dbname?sslmode=disable"
# Monitor
POLL_INTERVAL="2"
# Free tier delay (seconds). Set to 0 for no delay.
FREE_DELAY_SECONDS="5"
# API server
API_ENABLED="true"
API_PORT="8080"
# Payment (optional)
PAYMENT_WALLET_ADDRESS=""
PAYMENT_PRO_MONTHLY_SOL="0.5"
PAYMENT_PRO_YEARLY_SOL="5"
PAYMENT_VIP_MONTHLY_SOL="1.5"
PAYMENT_VIP_YEARLY_SOL="15"
# Filter (optional)
FILTER_ENABLED="true"
FILTER_ENABLE_SOCIAL="true"
FILTER_ENABLE_KEYWORD="true"
FILTER_ENABLE_DEV_BALANCE="false"
FILTER_BLACKLIST_KEYWORDS="test,dev,pump,drop,faucet,scam,rug,fake,elon,musk"
FILTER_MIN_DEV_BALANCE="0.5"
FILTER_WHITELIST_CREATORS=""