-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json.example
More file actions
26 lines (24 loc) · 1.07 KB
/
config.json.example
File metadata and controls
26 lines (24 loc) · 1.07 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
{
"domain": "bridgelet.clink-playground.dev",
"port": 3000,
"aliases": {
"alice": {
"clink_offer": "alice_offer_string_noffer1...", // Required for payments
// Optional: For NIP-05 identity (alice@your-domain.com) and NIP-57 Zap Receipts (pubkey for Zap Receipts is derived from clink_offer for LNURL Zaps)
"nostrPubkey": "alice_public_key_hex",
"relays": ["wss://relay.yourdomain.com", "wss://relay2.yourdomain.com"], // Optional: Relays for NIP-05 discovery for this alias.
// Optional: For NIP-05 discovery of a CLINK Debit string
"clink_debit": "alice_ndebit1..."
},
"bob": {
"clink_offer": "bob_noffer...",
"nostrPubkey": "bob_public_key_hex" // Bob's NIP-05 identity
// Bob has an Offer for LNURL and key for NIP-05, but no specific relays or Debit discovery configured.
},
"carol": {
// Carol is set up only for receiving LNURL payments via a CLINK Offer.
"clink_offer": "carol_noffer..."
// No NIP-05 identity or Zap configuration for Carol via bridgelet directly.
}
}
}