Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
18 changes: 15 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# --- Arbitrum Backend ---
VITE_ARBITRUM_API_URL=http://localhost:3000
# --- Stellar Backend ---
VITE_STELLAR_API_URL=http://localhost:3001
# --- Legacy (used as ARBITRUM fallback) ---
VITE_API_URL=http://localhost:3000
VITE_WALLETCONNECT_PROJECT_ID=""
VITE_USDC_ADDRESS=""
Expand All @@ -7,13 +12,20 @@ VITE_ATTESTATION_REGISTRY=""
VITE_TRUSTED_ISSUERS_REGISTRY=""
VITE_IDENTITY_REGISTRY=""
VITE_TOKEN_FACTORY=""
VITE_MOCK_METH=""
VITE_METH_FAUCET=""
VITE_MOCK_stARB=""
VITE_stARB_FAUCET=""
VITE_MOCK_FLUXION_DEX=""
VITE_FLUXION_INTEGRATION=""
VITE_LEVERAGE_VAULT=""
VITE_FAUCET=""
VITE_SECONDARY_MARKET=""
VITE_OAID=""
VITE_SOLVENCY_VAULT=""
VITE_SENIOR_POOL=""
VITE_SENIOR_POOL=""

# --- Stellar Contracts & Config ---
VITE_STELLAR_PRIMARY_MARKET=""
VITE_STELLAR_YIELD_VAULT_ID=""
VITE_STELLAR_HORIZON_URL="https://horizon-testnet.stellar.org"
VITE_STELLAR_RPC_URL="https://soroban-testnet.stellar.org"
VITE_STELLAR_NETWORK_PASSPHRASE="Test SDF Network ; September 2015"
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr

*.local

# Editor directories and files
Expand All @@ -30,10 +29,11 @@ dist-ssr
# dependencies
/node_modules

/scripts/*
./scripts/

# production
/build
/dist
.DS_Store

# misc
Expand Down
Loading