forked from crypDuck/minilaunch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.default.env
67 lines (52 loc) · 2.23 KB
/
.default.env
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
# MiniLaunch Default Configuration
# ================================
# This file contains the default configuration for the MiniLaunch script.
# Users MUST create a .env file in the same directory to override the API_KEY value.
# ============================================================================
# MANDATORY SETTINGS
# ============================================================================
# You MUST set this value in your .env file
# Get your API key from https://etherscan.io/apis
API_KEY=""
# ============================================================================
# CONFIGURABLE SETTINGS
# ============================================================================
# Ethereum Contract addresses
OPR_DIST_CONTRACT_ADDR=0x102809fe582ecaa527bb316dcc4e99fc35fbabb9
SUPERNODE_ACC_ADDR=0x2a906f92b0378bb19a3619e2751b1e0b8cab6b29
# Bond amount for newly created minipools in wei (10^-18)
BOND_SIZE=8000000000000000000
# Etherscan API URL
# The base URL for Etherscan API requests
API_URL="https://api.etherscan.io"
# Salt File Path
# The path to the file containing salt values
SALT_FILE="salts.txt"
# Default Gas Ramp Time (hours)
# The default duration for which the gas price will gradually increase
GAS_RAMP_TIME=24
# Default Starting Gas Limit (gwei)
# The initial gas price threshold for executing transactions
START_GAS=5.1
# Default Ending Gas Limit (gwei)
# The final gas price threshold (if using a sliding scale). Leave empty for no end limit.
END_GAS=""
# Default Priority Fee (gwei)
# The priority fee to use when submitting transactions
PRIO_FEE=0.08
# Default Sleep Time (seconds)
# The time to wait between gas price checks
SLEEP_TIME=5
# Minimum Pool Size (ETH)
# The minimum amount of ETH that should be in the contract before executing transactions
MIN_POOL_SIZE=24
# Gas Margin
# Factor to multiply the current gas price by to increase likelihood of transaction execution
GAS_MARGIN=1.11
# Never Exit Mode
# Set to 1 to keep the script running indefinitely, even after successful minipool creation
NEVER_EXIT=0
# Discord webhook to notify to
# No notifications will be sent if this value is empty
DISCORD_WEBHOOK="YOUR_WEBHOOK_URL"
# See https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks for more info