forked from input-output-hk/nami
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (37 loc) · 2.17 KB
/
.env.example
File metadata and controls
45 lines (37 loc) · 2.17 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
# Copy to `.env` in the repo root (gitignored) and fill in your own values.
# Integration tests load `.env` automatically when you run `npm run test:integration`.
# -----------------------------------------------------------------------------
# Mnemonic format (BIP-39)
# -----------------------------------------------------------------------------
# • Space-separated English words only (same as any Cardano wallet backup).
# • NOT CSV, NOT commas, NOT newlines inside the phrase.
# • Typically 12, 15, or 24 words; lowercase is fine.
# • Always wrap the entire phrase in double quotes so spaces are one value.
#
# Good:
# LUCEM_INTEGRATION_PREVIEW_MNEMONIC="<paste your full recovery phrase here as one quoted string>"
# Bad:
# LUCEM_INTEGRATION_PREVIEW_MNEMONIC=witch,collapse,practice,...
# LUCEM_INTEGRATION_PREVIEW_MNEMONIC=witch collapse (extra spaces between words are OK; unquoted breaks at first space)
# -----------------------------------------------------------------------------
# Integration tests run on Preview + Preprod.
# Fund account 0 (CIP-1852) with plain tADA (ADA-only UTxOs) on both networks.
LUCEM_INTEGRATION_PREVIEW_MNEMONIC=""
LUCEM_INTEGRATION_PREPROD_MNEMONIC=""
# Optional Koios Bearer for Preview (public tier may work without it).
KOIOS_API_KEY_PREVIEW=
# Optional Koios Bearer for Preprod (public tier may work without it).
KOIOS_API_KEY_PREPROD=
# Blockfrost project id per network (from https://blockfrost.io — not the Koios Bearer token).
# Required for governance voting page to load CIP-108 proposal text via Blockfrost metadata APIs.
# BLOCKFROST_MAINNET_PROJECT_ID=
# BLOCKFROST_PREPROD_PROJECT_ID=
# BLOCKFROST_PREVIEW_PROJECT_ID=
# (also supported: BLOCKFROST_PROJECT_ID_MAINNET / _PREPROD / _PREVIEW)
# Midnight Preview indexer (separate Blockfrost project at https://blockfrost.io → Midnight).
# Optional; wallet shows live Midnight tip on the dashboard when set.
# BLOCKFROST_MIDNIGHT_PROJECT_ID_PREVIEW=
# Optional: lovelace to send from account 0 -> account 1 (default 5000000 = 5 tADA).
# LUCEM_INTEGRATION_SEND_LOVELACE=5000000
# After submit, poll Koios /tx_status until the tx is visible (slower; default off).
# LUCEM_INTEGRATION_POLL_TX=1