forked from veridatum-labs/earnproof-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
66 lines (54 loc) · 3.53 KB
/
Copy path.env.example
File metadata and controls
66 lines (54 loc) · 3.53 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
# EarnProof Backend Configuration
#
# Copy this file to .env and populate with actual values.
# NEVER commit .env with real secrets — use a secrets manager in production.
# ────────────────────────────────────────────────────────────
# CONTRACT ADDRESSES
# ────────────────────────────────────────────────────────────
# From deployment manifest for your target network
# See: scripts/deployment-manifest.testnet.json (example)
PROTOCOL_CONFIG_ID=CC3OREX5QBIKJ5JOW36JFJJW7TLAKJOVT5WJXEITGALO7MU32KHICS2A
ISSUER_REGISTRY_ID=CB73TVWVJIIVNTKLWSHZB5NL2UIF3B3EUL4YH4MUD6EYX6SFIHE77D2F
PROOF_REGISTRY_ID=CCMTAXBWN2ZGEDVKGHT6GQENZSTBSLQAGYGGKJWNMDSTVRT2QNMMNWRK
# ────────────────────────────────────────────────────────────
# NETWORK CONFIGURATION
# ────────────────────────────────────────────────────────────
# Testnet
NETWORK_PASSPHRASE=Test SDF Network ; September 2015
SOROBAN_RPC_URL=https://soroban-testnet.stellar.org:443
# Mainnet (after independent audit review)
# NETWORK_PASSPHRASE=Public Global Stellar Network ; September 2015
# SOROBAN_RPC_URL=https://soroban-mainnet.stellar.org:443
# ────────────────────────────────────────────────────────────
# SIGNING CONFIGURATION
# ────────────────────────────────────────────────────────────
# Stellar secret key for signing transactions
# IMPORTANT: Never commit this file with real keys
# Use a secrets manager in production (AWS Secrets Manager, HashiCorp Vault, etc.)
SIGNER_SECRET_KEY=S...
# Optional: transaction timeout in milliseconds (default: 30000)
SOROBAN_TIMEOUT_MS=30000
# ────────────────────────────────────────────────────────────
# APPLICATION CONFIGURATION
# ────────────────────────────────────────────────────────────
NODE_ENV=development
LOG_LEVEL=debug
# ────────────────────────────────────────────────────────────
# NOTES
# ────────────────────────────────────────────────────────────
#
# Contract addresses:
# - Testnet: From scripts/deployment-manifest.testnet.json
# - Mainnet: Will be populated after mainnet deployment
# - Load from environment, never hardcode
#
# Secret keys:
# - Must start with 'S' (Stellar convention)
# - Must have sufficient balance for transaction fees
# - Should be rotated regularly
# - Never commit to version control
#
# Network passphrases must match exactly:
# - "Test SDF Network ; September 2015" (testnet)
# - "Public Global Stellar Network ; September 2015" (mainnet)
#