forked from arcbtc/fossa
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathconfig.js
70 lines (69 loc) · 1.54 KB
/
config.js
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
export const addressesAndFiles = [
{
address: "0x1000",
fileName: "fossa.ino.bootloader.bin",
},
{
address: "0x8000",
fileName: "fossa.ino.partitions.bin",
},
{
address: "0xE000",
fileName: "boot_app0.bin",
},
{
address: "0x10000",
fileName: "fossa.ino.bin",
},
];
export const configPath = "elements.json";
export const elements = [
{
name: "config_lnurl",
value: "",
label: "Whole LNURLATM string from LNURLDevices extension",
type: "text",
},
{
name: "config_bill_ints",
value: "",
label: "Bill denominations seperated by comma ie: 1,5,10,20,50,100",
type: "text",
},
{
name: "config_coin_floats",
value: "",
label: "Coin floats seperated by comma ie: 0.01,0.02,0.05,0.1,0.5,1 - no more than 6",
type: "text",
},
{
name: "config_charge",
value: "20",
label: "Percentage you will charge for the service ie 10 for 10 percent",
type: "text",
},
{
name: "config_max_amount",
value: "40",
label: "Max amount allowed to be withdrawn in one transaction",
type: "text",
},
{
name: "config_max_amount_reset",
value: "500",
label: "Max amout before the atm stops withdrawals and wait to be emptied",
type: "text",
},
{
name: "config_printer",
value: "false",
label: "Set true if you have a thermal printer connected",
type: "text",
},
{
name: "config_lang",
value: "en",
label: "2 letter language code. Supports en, es, fr, de, it, pt, pl, hu, tr, ro, fi, sv",
type: "text",
}
];