-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
50 lines (45 loc) · 1.18 KB
/
requirements.txt
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
46
47
48
49
50
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"MinimumAmountBtc": 0.000005,
"MaximumAmountBtc": 0.1,
"ServiceChargeBtc": 0.3,
"ServiceChargeLnBtc": 0.15,
"GaloyUrl": "https://api.staging.galoy.io/graphql",
"DollarToNairaRate": 760,
"DustValue": 546,
"AllowedHosts": "*",
"SupportEmail": "support_email",
"ConnectionStrings": {
"DefaultConnection": "server=server_name; database=db_name; trusted_connection=true"
},
"ServiceCharge": {
"BtcToBtc": 0.2,
"LnBtcToLnBtc": 0.2,
"FiatToLnBtc": 0.08,
"FiatToBtc": 0.08
},
"MinerFee": {
"BtcToLnBtc": 0.0000002380,
"LnBtcToBtc": 0.0000004074
},
"Bitcoin": {
"URL": "", // Bitcoin url
"username": "", //your own node's username
"password": "", //your own node's password
"wallet": "", // //your wallet name
},
"Lightning": {
"URL": "", // LND URL
"UserMacaroonPath": "", // Macaroon file location
"UserSslCertPath": "", // SSL cert file location
"UserRpcHost": "", // GRPC host url
},
"Paystack": {
"SecretKey": "" // Paystack secret key gotten from Paystack dashboard settings
}
}