-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
55 lines (49 loc) · 1.27 KB
/
config.toml
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
# version details
[version]
name = "tangle-analyzer-alpha-v0.1.0"
service = "Tangle Analyzer"
# logger settings
[logger]
level = "INFO" # INFO, DEBUG, ERROR, WARNING, CRITICAL
# zmq settings
[zmq]
enable = false # true or false
node_ip = "tcp://zmq.iota.org:5556"
topic = "trytes"
# dmp file settings
[dmp]
enable = true # true or false
input_folder = "dmp" # The historical dmp files from https://dbfiles.iota.org/?prefix=mainnet/history/
output_folder = "decoded_data"
# filter settings
# Note: blank list represents `no filtering` to the target field.
# If a filter is set, then only transactions meet the filter conidtion will be reserved
[filters]
addresses = []
bundle = []
tag = []
transactions = []
# Setting for rlse:
# 'R' for start < time < end
# 'm' for time > start
# 'M' for time < end
# 'E' for time = start
# 'RE' for start <= time <= end
# 'mE' for time >= start
# 'ME' for time <= end
[[filters.time]]
start = "20090101"
end = "20200706"
rlse = 'RE'
# Setting for rlsq:
# 'R' for min < value < max
# 'm' for value > min
# 'M' for value < max
# 'E' for value = min
# 'RE' for min <= value <= max
# 'mE' for value >= min
# 'ME' for value <= max
[[filters.value]]
min = 0
max = 100
rlse = 'RE'