-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path.env.example
More file actions
39 lines (33 loc) · 1.64 KB
/
.env.example
File metadata and controls
39 lines (33 loc) · 1.64 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
# OFAC
export OFAC_COUNTRY_CODES='["<OFAC_COUNTRY_CODE>"]'
export OFAC_REGIONS='["<OFAC_REGION>"]'
# Nx 18 enables using plugins to infer targets by default
# This is disabled for existing workspaces to maintain compatibility
# For more info, see: https://nx.dev/concepts/inferred-tasks
export NX_ADD_PLUGINS=false
export ESLINT_USE_FLAT_CONFIG=false
export VITE_GRAPHQL_ENDPOINT='https://mainnet-gql.tangle.tools/graphql'
# Cloud -> dApp deep-link base URL override (defaults to https://app.tangle.tools/)
export VITE_TANGLE_DAPP_URL='https://app.tangle.tools/'
# Credits claim data (off-chain proofs)
export VITE_CREDITS_TREE_URL='/data/credits-tree.json'
export VITE_CREDITS_TREE_URL_84532=''
export VITE_CREDITS_TREE_URL_8453=''
# Credits contract address overrides (optional)
# You can set a chain-specific address, e.g. VITE_CREDITS_ADDRESS_84532 for Base Sepolia.
export VITE_CREDITS_ADDRESS=''
export VITE_CREDITS_ADDRESS_84532=''
export VITE_CREDITS_ADDRESS_8453=''
# Migration claim (optional for general staking; required to validate /claim/migration end-to-end)
# Contract address (if unset or zero-address, migration claim flow is treated as unconfigured)
export VITE_TANGLE_MIGRATION_ADDRESS=''
# Proof data location (local or hosted JSON)
export VITE_MIGRATION_PROOFS_URL='/data/migration-proofs.json'
# RPC endpoint used by migration claim reads
export VITE_MIGRATION_RPC_URL=''
# Optional claim relayer endpoint (if unset, wallet-signing mode is used)
export VITE_CLAIM_RELAYER_URL=''
# Optional SP1 prover API (for off-chain proof generation)
export VITE_SP1_PROVER_API_URL=''
# Optional dev override for local proof mocking
export VITE_MOCK_PROOF=false