Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion frontend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
NEXT_PUBLIC_NETWORK=TESTNET

# Soroban RPC endpoint used for transaction simulation and submission.
NEXT_PUBLIC_SOROBAN_RPC_URL=https://your-soroban-rpc.example.com
NEXT_PUBLIC_SOROBAN_RPC_URL=https://soroban-testnet.stellar.org

# Stellar network passphrase used when signing transactions.
NEXT_PUBLIC_STELLAR_NETWORK_PASSPHRASE="Test SDF Network ; September 2015"
Expand All @@ -25,3 +25,22 @@ NEXT_PUBLIC_MARKETPLACE_CONTRACT_ID=CCXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

# Token contract ID for the in-app payment/reward asset.
NEXT_PUBLIC_TOKEN_CONTRACT_ID=CCXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX05

# Horizon URL for account and transaction queries.
NEXT_PUBLIC_HORIZON_URL=https://horizon-testnet.stellar.org

# Transaction tunables.
NEXT_PUBLIC_TX_TIMEOUT=30
NEXT_PUBLIC_BASE_FEE=100

# Points-to-AMT conversion threshold (points per 1 AMT).
NEXT_PUBLIC_POINTS_PER_AMT=1000

# Leaderboard pagination limit.
NEXT_PUBLIC_LEADERBOARD_LIMIT=50

# Polling interval when waiting for a transaction to complete (ms).
NEXT_PUBLIC_POLL_INTERVAL_MS=1000

# Tick interval used by the accrual counter (ms).
NEXT_PUBLIC_COUNTER_TICK_MS=1000