-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.default.jsonc
52 lines (46 loc) · 1.28 KB
/
config.default.jsonc
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
{
/**
* The airdrop executer's secret passphrase. Create separate ADM account for the executer.
* Executer's ADM address will correspond this passPhrase.
*/
"passphrase": "apple banana...",
/**
* The file to read addresses from.
* Supported file formats: .txt, .csv, .json
* .json file should have property "list" with array of addresses
*/
"inputFile": "examples/example.list.csv",
/**
* Output path for list of addresses that bot couldn't send ADM to
*/
"outputPath": "output",
/**
* List of nodes to execute transactions.
* If one become unavailable, app will choose live one.
*/
"nodes": [
"https://bid.adamant.im",
"http://localhost:36666",
"https://endless.adamant.im",
"https://clown.adamant.im",
"https://unusual.adamant.im",
"https://debate.adamant.im",
"http://23.226.231.225:36666",
"http://78.47.205.206:36666",
"https://lake.adamant.im",
"https://sunshine.adamant.im"
],
/**
* The app will use verbosity according to logLevel.
* It can be none < error < warn < info < log.
*/
"logLevel": "log",
/**
* Amount in ADM to send for each airdrop transaction
*/
"amount": 1,
/**
* When set to true, skips duplicate addresses read from input file
*/
"skipDuplicates": true
}