dao-treasury 0.0.56__cp312-cp312-macosx_11_0_arm64.whl → 0.0.58__cp312-cp312-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dao-treasury might be problematic. Click here for more details.
- dao_treasury/.grafana/provisioning/dashboards/breakdowns/Expenses.json +31 -12
- dao_treasury/.grafana/provisioning/dashboards/breakdowns/Revenue.json +32 -13
- dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json +12 -2
- dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json +9 -2
- dao_treasury/.grafana/provisioning/dashboards/treasury/Current Treasury Assets.json +91 -15
- dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json +7 -2
- dao_treasury/_docker.cpython-312-darwin.so +0 -0
- dao_treasury/_nicknames.cpython-312-darwin.so +0 -0
- dao_treasury/_wallet.cpython-312-darwin.so +0 -0
- dao_treasury/constants.cpython-312-darwin.so +0 -0
- dao_treasury/main.py +2 -2
- dao_treasury/sorting/__init__.cpython-312-darwin.so +0 -0
- dao_treasury/sorting/_matchers.cpython-312-darwin.so +0 -0
- dao_treasury/sorting/_rules.cpython-312-darwin.so +0 -0
- dao_treasury/sorting/factory.cpython-312-darwin.so +0 -0
- dao_treasury/sorting/rule.cpython-312-darwin.so +0 -0
- dao_treasury/sorting/rules/__init__.cpython-312-darwin.so +0 -0
- dao_treasury/sorting/rules/ignore/__init__.cpython-312-darwin.so +0 -0
- dao_treasury/sorting/rules/ignore/llamapay.cpython-312-darwin.so +0 -0
- dao_treasury/streams/__init__.cpython-312-darwin.so +0 -0
- dao_treasury/streams/llamapay.cpython-312-darwin.so +0 -0
- dao_treasury/types.cpython-312-darwin.so +0 -0
- {dao_treasury-0.0.56.dist-info → dao_treasury-0.0.58.dist-info}/METADATA +2 -1
- {dao_treasury-0.0.56.dist-info → dao_treasury-0.0.58.dist-info}/RECORD +27 -27
- dao_treasury-0.0.58.dist-info/top_level.txt +2 -0
- bf2b4fe1f86ad2ea158b__mypyc.cpython-312-darwin.so → dao_treasury__mypyc.cpython-312-darwin.so +0 -0
- dao_treasury-0.0.56.dist-info/top_level.txt +0 -2
- {dao_treasury-0.0.56.dist-info → dao_treasury-0.0.58.dist-info}/WHEEL +0 -0
|
@@ -74,9 +74,9 @@
|
|
|
74
74
|
"targets": [
|
|
75
75
|
{
|
|
76
76
|
"datasource": "SQLite",
|
|
77
|
-
"queryText": "SELECT SUM(t.value_usd) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
77
|
+
"queryText": "SELECT SUM(t.value_usd) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups g USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup')",
|
|
78
78
|
"queryType": "table",
|
|
79
|
-
"rawQueryText": "SELECT SUM(t.value_usd) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
79
|
+
"rawQueryText": "SELECT SUM(t.value_usd) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups g USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup')",
|
|
80
80
|
"refId": "A",
|
|
81
81
|
"timeColumns": [
|
|
82
82
|
"time",
|
|
@@ -139,9 +139,9 @@
|
|
|
139
139
|
"targets": [
|
|
140
140
|
{
|
|
141
141
|
"datasource": "SQLite",
|
|
142
|
-
"queryText": "SELECT SUM(t.value_usd) / (((1760217520685 - 1744406320685) / 1000.0 / 60 / 60 / 24 / 30.436875)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= 1744406320685/1000 AND t.timestamp <= 1760217520685/1000",
|
|
142
|
+
"queryText": "SELECT SUM(t.value_usd) / (((1760217520685 - 1744406320685) / 1000.0 / 60 / 60 / 24 / 30.436875)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups g USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= 1744406320685/1000 AND t.timestamp <= 1760217520685/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup')",
|
|
143
143
|
"queryType": "table",
|
|
144
|
-
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 30.436875)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
144
|
+
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 30.436875)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups g USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup')",
|
|
145
145
|
"refId": "A",
|
|
146
146
|
"timeColumns": [
|
|
147
147
|
"time",
|
|
@@ -204,9 +204,9 @@
|
|
|
204
204
|
"targets": [
|
|
205
205
|
{
|
|
206
206
|
"datasource": "SQLite",
|
|
207
|
-
"queryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 7)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
207
|
+
"queryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 7)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups g USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup')",
|
|
208
208
|
"queryType": "table",
|
|
209
|
-
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 7)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
209
|
+
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 7)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups g USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup')",
|
|
210
210
|
"refId": "A",
|
|
211
211
|
"timeColumns": [
|
|
212
212
|
"time",
|
|
@@ -269,9 +269,9 @@
|
|
|
269
269
|
"targets": [
|
|
270
270
|
{
|
|
271
271
|
"datasource": "SQLite",
|
|
272
|
-
"queryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
272
|
+
"queryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups g USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup')",
|
|
273
273
|
"queryType": "table",
|
|
274
|
-
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
274
|
+
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups g USING (txgroup_id) WHERE gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup')",
|
|
275
275
|
"refId": "A",
|
|
276
276
|
"timeColumns": [
|
|
277
277
|
"time",
|
|
@@ -389,9 +389,9 @@
|
|
|
389
389
|
"targets": [
|
|
390
390
|
{
|
|
391
391
|
"datasource": "SQLite",
|
|
392
|
-
"queryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') THEN t.value_usd ELSE 0 END) AS \"Total Expenses\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 GROUP BY timestamp ORDER BY timestamp;",
|
|
392
|
+
"queryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') THEN t.value_usd ELSE 0 END) AS \"Total Expenses\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id INNER JOIN txgroups g USING (txgroup_id) WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup') GROUP BY timestamp ORDER BY timestamp;",
|
|
393
393
|
"queryType": "table",
|
|
394
|
-
"rawQueryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') THEN t.value_usd ELSE 0 END) AS \"Total Expenses\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 GROUP BY timestamp ORDER BY timestamp;",
|
|
394
|
+
"rawQueryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Cost of Revenue', 'Expenses', 'Other Expense') THEN t.value_usd ELSE 0 END) AS \"Total Expenses\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id INNER JOIN txgroups g USING (txgroup_id) WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup') GROUP BY timestamp ORDER BY timestamp;",
|
|
395
395
|
"refId": "A",
|
|
396
396
|
"timeColumns": [
|
|
397
397
|
"timestamp"
|
|
@@ -494,7 +494,25 @@
|
|
|
494
494
|
"schemaVersion": 42,
|
|
495
495
|
"tags": [],
|
|
496
496
|
"templating": {
|
|
497
|
-
"list": [
|
|
497
|
+
"list": [
|
|
498
|
+
{
|
|
499
|
+
"allowCustomValue": true,
|
|
500
|
+
"current": {
|
|
501
|
+
"text": "All",
|
|
502
|
+
"value": "$__all"
|
|
503
|
+
},
|
|
504
|
+
"definition": "SELECT DISTINCT t.name FROM treasury_txs a INNER JOIN txgroup_hierarchy gh ON a.txgroup_id = gh.txgroup_id LEFT JOIN txgroups t ON gh.txgroup_id = t.txgroup_id where gh.top_category = 'Revenue' or gh.top_category = 'Other Income';",
|
|
505
|
+
"description": "",
|
|
506
|
+
"includeAll": true,
|
|
507
|
+
"name": "Txgroup",
|
|
508
|
+
"options": [],
|
|
509
|
+
"query": "SELECT DISTINCT t.name FROM treasury_txs a INNER JOIN txgroup_hierarchy gh ON a.txgroup_id = gh.txgroup_id LEFT JOIN txgroups t ON gh.txgroup_id = t.txgroup_id where gh.top_category = 'Revenue' or gh.top_category = 'Other Income';",
|
|
510
|
+
"refresh": 2,
|
|
511
|
+
"regex": "",
|
|
512
|
+
"sort": 5,
|
|
513
|
+
"type": "query"
|
|
514
|
+
}
|
|
515
|
+
]
|
|
498
516
|
},
|
|
499
517
|
"time": {
|
|
500
518
|
"from": "now-6M",
|
|
@@ -503,5 +521,6 @@
|
|
|
503
521
|
"timepicker": {},
|
|
504
522
|
"timezone": "",
|
|
505
523
|
"title": "Expenses Over Time",
|
|
506
|
-
"
|
|
524
|
+
"uid": "62bccd38-918c-4395-9180-8f7f911e9ddf",
|
|
525
|
+
"version": 2
|
|
507
526
|
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"editable": true,
|
|
20
20
|
"fiscalYearStartMonth": 0,
|
|
21
21
|
"graphTooltip": 1,
|
|
22
|
-
"id":
|
|
22
|
+
"id": 15,
|
|
23
23
|
"links": [],
|
|
24
24
|
"panels": [
|
|
25
25
|
{
|
|
@@ -74,9 +74,9 @@
|
|
|
74
74
|
"targets": [
|
|
75
75
|
{
|
|
76
76
|
"datasource": "SQLite",
|
|
77
|
-
"queryText": "SELECT SUM(t.value_usd) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
77
|
+
"queryText": "SELECT SUM(t.value_usd) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups t USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or t.name = '$Txgroup')",
|
|
78
78
|
"queryType": "table",
|
|
79
|
-
"rawQueryText": "SELECT SUM(t.value_usd) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
79
|
+
"rawQueryText": "SELECT SUM(t.value_usd) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) inner join txgroups t USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or t.name = '$Txgroup')",
|
|
80
80
|
"refId": "A",
|
|
81
81
|
"timeColumns": [
|
|
82
82
|
"time",
|
|
@@ -139,9 +139,9 @@
|
|
|
139
139
|
"targets": [
|
|
140
140
|
{
|
|
141
141
|
"datasource": "SQLite",
|
|
142
|
-
"queryText": "SELECT SUM(t.value_usd) / (((
|
|
142
|
+
"queryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 30.436875)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) INNER JOIN txgroups t USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or t.name = '$Txgroup')",
|
|
143
143
|
"queryType": "table",
|
|
144
|
-
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 30.436875)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
144
|
+
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 30.436875)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) INNER JOIN txgroups t USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or t.name = '$Txgroup')",
|
|
145
145
|
"refId": "A",
|
|
146
146
|
"timeColumns": [
|
|
147
147
|
"time",
|
|
@@ -204,9 +204,9 @@
|
|
|
204
204
|
"targets": [
|
|
205
205
|
{
|
|
206
206
|
"datasource": "SQLite",
|
|
207
|
-
"queryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 7)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
207
|
+
"queryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 7)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) INNER JOIN txgroups t USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or t.name = '$Txgroup')",
|
|
208
208
|
"queryType": "table",
|
|
209
|
-
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 7)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
209
|
+
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24 / 7)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) INNER JOIN txgroups t USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or t.name = '$Txgroup')",
|
|
210
210
|
"refId": "A",
|
|
211
211
|
"timeColumns": [
|
|
212
212
|
"time",
|
|
@@ -269,9 +269,9 @@
|
|
|
269
269
|
"targets": [
|
|
270
270
|
{
|
|
271
271
|
"datasource": "SQLite",
|
|
272
|
-
"queryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
272
|
+
"queryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) INNER JOIN txgroups t USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or t.name = '$Txgroup')",
|
|
273
273
|
"queryType": "table",
|
|
274
|
-
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000",
|
|
274
|
+
"rawQueryText": "SELECT SUM(t.value_usd) / ((($__to - $__from) / 1000.0 / 60 / 60 / 24)) AS total_revenue FROM general_ledger t JOIN txgroup_hierarchy gh USING (txgroup_id) INNER JOIN txgroups t USING (txgroup_id) WHERE gh.top_category = 'Revenue' AND t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or t.name = '$Txgroup')",
|
|
275
275
|
"refId": "A",
|
|
276
276
|
"timeColumns": [
|
|
277
277
|
"time",
|
|
@@ -389,9 +389,9 @@
|
|
|
389
389
|
"targets": [
|
|
390
390
|
{
|
|
391
391
|
"datasource": "SQLite",
|
|
392
|
-
"queryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income') THEN t.value_usd ELSE 0 END) AS \"Total Revenue\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 GROUP BY timestamp ORDER BY timestamp;",
|
|
392
|
+
"queryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income') THEN t.value_usd ELSE 0 END) AS \"Total Revenue\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id INNER JOIN txgroups g USING (txgroup_id) WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup') GROUP BY timestamp ORDER BY timestamp;",
|
|
393
393
|
"queryType": "table",
|
|
394
|
-
"rawQueryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income') THEN t.value_usd ELSE 0 END) AS \"Total Revenue\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 GROUP BY timestamp ORDER BY timestamp;",
|
|
394
|
+
"rawQueryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income') THEN t.value_usd ELSE 0 END) AS \"Total Revenue\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id INNER JOIN txgroups g USING (txgroup_id) WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 AND ('$Txgroup' like '{%' or g.name = '$Txgroup') GROUP BY timestamp ORDER BY timestamp;",
|
|
395
395
|
"refId": "A",
|
|
396
396
|
"timeColumns": [
|
|
397
397
|
"timestamp"
|
|
@@ -494,7 +494,25 @@
|
|
|
494
494
|
"schemaVersion": 42,
|
|
495
495
|
"tags": [],
|
|
496
496
|
"templating": {
|
|
497
|
-
"list": [
|
|
497
|
+
"list": [
|
|
498
|
+
{
|
|
499
|
+
"allowCustomValue": true,
|
|
500
|
+
"current": {
|
|
501
|
+
"text": "All",
|
|
502
|
+
"value": "$__all"
|
|
503
|
+
},
|
|
504
|
+
"definition": "SELECT DISTINCT t.name FROM treasury_txs a INNER JOIN txgroup_hierarchy gh ON a.txgroup_id = gh.txgroup_id LEFT JOIN txgroups t ON gh.txgroup_id = t.txgroup_id where gh.top_category = 'Revenue' or gh.top_category = 'Other Income';",
|
|
505
|
+
"description": "",
|
|
506
|
+
"includeAll": true,
|
|
507
|
+
"name": "Txgroup",
|
|
508
|
+
"options": [],
|
|
509
|
+
"query": "SELECT DISTINCT t.name FROM treasury_txs a INNER JOIN txgroup_hierarchy gh ON a.txgroup_id = gh.txgroup_id LEFT JOIN txgroups t ON gh.txgroup_id = t.txgroup_id where gh.top_category = 'Revenue' or gh.top_category = 'Other Income';",
|
|
510
|
+
"refresh": 2,
|
|
511
|
+
"regex": "",
|
|
512
|
+
"sort": 5,
|
|
513
|
+
"type": "query"
|
|
514
|
+
}
|
|
515
|
+
]
|
|
498
516
|
},
|
|
499
517
|
"time": {
|
|
500
518
|
"from": "now-6M",
|
|
@@ -503,5 +521,6 @@
|
|
|
503
521
|
"timepicker": {},
|
|
504
522
|
"timezone": "",
|
|
505
523
|
"title": "Revenue Over Time",
|
|
506
|
-
"
|
|
524
|
+
"uid": "5284bb56-b9fb-4f36-b971-eb125bfdac7d",
|
|
525
|
+
"version": 2
|
|
507
526
|
}
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
{
|
|
25
25
|
"datasource": "SQLite",
|
|
26
26
|
"fieldConfig": {
|
|
27
|
+
"unit": "currencyUSD",
|
|
27
28
|
"defaults": {
|
|
28
29
|
"color": {
|
|
29
30
|
"mode": "thresholds"
|
|
@@ -89,6 +90,7 @@
|
|
|
89
90
|
{
|
|
90
91
|
"datasource": "SQLite",
|
|
91
92
|
"fieldConfig": {
|
|
93
|
+
"unit": "currencyUSD",
|
|
92
94
|
"defaults": {
|
|
93
95
|
"color": {
|
|
94
96
|
"mode": "thresholds"
|
|
@@ -154,6 +156,7 @@
|
|
|
154
156
|
{
|
|
155
157
|
"datasource": "SQLite",
|
|
156
158
|
"fieldConfig": {
|
|
159
|
+
"unit": "currencyUSD",
|
|
157
160
|
"defaults": {
|
|
158
161
|
"color": {
|
|
159
162
|
"mode": "thresholds"
|
|
@@ -219,6 +222,7 @@
|
|
|
219
222
|
{
|
|
220
223
|
"datasource": "SQLite",
|
|
221
224
|
"fieldConfig": {
|
|
225
|
+
"unit": "currencyUSD",
|
|
222
226
|
"defaults": {
|
|
223
227
|
"color": {
|
|
224
228
|
"mode": "thresholds"
|
|
@@ -284,6 +288,7 @@
|
|
|
284
288
|
{
|
|
285
289
|
"datasource": "SQLite",
|
|
286
290
|
"fieldConfig": {
|
|
291
|
+
"unit": "currencyUSD",
|
|
287
292
|
"defaults": {
|
|
288
293
|
"color": {
|
|
289
294
|
"mode": "thresholds"
|
|
@@ -350,6 +355,7 @@
|
|
|
350
355
|
"datasource": "SQLite",
|
|
351
356
|
"description": "",
|
|
352
357
|
"fieldConfig": {
|
|
358
|
+
"unit": "currencyUSD",
|
|
353
359
|
"defaults": {
|
|
354
360
|
"color": {
|
|
355
361
|
"mode": "thresholds"
|
|
@@ -416,6 +422,7 @@
|
|
|
416
422
|
"datasource": "SQLite",
|
|
417
423
|
"description": "",
|
|
418
424
|
"fieldConfig": {
|
|
425
|
+
"unit": "currencyUSD",
|
|
419
426
|
"defaults": {
|
|
420
427
|
"color": {
|
|
421
428
|
"mode": "palette-classic"
|
|
@@ -651,6 +658,7 @@
|
|
|
651
658
|
"datasource": "SQLite",
|
|
652
659
|
"description": "",
|
|
653
660
|
"fieldConfig": {
|
|
661
|
+
"unit": "currencyUSD",
|
|
654
662
|
"defaults": {
|
|
655
663
|
"color": {
|
|
656
664
|
"mode": "thresholds"
|
|
@@ -717,6 +725,7 @@
|
|
|
717
725
|
"datasource": "SQLite",
|
|
718
726
|
"description": "",
|
|
719
727
|
"fieldConfig": {
|
|
728
|
+
"unit": "currencyUSD",
|
|
720
729
|
"defaults": {
|
|
721
730
|
"color": {
|
|
722
731
|
"mode": "thresholds"
|
|
@@ -783,6 +792,7 @@
|
|
|
783
792
|
"datasource": "SQLite",
|
|
784
793
|
"description": "",
|
|
785
794
|
"fieldConfig": {
|
|
795
|
+
"unit": "currencyUSD",
|
|
786
796
|
"defaults": {
|
|
787
797
|
"color": {
|
|
788
798
|
"mode": "thresholds"
|
|
@@ -862,5 +872,5 @@
|
|
|
862
872
|
"title": "Total Cashflow Summary (Including Unsorted)",
|
|
863
873
|
"description": "Offers a complete picture of all DAO cashflows, including both sorted and unsorted transactions. This dashboard is ideal for tracking transactions still pending categorization and understanding their impact on overall cashflow.",
|
|
864
874
|
"uid": "2b6e7c1d-8f4a-4e3b-9b2a-1c7d8e9f0a2b",
|
|
865
|
-
"version":
|
|
866
|
-
}
|
|
875
|
+
"version": 5
|
|
876
|
+
}
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
{
|
|
25
25
|
"datasource": "SQLite",
|
|
26
26
|
"fieldConfig": {
|
|
27
|
+
"unit": "currencyUSD",
|
|
27
28
|
"defaults": {
|
|
28
29
|
"color": {
|
|
29
30
|
"mode": "thresholds"
|
|
@@ -89,6 +90,7 @@
|
|
|
89
90
|
{
|
|
90
91
|
"datasource": "SQLite",
|
|
91
92
|
"fieldConfig": {
|
|
93
|
+
"unit": "currencyUSD",
|
|
92
94
|
"defaults": {
|
|
93
95
|
"color": {
|
|
94
96
|
"mode": "thresholds"
|
|
@@ -154,6 +156,7 @@
|
|
|
154
156
|
{
|
|
155
157
|
"datasource": "SQLite",
|
|
156
158
|
"fieldConfig": {
|
|
159
|
+
"unit": "currencyUSD",
|
|
157
160
|
"defaults": {
|
|
158
161
|
"color": {
|
|
159
162
|
"mode": "thresholds"
|
|
@@ -219,6 +222,7 @@
|
|
|
219
222
|
{
|
|
220
223
|
"datasource": "SQLite",
|
|
221
224
|
"fieldConfig": {
|
|
225
|
+
"unit": "currencyUSD",
|
|
222
226
|
"defaults": {
|
|
223
227
|
"color": {
|
|
224
228
|
"mode": "thresholds"
|
|
@@ -284,6 +288,7 @@
|
|
|
284
288
|
{
|
|
285
289
|
"datasource": "SQLite",
|
|
286
290
|
"fieldConfig": {
|
|
291
|
+
"unit": "currencyUSD",
|
|
287
292
|
"defaults": {
|
|
288
293
|
"color": {
|
|
289
294
|
"mode": "thresholds"
|
|
@@ -350,6 +355,7 @@
|
|
|
350
355
|
"datasource": "SQLite",
|
|
351
356
|
"description": "",
|
|
352
357
|
"fieldConfig": {
|
|
358
|
+
"unit": "currencyUSD",
|
|
353
359
|
"defaults": {
|
|
354
360
|
"color": {
|
|
355
361
|
"mode": "thresholds"
|
|
@@ -416,6 +422,7 @@
|
|
|
416
422
|
"datasource": "SQLite",
|
|
417
423
|
"description": "",
|
|
418
424
|
"fieldConfig": {
|
|
425
|
+
"unit": "currencyUSD",
|
|
419
426
|
"defaults": {
|
|
420
427
|
"color": {
|
|
421
428
|
"mode": "palette-classic"
|
|
@@ -634,5 +641,5 @@
|
|
|
634
641
|
"title": "Total Cashflow Summary",
|
|
635
642
|
"description": "Shows all sorted cashflows, including Revenue, Cost of Revenue, Expenses, Other Income, and Other Expense, but omits transactions pending categorization. Useful for analyzing the DAO's complete sorted financial flows.",
|
|
636
643
|
"uid": "7e2b1c8a-4e2d-4b7a-9c1a-2f8e6b7d9c3f",
|
|
637
|
-
"version":
|
|
638
|
-
}
|
|
644
|
+
"version": 5
|
|
645
|
+
}
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
{
|
|
76
76
|
"datasource": "PROMETHEUS",
|
|
77
77
|
"editorMode": "code",
|
|
78
|
-
"expr": "sum(treasury_assets{param=\"usd value\"}<500_000_000)",
|
|
78
|
+
"expr": "sum(treasury_assets{param=\"usd value\"}<500_000_000) by (bucket, token)",
|
|
79
79
|
"format": "table",
|
|
80
80
|
"instant": false,
|
|
81
81
|
"legendFormat": "__auto",
|
|
@@ -83,15 +83,53 @@
|
|
|
83
83
|
"refId": "A"
|
|
84
84
|
}
|
|
85
85
|
],
|
|
86
|
-
"title": "Total
|
|
86
|
+
"title": "Total Assets",
|
|
87
87
|
"transformations": [
|
|
88
|
+
{
|
|
89
|
+
"id": "groupBy",
|
|
90
|
+
"options": {
|
|
91
|
+
"fields": {
|
|
92
|
+
"Time": {
|
|
93
|
+
"aggregations": [
|
|
94
|
+
"last"
|
|
95
|
+
],
|
|
96
|
+
"operation": "aggregate"
|
|
97
|
+
},
|
|
98
|
+
"Value": {
|
|
99
|
+
"aggregations": [
|
|
100
|
+
"last"
|
|
101
|
+
],
|
|
102
|
+
"operation": "aggregate"
|
|
103
|
+
},
|
|
104
|
+
"bucket": {
|
|
105
|
+
"aggregations": [],
|
|
106
|
+
"operation": "groupby"
|
|
107
|
+
},
|
|
108
|
+
"token": {
|
|
109
|
+
"aggregations": [],
|
|
110
|
+
"operation": "groupby"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "filterFieldsByName",
|
|
117
|
+
"options": {
|
|
118
|
+
"include": {
|
|
119
|
+
"names": [
|
|
120
|
+
"Value (last)",
|
|
121
|
+
"Time (last)"
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
88
126
|
{
|
|
89
127
|
"id": "reduce",
|
|
90
128
|
"options": {
|
|
91
129
|
"includeTimeField": false,
|
|
92
130
|
"mode": "reduceFields",
|
|
93
131
|
"reducers": [
|
|
94
|
-
"
|
|
132
|
+
"sum"
|
|
95
133
|
]
|
|
96
134
|
}
|
|
97
135
|
}
|
|
@@ -240,7 +278,7 @@
|
|
|
240
278
|
"sortBy": [
|
|
241
279
|
{
|
|
242
280
|
"desc": true,
|
|
243
|
-
"displayName": "
|
|
281
|
+
"displayName": "Current Balance"
|
|
244
282
|
}
|
|
245
283
|
]
|
|
246
284
|
},
|
|
@@ -250,7 +288,7 @@
|
|
|
250
288
|
"datasource": "PROMETHEUS",
|
|
251
289
|
"editorMode": "code",
|
|
252
290
|
"exemplar": false,
|
|
253
|
-
"expr": "sum(treasury_assets{param=\"usd value\"}<500_000_000) by (bucket)",
|
|
291
|
+
"expr": "sum(treasury_assets{param=\"usd value\"}<500_000_000) by (token, bucket)",
|
|
254
292
|
"format": "table",
|
|
255
293
|
"instant": false,
|
|
256
294
|
"interval": "",
|
|
@@ -323,20 +361,58 @@
|
|
|
323
361
|
}
|
|
324
362
|
}
|
|
325
363
|
},
|
|
364
|
+
{
|
|
365
|
+
"id": "groupBy",
|
|
366
|
+
"options": {
|
|
367
|
+
"fields": {
|
|
368
|
+
"Bucket": {
|
|
369
|
+
"aggregations": [],
|
|
370
|
+
"operation": "groupby"
|
|
371
|
+
},
|
|
372
|
+
"Last Known Value USD": {
|
|
373
|
+
"aggregations": [
|
|
374
|
+
"sum"
|
|
375
|
+
],
|
|
376
|
+
"operation": "aggregate"
|
|
377
|
+
},
|
|
378
|
+
"Last Seen": {
|
|
379
|
+
"aggregations": [
|
|
380
|
+
"min"
|
|
381
|
+
],
|
|
382
|
+
"operation": "aggregate"
|
|
383
|
+
},
|
|
384
|
+
"Time (last)": {
|
|
385
|
+
"aggregations": [
|
|
386
|
+
"min"
|
|
387
|
+
],
|
|
388
|
+
"operation": "aggregate"
|
|
389
|
+
},
|
|
390
|
+
"Value (last)": {
|
|
391
|
+
"aggregations": [
|
|
392
|
+
"sum"
|
|
393
|
+
],
|
|
394
|
+
"operation": "aggregate"
|
|
395
|
+
},
|
|
396
|
+
"bucket": {
|
|
397
|
+
"aggregations": [],
|
|
398
|
+
"operation": "groupby"
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
},
|
|
326
403
|
{
|
|
327
404
|
"id": "organize",
|
|
328
405
|
"options": {
|
|
329
406
|
"excludeByName": {},
|
|
330
407
|
"includeByName": {},
|
|
331
408
|
"indexByName": {
|
|
332
|
-
"Time (last)":
|
|
333
|
-
"Value (last)":
|
|
334
|
-
"bucket": 0
|
|
335
|
-
"token": 1
|
|
409
|
+
"Time (last) (min)": 2,
|
|
410
|
+
"Value (last) (sum)": 1,
|
|
411
|
+
"bucket": 0
|
|
336
412
|
},
|
|
337
413
|
"renameByName": {
|
|
338
|
-
"Time (last)": "Last Seen",
|
|
339
|
-
"Value (last)": "Last Known Value USD",
|
|
414
|
+
"Time (last) (min)": "Last Seen",
|
|
415
|
+
"Value (last) (sum)": "Last Known Value USD",
|
|
340
416
|
"bucket": "Bucket",
|
|
341
417
|
"token": "Token"
|
|
342
418
|
}
|
|
@@ -422,7 +498,7 @@
|
|
|
422
498
|
"refId": "B"
|
|
423
499
|
}
|
|
424
500
|
],
|
|
425
|
-
"title": "Asset Breakdown",
|
|
501
|
+
"title": "Current Asset Breakdown",
|
|
426
502
|
"transformations": [
|
|
427
503
|
{
|
|
428
504
|
"id": "groupBy",
|
|
@@ -506,12 +582,12 @@
|
|
|
506
582
|
"list": []
|
|
507
583
|
},
|
|
508
584
|
"time": {
|
|
509
|
-
"from": "now-
|
|
585
|
+
"from": "now-2d",
|
|
510
586
|
"to": "now"
|
|
511
587
|
},
|
|
512
588
|
"timepicker": {},
|
|
513
589
|
"timezone": "browser",
|
|
514
|
-
"title": "Current
|
|
590
|
+
"title": "Current Assets",
|
|
515
591
|
"uid": "ad47zqk",
|
|
516
|
-
"version":
|
|
592
|
+
"version": 2
|
|
517
593
|
}
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
{
|
|
25
25
|
"datasource": "SQLite",
|
|
26
26
|
"fieldConfig": {
|
|
27
|
+
"unit": "currencyUSD",
|
|
27
28
|
"defaults": {
|
|
28
29
|
"color": {
|
|
29
30
|
"mode": "thresholds"
|
|
@@ -89,6 +90,7 @@
|
|
|
89
90
|
{
|
|
90
91
|
"datasource": "SQLite",
|
|
91
92
|
"fieldConfig": {
|
|
93
|
+
"unit": "currencyUSD",
|
|
92
94
|
"defaults": {
|
|
93
95
|
"color": {
|
|
94
96
|
"mode": "thresholds"
|
|
@@ -154,6 +156,7 @@
|
|
|
154
156
|
{
|
|
155
157
|
"datasource": "SQLite",
|
|
156
158
|
"fieldConfig": {
|
|
159
|
+
"unit": "currencyUSD",
|
|
157
160
|
"defaults": {
|
|
158
161
|
"color": {
|
|
159
162
|
"mode": "thresholds"
|
|
@@ -220,6 +223,7 @@
|
|
|
220
223
|
"datasource": "SQLite",
|
|
221
224
|
"description": "",
|
|
222
225
|
"fieldConfig": {
|
|
226
|
+
"unit": "currencyUSD",
|
|
223
227
|
"defaults": {
|
|
224
228
|
"color": {
|
|
225
229
|
"mode": "thresholds"
|
|
@@ -286,6 +290,7 @@
|
|
|
286
290
|
"datasource": "SQLite",
|
|
287
291
|
"description": "",
|
|
288
292
|
"fieldConfig": {
|
|
293
|
+
"unit": "currencyUSD",
|
|
289
294
|
"defaults": {
|
|
290
295
|
"color": {
|
|
291
296
|
"mode": "palette-classic"
|
|
@@ -504,5 +509,5 @@
|
|
|
504
509
|
"title": "Operating Cashflow Summary",
|
|
505
510
|
"description": "Provides a focused view of core operational cashflows, including only sorted transactions in Revenue, Cost of Revenue, and Expenses categories. Excludes unsorted transactions and non-operational activity, helping monitor specifically the DAO's operational financial flows.",
|
|
506
511
|
"uid": "fdf9969c-357a-4203-ae7b-12816e87bc7e",
|
|
507
|
-
"version":
|
|
508
|
-
}
|
|
512
|
+
"version": 5
|
|
513
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
dao_treasury/main.py
CHANGED
|
@@ -100,8 +100,8 @@ parser.add_argument(
|
|
|
100
100
|
parser.add_argument(
|
|
101
101
|
"--concurrency",
|
|
102
102
|
type=int,
|
|
103
|
-
help="The max number of historical blocks to export concurrently. default:
|
|
104
|
-
default=
|
|
103
|
+
help="The max number of historical blocks to export concurrently. default: 30",
|
|
104
|
+
default=30,
|
|
105
105
|
)
|
|
106
106
|
parser.add_argument(
|
|
107
107
|
"--daemon",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dao_treasury
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.58
|
|
4
4
|
Summary: Produce comprehensive financial reports for your on-chain org
|
|
5
5
|
Classifier: Development Status :: 3 - Alpha
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -66,6 +66,7 @@ poetry run dao-treasury run --wallet 0x123 --network mainnet --interval 12h
|
|
|
66
66
|
**CLI Options:**
|
|
67
67
|
- `--network`: The id of the brownie network the exporter will connect to (default: mainnet)
|
|
68
68
|
- `--interval`: The time interval between each data snapshot (default: 12h)
|
|
69
|
+
- `--concurrency`: The max number of historical blocks to export concurrently. (default: 30)
|
|
69
70
|
- `--daemon`: Run the export process in the background (default: False) (NOTE: currently unsupported)
|
|
70
71
|
- `--grafana-port`: Set the port for the Grafana dashboard where you can view data (default: 3004)
|
|
71
72
|
- `--renderer-port`: Set the port for the report rendering service (default: 8091)
|
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
|
|
1
|
+
dao_treasury__mypyc.cpython-312-darwin.so,sha256=xQsqVrf1myY56xWaRmuJiSlcrJyc5juOWNsIdLvn7N0,1248920
|
|
2
2
|
dao_treasury/_wallet.py,sha256=epV8LVuwHlOzc9UkA66js7HfEiZBOSAGJMtWbDTzmjU,10462
|
|
3
3
|
dao_treasury/db.py,sha256=wJi8-Zh2EO0F4A2ZabSt1ftcUTY6eCfF3FaChpjsTmg,48824
|
|
4
4
|
dao_treasury/docker-compose.yaml,sha256=0epL6OjrW8cIwtqWerzB5c1Y_txLwvGMuHWUTIGtlsA,1309
|
|
5
5
|
dao_treasury/ENVIRONMENT_VARIABLES.py,sha256=LEczR1MSWTY00sLHnFs3j_Jm8WZNJCxjwEzrvjbwl2E,636
|
|
6
|
-
dao_treasury/constants.cpython-312-darwin.so,sha256=
|
|
7
|
-
dao_treasury/_docker.cpython-312-darwin.so,sha256=
|
|
6
|
+
dao_treasury/constants.cpython-312-darwin.so,sha256=pUYi1LlzDcV3z7eyEWJkHfKeCVF4FlN4D92IcxWjAwQ,50656
|
|
7
|
+
dao_treasury/_docker.cpython-312-darwin.so,sha256=ot2NAB9lNMXg1tqBUpkXgZo0_CAaRLzLGcmLFz5TM_4,50640
|
|
8
8
|
dao_treasury/constants.py,sha256=BGWVeN4KqpxWDGLG-DjPmdXmyVEb2C9KpMig9RaGJws,1444
|
|
9
9
|
dao_treasury/__init__.py,sha256=W4syl9-cNhHOdD25ye9U7aBJTLE_R-uP49FXC_6CUOE,1477
|
|
10
10
|
dao_treasury/_nicknames.py,sha256=bvz0b8C31tFQ0pGtpSJW86OwjUF_qMBal4VXVT5UyLo,1017
|
|
11
11
|
dao_treasury/types.py,sha256=dJDx0hYfDDL3slcUzRnCgrzFFsgCzoqg8uaTtLaT4kk,3685
|
|
12
|
-
dao_treasury/_wallet.cpython-312-darwin.so,sha256=
|
|
12
|
+
dao_treasury/_wallet.cpython-312-darwin.so,sha256=anWdQUIgo81wxZXG97roa4wLYlGXynuJqePqQBKjpIM,50640
|
|
13
13
|
dao_treasury/_docker.py,sha256=b3exLlhtaC9S3osrLQsL8SIOLKUtSoop2uue0cSP9WM,5908
|
|
14
|
-
dao_treasury/types.cpython-312-darwin.so,sha256=
|
|
14
|
+
dao_treasury/types.cpython-312-darwin.so,sha256=HHWFKmkSIs9_vmuROljPs-smXSu1l87vGPu-zdpZPpg,50616
|
|
15
15
|
dao_treasury/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
dao_treasury/treasury.py,sha256=taTvwTH_Zdu2M61TrUCENcIUjxdQO3vryrZ2iVb6suM,7223
|
|
17
|
-
dao_treasury/_nicknames.cpython-312-darwin.so,sha256=
|
|
18
|
-
dao_treasury/main.py,sha256=
|
|
17
|
+
dao_treasury/_nicknames.cpython-312-darwin.so,sha256=g9pk8Wz9pWVrSoBPpXSSSimYx0ihAJKdPL8iIPdqXeM,50656
|
|
18
|
+
dao_treasury/main.py,sha256=uMY5XP_GpxO6Qd9VA1YMLzMOd-O4VnxbGJ2Pdqh0Zo0,8205
|
|
19
19
|
dao_treasury/.grafana/provisioning/datasources/datasources.yaml,sha256=mjQs8or651NgD_bZnKBm8vSghzjw_g3enL01YPt0dik,327
|
|
20
20
|
dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml,sha256=mop3_BaSxm68HvYRNrAUXJa_LevFD8j4uZBhyc6v44g,1830
|
|
21
|
-
dao_treasury/.grafana/provisioning/dashboards/breakdowns/Revenue.json,sha256=
|
|
22
|
-
dao_treasury/.grafana/provisioning/dashboards/breakdowns/Expenses.json,sha256=
|
|
21
|
+
dao_treasury/.grafana/provisioning/dashboards/breakdowns/Revenue.json,sha256=8Lly44gGloXR1_x49KnSk0CZFK6w0SnOlPfSJ4GvW3s,15957
|
|
22
|
+
dao_treasury/.grafana/provisioning/dashboards/breakdowns/Expenses.json,sha256=xOC1QTr-yCvWNXrDJmK95n1yO7pimazN8OOWex0trr0,16353
|
|
23
23
|
dao_treasury/.grafana/provisioning/dashboards/streams/LlamaPay.json,sha256=R1mUD-am1JzTkkZdQqc84q76uIB8FNSiEBOG1wBPVBU,7195
|
|
24
24
|
dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json,sha256=wTVhrkKfBqegq0pOHcqlLAvwoIv9rsr5nnxulLawXzA,12774
|
|
25
|
-
dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json,sha256=
|
|
25
|
+
dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json,sha256=7oQvyGTZIRGQuiUPKmrslMgjWxcFxevNz5TVGU2tfyE,27269
|
|
26
26
|
dao_treasury/.grafana/provisioning/dashboards/treasury/Historical Treasury Balances.json,sha256=biPG7z1tsRLZiZGhTqVMwnqGmRruO38gkFwj751O-ak,130964
|
|
27
|
-
dao_treasury/.grafana/provisioning/dashboards/treasury/Current Treasury Assets.json,sha256=
|
|
28
|
-
dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json,sha256=
|
|
29
|
-
dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json,sha256=
|
|
27
|
+
dao_treasury/.grafana/provisioning/dashboards/treasury/Current Treasury Assets.json,sha256=uVk4AH0Q4PLYS1aG-QEEkagY0WuM01EzM47D52UOJwI,14088
|
|
28
|
+
dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json,sha256=ZiGchTyhoWAYrpgGCOUD6alOWk9t4nTnejMehqS1IsM,15315
|
|
29
|
+
dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json,sha256=ED5PspDyFswbopjgj4JOL2A8RK9cpUCfbmkLbbcccFY,19364
|
|
30
30
|
dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json,sha256=3ILVMAN0M2QKDKIypdFk895tSIdFomvgtawYAJPO4Bk,6752
|
|
31
|
-
dao_treasury/streams/__init__.cpython-312-darwin.so,sha256=
|
|
31
|
+
dao_treasury/streams/__init__.cpython-312-darwin.so,sha256=x7YjqcdEBA-cnioxs14ASes35JQwdBCHpK_W2sOt5wY,50640
|
|
32
32
|
dao_treasury/streams/llamapay.py,sha256=yn37gwVfqGFF9fOhHuj9_t7KlHGyrdekF2TUmVDyg64,13147
|
|
33
|
-
dao_treasury/streams/llamapay.cpython-312-darwin.so,sha256=
|
|
33
|
+
dao_treasury/streams/llamapay.cpython-312-darwin.so,sha256=RQWpFBBoBLhb16Vg5o--Hb1YQWcKPfmqLLa5WEI8HWg,50656
|
|
34
34
|
dao_treasury/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
35
|
dao_treasury/sorting/_rules.py,sha256=vWkqJVA8yCHKRv9sw872Jq6G0zpM-v_J1jCz-Mgleec,8994
|
|
36
|
-
dao_treasury/sorting/__init__.cpython-312-darwin.so,sha256=
|
|
37
|
-
dao_treasury/sorting/_rules.cpython-312-darwin.so,sha256=
|
|
36
|
+
dao_treasury/sorting/__init__.cpython-312-darwin.so,sha256=Ayh8oJB1N8v0K3OrYhOlNMOgWd9Qod1abx4cCUfPdBw,50640
|
|
37
|
+
dao_treasury/sorting/_rules.cpython-312-darwin.so,sha256=48LuEioTSX5imelpjarKVFWDCzUs2D9-UWcTsGigyrQ,50640
|
|
38
38
|
dao_treasury/sorting/__init__.py,sha256=vKj3NPB7EWbX7_fSUWKXk-NsyPasOkFhJvJVGclBOAE,10371
|
|
39
39
|
dao_treasury/sorting/factory.py,sha256=pFD6luc0bKxOTT1hlAp3ZwJw6R0wN8pjIZrqMZwhsko,10185
|
|
40
|
-
dao_treasury/sorting/factory.cpython-312-darwin.so,sha256=
|
|
40
|
+
dao_treasury/sorting/factory.cpython-312-darwin.so,sha256=vZrtAGaGvCjYrDWs62PV3-QNTh_CxBJxlA4DASOfOZg,50656
|
|
41
41
|
dao_treasury/sorting/rule.py,sha256=WtGGN5mOd6S2Bhk7v5lsBWSSzVGKON7V10ImrUN79Y4,11628
|
|
42
|
-
dao_treasury/sorting/rule.cpython-312-darwin.so,sha256=
|
|
43
|
-
dao_treasury/sorting/_matchers.cpython-312-darwin.so,sha256=
|
|
42
|
+
dao_treasury/sorting/rule.cpython-312-darwin.so,sha256=uGhVw9411OQqnhTMODkxT_pxQfPCVe95-vu3-Nnxopk,50632
|
|
43
|
+
dao_treasury/sorting/_matchers.cpython-312-darwin.so,sha256=pwWmQ_SUYLm7fY629sx74deHuWmWV2TEHcOnI33UQ84,50656
|
|
44
44
|
dao_treasury/sorting/_matchers.py,sha256=u0GfPYiODr_NtzbfyLxEKDuXmWRiaeuZulDj9FPDOH8,14005
|
|
45
|
-
dao_treasury/sorting/rules/__init__.cpython-312-darwin.so,sha256=
|
|
45
|
+
dao_treasury/sorting/rules/__init__.cpython-312-darwin.so,sha256=y2WX5He_KVVATVT0VNZMlNhSjdeWy8v3OR3o0SSx988,50640
|
|
46
46
|
dao_treasury/sorting/rules/__init__.py,sha256=ofzIsW0P74kuKr6DlScZIF8p7hBh6guRpe1uOq6oLLA,48
|
|
47
|
-
dao_treasury/sorting/rules/ignore/__init__.cpython-312-darwin.so,sha256=
|
|
47
|
+
dao_treasury/sorting/rules/ignore/__init__.cpython-312-darwin.so,sha256=xT_diGnZHaK_pWEgzGjn7bwXTMhFw3_7lnHg0mWufZc,50656
|
|
48
48
|
dao_treasury/sorting/rules/ignore/llamapay.py,sha256=NgiVt9MRtI-f4mw9U5_gqttdPqDa3vt_z5XWJP_UYWs,763
|
|
49
|
-
dao_treasury/sorting/rules/ignore/llamapay.cpython-312-darwin.so,sha256=
|
|
49
|
+
dao_treasury/sorting/rules/ignore/llamapay.cpython-312-darwin.so,sha256=aN263HaA2PizvI8a5_zss9ygeJ7Ec3I_sp5XHRdjbDQ,50672
|
|
50
50
|
dao_treasury/sorting/rules/ignore/__init__.py,sha256=dJ4oKSLe7fal1Ct7XtMCfVJAtvZXcyIomf8HF3gWUhQ,57
|
|
51
|
-
dao_treasury-0.0.
|
|
52
|
-
dao_treasury-0.0.
|
|
53
|
-
dao_treasury-0.0.
|
|
54
|
-
dao_treasury-0.0.
|
|
51
|
+
dao_treasury-0.0.58.dist-info/RECORD,,
|
|
52
|
+
dao_treasury-0.0.58.dist-info/WHEEL,sha256=V1loQ6TpxABu1APUg0MoTRBOzSKT5xVc3skizX-ovCU,136
|
|
53
|
+
dao_treasury-0.0.58.dist-info/top_level.txt,sha256=CV8aYytuSYplDhLVY4n0GphckdysXCd1lHmbqfsPxNk,33
|
|
54
|
+
dao_treasury-0.0.58.dist-info/METADATA,sha256=sYOgR_OxSxzMzFuYPIZh44qrgGM5V615pQzIxIEbdqs,7122
|
bf2b4fe1f86ad2ea158b__mypyc.cpython-312-darwin.so → dao_treasury__mypyc.cpython-312-darwin.so
RENAMED
|
Binary file
|
|
File without changes
|