-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (32 loc) · 2.06 KB
/
.env.example
File metadata and controls
37 lines (32 loc) · 2.06 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
# Yellow Deployment Environment
# Copy to .env and fill in values: cp .env.example .env
# Store in pass: pass insert -m yellow/env < .env
# Load from pass: pass yellow/env > .env
# ── Shared ───────────────────────────────────────────────────────────
NETWORK="sepolia" # "sepolia" or "mainnet"
MNEMONIC="YOUR_MNEMONIC_PHRASE"
ETHERSCAN_API_KEY="YOUR_ETHERSCAN_API_KEY"
SEPOLIA_RPC_URL="https://sepolia.infura.io/v3/YOUR_INFURA_KEY"
MAINNET_RPC_URL="https://mainnet.infura.io/v3/YOUR_INFURA_KEY"
# ── DeployToken ──────────────────────────────────────────────────────
# Mainnet: receives the initial YELLOW supply
# Sepolia: set to deployer address so deployer can fund the faucet
FOUNDATION_ADDRESS="YOUR_FOUNDATION_ADDRESS"
# ── DeployFaucet (sepolia only) ──────────────────────────────────────
TOKEN_ADDRESS=""
DRIP_AMOUNT="1000000000000000000000" # 1000 YELLOW
DRIP_COOLDOWN="86400" # 1 day
# ── DeployTreasury ──────────────────────────────────────────────────
# FOUNDATION_ADDRESS= # same as above
# Deploys 6 treasuries: Founder, Community, Token Sale, Foundation, Network, Liquidity
# ── DeployRegistry ───────────────────────────────────────────────────
# TOKEN_ADDRESS= # same as above
# ADJUDICATOR_ADDRESS=""
# VOTING_DELAY="7200"
# VOTING_PERIOD="50400"
# PROPOSAL_THRESHOLD="10000000000000000000000000"
# QUORUM_NUMERATOR="4"
# QUORUM_FLOOR="100000000000000000000000000"
# NODE_UNLOCK_PERIOD="1209600"
# APP_UNLOCK_PERIOD="1209600"
# TIMELOCK_DELAY="172800"