-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (28 loc) · 1.25 KB
/
.env.example
File metadata and controls
40 lines (28 loc) · 1.25 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
# === Database Configuration ===
SPRING_DATASOURCE_PASSWORD=your_database_password
# === Company Wallet Configuration ===
# Cardano wallet address used by your company
COMPANY_WALLET_ADDRESS=addr1...
# Company signing key (keep this secret and never commit your real key!)
COMPANY_SKEY=ed25519_sk...
# === Blockfrost API ===
# Your Blockfrost project ID for Cardano network access
BLOCKFROST_PROJECT_ID=your_blockfrost_project_id
BLOCKFROST_BASE_URL=https://cardano-preprod.blockfrost.io/api/v0
# === Script Paths ===
# Path to the ADA sending script
BATCH_SCRIPT_PATH=/absolute/path/to/scripts/send-ada.js
# Path to the ADA wallet sending script
BATCH_WALLET_PATH=/absolute/path/to/scripts/send-wallet-ada.js
# Path to the ADA wallet build script
BATCH_BUILD_WALLET_PATH=/absolute/path/to/scripts/build-wallet-ada.js
# === Kuber API Configuration ===
# Kuber API URL (use the correct network endpoint)
KUBER_API_URL=https://preprod.kuber.cardanoapi.io
# Backend Cardano network (mainnet|preprod|preview)
NETWORK=preprod
# Your Kuber API key (keep this secret!)
KUBER_API_KEY=your_kuber_api_key (https://kuberide.com/kuber/settings/api-keys)
# === Backend API Configuration ===
# The base URL for your backend server
NEXT_PUBLIC_API_BASE_URL=http://localhost:8080