forked from Clover-Realm/Clovers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (35 loc) · 1.4 KB
/
Copy path.env.example
File metadata and controls
44 lines (35 loc) · 1.4 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
# -------------------------------------------------------------------
# C-Address Onboarding Bridge — local development environment
# Copy to .env and fill in real values. Never commit .env.
# -------------------------------------------------------------------
# ---- Stellar / Soroban ----
STELLAR_RPC_URL=http://localhost:8000/soroban/rpc
NETWORK_PASSPHRASE=Standalone Network ; February 2017
CONTRACT_ID= # set after deploying locally
# ---- Admin keypair (generate with: stellar keys generate --network local) ----
ADMIN_SECRET_KEY=S...
ADMIN_PUBLIC_KEY=G...
# ---- Fee collector keypair ----
FEE_COLLECTOR_SECRET_KEY=S...
FEE_COLLECTOR_PUBLIC_KEY=G...
# ---- Relayer ----
# Comma-separated list of Ed25519 private key seeds (hex, 32 bytes each)
RELAYER_PRIVATE_KEYS=aabbcc...
# Stellar keypair used to submit Soroban transactions (pays fees)
RELAYER_SECRET_KEY=S...
THRESHOLD=1
# ---- Database ----
DATABASE_URL=postgres://bridge:bridge@localhost:5432/bridge
# ---- Redis ----
REDIS_URL=redis://localhost:6379
# ---- Ethereum listener (optional) ----
ETH_RPC_URL=https://mainnet.infura.io/v3/YOUR_KEY
ETH_BRIDGE_CONTRACT=0x...
# keccak256("BridgeFund(bytes32,string,string,uint256)")
ETH_EVENT_TOPIC=0x...
# ---- Solana listener (optional) ----
SOLANA_WS_URL=wss://api.mainnet-beta.solana.com
SOLANA_PROGRAM_ID=...
# ---- On-ramp integrations (optional) ----
MOONPAY_API_KEY=
TRANSAK_API_KEY=