-
Notifications
You must be signed in to change notification settings - Fork 7
/
.env.mint.example
29 lines (25 loc) · 972 Bytes
/
.env.mint.example
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
# Bump this number to generate new active keyset and deactivate previous one
DERIVATION_PATH_IDX=0
# fee to charge per input (in parts per thousand)
INPUT_FEE_PPK=100
# mint info
MINT_NAME="a cashu mint"
MINT_DESCRIPTION="short mint description"
MINT_DESCRIPTION_LONG="a long description of the mint"
MINT_CONTACT_INFO=[["email", "[email protected]"], ["nostr", "npub..."]]
MINT_MOTD="message to the users of the mint"
MINT_ICON_URL="https://<mint>/icon.jpeg"
MINT_URLS=["https://<mint>", "https://<mint2>"]
# mint limits (these are optional but recommended to use)
# max balance (in sats). Minting new ecash will be disabled if this balance is reached
MAX_BALANCE=1000000
# max mint amount (in sats)
MINTING_MAX_AMOUNT=50000
# max melt amount (in sats)
MELTING_MAX_AMOUNT=50000
# Lightning Backend - Lnd, FakeBackend (FOR TESTING ONLY)
LIGHTNING_BACKEND="Lnd"
# LND
LND_GRPC_HOST="127.0.0.1:10001"
LND_CERT_PATH="/path/to/tls/cert"
LND_MACAROON_PATH="/path/to/macaroon"