-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (40 loc) · 1.97 KB
/
Copy path.env.example
File metadata and controls
52 lines (40 loc) · 1.97 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
# StellarForge Environment Configuration
# Copy this file to .env and fill in your values:
# cp .env.example .env
#
# .env is listed in .gitignore — never commit real keys or secrets.
# ── Network ───────────────────────────────────────────────────────────────────
# Target network: testnet | mainnet | local
STELLAR_NETWORK=testnet
# Soroban RPC endpoint for the target network
# Testnet: https://soroban-testnet.stellar.org
# Mainnet: https://soroban.stellar.org
STELLAR_RPC_URL=https://soroban-testnet.stellar.org
# Network passphrase (must match STELLAR_NETWORK)
# Testnet: Test SDF Network ; September 2015
# Mainnet: Public Global Stellar Network ; September 2015
STELLAR_NETWORK_PASSPHRASE="Test SDF Network ; September 2015"
# ── Identity ──────────────────────────────────────────────────────────────────
# Name of the Stellar CLI identity to use for signing transactions
# Create one with: stellar keys generate <name> --network testnet --fund
STELLAR_IDENTITY=alice
# ── Deployed Contract Addresses ───────────────────────────────────────────────
# Populate these after deploying with: stellar contract deploy ...
FORGE_VESTING_CONTRACT_ID=
FORGE_VESTING_FACTORY_CONTRACT_ID=
FORGE_STREAM_CONTRACT_ID=
FORGE_MULTISIG_CONTRACT_ID=
FORGE_GOVERNOR_CONTRACT_ID=
FORGE_ORACLE_CONTRACT_ID=
# Stellar / Soroban Configuration
# Network
STELLAR_NETWORK=testnet
STELLAR_RPC_URL=https://soroban-testnet.stellar.org
# Identity (used with `stellar keys`)
STELLAR_IDENTITY=default
# Optional: frequently used contract IDs
FORGE_ORACLE_CONTRACT_ID=
FORGE_STREAM_CONTRACT_ID=
FORGE_VESTING_CONTRACT_ID=
# Logging
RUST_LOG=info