-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
29 lines (22 loc) · 1.05 KB
/
.env.example
File metadata and controls
29 lines (22 loc) · 1.05 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
# TipStream Root Environment Variables
# Copy this file to .env and fill in real values.
#
# These variables are used by scripts/test-contract.cjs and any future
# deployment automation. The .env file is listed in .gitignore.
# Deployer / sender mnemonic (24-word BIP-39 phrase).
# Keep this in a password manager; paste here only when deploying.
MNEMONIC="<YOUR DEPLOYER MNEMONIC HERE>"
# Recipient address for test-contract.cjs (required).
# Must be a valid SP... mainnet address and different from the sender.
RECIPIENT="<SP ADDRESS OF TEST RECIPIENT>"
# Tip amount in microSTX (default: 1000, minimum: 1000 = 0.001 STX)
AMOUNT=1000
# Tip message attached to the on-chain transaction (default: "On-chain test tip")
MESSAGE=On-chain test tip
# Set to 1 to build the transaction without broadcasting.
# Useful for verifying post-conditions and transaction size.
DRY_RUN=0
# Network override for the frontend build (mainnet | testnet | devnet).
VITE_NETWORK=mainnet
# Application URL used for social sharing metadata.
VITE_APP_URL=https://tipstream-silk.vercel.app