-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (32 loc) · 2.17 KB
/
Copy path.env.example
File metadata and controls
42 lines (32 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
# ─── Hedera ───────────────────────────────────────────────────────────────────
# Network: testnet | mainnet | previewnet
HEDERA_NETWORK=testnet
# Operator account ID from https://portal.hedera.com/
HEDERA_OPERATOR_ID=0.0.XXXXXXX
# DER-encoded operator private key (from Hedera portal)
HEDERA_OPERATOR_KEY=302e...
# ECDSA hex private key for Hardhat contract deployment (starts with 0x)
HEDERA_ECDSA_KEY=0x...
# Mirror node base URL
HEDERA_MIRROR_NODE_URL=https://testnet.mirrornode.hedera.com
# Hedera JSON-RPC Relay URL (for Hardhat)
HEDERA_RPC_URL=https://testnet.hashio.io/api
# ─── Pinata (IPFS) ────────────────────────────────────────────────────────────
PINATA_JWT=your-pinata-jwt-here
PINATA_GATEWAY=https://your-gateway.mypinata.cloud
# ─── Auth ─────────────────────────────────────────────────────────────────────
JWT_SECRET=change-me-to-a-random-32-char-string
# ─── Email (SMTP) ─────────────────────────────────────────────────────────────
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your-email@gmail.com
SMTP_PASSWORD=your-app-password
# ─── Telegram ─────────────────────────────────────────────────────────────────
TELEGRAM_BOT_TOKEN=your-bot-token
TELEGRAM_WEBHOOK_SECRET=toti-fi-webhook
# ─── Server ───────────────────────────────────────────────────────────────────
PORT=4000
CORS_ORIGIN=http://localhost:4200
NODE_ENV=development
LOG_LEVEL=debug
LOG_FILE=./logs/server.log