forked from Invoice-Liquidity-Network/ILN-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
48 lines (40 loc) · 1.84 KB
/
Copy path.env.local.example
File metadata and controls
48 lines (40 loc) · 1.84 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
# Environment Variables Template
# Copy this file to .env.local and customize as needed for your environment
#
# NOTE: Variables prefixed with NEXT_PUBLIC_ are exposed to the browser.
# Never put secrets in NEXT_PUBLIC_ variables.
# Stellar Contract Configuration
# Testnet smart contract address for the Invoice Liquidity Network
NEXT_PUBLIC_CONTRACT_ID=CD3TE3IAHM737P236XZL2OYU275ZKD6MN7YH7PYYAXYIGEH55OPEWYJC
# Stellar Network Configuration
# Network passphrase for testnet
NEXT_PUBLIC_NETWORK_PASSPHRASE=Test SDF Network ; September 2015
# RPC endpoint for Stellar testnet
NEXT_PUBLIC_RPC_URL=https://soroban-testnet.stellar.org
# Human-readable network identifier
NEXT_PUBLIC_NETWORK_NAME=TESTNET
# Token Configuration (Testnet)
# USDC token contract address on testnet
NEXT_PUBLIC_TESTNET_USDC_TOKEN_ID=CCW67TSZV3SSS2HXMBQ5JFGCKJNXKZM7UQUWUZPUTHXSTZLEO7SJMI75
# EURC token contract address on testnet
NEXT_PUBLIC_TESTNET_EURC_TOKEN_ID=GDHU6WRG4IEQXM5NZ4BMPKOXHW76MZM4Y2IEMFDVXBSDP6SJY4ITNPP
# Governance Configuration
# Admin address for governance operations
NEXT_PUBLIC_GOVERNANCE_ADMIN_ADDRESS=GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWHF
# ===== CUSTOMIZATION =====
# To connect to a different Stellar network or contract:
#
# For Public Network:
# NEXT_PUBLIC_NETWORK_PASSPHRASE=Public Global Stellar Network ; September 2015
# NEXT_PUBLIC_RPC_URL=https://soroban-mainnet.stellar.org
# NEXT_PUBLIC_NETWORK_NAME=MAINNET
#
# For Local Network (with stellar-cli):
# NEXT_PUBLIC_NETWORK_PASSPHRASE=Stellar Development Foundation Network ; May 2024a
# NEXT_PUBLIC_RPC_URL=http://localhost:8000/soroban/rpc
# NEXT_PUBLIC_NETWORK_NAME=LOCAL
#
# ===== IMPORTANT =====
# - This file should be added to .gitignore (it is by default)
# - Never commit secrets or API keys to version control
# - Testnet configuration is safe to commit as it's not production