-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 1.21 KB
/
Copy path.env.example
File metadata and controls
38 lines (32 loc) · 1.21 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
# Discord Bot Token (required)
# Get from: https://discord.com/developers/applications
DISCORD_TOKEN=
# OpenSea API Token (required for NFT data)
# Get from: https://docs.opensea.io/reference/api-keys
OPENSEA_API_TOKEN=
# Collections Configuration (required)
# Format: address:name:minId:maxId[:chain][:color][:customDescription][:imageUrl]
# Multiple: prefix:address:name:minId:maxId,other:address:name:minId:maxId
# Example: 0x1234...:MyNFT:1:10000:ethereum:#FF0000
COLLECTIONS=
# Random posting intervals (optional)
# Format: CHANNEL_ID=minutes[:prefix]
# Examples:
# 123456789=30 - Post random NFT every 30 min
# 123456789=15:artifact - Post random Artifact every 15 min
# 123456789=20:* - Rotate through all collections every 20 min
# 123456789=30:bot+artifact - Rotate between specific collections
RANDOM_INTERVALS=
# Log level (optional)
# Options: debug, info, warn, error
LOG_LEVEL=info
# State persistence directory (optional)
STATE_DIR=.state
# Legacy single-collection variables (deprecated, use COLLECTIONS instead)
# TOKEN_ADDRESS=0x1234...
# TOKEN_NAME=MyNFT
# CHAIN=ethereum
# MIN_TOKEN_ID=1
# MAX_TOKEN_ID=10000
# EMBED_COLOR=#FF0000
# CUSTOM_DESCRIPTION=My custom description