You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add mapping sources file
* Create get active source info helper functions
* Move get_output_row, write_csv_output to helper
* Remove clustering flag and computed it based on config sources
* Description comment in get_circulation_from_entries
* Add helper function to compute entity clusters when using multiple sources
* Update README
* Update documentation
* Disable exclude_below_usd_cent config flag by default
* Disable plot config flag by default
* Refactor mapping process
* Refactor analyzing process
* Refactor db_helper
* Remove schema.py
* Remove old helper functions to get force map balances and analyze flag
* Refactor tests
* README typo
* Change tau computation to return only index
* Add helper function to get tau from param string
* Exclude contract addrs from entries if flag is set
* Change entries object to list of ints instead of tuples
* Add test for excluding contracts flag
* Add small testcase
Copy file name to clipboardExpand all lines: config.yaml
+6-5
Original file line number
Diff line number
Diff line change
@@ -23,17 +23,18 @@ ledgers:
23
23
# Execution flags
24
24
execution_flags:
25
25
force_map_addresses: false
26
-
force_map_balances: false
27
-
force_analyze: false
28
26
29
27
# Analyze flags
30
28
analyze_flags:
31
-
clustering: true
29
+
clustering_sources:
30
+
- "Explorers"
31
+
- "Staking Keys"
32
+
- "Multi-input transactions"
32
33
top_limit_type: "absolute"# one of two types: "absolute" or "percentage"; if absolute then value should be integer; if percentage then value should be float in [0, 1]
33
34
top_limit_value: 0
34
35
exclude_contract_addresses: false
35
36
exclude_below_fees: false
36
-
exclude_below_usd_cent: true
37
+
exclude_below_usd_cent: false
37
38
38
39
# The snapshots for which an analysis should be performed.
39
40
# Each snapshot is a string of the form YYYY-MM-DD.
0 commit comments