-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (30 loc) · 1.71 KB
/
.env.example
File metadata and controls
40 lines (30 loc) · 1.71 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
# ══════════════════════════════════════════════════
# VortexSpin — Configuration
# ══════════════════════════════════════════════════
# Copy this file to .env and fill in your values.
# NEVER commit your .env file to version control.
# ══════════════════════════════════════════════════
# ── Stake Authentication ─────────────────────────
# Your Stake.com access token (required)
STAKE_ACCESS_TOKEN=
# Your Stake.com lockdown token (if applicable)
STAKE_LOCKDOWN_TOKEN=
# Your Stake.com cookie string (required)
STAKE_COOKIE=
# ── Betting Configuration ────────────────────────
# Currency to bet with (e.g. usdc, btc, eth, ltc, doge, trx)
BET_CURRENCY=usdc
# Base bet amount (the starting bet)
BET_BASE_AMOUNT=0.001
# Maximum bet amount before resetting (loss limit)
BET_MAX_AMOUNT=4
# Color to bet on: colorRed, colorBlack, colorGreen
BET_COLOR=colorRed
# ── Timing ───────────────────────────────────────
# Delay between bets in milliseconds
BET_DELAY_MS=1000
# Delay after a win before next round in milliseconds
WIN_DELAY_MS=1000
# ── Strategy ─────────────────────────────────────
# Multiplier applied to bet after a loss (2 = classic Martingale)
LOSS_MULTIPLIER=2