dao-treasury 0.0.22__cp310-cp310-macosx_11_0_arm64.whl → 0.0.69__cp310-cp310-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.
- dao_treasury/.grafana/provisioning/dashboards/breakdowns/Expenses.json +551 -0
- dao_treasury/.grafana/provisioning/dashboards/breakdowns/Revenue.json +551 -0
- dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml +7 -7
- dao_treasury/.grafana/provisioning/dashboards/streams/LlamaPay.json +220 -0
- dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json +18 -23
- dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json +181 -29
- dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json +808 -0
- dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json +602 -0
- dao_treasury/.grafana/provisioning/dashboards/treasury/Current Treasury Assets.json +1009 -0
- dao_treasury/.grafana/provisioning/dashboards/treasury/Historical Treasury Balances.json +2989 -0
- dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json +478 -0
- dao_treasury/.grafana/provisioning/datasources/datasources.yaml +17 -0
- dao_treasury/ENVIRONMENT_VARIABLES.py +20 -0
- dao_treasury/__init__.py +20 -0
- dao_treasury/_docker.cpython-310-darwin.so +0 -0
- dao_treasury/_docker.py +67 -38
- dao_treasury/_nicknames.cpython-310-darwin.so +0 -0
- dao_treasury/_nicknames.py +24 -2
- dao_treasury/_wallet.cpython-310-darwin.so +0 -0
- dao_treasury/_wallet.py +157 -16
- dao_treasury/constants.cpython-310-darwin.so +0 -0
- dao_treasury/constants.py +39 -0
- dao_treasury/db.py +384 -45
- dao_treasury/docker-compose.yaml +6 -5
- dao_treasury/main.py +86 -17
- dao_treasury/sorting/__init__.cpython-310-darwin.so +0 -0
- dao_treasury/sorting/__init__.py +171 -42
- dao_treasury/sorting/_matchers.cpython-310-darwin.so +0 -0
- dao_treasury/sorting/_rules.cpython-310-darwin.so +0 -0
- dao_treasury/sorting/_rules.py +1 -3
- dao_treasury/sorting/factory.cpython-310-darwin.so +0 -0
- dao_treasury/sorting/factory.py +2 -6
- dao_treasury/sorting/rule.cpython-310-darwin.so +0 -0
- dao_treasury/sorting/rule.py +13 -10
- dao_treasury/sorting/rules/__init__.cpython-310-darwin.so +0 -0
- dao_treasury/sorting/rules/__init__.py +1 -0
- dao_treasury/sorting/rules/ignore/__init__.cpython-310-darwin.so +0 -0
- dao_treasury/sorting/rules/ignore/__init__.py +1 -0
- dao_treasury/sorting/rules/ignore/llamapay.cpython-310-darwin.so +0 -0
- dao_treasury/sorting/rules/ignore/llamapay.py +20 -0
- dao_treasury/streams/__init__.cpython-310-darwin.so +0 -0
- dao_treasury/streams/__init__.py +0 -0
- dao_treasury/streams/llamapay.cpython-310-darwin.so +0 -0
- dao_treasury/streams/llamapay.py +388 -0
- dao_treasury/treasury.py +75 -28
- dao_treasury/types.cpython-310-darwin.so +0 -0
- dao_treasury-0.0.69.dist-info/METADATA +120 -0
- dao_treasury-0.0.69.dist-info/RECORD +54 -0
- dao_treasury-0.0.69.dist-info/top_level.txt +2 -0
- dao_treasury__mypyc.cpython-310-darwin.so +0 -0
- 52b51d40e96d4333695d__mypyc.cpython-310-darwin.so +0 -0
- dao_treasury/.grafana/provisioning/datasources/sqlite.yaml +0 -10
- dao_treasury-0.0.22.dist-info/METADATA +0 -63
- dao_treasury-0.0.22.dist-info/RECORD +0 -31
- dao_treasury-0.0.22.dist-info/top_level.txt +0 -2
- {dao_treasury-0.0.22.dist-info → dao_treasury-0.0.69.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
dao_treasury__mypyc.cpython-310-darwin.so,sha256=kIki1ZCZKlg6t_KnnGyrCVcToWX9QslYfe7FM040ldo,1247656
|
|
2
|
+
dao_treasury-0.0.69.dist-info/RECORD,,
|
|
3
|
+
dao_treasury-0.0.69.dist-info/WHEEL,sha256=11kMdE9gzbsaQG30fRcsAYxBLEVRsqJo098Y5iL60Xo,136
|
|
4
|
+
dao_treasury-0.0.69.dist-info/top_level.txt,sha256=CV8aYytuSYplDhLVY4n0GphckdysXCd1lHmbqfsPxNk,33
|
|
5
|
+
dao_treasury-0.0.69.dist-info/METADATA,sha256=nvHMuGdpOK5wplMI1rk4FRymCtKZJP7VPpLe_YTX2j4,7111
|
|
6
|
+
dao_treasury/_wallet.py,sha256=epV8LVuwHlOzc9UkA66js7HfEiZBOSAGJMtWbDTzmjU,10462
|
|
7
|
+
dao_treasury/_wallet.cpython-310-darwin.so,sha256=LmL9YXzht18fa-hyF-ntOFXjE2EUVsBVy7fFx2ieCAE,50640
|
|
8
|
+
dao_treasury/db.py,sha256=WEM89soGJ-qI0KVk2XdmcUDtOGe-IUiw5cKQu7EKsvQ,49280
|
|
9
|
+
dao_treasury/docker-compose.yaml,sha256=SsfbKO8XiKxu0ckhFVRF8YA3dMWOnGhwvpJg_8YDXB0,1309
|
|
10
|
+
dao_treasury/types.cpython-310-darwin.so,sha256=nG4OufWTWLt8HFGDOVYCd3wVL08yIIX-vCYUVgZx-eM,50616
|
|
11
|
+
dao_treasury/ENVIRONMENT_VARIABLES.py,sha256=LEczR1MSWTY00sLHnFs3j_Jm8WZNJCxjwEzrvjbwl2E,636
|
|
12
|
+
dao_treasury/_nicknames.cpython-310-darwin.so,sha256=q4ngQ9QkG_X-D8jNqzmqrKw7Gr-lvXKsoY6XIk2x4wE,50656
|
|
13
|
+
dao_treasury/constants.py,sha256=BGWVeN4KqpxWDGLG-DjPmdXmyVEb2C9KpMig9RaGJws,1444
|
|
14
|
+
dao_treasury/__init__.py,sha256=W4syl9-cNhHOdD25ye9U7aBJTLE_R-uP49FXC_6CUOE,1477
|
|
15
|
+
dao_treasury/_nicknames.py,sha256=bvz0b8C31tFQ0pGtpSJW86OwjUF_qMBal4VXVT5UyLo,1017
|
|
16
|
+
dao_treasury/types.py,sha256=dJDx0hYfDDL3slcUzRnCgrzFFsgCzoqg8uaTtLaT4kk,3685
|
|
17
|
+
dao_treasury/_docker.py,sha256=9_XTuBClqNK6qQjSsVk_fdBWPgfSj8EuDIcE9-whBB4,5924
|
|
18
|
+
dao_treasury/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
dao_treasury/constants.cpython-310-darwin.so,sha256=lKl5HQDTQWYSlexhN2PMTEBSJW07KT7Bkt4mN5L1Rd4,50656
|
|
20
|
+
dao_treasury/_docker.cpython-310-darwin.so,sha256=Gu8EQuL4kdBYhWgoBhcHks7bVOgosTIrJvqZi1e_4gs,50640
|
|
21
|
+
dao_treasury/treasury.py,sha256=taTvwTH_Zdu2M61TrUCENcIUjxdQO3vryrZ2iVb6suM,7223
|
|
22
|
+
dao_treasury/main.py,sha256=uMY5XP_GpxO6Qd9VA1YMLzMOd-O4VnxbGJ2Pdqh0Zo0,8205
|
|
23
|
+
dao_treasury/.grafana/provisioning/datasources/datasources.yaml,sha256=mjQs8or651NgD_bZnKBm8vSghzjw_g3enL01YPt0dik,327
|
|
24
|
+
dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml,sha256=7WQaeajNf9hNnPJA9SZgvPot9m7TbzyN21BIbB8MaHM,191
|
|
25
|
+
dao_treasury/.grafana/provisioning/dashboards/breakdowns/Revenue.json,sha256=sPwG6ERjiJVPyivYS2iPCtFDdxUAWpyz4e3NGcT0tcE,18620
|
|
26
|
+
dao_treasury/.grafana/provisioning/dashboards/breakdowns/Expenses.json,sha256=fMBSldgUmZm3dDHb6D7ShQ7R2eCH4CWbhZCRhz21cOw,19413
|
|
27
|
+
dao_treasury/.grafana/provisioning/dashboards/streams/LlamaPay.json,sha256=Ct8FRa0c_FQEBTKaGpC0y2cBhYM_YYU_v0uOUBJAqQU,7504
|
|
28
|
+
dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json,sha256=4R4L3jHegSTewWGRDayGscDZqVv5Laf6K77jK0TYeyY,14700
|
|
29
|
+
dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json,sha256=rUzNnSnR33YyJDLwzPL8iPn34CYaYVsL2V4vEZwvQf0,27346
|
|
30
|
+
dao_treasury/.grafana/provisioning/dashboards/treasury/Historical Treasury Balances.json,sha256=jTSvRNQu9QAjL7v2lJWbkDa_p8vnFecTQsbqIPJ2d3o,104559
|
|
31
|
+
dao_treasury/.grafana/provisioning/dashboards/treasury/Current Treasury Assets.json,sha256=mysaX1aoB9pB5OTrp2vlrGLRfAxsDCUOMsnL9rbxOc0,25951
|
|
32
|
+
dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json,sha256=7xRABZ9m1iFXDVeLX-4x6ByyGnE7GQQrSGUPk2pRvww,15471
|
|
33
|
+
dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json,sha256=f7hl5DyxhrebpXqGsq2FJhrNIvpInD9VwoH0N6jqIFY,19637
|
|
34
|
+
dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json,sha256=Xa0GyAOK_3fDn5u89_6yzzd-SKo_LEotH8t4GnXsUTg,7050
|
|
35
|
+
dao_treasury/streams/llamapay.py,sha256=yn37gwVfqGFF9fOhHuj9_t7KlHGyrdekF2TUmVDyg64,13147
|
|
36
|
+
dao_treasury/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
dao_treasury/streams/__init__.cpython-310-darwin.so,sha256=TS96wG_HxmBbAatizVpQv74eonu9Wd2D8LHRmarTsTo,50640
|
|
38
|
+
dao_treasury/streams/llamapay.cpython-310-darwin.so,sha256=-WV4uPT-9ESfsO-CMKcD2A6YVa-jvnmil7LdZbXj_sk,50656
|
|
39
|
+
dao_treasury/sorting/factory.cpython-310-darwin.so,sha256=euD8mVddY44_tz2Ee_ehdHMrtRVZ6KmPeAWX7AhjZ8w,50656
|
|
40
|
+
dao_treasury/sorting/_rules.py,sha256=vWkqJVA8yCHKRv9sw872Jq6G0zpM-v_J1jCz-Mgleec,8994
|
|
41
|
+
dao_treasury/sorting/rule.cpython-310-darwin.so,sha256=fxnzLnbNgwohwWeoxtukt03mo0fgFFDgByiYCjbWE-s,50632
|
|
42
|
+
dao_treasury/sorting/_matchers.cpython-310-darwin.so,sha256=vXqL7ox32cWEfznn4DtXdxh1BoT1rrRn_C2Kc6jpIcU,50656
|
|
43
|
+
dao_treasury/sorting/__init__.py,sha256=vKj3NPB7EWbX7_fSUWKXk-NsyPasOkFhJvJVGclBOAE,10371
|
|
44
|
+
dao_treasury/sorting/factory.py,sha256=pFD6luc0bKxOTT1hlAp3ZwJw6R0wN8pjIZrqMZwhsko,10185
|
|
45
|
+
dao_treasury/sorting/__init__.cpython-310-darwin.so,sha256=dQa-t7PlnnpRVETqBOHmm4myoXyOhVT8e22_g_6RsiM,50640
|
|
46
|
+
dao_treasury/sorting/rule.py,sha256=WtGGN5mOd6S2Bhk7v5lsBWSSzVGKON7V10ImrUN79Y4,11628
|
|
47
|
+
dao_treasury/sorting/_rules.cpython-310-darwin.so,sha256=g_wUPrgkpTTE4QsYxSThmkS7tl-xvPWdWTJd8LpxWBQ,50640
|
|
48
|
+
dao_treasury/sorting/_matchers.py,sha256=u0GfPYiODr_NtzbfyLxEKDuXmWRiaeuZulDj9FPDOH8,14005
|
|
49
|
+
dao_treasury/sorting/rules/__init__.py,sha256=ofzIsW0P74kuKr6DlScZIF8p7hBh6guRpe1uOq6oLLA,48
|
|
50
|
+
dao_treasury/sorting/rules/__init__.cpython-310-darwin.so,sha256=J0KX8HrNMXTVsjASAow6bRdD2V-n_HN3w7RfPBuW0jM,50640
|
|
51
|
+
dao_treasury/sorting/rules/ignore/llamapay.py,sha256=NgiVt9MRtI-f4mw9U5_gqttdPqDa3vt_z5XWJP_UYWs,763
|
|
52
|
+
dao_treasury/sorting/rules/ignore/__init__.py,sha256=dJ4oKSLe7fal1Ct7XtMCfVJAtvZXcyIomf8HF3gWUhQ,57
|
|
53
|
+
dao_treasury/sorting/rules/ignore/__init__.cpython-310-darwin.so,sha256=B4nKJoPR5F4RQfutJXO0m_efGQSRAKQQ9Hyz6VJOM84,50656
|
|
54
|
+
dao_treasury/sorting/rules/ignore/llamapay.cpython-310-darwin.so,sha256=yd2vl313QQ8yhN453zbf2LbSgsC7lS8ha0G6gkf8-2Q,50672
|
|
Binary file
|
|
Binary file
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: dao_treasury
|
|
3
|
-
Version: 0.0.22
|
|
4
|
-
Summary: Produce comprehensive financial reports for your on-chain org
|
|
5
|
-
Classifier: Development Status :: 3 - Alpha
|
|
6
|
-
Classifier: Intended Audience :: Developers
|
|
7
|
-
Classifier: Intended Audience :: Science/Research
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
13
|
-
Classifier: Operating System :: OS Independent
|
|
14
|
-
Classifier: Topic :: Software Development :: Libraries
|
|
15
|
-
Requires-Python: >=3.10,<3.13
|
|
16
|
-
Description-Content-Type: text/markdown
|
|
17
|
-
Requires-Dist: eth-portfolio-temp<0.1,>=0.0.12
|
|
18
|
-
Dynamic: classifier
|
|
19
|
-
Dynamic: description
|
|
20
|
-
Dynamic: description-content-type
|
|
21
|
-
Dynamic: requires-dist
|
|
22
|
-
Dynamic: requires-python
|
|
23
|
-
Dynamic: summary
|
|
24
|
-
|
|
25
|
-
This library extends eth_portfolio with additional functionality centered around producing financial reports for DAOs and other on-chain orgs.
|
|
26
|
-
|
|
27
|
-
## Installation
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
pip install dao-treasury
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Prerequisites
|
|
34
|
-
|
|
35
|
-
You must have a [brownie network](https://eth-brownie.readthedocs.io/en/stable/network-management.html) configured to use your RPC.
|
|
36
|
-
You will also need [Docker](https://www.docker.com/get-started/) installed on your system.
|
|
37
|
-
|
|
38
|
-
## Usage
|
|
39
|
-
|
|
40
|
-
Run the treasury export tool:
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
# For pip installations:
|
|
44
|
-
dao-treasury run --wallet 0x123 --network mainnet --interval 12h
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
For local development (from source installation), use:
|
|
48
|
-
```bash
|
|
49
|
-
poetry run dao-treasury run --wallet 0x123 --network mainnet --interval 12h
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
**CLI Options:**
|
|
53
|
-
- `--network`: The id of the brownie network the exporter will connect to (default: mainnet)
|
|
54
|
-
- `--interval`: The time interval between each data snapshot (default: 12h)
|
|
55
|
-
- `--daemon`: Run the export process in the background (default: False) (NOTE: currently unsupported)
|
|
56
|
-
- `--grafana-port`: Set the port for the Grafana dashboard where you can view data (default: 3004)
|
|
57
|
-
- `--renderer-port`: Set the port for the report rendering service (default: 8080)
|
|
58
|
-
- `--victoria-port`: Set the port for the Victoria metrics reporting endpoint (default: 8430)
|
|
59
|
-
|
|
60
|
-
After running the command, the export script will run continuously until you close your terminal.
|
|
61
|
-
To access the dashboard, open your browser and navigate to [http://localhost:3003](http://localhost:3003) for the eth-portfolio dashboard and [http://localhost:3004](http://localhost:3004) for the dao-treasury dashboard. Soon I will combine them into one interface but for now you can check both.
|
|
62
|
-
|
|
63
|
-
Enjoy!
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
52b51d40e96d4333695d__mypyc.cpython-310-darwin.so,sha256=0KWgT0RfuErKZkj2fSdC9SMFppjTPji-iwHQGrbJQ94,423856
|
|
2
|
-
dao_treasury/_wallet.py,sha256=h8JMR5ETh6u0AlRaQR0raoZf3hqhMTMttK1LklzCIV0,4409
|
|
3
|
-
dao_treasury/_wallet.cpython-310-darwin.so,sha256=14zQ-K7dKIkjdkNesMQIUybDZnjHkSolagECPEgWRPA,50640
|
|
4
|
-
dao_treasury/db.py,sha256=UlVTD_CXLuWv7-xJ6wGBFXSKXWtZjSNeeR4CtTAquxE,37498
|
|
5
|
-
dao_treasury/docker-compose.yaml,sha256=7a8S-Dd5Ofacac0xEAnQH6imA7z-ZuGhXZAPcgQkvsE,1233
|
|
6
|
-
dao_treasury/types.cpython-310-darwin.so,sha256=4XQcHAz12TmJR0DCYfhlHGh67wCJyygghu6YuH98jNk,50616
|
|
7
|
-
dao_treasury/__init__.py,sha256=O04MMrdCBO7OMvo9pJ_QdOHYCS4hFZPZhOG7nj5ElH4,879
|
|
8
|
-
dao_treasury/_nicknames.py,sha256=2vn_ADOXQI4LuNAyWDicQ41NyCgNHp7G8WRwHZMNFPY,308
|
|
9
|
-
dao_treasury/types.py,sha256=dJDx0hYfDDL3slcUzRnCgrzFFsgCzoqg8uaTtLaT4kk,3685
|
|
10
|
-
dao_treasury/_docker.py,sha256=aD-0pthUAr4zLwhewtWUSXMm6zstrh053WCD7K77jkg,4701
|
|
11
|
-
dao_treasury/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
dao_treasury/treasury.py,sha256=-P0KlKGB8ScRu4JNJXmE-Y5yQHz95fsiIgNodzTG5EQ,5437
|
|
13
|
-
dao_treasury/main.py,sha256=k7bI58P4FRqH6U4nySk6x4lhlzQVP-tBJ1QoG1txRjo,5690
|
|
14
|
-
dao_treasury/.grafana/provisioning/datasources/sqlite.yaml,sha256=giCXbFd1S0tsV7SY9tr7qy6lLjg30yMv_UDj7X7L0wg,211
|
|
15
|
-
dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml,sha256=mn6ZsmlQyqUITJqzJ-ARDFUB4PeRBKBEF4Nkp0dsnUM,208
|
|
16
|
-
dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json,sha256=SlLVcshjVD5-c_2NMbCVzpJGCSle9l4uVuVWAY0iNvA,7625
|
|
17
|
-
dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json,sha256=y7t4O0ujImcfVULGsV_0WxcZCm7sz1jtAB5ZXUfPww4,7911
|
|
18
|
-
dao_treasury/sorting/factory.cpython-310-darwin.so,sha256=UjXzd_24XzLrjuH4L-SeZ0ji21c3frrNWVQFi3c55Vo,50656
|
|
19
|
-
dao_treasury/sorting/_rules.py,sha256=ve7A-JdVXf3axB7V_iGOimJMPq1xX_a7nHmPzOQN29Q,9011
|
|
20
|
-
dao_treasury/sorting/rule.cpython-310-darwin.so,sha256=p5fV0ta81UHCOh86wQ_tvsqI5wLn7t0GlwEYqdrS-ro,50632
|
|
21
|
-
dao_treasury/sorting/_matchers.cpython-310-darwin.so,sha256=U-GZab9OfCKNTC2eW9-mmT_YWmKRV5DmTC3OTj-13AU,50656
|
|
22
|
-
dao_treasury/sorting/__init__.py,sha256=eGIRvI2dbVPec671hhmCDlNhK9ee_5pY6exOvnUUZek,5008
|
|
23
|
-
dao_treasury/sorting/factory.py,sha256=qXUVOooWJqqx9RsxuIo0UzMNo2Vq56mLrgMtYbkVUgc,10213
|
|
24
|
-
dao_treasury/sorting/__init__.cpython-310-darwin.so,sha256=ygNTDfE8kSaryYkjuJygUZ2kSK1UdRu7XqeRdjiOqdE,50640
|
|
25
|
-
dao_treasury/sorting/rule.py,sha256=flxmEOUB9ucHczysT9i6SV0zbY2mq-5vvf53HxiJRKk,11335
|
|
26
|
-
dao_treasury/sorting/_rules.cpython-310-darwin.so,sha256=Dsy7MiuDsMAvtOwH_nW4YOMij2WCDDPZXrdJxgc7en8,50640
|
|
27
|
-
dao_treasury/sorting/_matchers.py,sha256=u0GfPYiODr_NtzbfyLxEKDuXmWRiaeuZulDj9FPDOH8,14005
|
|
28
|
-
dao_treasury-0.0.22.dist-info/RECORD,,
|
|
29
|
-
dao_treasury-0.0.22.dist-info/WHEEL,sha256=11kMdE9gzbsaQG30fRcsAYxBLEVRsqJo098Y5iL60Xo,136
|
|
30
|
-
dao_treasury-0.0.22.dist-info/top_level.txt,sha256=5QDMQ7kRdV8h4wWGRy63D8laHsQl1BS7x4XRXFRhaEs,41
|
|
31
|
-
dao_treasury-0.0.22.dist-info/METADATA,sha256=n5fLtiFGUxJJCLwDsZv3YQRgYiFi9RtJZiCsnS9Saq0,2596
|
|
File without changes
|