dao-treasury 0.0.47__cp312-cp312-win_amd64.whl → 0.0.64__cp312-cp312-win_amd64.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.
Files changed (41) hide show
  1. dao_treasury/.grafana/provisioning/dashboards/breakdowns/Expenses.json +526 -0
  2. dao_treasury/.grafana/provisioning/dashboards/breakdowns/Revenue.json +526 -0
  3. dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml +25 -1
  4. dao_treasury/.grafana/provisioning/dashboards/streams/LlamaPay.json +8 -8
  5. dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json +10 -9
  6. dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json +8 -35
  7. dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json +74 -33
  8. dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json +53 -23
  9. dao_treasury/.grafana/provisioning/dashboards/treasury/Current Treasury Assets.json +593 -0
  10. dao_treasury/.grafana/provisioning/dashboards/treasury/Historical Treasury Balances.json +2999 -0
  11. dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json +38 -17
  12. dao_treasury/_docker.cp312-win_amd64.pyd +0 -0
  13. dao_treasury/_docker.py +24 -20
  14. dao_treasury/_nicknames.cp312-win_amd64.pyd +0 -0
  15. dao_treasury/_wallet.cp312-win_amd64.pyd +0 -0
  16. dao_treasury/constants.cp312-win_amd64.pyd +0 -0
  17. dao_treasury/constants.py +2 -2
  18. dao_treasury/db.py +23 -3
  19. dao_treasury/docker-compose.yaml +1 -1
  20. dao_treasury/main.py +6 -0
  21. dao_treasury/sorting/__init__.cp312-win_amd64.pyd +0 -0
  22. dao_treasury/sorting/_matchers.cp312-win_amd64.pyd +0 -0
  23. dao_treasury/sorting/_rules.cp312-win_amd64.pyd +0 -0
  24. dao_treasury/sorting/factory.cp312-win_amd64.pyd +0 -0
  25. dao_treasury/sorting/rule.cp312-win_amd64.pyd +0 -0
  26. dao_treasury/sorting/rule.py +8 -10
  27. dao_treasury/sorting/rules/__init__.cp312-win_amd64.pyd +0 -0
  28. dao_treasury/sorting/rules/ignore/__init__.cp312-win_amd64.pyd +0 -0
  29. dao_treasury/sorting/rules/ignore/llamapay.cp312-win_amd64.pyd +0 -0
  30. dao_treasury/streams/__init__.cp312-win_amd64.pyd +0 -0
  31. dao_treasury/streams/llamapay.cp312-win_amd64.pyd +0 -0
  32. dao_treasury/types.cp312-win_amd64.pyd +0 -0
  33. {dao_treasury-0.0.47.dist-info → dao_treasury-0.0.64.dist-info}/METADATA +4 -3
  34. dao_treasury-0.0.64.dist-info/RECORD +54 -0
  35. dao_treasury-0.0.64.dist-info/top_level.txt +2 -0
  36. dao_treasury__mypyc.cp312-win_amd64.pyd +0 -0
  37. bf2b4fe1f86ad2ea158b__mypyc.cp312-win_amd64.pyd +0 -0
  38. dao_treasury/.grafana/provisioning/dashboards/treasury/Treasury.json +0 -2018
  39. dao_treasury-0.0.47.dist-info/RECORD +0 -51
  40. dao_treasury-0.0.47.dist-info/top_level.txt +0 -2
  41. {dao_treasury-0.0.47.dist-info → dao_treasury-0.0.64.dist-info}/WHEEL +0 -0
@@ -17,7 +17,6 @@
17
17
  "graphTooltip": 0,
18
18
  "id": 2,
19
19
  "links": [],
20
- "liveNow": false,
21
20
  "panels": [
22
21
  {
23
22
  "datasource": "SQLite",
@@ -39,7 +38,7 @@
39
38
  "steps": [
40
39
  {
41
40
  "color": "green",
42
- "value": null
41
+ "value": 0
43
42
  },
44
43
  {
45
44
  "color": "red",
@@ -75,33 +74,35 @@
75
74
  }
76
75
  ]
77
76
  },
78
- "pluginVersion": "10.2.0",
77
+ "pluginVersion": "12.1.1",
79
78
  "targets": [
80
79
  {
81
80
  "datasource": "SQLite",
82
- "queryText": "SELECT\n month AS \"Month\",\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END) AS \"Revenue\",\n SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END) AS \"Cost of Revenue\",\n SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END) AS \"Expenses\",\n SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END) AS \"Other Income\",\n SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END) AS \"Other Expense\",\n (\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END)\n ) AS \"Sorted Net\",\n SUM(CASE WHEN s.top_category = 'Sort Me (Inbound)' THEN value_usd ELSE 0 END) AS \"Unsorted Income\",\n SUM(CASE WHEN s.top_category = 'Sort Me (Outbound)' THEN value_usd ELSE 0 END) AS \"Unsorted Expense\",\n (\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Sort Me (Inbound)' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Sort Me (Outbound)' THEN value_usd ELSE 0 END)\n ) AS \"Net\"\nFROM (\n SELECT\n strftime('%Y-%m', datetime(t.timestamp, 'unixepoch')) AS month,\n gh.top_category,\n COALESCE(t.value_usd, 0) AS value_usd\n FROM treasury_txs AS t\n JOIN txgroups AS tg ON t.txgroup_id = tg.txgroup_id\n JOIN txgroup_hierarchy AS gh ON tg.txgroup_id = gh.txgroup_id\n WHERE t.timestamp >= strftime('%s', '2025-01-01') AND tg.name <> 'Ignore'\n) AS s\nGROUP BY month;",
81
+ "queryText": "SELECT\n month AS \"Month\",\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END) AS \"Revenue\",\n SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END) AS \"Cost of Revenue\",\n SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END) AS \"Expenses\",\n SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END) AS \"Other Income\",\n SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END) AS \"Other Expense\",\n (\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END)\n ) AS \"Sorted Net\",\n SUM(CASE WHEN s.top_category = 'Sort Me (Inbound)' THEN value_usd ELSE 0 END) AS \"Unsorted Income\",\n SUM(CASE WHEN s.top_category = 'Sort Me (Outbound)' THEN value_usd ELSE 0 END) AS \"Unsorted Expense\",\n (\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Sort Me (Inbound)' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Sort Me (Outbound)' THEN value_usd ELSE 0 END)\n ) AS \"Net\"\nFROM (\n SELECT\n strftime('%Y-%m', datetime(t.timestamp, 'unixepoch')) AS month,\n gh.top_category,\n COALESCE(t.value_usd, 0) AS value_usd\n FROM treasury_txs AS t\n JOIN txgroups AS tg ON t.txgroup_id = tg.txgroup_id\n JOIN txgroup_hierarchy AS gh ON tg.txgroup_id = gh.txgroup_id\n WHERE t.timestamp >= $__from / 1000 AND tg.name <> 'Ignore'\n) AS s\nGROUP BY month;",
83
82
  "queryType": "table",
84
- "rawQueryText": "SELECT\n month AS \"Month\",\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END) AS \"Revenue\",\n SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END) AS \"Cost of Revenue\",\n SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END) AS \"Expenses\",\n SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END) AS \"Other Income\",\n SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END) AS \"Other Expense\",\n (\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END)\n ) AS \"Sorted Net\",\n SUM(CASE WHEN s.top_category = 'Sort Me (Inbound)' THEN value_usd ELSE 0 END) AS \"Unsorted Income\",\n SUM(CASE WHEN s.top_category = 'Sort Me (Outbound)' THEN value_usd ELSE 0 END) AS \"Unsorted Expense\",\n (\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Sort Me (Inbound)' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Sort Me (Outbound)' THEN value_usd ELSE 0 END)\n ) AS \"Net\"\nFROM (\n SELECT\n strftime('%Y-%m', datetime(t.timestamp, 'unixepoch')) AS month,\n gh.top_category,\n COALESCE(t.value_usd, 0) AS value_usd\n FROM treasury_txs AS t\n JOIN txgroups AS tg ON t.txgroup_id = tg.txgroup_id\n JOIN txgroup_hierarchy AS gh ON tg.txgroup_id = gh.txgroup_id\n WHERE t.timestamp >= strftime('%s', '2025-01-01') AND tg.name <> 'Ignore'\n) AS s\nGROUP BY month;"
83
+ "rawQueryText": "SELECT\n month AS \"Month\",\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END) AS \"Revenue\",\n SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END) AS \"Cost of Revenue\",\n SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END) AS \"Expenses\",\n SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END) AS \"Other Income\",\n SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END) AS \"Other Expense\",\n (\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END)\n ) AS \"Sorted Net\",\n SUM(CASE WHEN s.top_category = 'Sort Me (Inbound)' THEN value_usd ELSE 0 END) AS \"Unsorted Income\",\n SUM(CASE WHEN s.top_category = 'Sort Me (Outbound)' THEN value_usd ELSE 0 END) AS \"Unsorted Expense\",\n (\n SUM(CASE WHEN s.top_category = 'Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Cost of Revenue' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Other Income' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Other Expenses' THEN value_usd ELSE 0 END)\n + SUM(CASE WHEN s.top_category = 'Sort Me (Inbound)' THEN value_usd ELSE 0 END)\n - SUM(CASE WHEN s.top_category = 'Sort Me (Outbound)' THEN value_usd ELSE 0 END)\n ) AS \"Net\"\nFROM (\n SELECT\n strftime('%Y-%m', datetime(t.timestamp, 'unixepoch')) AS month,\n gh.top_category,\n COALESCE(t.value_usd, 0) AS value_usd\n FROM treasury_txs AS t\n JOIN txgroups AS tg ON t.txgroup_id = tg.txgroup_id\n JOIN txgroup_hierarchy AS gh ON tg.txgroup_id = gh.txgroup_id\n WHERE t.timestamp >= strftime('%s', '2025-01-01') AND tg.name <> 'Ignore'\n) AS s\nGROUP BY month;",
84
+ "refId": "A"
85
85
  }
86
86
  ],
87
87
  "title": "Monthly Profit & Loss",
88
88
  "type": "table"
89
89
  }
90
90
  ],
91
+ "preload": false,
91
92
  "refresh": "",
92
- "schemaVersion": 38,
93
+ "schemaVersion": 41,
93
94
  "tags": [],
94
95
  "templating": {
95
96
  "list": []
96
97
  },
97
98
  "time": {
98
- "from": "now-6h",
99
+ "from": "now/y",
99
100
  "to": "now"
100
101
  },
101
102
  "timepicker": {},
102
103
  "timezone": "",
103
104
  "title": "Monthly P&L",
105
+ "description": "Summarizes the DAO's monthly profit and loss, providing a breakdown of sorted and unsorted financial activity for each month. Supports financial reporting and tracking the progress of transaction categorization.",
104
106
  "uid": "a63fa9a7-d4f3-4092-9bde-194add8bcbeb",
105
- "version": 1,
106
- "weekStart": ""
107
+ "version": 2
107
108
  }
@@ -15,8 +15,8 @@
15
15
  "editable": true,
16
16
  "fiscalYearStartMonth": 0,
17
17
  "graphTooltip": 0,
18
+ "id": 9,
18
19
  "links": [],
19
- "liveNow": false,
20
20
  "panels": [
21
21
  {
22
22
  "datasource": "SQLite",
@@ -36,7 +36,7 @@
36
36
  "steps": [
37
37
  {
38
38
  "color": "green",
39
- "value": null
39
+ "value": 0
40
40
  },
41
41
  {
42
42
  "color": "red",
@@ -203,7 +203,7 @@
203
203
  }
204
204
  ]
205
205
  },
206
- "pluginVersion": "10.2.0",
206
+ "pluginVersion": "12.1.1",
207
207
  "targets": [
208
208
  {
209
209
  "datasource": "SQLite",
@@ -221,154 +221,127 @@
221
221
  "type": "table"
222
222
  }
223
223
  ],
224
+ "preload": false,
224
225
  "refresh": "",
225
- "schemaVersion": 38,
226
+ "schemaVersion": 41,
226
227
  "tags": [],
227
228
  "templating": {
228
229
  "list": [
229
230
  {
230
231
  "current": {
231
- "selected": false,
232
232
  "text": "All",
233
233
  "value": "$__all"
234
234
  },
235
235
  "datasource": "SQLite",
236
236
  "definition": "SELECT DISTINCT gh.top_category FROM treasury_txs a INNER JOIN txgroup_hierarchy gh ON a.txgroup_id = gh.txgroup_id;",
237
- "hide": 0,
238
237
  "includeAll": true,
239
238
  "label": "Top Level",
240
- "multi": false,
241
239
  "name": "Top",
242
240
  "options": [],
243
241
  "query": "SELECT DISTINCT gh.top_category FROM treasury_txs a INNER JOIN txgroup_hierarchy gh ON a.txgroup_id = gh.txgroup_id;",
244
242
  "refresh": 2,
245
243
  "regex": "",
246
- "skipUrlSync": false,
247
244
  "sort": 5,
248
245
  "type": "query"
249
246
  },
250
247
  {
251
248
  "current": {
252
- "selected": false,
253
249
  "text": "All",
254
250
  "value": "$__all"
255
251
  },
256
252
  "datasource": "SQLite",
257
253
  "definition": "select distinct chain_name from treasury_txs a left join chains b on a.chain = b.chain_dbid",
258
254
  "description": "",
259
- "hide": 0,
260
255
  "includeAll": true,
261
- "multi": false,
262
256
  "name": "Chain",
263
257
  "options": [],
264
258
  "query": "select distinct chain_name from treasury_txs a left join chains b on a.chain = b.chain_dbid",
265
259
  "refresh": 2,
266
260
  "regex": "",
267
- "skipUrlSync": false,
268
261
  "sort": 5,
269
262
  "type": "query"
270
263
  },
271
264
  {
272
265
  "current": {
273
- "selected": false,
274
266
  "text": "All",
275
267
  "value": "$__all"
276
268
  },
277
269
  "datasource": "SQLite",
278
270
  "definition": "select distinct symbol from treasury_txs a left join tokens b on a.token_id = b.token_id",
279
- "hide": 0,
280
271
  "includeAll": true,
281
- "multi": false,
282
272
  "name": "Token",
283
273
  "options": [],
284
274
  "query": "select distinct symbol from treasury_txs a left join tokens b on a.token_id = b.token_id",
285
275
  "refresh": 2,
286
276
  "regex": "",
287
- "skipUrlSync": false,
288
277
  "sort": 5,
289
278
  "type": "query"
290
279
  },
291
280
  {
292
281
  "current": {
293
- "selected": false,
294
282
  "text": "All",
295
283
  "value": "$__all"
296
284
  },
297
285
  "datasource": "SQLite",
298
286
  "definition": "select distinct address from treasury_txs a left join addresses b on a.\"from\" = b.address_id",
299
- "hide": 0,
300
287
  "includeAll": true,
301
288
  "label": "From Address",
302
- "multi": false,
303
289
  "name": "From",
304
290
  "options": [],
305
291
  "query": "select distinct address from treasury_txs a left join addresses b on a.\"from\" = b.address_id",
306
292
  "refresh": 2,
307
293
  "regex": "",
308
- "skipUrlSync": false,
309
294
  "sort": 5,
310
295
  "type": "query"
311
296
  },
312
297
  {
313
298
  "current": {
314
- "selected": false,
315
299
  "text": "All",
316
300
  "value": "$__all"
317
301
  },
318
302
  "datasource": "SQLite",
319
303
  "definition": "select distinct nickname from treasury_txs a inner join addresses b on a.\"from\" = b.address_id",
320
- "hide": 0,
321
304
  "includeAll": true,
322
305
  "label": "From Nickname",
323
- "multi": false,
324
306
  "name": "FromNickname",
325
307
  "options": [],
326
308
  "query": "select distinct nickname from treasury_txs a inner join addresses b on a.\"from\" = b.address_id",
327
309
  "refresh": 2,
328
310
  "regex": "",
329
- "skipUrlSync": false,
330
311
  "sort": 5,
331
312
  "type": "query"
332
313
  },
333
314
  {
334
315
  "current": {
335
- "selected": false,
336
316
  "text": "All",
337
317
  "value": "$__all"
338
318
  },
339
319
  "datasource": "SQLite",
340
320
  "definition": "select distinct address from treasury_txs a left join addresses b on a.\"to\" = b.address_id",
341
- "hide": 0,
342
321
  "includeAll": true,
343
322
  "label": "To Address",
344
- "multi": false,
345
323
  "name": "To",
346
324
  "options": [],
347
325
  "query": "select distinct address from treasury_txs a left join addresses b on a.\"to\" = b.address_id",
348
326
  "refresh": 2,
349
327
  "regex": "",
350
- "skipUrlSync": false,
351
328
  "sort": 5,
352
329
  "type": "query"
353
330
  },
354
331
  {
355
332
  "current": {
356
- "selected": false,
357
333
  "text": "All",
358
334
  "value": "$__all"
359
335
  },
360
336
  "datasource": "SQLite",
361
337
  "definition": "select distinct nickname from treasury_txs a inner join addresses b on a.\"to\" = b.address_id",
362
- "hide": 0,
363
338
  "includeAll": true,
364
339
  "label": "To Nickname",
365
- "multi": false,
366
340
  "name": "ToNickname",
367
341
  "options": [],
368
342
  "query": "select distinct nickname from treasury_txs a inner join addresses b on a.\"to\" = b.address_id",
369
343
  "refresh": 2,
370
344
  "regex": "",
371
- "skipUrlSync": false,
372
345
  "sort": 5,
373
346
  "type": "query"
374
347
  }
@@ -381,7 +354,7 @@
381
354
  "timepicker": {},
382
355
  "timezone": "",
383
356
  "title": "Treasury Transactions",
357
+ "description": "Provides a real-time, filterable table of all transactions in the DAO treasury database, including timestamp, block, hash, token, addresses, nicknames, amount, price, and value in USD. Enables detailed analysis and monitoring of all value transfers.",
384
358
  "uid": "b21f1092-66a4-4fb0-90ef-ed77d2becaa4",
385
- "version": 1,
386
- "weekStart": ""
387
- }
359
+ "version": 1
360
+ }
@@ -18,12 +18,13 @@
18
18
  "editable": true,
19
19
  "fiscalYearStartMonth": 0,
20
20
  "graphTooltip": 1,
21
+ "id": 4,
21
22
  "links": [],
22
- "liveNow": false,
23
23
  "panels": [
24
24
  {
25
25
  "datasource": "SQLite",
26
26
  "fieldConfig": {
27
+ "unit": "currencyUSD",
27
28
  "defaults": {
28
29
  "color": {
29
30
  "mode": "thresholds"
@@ -34,7 +35,7 @@
34
35
  "steps": [
35
36
  {
36
37
  "color": "green",
37
- "value": null
38
+ "value": 0
38
39
  },
39
40
  {
40
41
  "color": "red",
@@ -57,6 +58,7 @@
57
58
  "graphMode": "area",
58
59
  "justifyMode": "auto",
59
60
  "orientation": "auto",
61
+ "percentChangeColorMode": "standard",
60
62
  "reduceOptions": {
61
63
  "calcs": [
62
64
  "lastNotNull"
@@ -64,9 +66,11 @@
64
66
  "fields": "",
65
67
  "values": false
66
68
  },
67
- "textMode": "auto"
69
+ "showPercentChange": false,
70
+ "textMode": "auto",
71
+ "wideLayout": true
68
72
  },
69
- "pluginVersion": "10.2.0",
73
+ "pluginVersion": "12.1.1",
70
74
  "targets": [
71
75
  {
72
76
  "datasource": "SQLite",
@@ -86,6 +90,7 @@
86
90
  {
87
91
  "datasource": "SQLite",
88
92
  "fieldConfig": {
93
+ "unit": "currencyUSD",
89
94
  "defaults": {
90
95
  "color": {
91
96
  "mode": "thresholds"
@@ -96,7 +101,7 @@
96
101
  "steps": [
97
102
  {
98
103
  "color": "green",
99
- "value": null
104
+ "value": 0
100
105
  },
101
106
  {
102
107
  "color": "red",
@@ -119,6 +124,7 @@
119
124
  "graphMode": "area",
120
125
  "justifyMode": "auto",
121
126
  "orientation": "auto",
127
+ "percentChangeColorMode": "standard",
122
128
  "reduceOptions": {
123
129
  "calcs": [
124
130
  "lastNotNull"
@@ -126,9 +132,11 @@
126
132
  "fields": "",
127
133
  "values": false
128
134
  },
129
- "textMode": "auto"
135
+ "showPercentChange": false,
136
+ "textMode": "auto",
137
+ "wideLayout": true
130
138
  },
131
- "pluginVersion": "10.2.0",
139
+ "pluginVersion": "12.1.1",
132
140
  "targets": [
133
141
  {
134
142
  "datasource": "SQLite",
@@ -148,6 +156,7 @@
148
156
  {
149
157
  "datasource": "SQLite",
150
158
  "fieldConfig": {
159
+ "unit": "currencyUSD",
151
160
  "defaults": {
152
161
  "color": {
153
162
  "mode": "thresholds"
@@ -158,7 +167,7 @@
158
167
  "steps": [
159
168
  {
160
169
  "color": "green",
161
- "value": null
170
+ "value": 0
162
171
  },
163
172
  {
164
173
  "color": "red",
@@ -181,6 +190,7 @@
181
190
  "graphMode": "area",
182
191
  "justifyMode": "auto",
183
192
  "orientation": "auto",
193
+ "percentChangeColorMode": "standard",
184
194
  "reduceOptions": {
185
195
  "calcs": [
186
196
  "lastNotNull"
@@ -188,9 +198,11 @@
188
198
  "fields": "",
189
199
  "values": false
190
200
  },
191
- "textMode": "auto"
201
+ "showPercentChange": false,
202
+ "textMode": "auto",
203
+ "wideLayout": true
192
204
  },
193
- "pluginVersion": "10.2.0",
205
+ "pluginVersion": "12.1.1",
194
206
  "targets": [
195
207
  {
196
208
  "datasource": "SQLite",
@@ -210,6 +222,7 @@
210
222
  {
211
223
  "datasource": "SQLite",
212
224
  "fieldConfig": {
225
+ "unit": "currencyUSD",
213
226
  "defaults": {
214
227
  "color": {
215
228
  "mode": "thresholds"
@@ -220,7 +233,7 @@
220
233
  "steps": [
221
234
  {
222
235
  "color": "green",
223
- "value": null
236
+ "value": 0
224
237
  },
225
238
  {
226
239
  "color": "red",
@@ -243,6 +256,7 @@
243
256
  "graphMode": "area",
244
257
  "justifyMode": "auto",
245
258
  "orientation": "auto",
259
+ "percentChangeColorMode": "standard",
246
260
  "reduceOptions": {
247
261
  "calcs": [
248
262
  "lastNotNull"
@@ -250,9 +264,11 @@
250
264
  "fields": "",
251
265
  "values": false
252
266
  },
253
- "textMode": "auto"
267
+ "showPercentChange": false,
268
+ "textMode": "auto",
269
+ "wideLayout": true
254
270
  },
255
- "pluginVersion": "10.2.0",
271
+ "pluginVersion": "12.1.1",
256
272
  "targets": [
257
273
  {
258
274
  "datasource": "SQLite",
@@ -272,6 +288,7 @@
272
288
  {
273
289
  "datasource": "SQLite",
274
290
  "fieldConfig": {
291
+ "unit": "currencyUSD",
275
292
  "defaults": {
276
293
  "color": {
277
294
  "mode": "thresholds"
@@ -282,7 +299,7 @@
282
299
  "steps": [
283
300
  {
284
301
  "color": "green",
285
- "value": null
302
+ "value": 0
286
303
  },
287
304
  {
288
305
  "color": "red",
@@ -305,6 +322,7 @@
305
322
  "graphMode": "area",
306
323
  "justifyMode": "auto",
307
324
  "orientation": "auto",
325
+ "percentChangeColorMode": "standard",
308
326
  "reduceOptions": {
309
327
  "calcs": [
310
328
  "lastNotNull"
@@ -312,9 +330,11 @@
312
330
  "fields": "",
313
331
  "values": false
314
332
  },
315
- "textMode": "auto"
333
+ "showPercentChange": false,
334
+ "textMode": "auto",
335
+ "wideLayout": true
316
336
  },
317
- "pluginVersion": "10.2.0",
337
+ "pluginVersion": "12.1.1",
318
338
  "targets": [
319
339
  {
320
340
  "datasource": "SQLite",
@@ -335,6 +355,7 @@
335
355
  "datasource": "SQLite",
336
356
  "description": "",
337
357
  "fieldConfig": {
358
+ "unit": "currencyUSD",
338
359
  "defaults": {
339
360
  "color": {
340
361
  "mode": "thresholds"
@@ -345,7 +366,7 @@
345
366
  "steps": [
346
367
  {
347
368
  "color": "green",
348
- "value": null
369
+ "value": 0
349
370
  },
350
371
  {
351
372
  "color": "red",
@@ -368,6 +389,7 @@
368
389
  "graphMode": "area",
369
390
  "justifyMode": "auto",
370
391
  "orientation": "auto",
392
+ "percentChangeColorMode": "standard",
371
393
  "reduceOptions": {
372
394
  "calcs": [
373
395
  "lastNotNull"
@@ -375,9 +397,11 @@
375
397
  "fields": "",
376
398
  "values": false
377
399
  },
378
- "textMode": "auto"
400
+ "showPercentChange": false,
401
+ "textMode": "auto",
402
+ "wideLayout": true
379
403
  },
380
- "pluginVersion": "10.2.0",
404
+ "pluginVersion": "12.1.1",
381
405
  "targets": [
382
406
  {
383
407
  "datasource": "SQLite",
@@ -398,6 +422,7 @@
398
422
  "datasource": "SQLite",
399
423
  "description": "",
400
424
  "fieldConfig": {
425
+ "unit": "currencyUSD",
401
426
  "defaults": {
402
427
  "color": {
403
428
  "mode": "palette-classic"
@@ -409,6 +434,7 @@
409
434
  "axisLabel": "",
410
435
  "axisPlacement": "auto",
411
436
  "barAlignment": 0,
437
+ "barWidthFactor": 0.6,
412
438
  "drawStyle": "bars",
413
439
  "fillOpacity": 70,
414
440
  "gradientMode": "none",
@@ -440,7 +466,7 @@
440
466
  "steps": [
441
467
  {
442
468
  "color": "green",
443
- "value": null
469
+ "value": 0
444
470
  },
445
471
  {
446
472
  "color": "red",
@@ -490,10 +516,12 @@
490
516
  "showLegend": true
491
517
  },
492
518
  "tooltip": {
519
+ "hideZeros": false,
493
520
  "mode": "single",
494
521
  "sort": "none"
495
522
  }
496
523
  },
524
+ "pluginVersion": "12.1.1",
497
525
  "targets": [
498
526
  {
499
527
  "datasource": "SQLite",
@@ -630,6 +658,7 @@
630
658
  "datasource": "SQLite",
631
659
  "description": "",
632
660
  "fieldConfig": {
661
+ "unit": "currencyUSD",
633
662
  "defaults": {
634
663
  "color": {
635
664
  "mode": "thresholds"
@@ -640,7 +669,7 @@
640
669
  "steps": [
641
670
  {
642
671
  "color": "green",
643
- "value": null
672
+ "value": 0
644
673
  },
645
674
  {
646
675
  "color": "red",
@@ -663,6 +692,7 @@
663
692
  "graphMode": "area",
664
693
  "justifyMode": "auto",
665
694
  "orientation": "auto",
695
+ "percentChangeColorMode": "standard",
666
696
  "reduceOptions": {
667
697
  "calcs": [
668
698
  "lastNotNull"
@@ -670,9 +700,11 @@
670
700
  "fields": "",
671
701
  "values": false
672
702
  },
673
- "textMode": "auto"
703
+ "showPercentChange": false,
704
+ "textMode": "auto",
705
+ "wideLayout": true
674
706
  },
675
- "pluginVersion": "10.2.0",
707
+ "pluginVersion": "12.1.1",
676
708
  "targets": [
677
709
  {
678
710
  "datasource": "SQLite",
@@ -693,6 +725,7 @@
693
725
  "datasource": "SQLite",
694
726
  "description": "",
695
727
  "fieldConfig": {
728
+ "unit": "currencyUSD",
696
729
  "defaults": {
697
730
  "color": {
698
731
  "mode": "thresholds"
@@ -703,7 +736,7 @@
703
736
  "steps": [
704
737
  {
705
738
  "color": "green",
706
- "value": null
739
+ "value": 0
707
740
  },
708
741
  {
709
742
  "color": "red",
@@ -726,6 +759,7 @@
726
759
  "graphMode": "area",
727
760
  "justifyMode": "auto",
728
761
  "orientation": "auto",
762
+ "percentChangeColorMode": "standard",
729
763
  "reduceOptions": {
730
764
  "calcs": [
731
765
  "lastNotNull"
@@ -733,9 +767,11 @@
733
767
  "fields": "",
734
768
  "values": false
735
769
  },
736
- "textMode": "auto"
770
+ "showPercentChange": false,
771
+ "textMode": "auto",
772
+ "wideLayout": true
737
773
  },
738
- "pluginVersion": "10.2.0",
774
+ "pluginVersion": "12.1.1",
739
775
  "targets": [
740
776
  {
741
777
  "datasource": "SQLite",
@@ -756,6 +792,7 @@
756
792
  "datasource": "SQLite",
757
793
  "description": "",
758
794
  "fieldConfig": {
795
+ "unit": "currencyUSD",
759
796
  "defaults": {
760
797
  "color": {
761
798
  "mode": "thresholds"
@@ -766,7 +803,7 @@
766
803
  "steps": [
767
804
  {
768
805
  "color": "green",
769
- "value": null
806
+ "value": 0
770
807
  },
771
808
  {
772
809
  "color": "red",
@@ -789,6 +826,7 @@
789
826
  "graphMode": "area",
790
827
  "justifyMode": "auto",
791
828
  "orientation": "auto",
829
+ "percentChangeColorMode": "standard",
792
830
  "reduceOptions": {
793
831
  "calcs": [
794
832
  "lastNotNull"
@@ -796,9 +834,11 @@
796
834
  "fields": "",
797
835
  "values": false
798
836
  },
799
- "textMode": "auto"
837
+ "showPercentChange": false,
838
+ "textMode": "auto",
839
+ "wideLayout": true
800
840
  },
801
- "pluginVersion": "10.2.0",
841
+ "pluginVersion": "12.1.1",
802
842
  "targets": [
803
843
  {
804
844
  "datasource": "SQLite",
@@ -816,8 +856,9 @@
816
856
  "type": "stat"
817
857
  }
818
858
  ],
819
- "refresh": false,
820
- "schemaVersion": 38,
859
+ "preload": false,
860
+ "refresh": "",
861
+ "schemaVersion": 41,
821
862
  "tags": [],
822
863
  "templating": {
823
864
  "list": []
@@ -829,7 +870,7 @@
829
870
  "timepicker": {},
830
871
  "timezone": "",
831
872
  "title": "Total Cashflow Summary (Including Unsorted)",
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.",
832
874
  "uid": "2b6e7c1d-8f4a-4e3b-9b2a-1c7d8e9f0a2b",
833
- "version": 1,
834
- "weekStart": ""
875
+ "version": 5
835
876
  }