-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.sample
More file actions
73 lines (58 loc) · 2.43 KB
/
env.sample
File metadata and controls
73 lines (58 loc) · 2.43 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
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
68
69
70
71
# QWAMI Token Environment Configuration
# Copy this file to .env and fill in your values
# ========================================
# Solana Network Configuration
# ========================================
# Options: "devnet", "testnet", "mainnet-beta"
NUXT_PUBLIC_SOLANA_NETWORK=devnet
# RPC Endpoint (use your own for production)
# Devnet: https://api.devnet.solana.com
# Mainnet: https://api.mainnet-beta.solana.com
NUXT_PUBLIC_SOLANA_RPC_ENDPOINT=https://api.devnet.solana.com
# ========================================
# QWAMI Token Program Configuration
# ========================================
# Program ID from Anchor deployment
# IMPORTANT: Update after deploying to devnet/mainnet
NUXT_PUBLIC_QWAMI_TOKEN_PROGRAM_ID=PLACEHOLDER_PROGRAM_ID
# Token Mint Address
# IMPORTANT: Update after initializing the token
NUXT_PUBLIC_QWAMI_TOKEN_MINT=PLACEHOLDER_MINT_ADDRESS
# Token Authority Public Key
# IMPORTANT: Update after initializing the token
NUXT_PUBLIC_QWAMI_TOKEN_AUTHORITY=PLACEHOLDER_AUTHORITY_PUBKEY
# ========================================
# Server-Side Configuration (Private Keys)
# ========================================
# WARNING: NEVER commit this to version control!
# This is the base58-encoded private key for server-side minting
NUXT_QWAMI_AUTHORITY_PRIVATE_KEY=PLACEHOLDER_BASE58_PRIVATE_KEY
# ========================================
# Token Economics
# ========================================
# Base price in USD cents (100 = $1.00, 1 = $0.01)
NUXT_PUBLIC_QWAMI_BASE_PRICE_CENTS=1
# SOL to USD price (for conversion)
# Update periodically or use a price oracle
NUXT_PUBLIC_SOL_USD_PRICE=150
# ========================================
# Feature Flags
# ========================================
# Enable devnet simulation mode (allows testing without deployed contract)
NUXT_PUBLIC_DEVNET_SIMULATION=true
# Enable staking features (coming in Q1 2025)
NUXT_PUBLIC_STAKING_ENABLED=false
# Enable DAO governance (coming in Q2 2025)
NUXT_PUBLIC_DAO_ENABLED=false
# ========================================
# External Links
# ========================================
NUXT_PUBLIC_KWAMI_WEBSITE=https://kwami.io
NUXT_PUBLIC_CANDY_WEBSITE=https://candy.kwami.io
NUXT_PUBLIC_MARKET_WEBSITE=https://market.kwami.io
NUXT_PUBLIC_GITHUB_URL=https://github.com/alexcolls/kwami
# ========================================
# Analytics & Monitoring (Optional)
# ========================================
# NUXT_PUBLIC_GOOGLE_ANALYTICS_ID=
# NUXT_PUBLIC_SENTRY_DSN=