dao-treasury 0.0.42__cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.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 (51) hide show
  1. bf2b4fe1f86ad2ea158b__mypyc.cpython-311-i386-linux-gnu.so +0 -0
  2. dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml +60 -0
  3. dao_treasury/.grafana/provisioning/dashboards/streams/LlamaPay.json +225 -0
  4. dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json +107 -0
  5. dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json +387 -0
  6. dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json +835 -0
  7. dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json +615 -0
  8. dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json +492 -0
  9. dao_treasury/.grafana/provisioning/dashboards/treasury/Treasury.json +2018 -0
  10. dao_treasury/.grafana/provisioning/datasources/datasources.yaml +17 -0
  11. dao_treasury/ENVIRONMENT_VARIABLES.py +20 -0
  12. dao_treasury/__init__.py +62 -0
  13. dao_treasury/_docker.cpython-311-i386-linux-gnu.so +0 -0
  14. dao_treasury/_docker.py +190 -0
  15. dao_treasury/_nicknames.cpython-311-i386-linux-gnu.so +0 -0
  16. dao_treasury/_nicknames.py +32 -0
  17. dao_treasury/_wallet.cpython-311-i386-linux-gnu.so +0 -0
  18. dao_treasury/_wallet.py +250 -0
  19. dao_treasury/constants.cpython-311-i386-linux-gnu.so +0 -0
  20. dao_treasury/constants.py +34 -0
  21. dao_treasury/db.py +1408 -0
  22. dao_treasury/docker-compose.yaml +41 -0
  23. dao_treasury/main.py +247 -0
  24. dao_treasury/py.typed +0 -0
  25. dao_treasury/sorting/__init__.cpython-311-i386-linux-gnu.so +0 -0
  26. dao_treasury/sorting/__init__.py +295 -0
  27. dao_treasury/sorting/_matchers.cpython-311-i386-linux-gnu.so +0 -0
  28. dao_treasury/sorting/_matchers.py +387 -0
  29. dao_treasury/sorting/_rules.cpython-311-i386-linux-gnu.so +0 -0
  30. dao_treasury/sorting/_rules.py +235 -0
  31. dao_treasury/sorting/factory.cpython-311-i386-linux-gnu.so +0 -0
  32. dao_treasury/sorting/factory.py +299 -0
  33. dao_treasury/sorting/rule.cpython-311-i386-linux-gnu.so +0 -0
  34. dao_treasury/sorting/rule.py +346 -0
  35. dao_treasury/sorting/rules/__init__.cpython-311-i386-linux-gnu.so +0 -0
  36. dao_treasury/sorting/rules/__init__.py +1 -0
  37. dao_treasury/sorting/rules/ignore/__init__.cpython-311-i386-linux-gnu.so +0 -0
  38. dao_treasury/sorting/rules/ignore/__init__.py +1 -0
  39. dao_treasury/sorting/rules/ignore/llamapay.cpython-311-i386-linux-gnu.so +0 -0
  40. dao_treasury/sorting/rules/ignore/llamapay.py +20 -0
  41. dao_treasury/streams/__init__.cpython-311-i386-linux-gnu.so +0 -0
  42. dao_treasury/streams/__init__.py +0 -0
  43. dao_treasury/streams/llamapay.cpython-311-i386-linux-gnu.so +0 -0
  44. dao_treasury/streams/llamapay.py +388 -0
  45. dao_treasury/treasury.py +191 -0
  46. dao_treasury/types.cpython-311-i386-linux-gnu.so +0 -0
  47. dao_treasury/types.py +133 -0
  48. dao_treasury-0.0.42.dist-info/METADATA +119 -0
  49. dao_treasury-0.0.42.dist-info/RECORD +51 -0
  50. dao_treasury-0.0.42.dist-info/WHEEL +7 -0
  51. dao_treasury-0.0.42.dist-info/top_level.txt +2 -0
@@ -0,0 +1,2018 @@
1
+ {
2
+ "annotations": {
3
+ "list": [
4
+ {
5
+ "builtIn": 1,
6
+ "datasource": "-- Grafana --",
7
+ "enable": true,
8
+ "hide": true,
9
+ "iconColor": "rgba(0, 211, 255, 1)",
10
+ "name": "Annotations & Alerts",
11
+ "target": {
12
+ "limit": 100,
13
+ "matchAny": false,
14
+ "tags": [],
15
+ "type": "dashboard"
16
+ },
17
+ "type": "dashboard"
18
+ }
19
+ ]
20
+ },
21
+ "editable": true,
22
+ "fiscalYearStartMonth": 0,
23
+ "gnetId": null,
24
+ "graphTooltip": 1,
25
+ "id": 26,
26
+ "links": [],
27
+ "liveNow": false,
28
+ "panels": [
29
+ {
30
+ "datasource": "PROMETHEUS",
31
+ "fieldConfig": {
32
+ "defaults": {
33
+ "color": {
34
+ "mode": "thresholds"
35
+ },
36
+ "mappings": [],
37
+ "thresholds": {
38
+ "mode": "absolute",
39
+ "steps": [
40
+ {
41
+ "color": "green",
42
+ "value": null
43
+ },
44
+ {
45
+ "color": "red",
46
+ "value": 80
47
+ }
48
+ ]
49
+ }
50
+ },
51
+ "overrides": []
52
+ },
53
+ "gridPos": {
54
+ "h": 4,
55
+ "w": 3,
56
+ "x": 0,
57
+ "y": 0
58
+ },
59
+ "id": 12,
60
+ "options": {
61
+ "colorMode": "value",
62
+ "graphMode": "area",
63
+ "justifyMode": "auto",
64
+ "orientation": "auto",
65
+ "reduceOptions": {
66
+ "calcs": [
67
+ "lastNotNull"
68
+ ],
69
+ "fields": "",
70
+ "values": false
71
+ },
72
+ "text": {},
73
+ "textMode": "auto"
74
+ },
75
+ "pluginVersion": "10.2.0",
76
+ "targets": [
77
+ {
78
+ "datasource": "PROMETHEUS",
79
+ "exemplar": true,
80
+ "expr": "sum(treasury_assets{param=\"balance\",token=\"YFI\"})",
81
+ "interval": "",
82
+ "legendFormat": "YFI Balance",
83
+ "refId": "A"
84
+ },
85
+ {
86
+ "datasource": "PROMETHEUS",
87
+ "exemplar": true,
88
+ "expr": "sum(treasury_assets{param=\"usd value\",token=\"YFI\"})",
89
+ "hide": false,
90
+ "interval": "",
91
+ "legendFormat": "YFI Value",
92
+ "refId": "B"
93
+ },
94
+ {
95
+ "datasource": "PROMETHEUS",
96
+ "exemplar": true,
97
+ "expr": "sum(treasury_assets{param=\"usd value\",token=\"yvYFI\"})",
98
+ "hide": false,
99
+ "interval": "",
100
+ "legendFormat": "yvYFI Value",
101
+ "refId": "C"
102
+ }
103
+ ],
104
+ "title": "YFI in Treasury",
105
+ "transformations": [
106
+ {
107
+ "id": "calculateField",
108
+ "options": {
109
+ "alias": "yfi price",
110
+ "binary": {
111
+ "left": "YFI Value",
112
+ "operator": "/",
113
+ "reducer": "sum",
114
+ "right": "YFI Balance"
115
+ },
116
+ "mode": "binary",
117
+ "reduce": {
118
+ "reducer": "sum"
119
+ },
120
+ "replaceFields": false
121
+ }
122
+ },
123
+ {
124
+ "id": "calculateField",
125
+ "options": {
126
+ "alias": "yvYFI Balance in YFI",
127
+ "binary": {
128
+ "left": "yvYFI Value",
129
+ "operator": "/",
130
+ "reducer": "sum",
131
+ "right": "yfi price"
132
+ },
133
+ "mode": "binary",
134
+ "reduce": {
135
+ "reducer": "sum"
136
+ },
137
+ "replaceFields": false
138
+ }
139
+ },
140
+ {
141
+ "id": "calculateField",
142
+ "options": {
143
+ "alias": "YFI Balance",
144
+ "binary": {
145
+ "left": "yvYFI Balance in YFI",
146
+ "operator": "+",
147
+ "reducer": "sum",
148
+ "right": "YFI Balance"
149
+ },
150
+ "mode": "binary",
151
+ "reduce": {
152
+ "reducer": "sum"
153
+ },
154
+ "replaceFields": true
155
+ }
156
+ }
157
+ ],
158
+ "type": "stat"
159
+ },
160
+ {
161
+ "datasource": "PROMETHEUS",
162
+ "fieldConfig": {
163
+ "defaults": {
164
+ "color": {
165
+ "mode": "thresholds"
166
+ },
167
+ "mappings": [],
168
+ "thresholds": {
169
+ "mode": "absolute",
170
+ "steps": [
171
+ {
172
+ "color": "green",
173
+ "value": null
174
+ },
175
+ {
176
+ "color": "red",
177
+ "value": 80
178
+ }
179
+ ]
180
+ },
181
+ "unit": "currencyUSD"
182
+ },
183
+ "overrides": []
184
+ },
185
+ "gridPos": {
186
+ "h": 4,
187
+ "w": 3,
188
+ "x": 3,
189
+ "y": 0
190
+ },
191
+ "id": 7,
192
+ "options": {
193
+ "colorMode": "value",
194
+ "graphMode": "area",
195
+ "justifyMode": "auto",
196
+ "orientation": "auto",
197
+ "reduceOptions": {
198
+ "calcs": [
199
+ "lastNotNull"
200
+ ],
201
+ "fields": "",
202
+ "values": false
203
+ },
204
+ "text": {},
205
+ "textMode": "auto"
206
+ },
207
+ "pluginVersion": "10.2.0",
208
+ "targets": [
209
+ {
210
+ "datasource": "PROMETHEUS",
211
+ "exemplar": true,
212
+ "expr": "sum(treasury_assets{param=\"usd value\",token=\"YFI\"}) + sum(treasury_assets{param=\"usd value\",token=\"yvYFI\"})",
213
+ "format": "time_series",
214
+ "instant": false,
215
+ "interval": "",
216
+ "legendFormat": "",
217
+ "refId": "A"
218
+ }
219
+ ],
220
+ "title": "YFI in Treasury ($)",
221
+ "type": "stat"
222
+ },
223
+ {
224
+ "datasource": "PROMETHEUS",
225
+ "fieldConfig": {
226
+ "defaults": {
227
+ "color": {
228
+ "mode": "thresholds"
229
+ },
230
+ "mappings": [],
231
+ "thresholds": {
232
+ "mode": "absolute",
233
+ "steps": [
234
+ {
235
+ "color": "green",
236
+ "value": null
237
+ },
238
+ {
239
+ "color": "red",
240
+ "value": 80
241
+ }
242
+ ]
243
+ },
244
+ "unit": "currencyUSD"
245
+ },
246
+ "overrides": []
247
+ },
248
+ "gridPos": {
249
+ "h": 4,
250
+ "w": 3,
251
+ "x": 6,
252
+ "y": 0
253
+ },
254
+ "id": 9,
255
+ "options": {
256
+ "colorMode": "value",
257
+ "graphMode": "area",
258
+ "justifyMode": "auto",
259
+ "orientation": "auto",
260
+ "reduceOptions": {
261
+ "calcs": [
262
+ "lastNotNull"
263
+ ],
264
+ "fields": "",
265
+ "values": false
266
+ },
267
+ "text": {},
268
+ "textMode": "auto"
269
+ },
270
+ "pluginVersion": "10.2.0",
271
+ "targets": [
272
+ {
273
+ "datasource": "PROMETHEUS",
274
+ "exemplar": true,
275
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket!=\"YFI\", bucket!=\"Other long term assets\"})",
276
+ "format": "time_series",
277
+ "instant": false,
278
+ "interval": "",
279
+ "legendFormat": "",
280
+ "refId": "A"
281
+ }
282
+ ],
283
+ "title": "Liquid Assets",
284
+ "type": "stat"
285
+ },
286
+ {
287
+ "datasource": "PROMETHEUS",
288
+ "fieldConfig": {
289
+ "defaults": {
290
+ "color": {
291
+ "mode": "thresholds"
292
+ },
293
+ "mappings": [],
294
+ "thresholds": {
295
+ "mode": "absolute",
296
+ "steps": [
297
+ {
298
+ "color": "green",
299
+ "value": null
300
+ },
301
+ {
302
+ "color": "red",
303
+ "value": 80
304
+ }
305
+ ]
306
+ },
307
+ "unit": "currencyUSD"
308
+ },
309
+ "overrides": []
310
+ },
311
+ "gridPos": {
312
+ "h": 4,
313
+ "w": 3,
314
+ "x": 9,
315
+ "y": 0
316
+ },
317
+ "id": 20,
318
+ "options": {
319
+ "colorMode": "value",
320
+ "graphMode": "area",
321
+ "justifyMode": "auto",
322
+ "orientation": "auto",
323
+ "reduceOptions": {
324
+ "calcs": [
325
+ "lastNotNull"
326
+ ],
327
+ "fields": "",
328
+ "values": false
329
+ },
330
+ "text": {},
331
+ "textMode": "auto"
332
+ },
333
+ "pluginVersion": "10.2.0",
334
+ "targets": [
335
+ {
336
+ "datasource": "PROMETHEUS",
337
+ "exemplar": true,
338
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"ETH\"})",
339
+ "interval": "",
340
+ "legendFormat": "",
341
+ "refId": "A"
342
+ }
343
+ ],
344
+ "title": "ETH",
345
+ "type": "stat"
346
+ },
347
+ {
348
+ "datasource": "PROMETHEUS",
349
+ "fieldConfig": {
350
+ "defaults": {
351
+ "color": {
352
+ "mode": "thresholds"
353
+ },
354
+ "mappings": [],
355
+ "thresholds": {
356
+ "mode": "absolute",
357
+ "steps": [
358
+ {
359
+ "color": "green",
360
+ "value": null
361
+ },
362
+ {
363
+ "color": "red",
364
+ "value": 80
365
+ }
366
+ ]
367
+ },
368
+ "unit": "currencyUSD"
369
+ },
370
+ "overrides": []
371
+ },
372
+ "gridPos": {
373
+ "h": 4,
374
+ "w": 3,
375
+ "x": 12,
376
+ "y": 0
377
+ },
378
+ "id": 19,
379
+ "options": {
380
+ "colorMode": "value",
381
+ "graphMode": "area",
382
+ "justifyMode": "auto",
383
+ "orientation": "auto",
384
+ "reduceOptions": {
385
+ "calcs": [
386
+ "lastNotNull"
387
+ ],
388
+ "fields": "",
389
+ "values": false
390
+ },
391
+ "text": {},
392
+ "textMode": "auto"
393
+ },
394
+ "pluginVersion": "10.2.0",
395
+ "targets": [
396
+ {
397
+ "datasource": "PROMETHEUS",
398
+ "exemplar": true,
399
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"BTC\"})",
400
+ "interval": "",
401
+ "legendFormat": "",
402
+ "refId": "A"
403
+ }
404
+ ],
405
+ "title": "BTC",
406
+ "type": "stat"
407
+ },
408
+ {
409
+ "datasource": "PROMETHEUS",
410
+ "fieldConfig": {
411
+ "defaults": {
412
+ "color": {
413
+ "mode": "thresholds"
414
+ },
415
+ "mappings": [],
416
+ "thresholds": {
417
+ "mode": "absolute",
418
+ "steps": [
419
+ {
420
+ "color": "green",
421
+ "value": null
422
+ },
423
+ {
424
+ "color": "red",
425
+ "value": 80
426
+ }
427
+ ]
428
+ },
429
+ "unit": "currencyUSD"
430
+ },
431
+ "overrides": []
432
+ },
433
+ "gridPos": {
434
+ "h": 4,
435
+ "w": 3,
436
+ "x": 15,
437
+ "y": 0
438
+ },
439
+ "id": 10,
440
+ "options": {
441
+ "colorMode": "value",
442
+ "graphMode": "area",
443
+ "justifyMode": "auto",
444
+ "orientation": "auto",
445
+ "reduceOptions": {
446
+ "calcs": [
447
+ "lastNotNull"
448
+ ],
449
+ "fields": "",
450
+ "values": false
451
+ },
452
+ "text": {},
453
+ "textMode": "auto"
454
+ },
455
+ "pluginVersion": "10.2.0",
456
+ "targets": [
457
+ {
458
+ "datasource": "PROMETHEUS",
459
+ "exemplar": true,
460
+ "expr": "sum(treasury_assets{param=\"usd value\", bucket=\"Cash & cash equivalents\"})",
461
+ "format": "time_series",
462
+ "instant": false,
463
+ "interval": "",
464
+ "legendFormat": "",
465
+ "refId": "A"
466
+ }
467
+ ],
468
+ "title": "Cash",
469
+ "type": "stat"
470
+ },
471
+ {
472
+ "datasource": "PROMETHEUS",
473
+ "fieldConfig": {
474
+ "defaults": {
475
+ "color": {
476
+ "mode": "thresholds"
477
+ },
478
+ "mappings": [],
479
+ "thresholds": {
480
+ "mode": "absolute",
481
+ "steps": [
482
+ {
483
+ "color": "green",
484
+ "value": null
485
+ },
486
+ {
487
+ "color": "red",
488
+ "value": 80
489
+ }
490
+ ]
491
+ },
492
+ "unit": "currencyUSD"
493
+ },
494
+ "overrides": []
495
+ },
496
+ "gridPos": {
497
+ "h": 4,
498
+ "w": 3,
499
+ "x": 18,
500
+ "y": 0
501
+ },
502
+ "id": 8,
503
+ "options": {
504
+ "colorMode": "value",
505
+ "graphMode": "area",
506
+ "justifyMode": "auto",
507
+ "orientation": "auto",
508
+ "reduceOptions": {
509
+ "calcs": [
510
+ "lastNotNull"
511
+ ],
512
+ "fields": "",
513
+ "values": false
514
+ },
515
+ "text": {},
516
+ "textMode": "auto"
517
+ },
518
+ "pluginVersion": "10.2.0",
519
+ "targets": [
520
+ {
521
+ "datasource": "PROMETHEUS",
522
+ "exemplar": true,
523
+ "expr": "sum(treasury_debt{param=\"usd value\"})",
524
+ "format": "time_series",
525
+ "instant": false,
526
+ "interval": "",
527
+ "legendFormat": "",
528
+ "refId": "A"
529
+ }
530
+ ],
531
+ "title": "Treasury Debt",
532
+ "type": "stat"
533
+ },
534
+ {
535
+ "datasource": "PROMETHEUS",
536
+ "fieldConfig": {
537
+ "defaults": {
538
+ "color": {
539
+ "mode": "thresholds"
540
+ },
541
+ "mappings": [],
542
+ "thresholds": {
543
+ "mode": "absolute",
544
+ "steps": [
545
+ {
546
+ "color": "green",
547
+ "value": null
548
+ },
549
+ {
550
+ "color": "red",
551
+ "value": 80
552
+ }
553
+ ]
554
+ },
555
+ "unit": "currencyUSD"
556
+ },
557
+ "overrides": []
558
+ },
559
+ "gridPos": {
560
+ "h": 4,
561
+ "w": 3,
562
+ "x": 21,
563
+ "y": 0
564
+ },
565
+ "id": 18,
566
+ "options": {
567
+ "colorMode": "value",
568
+ "graphMode": "area",
569
+ "justifyMode": "auto",
570
+ "orientation": "auto",
571
+ "reduceOptions": {
572
+ "calcs": [
573
+ "lastNotNull"
574
+ ],
575
+ "fields": "",
576
+ "values": false
577
+ },
578
+ "text": {},
579
+ "textMode": "auto"
580
+ },
581
+ "pluginVersion": "10.2.0",
582
+ "targets": [
583
+ {
584
+ "datasource": "PROMETHEUS",
585
+ "exemplar": true,
586
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"Cash & cash equivalents\"}) - sum(treasury_debt{param=\"usd value\"})",
587
+ "interval": "",
588
+ "legendFormat": "",
589
+ "refId": "A"
590
+ }
591
+ ],
592
+ "title": "Cash - Debt",
593
+ "type": "stat"
594
+ },
595
+ {
596
+ "datasource": "PROMETHEUS",
597
+ "fieldConfig": {
598
+ "defaults": {
599
+ "color": {
600
+ "mode": "palette-classic"
601
+ },
602
+ "custom": {
603
+ "axisBorderShow": false,
604
+ "axisCenteredZero": false,
605
+ "axisColorMode": "text",
606
+ "axisLabel": "",
607
+ "axisPlacement": "auto",
608
+ "barAlignment": 0,
609
+ "drawStyle": "line",
610
+ "fillOpacity": 0,
611
+ "gradientMode": "none",
612
+ "hideFrom": {
613
+ "legend": false,
614
+ "tooltip": false,
615
+ "viz": false
616
+ },
617
+ "insertNulls": false,
618
+ "lineInterpolation": "linear",
619
+ "lineWidth": 1,
620
+ "pointSize": 5,
621
+ "scaleDistribution": {
622
+ "type": "linear"
623
+ },
624
+ "showPoints": "auto",
625
+ "spanNulls": 3600000,
626
+ "stacking": {
627
+ "group": "A",
628
+ "mode": "none"
629
+ },
630
+ "thresholdsStyle": {
631
+ "mode": "off"
632
+ }
633
+ },
634
+ "mappings": [],
635
+ "thresholds": {
636
+ "mode": "absolute",
637
+ "steps": [
638
+ {
639
+ "color": "green",
640
+ "value": null
641
+ }
642
+ ]
643
+ },
644
+ "unit": "currencyUSD"
645
+ },
646
+ "overrides": []
647
+ },
648
+ "gridPos": {
649
+ "h": 10,
650
+ "w": 12,
651
+ "x": 0,
652
+ "y": 4
653
+ },
654
+ "id": 2,
655
+ "options": {
656
+ "legend": {
657
+ "calcs": [
658
+ "lastNotNull"
659
+ ],
660
+ "displayMode": "list",
661
+ "placement": "bottom",
662
+ "showLegend": true
663
+ },
664
+ "tooltip": {
665
+ "mode": "single",
666
+ "sort": "none"
667
+ }
668
+ },
669
+ "targets": [
670
+ {
671
+ "datasource": "PROMETHEUS",
672
+ "exemplar": true,
673
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket!=\"YFI\", bucket!=\"Other long term assets\"}) by (bucket)",
674
+ "hide": false,
675
+ "interval": "",
676
+ "legendFormat": "{{bucket}}",
677
+ "refId": "A"
678
+ },
679
+ {
680
+ "datasource": "PROMETHEUS",
681
+ "exemplar": true,
682
+ "expr": "sum(treasury_assets{param=\"usd value\",token=\"YFI\"}) by (bucket)",
683
+ "hide": true,
684
+ "interval": "",
685
+ "legendFormat": "",
686
+ "refId": "B"
687
+ }
688
+ ],
689
+ "title": "Liquid Assets",
690
+ "type": "timeseries"
691
+ },
692
+ {
693
+ "datasource": "PROMETHEUS",
694
+ "fieldConfig": {
695
+ "defaults": {
696
+ "color": {
697
+ "mode": "palette-classic"
698
+ },
699
+ "custom": {
700
+ "axisBorderShow": false,
701
+ "axisCenteredZero": false,
702
+ "axisColorMode": "text",
703
+ "axisLabel": "",
704
+ "axisPlacement": "auto",
705
+ "barAlignment": 0,
706
+ "drawStyle": "line",
707
+ "fillOpacity": 0,
708
+ "gradientMode": "none",
709
+ "hideFrom": {
710
+ "legend": false,
711
+ "tooltip": false,
712
+ "viz": false
713
+ },
714
+ "insertNulls": false,
715
+ "lineInterpolation": "linear",
716
+ "lineWidth": 1,
717
+ "pointSize": 5,
718
+ "scaleDistribution": {
719
+ "type": "linear"
720
+ },
721
+ "showPoints": "auto",
722
+ "spanNulls": 3600000,
723
+ "stacking": {
724
+ "group": "A",
725
+ "mode": "none"
726
+ },
727
+ "thresholdsStyle": {
728
+ "mode": "off"
729
+ }
730
+ },
731
+ "mappings": [],
732
+ "thresholds": {
733
+ "mode": "absolute",
734
+ "steps": [
735
+ {
736
+ "color": "green",
737
+ "value": null
738
+ },
739
+ {
740
+ "color": "red",
741
+ "value": 80
742
+ }
743
+ ]
744
+ },
745
+ "unit": "currencyUSD"
746
+ },
747
+ "overrides": []
748
+ },
749
+ "gridPos": {
750
+ "h": 10,
751
+ "w": 12,
752
+ "x": 12,
753
+ "y": 4
754
+ },
755
+ "id": 3,
756
+ "options": {
757
+ "legend": {
758
+ "calcs": [
759
+ "lastNotNull"
760
+ ],
761
+ "displayMode": "list",
762
+ "placement": "bottom",
763
+ "showLegend": true
764
+ },
765
+ "tooltip": {
766
+ "mode": "single",
767
+ "sort": "none"
768
+ }
769
+ },
770
+ "targets": [
771
+ {
772
+ "datasource": "PROMETHEUS",
773
+ "exemplar": true,
774
+ "expr": "sum(treasury_debt{param=\"usd value\"}) by (token)",
775
+ "interval": "",
776
+ "legendFormat": "{{token}}",
777
+ "refId": "A"
778
+ }
779
+ ],
780
+ "title": "Protocol Debt",
781
+ "type": "timeseries"
782
+ },
783
+ {
784
+ "datasource": "PROMETHEUS",
785
+ "fieldConfig": {
786
+ "defaults": {
787
+ "color": {
788
+ "mode": "palette-classic"
789
+ },
790
+ "custom": {
791
+ "axisBorderShow": false,
792
+ "axisCenteredZero": false,
793
+ "axisColorMode": "text",
794
+ "axisLabel": "",
795
+ "axisPlacement": "auto",
796
+ "barAlignment": 0,
797
+ "drawStyle": "line",
798
+ "fillOpacity": 0,
799
+ "gradientMode": "none",
800
+ "hideFrom": {
801
+ "legend": false,
802
+ "tooltip": false,
803
+ "viz": false
804
+ },
805
+ "insertNulls": false,
806
+ "lineInterpolation": "linear",
807
+ "lineWidth": 1,
808
+ "pointSize": 5,
809
+ "scaleDistribution": {
810
+ "type": "linear"
811
+ },
812
+ "showPoints": "auto",
813
+ "spanNulls": 3600000,
814
+ "stacking": {
815
+ "group": "A",
816
+ "mode": "none"
817
+ },
818
+ "thresholdsStyle": {
819
+ "mode": "off"
820
+ }
821
+ },
822
+ "mappings": [],
823
+ "thresholds": {
824
+ "mode": "absolute",
825
+ "steps": [
826
+ {
827
+ "color": "green",
828
+ "value": null
829
+ },
830
+ {
831
+ "color": "red",
832
+ "value": 80
833
+ }
834
+ ]
835
+ },
836
+ "unit": "currencyUSD"
837
+ },
838
+ "overrides": []
839
+ },
840
+ "gridPos": {
841
+ "h": 10,
842
+ "w": 12,
843
+ "x": 0,
844
+ "y": 14
845
+ },
846
+ "id": 5,
847
+ "options": {
848
+ "legend": {
849
+ "calcs": [
850
+ "lastNotNull"
851
+ ],
852
+ "displayMode": "list",
853
+ "placement": "bottom",
854
+ "showLegend": true
855
+ },
856
+ "tooltip": {
857
+ "mode": "single",
858
+ "sort": "none"
859
+ }
860
+ },
861
+ "targets": [
862
+ {
863
+ "datasource": "PROMETHEUS",
864
+ "exemplar": true,
865
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket!=\"YFI\",bucket!=\"Other long term assets\"})",
866
+ "hide": false,
867
+ "interval": "",
868
+ "legendFormat": "Liquid Assets",
869
+ "refId": "C"
870
+ },
871
+ {
872
+ "datasource": "PROMETHEUS",
873
+ "exemplar": true,
874
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"Cash & cash equivalents\"})",
875
+ "hide": false,
876
+ "interval": "",
877
+ "legendFormat": "Cash",
878
+ "refId": "E"
879
+ },
880
+ {
881
+ "datasource": "PROMETHEUS",
882
+ "exemplar": true,
883
+ "expr": "sum(treasury_debt{param=\"usd value\"})",
884
+ "hide": false,
885
+ "interval": "",
886
+ "legendFormat": "Debt",
887
+ "refId": "B"
888
+ },
889
+ {
890
+ "datasource": "PROMETHEUS",
891
+ "exemplar": true,
892
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"Cash & cash equivalents\"}) - sum(treasury_debt{param=\"usd value\"})",
893
+ "hide": false,
894
+ "interval": "",
895
+ "legendFormat": "Cash - Debt",
896
+ "refId": "D"
897
+ },
898
+ {
899
+ "datasource": "PROMETHEUS",
900
+ "exemplar": true,
901
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket!=\"YFI\"}) - sum(treasury_debt{param=\"usd value\"})",
902
+ "hide": false,
903
+ "interval": "",
904
+ "legendFormat": "Liquid Assets - Debt",
905
+ "refId": "A"
906
+ }
907
+ ],
908
+ "title": "Assets - Debt",
909
+ "type": "timeseries"
910
+ },
911
+ {
912
+ "datasource": "PROMETHEUS",
913
+ "fieldConfig": {
914
+ "defaults": {
915
+ "color": {
916
+ "mode": "palette-classic"
917
+ },
918
+ "custom": {
919
+ "axisBorderShow": false,
920
+ "axisCenteredZero": false,
921
+ "axisColorMode": "text",
922
+ "axisLabel": "",
923
+ "axisPlacement": "auto",
924
+ "barAlignment": 0,
925
+ "drawStyle": "line",
926
+ "fillOpacity": 0,
927
+ "gradientMode": "none",
928
+ "hideFrom": {
929
+ "legend": false,
930
+ "tooltip": false,
931
+ "viz": false
932
+ },
933
+ "insertNulls": false,
934
+ "lineInterpolation": "linear",
935
+ "lineWidth": 1,
936
+ "pointSize": 5,
937
+ "scaleDistribution": {
938
+ "type": "linear"
939
+ },
940
+ "showPoints": "auto",
941
+ "spanNulls": 3600000,
942
+ "stacking": {
943
+ "group": "A",
944
+ "mode": "none"
945
+ },
946
+ "thresholdsStyle": {
947
+ "mode": "off"
948
+ }
949
+ },
950
+ "mappings": [],
951
+ "thresholds": {
952
+ "mode": "absolute",
953
+ "steps": [
954
+ {
955
+ "color": "green",
956
+ "value": null
957
+ },
958
+ {
959
+ "color": "red",
960
+ "value": 80
961
+ }
962
+ ]
963
+ },
964
+ "unit": "percentunit"
965
+ },
966
+ "overrides": []
967
+ },
968
+ "gridPos": {
969
+ "h": 10,
970
+ "w": 12,
971
+ "x": 12,
972
+ "y": 14
973
+ },
974
+ "id": 35,
975
+ "options": {
976
+ "legend": {
977
+ "calcs": [],
978
+ "displayMode": "list",
979
+ "placement": "bottom",
980
+ "showLegend": true
981
+ },
982
+ "tooltip": {
983
+ "mode": "single",
984
+ "sort": "none"
985
+ }
986
+ },
987
+ "pluginVersion": "8.2.1",
988
+ "targets": [
989
+ {
990
+ "datasource": "PROMETHEUS",
991
+ "exemplar": true,
992
+ "expr": "sum(treasury_debt{param=\"usd value\"})",
993
+ "interval": "",
994
+ "legendFormat": "",
995
+ "refId": "A"
996
+ },
997
+ {
998
+ "datasource": "PROMETHEUS",
999
+ "exemplar": true,
1000
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket!=\"Other long term assets\"})",
1001
+ "hide": false,
1002
+ "interval": "",
1003
+ "legendFormat": "",
1004
+ "refId": "B"
1005
+ }
1006
+ ],
1007
+ "title": "Debt to Asset Ratio",
1008
+ "transformations": [
1009
+ {
1010
+ "id": "calculateField",
1011
+ "options": {
1012
+ "alias": "Debt to Asset Ratio",
1013
+ "binary": {
1014
+ "left": "sum(treasury_debt{param=\"usd value\"})",
1015
+ "operator": "/",
1016
+ "reducer": "sum",
1017
+ "right": "sum(treasury_assets{param=\"usd value\",bucket!=\"Other long term assets\"})"
1018
+ },
1019
+ "mode": "binary",
1020
+ "reduce": {
1021
+ "reducer": "sum"
1022
+ },
1023
+ "replaceFields": true
1024
+ }
1025
+ }
1026
+ ],
1027
+ "type": "timeseries"
1028
+ },
1029
+ {
1030
+ "collapsed": true,
1031
+ "datasource": {
1032
+ "type": "frser-sqlite-datasource",
1033
+ "uid": "P2D2EEF3E092AF52B"
1034
+ },
1035
+ "gridPos": {
1036
+ "h": 1,
1037
+ "w": 24,
1038
+ "x": 0,
1039
+ "y": 24
1040
+ },
1041
+ "id": 33,
1042
+ "panels": [
1043
+ {
1044
+ "aliasColors": {},
1045
+ "bars": false,
1046
+ "dashLength": 10,
1047
+ "dashes": false,
1048
+ "datasource": "PROMETHEUS",
1049
+ "fieldConfig": {
1050
+ "defaults": {
1051
+ "unit": "currencyUSD"
1052
+ },
1053
+ "overrides": []
1054
+ },
1055
+ "fill": 0,
1056
+ "fillGradient": 0,
1057
+ "gridPos": {
1058
+ "h": 16,
1059
+ "w": 24,
1060
+ "x": 0,
1061
+ "y": 26
1062
+ },
1063
+ "hiddenSeries": false,
1064
+ "id": 15,
1065
+ "legend": {
1066
+ "alignAsTable": true,
1067
+ "avg": false,
1068
+ "current": true,
1069
+ "hideEmpty": true,
1070
+ "hideZero": true,
1071
+ "max": false,
1072
+ "min": false,
1073
+ "rightSide": true,
1074
+ "show": true,
1075
+ "sort": "current",
1076
+ "sortDesc": true,
1077
+ "total": false,
1078
+ "values": true
1079
+ },
1080
+ "lines": true,
1081
+ "linewidth": 1,
1082
+ "nullPointMode": "null as zero",
1083
+ "options": {
1084
+ "alertThreshold": true
1085
+ },
1086
+ "percentage": false,
1087
+ "pluginVersion": "8.2.1",
1088
+ "pointradius": 2,
1089
+ "points": false,
1090
+ "renderer": "flot",
1091
+ "seriesOverrides": [],
1092
+ "spaceLength": 10,
1093
+ "stack": false,
1094
+ "steppedLine": false,
1095
+ "targets": [
1096
+ {
1097
+ "datasource": "PROMETHEUS",
1098
+ "exemplar": true,
1099
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"Cash & cash equivalents\"}) by (token)",
1100
+ "hide": false,
1101
+ "interval": "",
1102
+ "legendFormat": "{{token}}",
1103
+ "refId": "A"
1104
+ }
1105
+ ],
1106
+ "thresholds": [],
1107
+ "timeRegions": [],
1108
+ "title": "Liquid Cash",
1109
+ "tooltip": {
1110
+ "shared": true,
1111
+ "sort": 2,
1112
+ "value_type": "individual"
1113
+ },
1114
+ "type": "graph",
1115
+ "xaxis": {
1116
+ "mode": "time",
1117
+ "show": true,
1118
+ "values": []
1119
+ },
1120
+ "yaxes": [
1121
+ {
1122
+ "$$hashKey": "object:72",
1123
+ "format": "currencyUSD",
1124
+ "logBase": 1,
1125
+ "show": true
1126
+ },
1127
+ {
1128
+ "$$hashKey": "object:73",
1129
+ "format": "short",
1130
+ "logBase": 1,
1131
+ "show": false
1132
+ }
1133
+ ],
1134
+ "yaxis": {
1135
+ "align": false
1136
+ }
1137
+ }
1138
+ ],
1139
+ "targets": [
1140
+ {
1141
+ "datasource": {
1142
+ "type": "frser-sqlite-datasource",
1143
+ "uid": "P2D2EEF3E092AF52B"
1144
+ },
1145
+ "refId": "A"
1146
+ }
1147
+ ],
1148
+ "title": "Liquid Cash",
1149
+ "type": "row"
1150
+ },
1151
+ {
1152
+ "collapsed": true,
1153
+ "datasource": "PROMETHEUS",
1154
+ "gridPos": {
1155
+ "h": 1,
1156
+ "w": 24,
1157
+ "x": 0,
1158
+ "y": 25
1159
+ },
1160
+ "id": 31,
1161
+ "panels": [
1162
+ {
1163
+ "aliasColors": {},
1164
+ "bars": false,
1165
+ "dashLength": 10,
1166
+ "dashes": false,
1167
+ "datasource": "PROMETHEUS",
1168
+ "fieldConfig": {
1169
+ "defaults": {
1170
+ "unit": "currencyUSD"
1171
+ },
1172
+ "overrides": []
1173
+ },
1174
+ "fill": 0,
1175
+ "fillGradient": 0,
1176
+ "gridPos": {
1177
+ "h": 16,
1178
+ "w": 24,
1179
+ "x": 0,
1180
+ "y": 28
1181
+ },
1182
+ "hiddenSeries": false,
1183
+ "id": 21,
1184
+ "legend": {
1185
+ "alignAsTable": true,
1186
+ "avg": false,
1187
+ "current": true,
1188
+ "hideEmpty": true,
1189
+ "hideZero": true,
1190
+ "max": false,
1191
+ "min": false,
1192
+ "rightSide": true,
1193
+ "show": true,
1194
+ "sort": "current",
1195
+ "sortDesc": true,
1196
+ "total": false,
1197
+ "values": true
1198
+ },
1199
+ "lines": true,
1200
+ "linewidth": 1,
1201
+ "nullPointMode": "null as zero",
1202
+ "options": {
1203
+ "alertThreshold": true
1204
+ },
1205
+ "percentage": false,
1206
+ "pluginVersion": "8.2.1",
1207
+ "pointradius": 2,
1208
+ "points": false,
1209
+ "renderer": "flot",
1210
+ "seriesOverrides": [],
1211
+ "spaceLength": 10,
1212
+ "stack": false,
1213
+ "steppedLine": false,
1214
+ "targets": [
1215
+ {
1216
+ "datasource": "PROMETHEUS",
1217
+ "exemplar": true,
1218
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"ETH\"}) by (token)",
1219
+ "hide": false,
1220
+ "interval": "",
1221
+ "legendFormat": "{{token}}",
1222
+ "refId": "A"
1223
+ }
1224
+ ],
1225
+ "thresholds": [],
1226
+ "timeRegions": [],
1227
+ "title": "Liquid ETH",
1228
+ "tooltip": {
1229
+ "shared": true,
1230
+ "sort": 2,
1231
+ "value_type": "individual"
1232
+ },
1233
+ "type": "graph",
1234
+ "xaxis": {
1235
+ "mode": "time",
1236
+ "show": true,
1237
+ "values": []
1238
+ },
1239
+ "yaxes": [
1240
+ {
1241
+ "$$hashKey": "object:72",
1242
+ "format": "currencyUSD",
1243
+ "logBase": 1,
1244
+ "show": true
1245
+ },
1246
+ {
1247
+ "$$hashKey": "object:73",
1248
+ "format": "short",
1249
+ "logBase": 1,
1250
+ "show": false
1251
+ }
1252
+ ],
1253
+ "yaxis": {
1254
+ "align": false
1255
+ }
1256
+ }
1257
+ ],
1258
+ "targets": [
1259
+ {
1260
+ "datasource": {
1261
+ "type": "frser-sqlite-datasource",
1262
+ "uid": "P2D2EEF3E092AF52B"
1263
+ },
1264
+ "refId": "A"
1265
+ }
1266
+ ],
1267
+ "title": "Liquid ETH",
1268
+ "type": "row"
1269
+ },
1270
+ {
1271
+ "collapsed": true,
1272
+ "datasource": {
1273
+ "type": "frser-sqlite-datasource",
1274
+ "uid": "P2D2EEF3E092AF52B"
1275
+ },
1276
+ "gridPos": {
1277
+ "h": 1,
1278
+ "w": 24,
1279
+ "x": 0,
1280
+ "y": 26
1281
+ },
1282
+ "id": 29,
1283
+ "panels": [
1284
+ {
1285
+ "aliasColors": {},
1286
+ "bars": false,
1287
+ "dashLength": 10,
1288
+ "dashes": false,
1289
+ "datasource": "PROMETHEUS",
1290
+ "fieldConfig": {
1291
+ "defaults": {
1292
+ "unit": "currencyUSD"
1293
+ },
1294
+ "overrides": []
1295
+ },
1296
+ "fill": 0,
1297
+ "fillGradient": 0,
1298
+ "gridPos": {
1299
+ "h": 16,
1300
+ "w": 24,
1301
+ "x": 0,
1302
+ "y": 28
1303
+ },
1304
+ "hiddenSeries": false,
1305
+ "id": 22,
1306
+ "legend": {
1307
+ "alignAsTable": true,
1308
+ "avg": false,
1309
+ "current": true,
1310
+ "hideEmpty": true,
1311
+ "hideZero": true,
1312
+ "max": false,
1313
+ "min": false,
1314
+ "rightSide": true,
1315
+ "show": true,
1316
+ "sort": "current",
1317
+ "sortDesc": true,
1318
+ "total": false,
1319
+ "values": true
1320
+ },
1321
+ "lines": true,
1322
+ "linewidth": 1,
1323
+ "nullPointMode": "null as zero",
1324
+ "options": {
1325
+ "alertThreshold": true
1326
+ },
1327
+ "percentage": false,
1328
+ "pluginVersion": "8.2.1",
1329
+ "pointradius": 2,
1330
+ "points": false,
1331
+ "renderer": "flot",
1332
+ "seriesOverrides": [],
1333
+ "spaceLength": 10,
1334
+ "stack": false,
1335
+ "steppedLine": false,
1336
+ "targets": [
1337
+ {
1338
+ "datasource": "PROMETHEUS",
1339
+ "exemplar": true,
1340
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"BTC\"}) by (token)",
1341
+ "hide": false,
1342
+ "interval": "",
1343
+ "legendFormat": "{{token}}",
1344
+ "refId": "A"
1345
+ }
1346
+ ],
1347
+ "thresholds": [],
1348
+ "timeRegions": [],
1349
+ "title": "Liquid BTC",
1350
+ "tooltip": {
1351
+ "shared": true,
1352
+ "sort": 2,
1353
+ "value_type": "individual"
1354
+ },
1355
+ "type": "graph",
1356
+ "xaxis": {
1357
+ "mode": "time",
1358
+ "show": true,
1359
+ "values": []
1360
+ },
1361
+ "yaxes": [
1362
+ {
1363
+ "$$hashKey": "object:72",
1364
+ "format": "currencyUSD",
1365
+ "logBase": 1,
1366
+ "show": true
1367
+ },
1368
+ {
1369
+ "$$hashKey": "object:73",
1370
+ "format": "short",
1371
+ "logBase": 1,
1372
+ "show": false
1373
+ }
1374
+ ],
1375
+ "yaxis": {
1376
+ "align": false
1377
+ }
1378
+ }
1379
+ ],
1380
+ "targets": [
1381
+ {
1382
+ "datasource": {
1383
+ "type": "frser-sqlite-datasource",
1384
+ "uid": "P2D2EEF3E092AF52B"
1385
+ },
1386
+ "refId": "A"
1387
+ }
1388
+ ],
1389
+ "title": "Liquid BTC",
1390
+ "type": "row"
1391
+ },
1392
+ {
1393
+ "collapsed": true,
1394
+ "datasource": {
1395
+ "type": "frser-sqlite-datasource",
1396
+ "uid": "P2D2EEF3E092AF52B"
1397
+ },
1398
+ "gridPos": {
1399
+ "h": 1,
1400
+ "w": 24,
1401
+ "x": 0,
1402
+ "y": 27
1403
+ },
1404
+ "id": 27,
1405
+ "panels": [
1406
+ {
1407
+ "aliasColors": {},
1408
+ "bars": false,
1409
+ "dashLength": 10,
1410
+ "dashes": false,
1411
+ "datasource": "PROMETHEUS",
1412
+ "fieldConfig": {
1413
+ "defaults": {
1414
+ "unit": "currencyUSD"
1415
+ },
1416
+ "overrides": []
1417
+ },
1418
+ "fill": 0,
1419
+ "fillGradient": 0,
1420
+ "gridPos": {
1421
+ "h": 16,
1422
+ "w": 24,
1423
+ "x": 0,
1424
+ "y": 28
1425
+ },
1426
+ "hiddenSeries": false,
1427
+ "id": 23,
1428
+ "legend": {
1429
+ "alignAsTable": true,
1430
+ "avg": false,
1431
+ "current": true,
1432
+ "hideEmpty": true,
1433
+ "hideZero": true,
1434
+ "max": false,
1435
+ "min": false,
1436
+ "rightSide": true,
1437
+ "show": true,
1438
+ "sort": "current",
1439
+ "sortDesc": true,
1440
+ "total": false,
1441
+ "values": true
1442
+ },
1443
+ "lines": true,
1444
+ "linewidth": 1,
1445
+ "nullPointMode": "null as zero",
1446
+ "options": {
1447
+ "alertThreshold": true
1448
+ },
1449
+ "percentage": false,
1450
+ "pluginVersion": "8.2.1",
1451
+ "pointradius": 2,
1452
+ "points": false,
1453
+ "renderer": "flot",
1454
+ "seriesOverrides": [],
1455
+ "spaceLength": 10,
1456
+ "stack": false,
1457
+ "steppedLine": false,
1458
+ "targets": [
1459
+ {
1460
+ "datasource": "PROMETHEUS",
1461
+ "exemplar": true,
1462
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"Other short term assets\"}) by (token)",
1463
+ "hide": false,
1464
+ "interval": "",
1465
+ "legendFormat": "{{token}}",
1466
+ "refId": "A"
1467
+ }
1468
+ ],
1469
+ "thresholds": [],
1470
+ "timeRegions": [],
1471
+ "title": "Liquid Everything Else",
1472
+ "tooltip": {
1473
+ "shared": true,
1474
+ "sort": 2,
1475
+ "value_type": "individual"
1476
+ },
1477
+ "type": "graph",
1478
+ "xaxis": {
1479
+ "mode": "time",
1480
+ "show": true,
1481
+ "values": []
1482
+ },
1483
+ "yaxes": [
1484
+ {
1485
+ "$$hashKey": "object:72",
1486
+ "format": "currencyUSD",
1487
+ "logBase": 1,
1488
+ "show": true
1489
+ },
1490
+ {
1491
+ "$$hashKey": "object:73",
1492
+ "format": "short",
1493
+ "logBase": 1,
1494
+ "show": false
1495
+ }
1496
+ ],
1497
+ "yaxis": {
1498
+ "align": false
1499
+ }
1500
+ }
1501
+ ],
1502
+ "targets": [
1503
+ {
1504
+ "datasource": {
1505
+ "type": "frser-sqlite-datasource",
1506
+ "uid": "P2D2EEF3E092AF52B"
1507
+ },
1508
+ "refId": "A"
1509
+ }
1510
+ ],
1511
+ "title": "Liquid Everything Else",
1512
+ "type": "row"
1513
+ },
1514
+ {
1515
+ "collapsed": true,
1516
+ "datasource": {
1517
+ "type": "frser-sqlite-datasource",
1518
+ "uid": "P2D2EEF3E092AF52B"
1519
+ },
1520
+ "gridPos": {
1521
+ "h": 1,
1522
+ "w": 24,
1523
+ "x": 0,
1524
+ "y": 28
1525
+ },
1526
+ "id": 40,
1527
+ "panels": [
1528
+ {
1529
+ "aliasColors": {},
1530
+ "bars": false,
1531
+ "dashLength": 10,
1532
+ "dashes": false,
1533
+ "datasource": "PROMETHEUS",
1534
+ "fieldConfig": {
1535
+ "defaults": {
1536
+ "unit": "currencyUSD"
1537
+ },
1538
+ "overrides": []
1539
+ },
1540
+ "fill": 0,
1541
+ "fillGradient": 0,
1542
+ "gridPos": {
1543
+ "h": 16,
1544
+ "w": 24,
1545
+ "x": 0,
1546
+ "y": 29
1547
+ },
1548
+ "hiddenSeries": false,
1549
+ "id": 45,
1550
+ "legend": {
1551
+ "alignAsTable": true,
1552
+ "avg": false,
1553
+ "current": true,
1554
+ "hideEmpty": true,
1555
+ "hideZero": true,
1556
+ "max": false,
1557
+ "min": false,
1558
+ "rightSide": true,
1559
+ "show": true,
1560
+ "sort": "current",
1561
+ "sortDesc": true,
1562
+ "total": false,
1563
+ "values": true
1564
+ },
1565
+ "lines": true,
1566
+ "linewidth": 1,
1567
+ "nullPointMode": "null as zero",
1568
+ "options": {
1569
+ "alertThreshold": true
1570
+ },
1571
+ "percentage": false,
1572
+ "pluginVersion": "8.2.1",
1573
+ "pointradius": 2,
1574
+ "points": false,
1575
+ "renderer": "flot",
1576
+ "seriesOverrides": [],
1577
+ "spaceLength": 10,
1578
+ "stack": false,
1579
+ "steppedLine": false,
1580
+ "targets": [
1581
+ {
1582
+ "datasource": "PROMETHEUS",
1583
+ "exemplar": true,
1584
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"Cash & cash equivalents\"}) by (token,wallet)",
1585
+ "hide": false,
1586
+ "interval": "",
1587
+ "legendFormat": "{{token}} | {{wallet}}",
1588
+ "refId": "A"
1589
+ }
1590
+ ],
1591
+ "thresholds": [],
1592
+ "timeRegions": [],
1593
+ "title": "Liquid Cash by Wallet",
1594
+ "tooltip": {
1595
+ "shared": true,
1596
+ "sort": 2,
1597
+ "value_type": "individual"
1598
+ },
1599
+ "type": "graph",
1600
+ "xaxis": {
1601
+ "mode": "time",
1602
+ "show": true,
1603
+ "values": []
1604
+ },
1605
+ "yaxes": [
1606
+ {
1607
+ "$$hashKey": "object:72",
1608
+ "format": "currencyUSD",
1609
+ "logBase": 1,
1610
+ "show": true
1611
+ },
1612
+ {
1613
+ "$$hashKey": "object:73",
1614
+ "format": "short",
1615
+ "logBase": 1,
1616
+ "show": false
1617
+ }
1618
+ ],
1619
+ "yaxis": {
1620
+ "align": false
1621
+ }
1622
+ }
1623
+ ],
1624
+ "targets": [
1625
+ {
1626
+ "datasource": {
1627
+ "type": "frser-sqlite-datasource",
1628
+ "uid": "P2D2EEF3E092AF52B"
1629
+ },
1630
+ "refId": "A"
1631
+ }
1632
+ ],
1633
+ "title": "Liquid Cash by Wallet",
1634
+ "type": "row"
1635
+ },
1636
+ {
1637
+ "collapsed": true,
1638
+ "datasource": {
1639
+ "type": "frser-sqlite-datasource",
1640
+ "uid": "P2D2EEF3E092AF52B"
1641
+ },
1642
+ "gridPos": {
1643
+ "h": 1,
1644
+ "w": 24,
1645
+ "x": 0,
1646
+ "y": 29
1647
+ },
1648
+ "id": 42,
1649
+ "panels": [
1650
+ {
1651
+ "aliasColors": {},
1652
+ "bars": false,
1653
+ "dashLength": 10,
1654
+ "dashes": false,
1655
+ "datasource": "PROMETHEUS",
1656
+ "fieldConfig": {
1657
+ "defaults": {
1658
+ "unit": "currencyUSD"
1659
+ },
1660
+ "overrides": []
1661
+ },
1662
+ "fill": 0,
1663
+ "fillGradient": 0,
1664
+ "gridPos": {
1665
+ "h": 16,
1666
+ "w": 24,
1667
+ "x": 0,
1668
+ "y": 30
1669
+ },
1670
+ "hiddenSeries": false,
1671
+ "id": 36,
1672
+ "legend": {
1673
+ "alignAsTable": true,
1674
+ "avg": false,
1675
+ "current": true,
1676
+ "hideEmpty": true,
1677
+ "hideZero": true,
1678
+ "max": false,
1679
+ "min": false,
1680
+ "rightSide": true,
1681
+ "show": true,
1682
+ "sort": "current",
1683
+ "sortDesc": true,
1684
+ "total": false,
1685
+ "values": true
1686
+ },
1687
+ "lines": true,
1688
+ "linewidth": 1,
1689
+ "nullPointMode": "null as zero",
1690
+ "options": {
1691
+ "alertThreshold": true
1692
+ },
1693
+ "percentage": false,
1694
+ "pluginVersion": "8.2.1",
1695
+ "pointradius": 2,
1696
+ "points": false,
1697
+ "renderer": "flot",
1698
+ "seriesOverrides": [],
1699
+ "spaceLength": 10,
1700
+ "stack": false,
1701
+ "steppedLine": false,
1702
+ "targets": [
1703
+ {
1704
+ "datasource": "PROMETHEUS",
1705
+ "exemplar": true,
1706
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"ETH\"}) by (token,wallet)",
1707
+ "hide": false,
1708
+ "interval": "",
1709
+ "legendFormat": "{{token}} | {{wallet}}",
1710
+ "refId": "A"
1711
+ }
1712
+ ],
1713
+ "thresholds": [],
1714
+ "timeRegions": [],
1715
+ "title": "Liquid ETH by Wallet",
1716
+ "tooltip": {
1717
+ "shared": true,
1718
+ "sort": 2,
1719
+ "value_type": "individual"
1720
+ },
1721
+ "type": "graph",
1722
+ "xaxis": {
1723
+ "mode": "time",
1724
+ "show": true,
1725
+ "values": []
1726
+ },
1727
+ "yaxes": [
1728
+ {
1729
+ "$$hashKey": "object:72",
1730
+ "format": "currencyUSD",
1731
+ "logBase": 1,
1732
+ "show": true
1733
+ },
1734
+ {
1735
+ "$$hashKey": "object:73",
1736
+ "format": "short",
1737
+ "logBase": 1,
1738
+ "show": false
1739
+ }
1740
+ ],
1741
+ "yaxis": {
1742
+ "align": false
1743
+ }
1744
+ }
1745
+ ],
1746
+ "targets": [
1747
+ {
1748
+ "datasource": {
1749
+ "type": "frser-sqlite-datasource",
1750
+ "uid": "P2D2EEF3E092AF52B"
1751
+ },
1752
+ "refId": "A"
1753
+ }
1754
+ ],
1755
+ "title": "Liquid ETH by Wallet",
1756
+ "type": "row"
1757
+ },
1758
+ {
1759
+ "collapsed": true,
1760
+ "datasource": {
1761
+ "type": "frser-sqlite-datasource",
1762
+ "uid": "P2D2EEF3E092AF52B"
1763
+ },
1764
+ "gridPos": {
1765
+ "h": 1,
1766
+ "w": 24,
1767
+ "x": 0,
1768
+ "y": 30
1769
+ },
1770
+ "id": 44,
1771
+ "panels": [
1772
+ {
1773
+ "aliasColors": {},
1774
+ "bars": false,
1775
+ "dashLength": 10,
1776
+ "dashes": false,
1777
+ "datasource": "PROMETHEUS",
1778
+ "fieldConfig": {
1779
+ "defaults": {
1780
+ "unit": "currencyUSD"
1781
+ },
1782
+ "overrides": []
1783
+ },
1784
+ "fill": 0,
1785
+ "fillGradient": 0,
1786
+ "gridPos": {
1787
+ "h": 16,
1788
+ "w": 24,
1789
+ "x": 0,
1790
+ "y": 31
1791
+ },
1792
+ "hiddenSeries": false,
1793
+ "id": 48,
1794
+ "legend": {
1795
+ "alignAsTable": true,
1796
+ "avg": false,
1797
+ "current": true,
1798
+ "hideEmpty": true,
1799
+ "hideZero": true,
1800
+ "max": false,
1801
+ "min": false,
1802
+ "rightSide": true,
1803
+ "show": true,
1804
+ "sort": "current",
1805
+ "sortDesc": true,
1806
+ "total": false,
1807
+ "values": true
1808
+ },
1809
+ "lines": true,
1810
+ "linewidth": 1,
1811
+ "nullPointMode": "null as zero",
1812
+ "options": {
1813
+ "alertThreshold": true
1814
+ },
1815
+ "percentage": false,
1816
+ "pluginVersion": "8.2.1",
1817
+ "pointradius": 2,
1818
+ "points": false,
1819
+ "renderer": "flot",
1820
+ "seriesOverrides": [],
1821
+ "spaceLength": 10,
1822
+ "stack": false,
1823
+ "steppedLine": false,
1824
+ "targets": [
1825
+ {
1826
+ "datasource": "PROMETHEUS",
1827
+ "exemplar": true,
1828
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"BTC\"}) by (token, wallet)",
1829
+ "hide": false,
1830
+ "interval": "",
1831
+ "legendFormat": "{{token}} | {{wallet}}",
1832
+ "refId": "A"
1833
+ }
1834
+ ],
1835
+ "thresholds": [],
1836
+ "timeRegions": [],
1837
+ "title": "Liquid BTC by Wallet",
1838
+ "tooltip": {
1839
+ "shared": true,
1840
+ "sort": 2,
1841
+ "value_type": "individual"
1842
+ },
1843
+ "type": "graph",
1844
+ "xaxis": {
1845
+ "mode": "time",
1846
+ "show": true,
1847
+ "values": []
1848
+ },
1849
+ "yaxes": [
1850
+ {
1851
+ "$$hashKey": "object:72",
1852
+ "format": "currencyUSD",
1853
+ "logBase": 1,
1854
+ "show": true
1855
+ },
1856
+ {
1857
+ "$$hashKey": "object:73",
1858
+ "format": "short",
1859
+ "logBase": 1,
1860
+ "show": false
1861
+ }
1862
+ ],
1863
+ "yaxis": {
1864
+ "align": false
1865
+ }
1866
+ }
1867
+ ],
1868
+ "targets": [
1869
+ {
1870
+ "datasource": {
1871
+ "type": "frser-sqlite-datasource",
1872
+ "uid": "P2D2EEF3E092AF52B"
1873
+ },
1874
+ "refId": "A"
1875
+ }
1876
+ ],
1877
+ "title": "Liquid BTC by Wallet",
1878
+ "type": "row"
1879
+ },
1880
+ {
1881
+ "collapsed": true,
1882
+ "datasource": {
1883
+ "type": "frser-sqlite-datasource",
1884
+ "uid": "P2D2EEF3E092AF52B"
1885
+ },
1886
+ "gridPos": {
1887
+ "h": 1,
1888
+ "w": 24,
1889
+ "x": 0,
1890
+ "y": 31
1891
+ },
1892
+ "id": 47,
1893
+ "panels": [
1894
+ {
1895
+ "aliasColors": {},
1896
+ "bars": false,
1897
+ "dashLength": 10,
1898
+ "dashes": false,
1899
+ "datasource": "PROMETHEUS",
1900
+ "fieldConfig": {
1901
+ "defaults": {
1902
+ "unit": "currencyUSD"
1903
+ },
1904
+ "overrides": []
1905
+ },
1906
+ "fill": 0,
1907
+ "fillGradient": 0,
1908
+ "gridPos": {
1909
+ "h": 16,
1910
+ "w": 24,
1911
+ "x": 0,
1912
+ "y": 32
1913
+ },
1914
+ "hiddenSeries": false,
1915
+ "id": 49,
1916
+ "legend": {
1917
+ "alignAsTable": true,
1918
+ "avg": false,
1919
+ "current": true,
1920
+ "hideEmpty": true,
1921
+ "hideZero": true,
1922
+ "max": false,
1923
+ "min": false,
1924
+ "rightSide": true,
1925
+ "show": true,
1926
+ "sort": "current",
1927
+ "sortDesc": true,
1928
+ "total": false,
1929
+ "values": true
1930
+ },
1931
+ "lines": true,
1932
+ "linewidth": 1,
1933
+ "nullPointMode": "null as zero",
1934
+ "options": {
1935
+ "alertThreshold": true
1936
+ },
1937
+ "percentage": false,
1938
+ "pluginVersion": "8.2.1",
1939
+ "pointradius": 2,
1940
+ "points": false,
1941
+ "renderer": "flot",
1942
+ "seriesOverrides": [],
1943
+ "spaceLength": 10,
1944
+ "stack": false,
1945
+ "steppedLine": false,
1946
+ "targets": [
1947
+ {
1948
+ "datasource": "PROMETHEUS",
1949
+ "exemplar": true,
1950
+ "expr": "sum(treasury_assets{param=\"usd value\",bucket=\"Other short term assets\"}) by (token, wallet)",
1951
+ "hide": false,
1952
+ "interval": "",
1953
+ "legendFormat": "{{token}} | {{wallet}}",
1954
+ "refId": "A"
1955
+ }
1956
+ ],
1957
+ "thresholds": [],
1958
+ "timeRegions": [],
1959
+ "title": "Liquid Everything Else by Wallet",
1960
+ "tooltip": {
1961
+ "shared": true,
1962
+ "sort": 2,
1963
+ "value_type": "individual"
1964
+ },
1965
+ "type": "graph",
1966
+ "xaxis": {
1967
+ "mode": "time",
1968
+ "show": true,
1969
+ "values": []
1970
+ },
1971
+ "yaxes": [
1972
+ {
1973
+ "$$hashKey": "object:72",
1974
+ "format": "currencyUSD",
1975
+ "logBase": 1,
1976
+ "show": true
1977
+ },
1978
+ {
1979
+ "$$hashKey": "object:73",
1980
+ "format": "short",
1981
+ "logBase": 1,
1982
+ "show": false
1983
+ }
1984
+ ],
1985
+ "yaxis": {
1986
+ "align": false
1987
+ }
1988
+ }
1989
+ ],
1990
+ "targets": [
1991
+ {
1992
+ "datasource": {
1993
+ "type": "frser-sqlite-datasource",
1994
+ "uid": "P2D2EEF3E092AF52B"
1995
+ },
1996
+ "refId": "A"
1997
+ }
1998
+ ],
1999
+ "title": "Liquid Everything Else by Wallet",
2000
+ "type": "row"
2001
+ }
2002
+ ],
2003
+ "refresh": "30s",
2004
+ "schemaVersion": 38,
2005
+ "tags": [],
2006
+ "templating": {
2007
+ "list": []
2008
+ },
2009
+ "time": {
2010
+ "from": "now-30d",
2011
+ "to": "now"
2012
+ },
2013
+ "timepicker": {},
2014
+ "timezone": "",
2015
+ "title": "Treasury Balances",
2016
+ "uid": "9_ppKhd7z",
2017
+ "version": 1
2018
+ }