-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.env.example
More file actions
41 lines (31 loc) · 1017 Bytes
/
Copy path.env.example
File metadata and controls
41 lines (31 loc) · 1017 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
33
34
35
36
37
38
39
40
41
# Solana RPC Endpoint
# Use a reliable RPC provider (e.g., Helius, QuickNode)
RPC_URL=https://api.mainnet-beta.solana.com
# Jito Block Engine Endpoints (comma-separated)
JITO_ENDPOINTS=https://mainnet.block-engine.jito.wtf
# Main Wallet (Creator) - choose one:
# Option 1: Base58-encoded private key
MAIN_PRIVATE_KEY_BASE58=your_main_wallet_base58_key_here
# Option 2: BIP39 mnemonic phrase (12 or 24 words)
# MAIN_MNEMONIC=word1 word2 word3 ... word12
# Buyer Wallets (comma-separated base58 keys)
BUYER_KEYS_BASE58=key1,key2,key3,key4,key5,key6,key7,key8,key9,key10
# Trading Configuration
NUM_BUYERS=10
BUY_AMOUNT_SOL=0.1
MIN_BUY_AMOUNT_SOL=0.05
MAX_BUY_AMOUNT_SOL=0.5
# Token Configuration
TOKEN_NAME=MyMemeCoin
TOKEN_SYMBOL=MEME
METADATA_URI=https://example.com/metadata.json
# Bundle Configuration
BUNDLE_TIP_LAMPORTS=10000
PRIORITY_FEE_MICRO_LAMPORTS=100000
# Transaction Configuration
MAX_COMPUTE_UNITS=1400000
# Execution Mode
DRY_RUN=true
# Rate Limiting
RATE_LIMIT_MS=100
BUNDLE_RETRY_ATTEMPTS=3