dao-treasury 0.0.39__cp311-cp311-macosx_11_0_arm64.whl → 0.0.41__cp311-cp311-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.
Files changed (33) hide show
  1. bf2b4fe1f86ad2ea158b__mypyc.cpython-311-darwin.so +0 -0
  2. dao_treasury/ENVIRONMENT_VARIABLES.py +12 -0
  3. dao_treasury/__init__.py +14 -0
  4. dao_treasury/_docker.cpython-311-darwin.so +0 -0
  5. dao_treasury/_docker.py +14 -1
  6. dao_treasury/_nicknames.cpython-311-darwin.so +0 -0
  7. dao_treasury/_nicknames.py +15 -0
  8. dao_treasury/_wallet.cpython-311-darwin.so +0 -0
  9. dao_treasury/constants.cpython-311-darwin.so +0 -0
  10. dao_treasury/constants.py +19 -0
  11. dao_treasury/db.py +23 -0
  12. dao_treasury/sorting/__init__.cpython-311-darwin.so +0 -0
  13. dao_treasury/sorting/_matchers.cpython-311-darwin.so +0 -0
  14. dao_treasury/sorting/_rules.cpython-311-darwin.so +0 -0
  15. dao_treasury/sorting/factory.cpython-311-darwin.so +0 -0
  16. dao_treasury/sorting/rule.cpython-311-darwin.so +0 -0
  17. dao_treasury/sorting/rules/__init__.cpython-311-darwin.so +0 -0
  18. dao_treasury/sorting/rules/ignore/__init__.cpython-311-darwin.so +0 -0
  19. dao_treasury/sorting/rules/ignore/__init__.py +0 -1
  20. dao_treasury/sorting/rules/ignore/llamapay.cpython-311-darwin.so +0 -0
  21. dao_treasury/streams/__init__.cpython-311-darwin.so +0 -0
  22. dao_treasury/streams/llamapay.cpython-311-darwin.so +0 -0
  23. dao_treasury/treasury.py +33 -14
  24. dao_treasury/types.cpython-311-darwin.so +0 -0
  25. {dao_treasury-0.0.39.dist-info → dao_treasury-0.0.41.dist-info}/METADATA +2 -2
  26. dao_treasury-0.0.41.dist-info/RECORD +51 -0
  27. dao_treasury-0.0.41.dist-info/top_level.txt +2 -0
  28. 8a0ad9a1a4146730a0f6__mypyc.cpython-311-darwin.so +0 -0
  29. dao_treasury/sorting/rules/ignore/shitcoins.cpython-311-darwin.so +0 -0
  30. dao_treasury/sorting/rules/ignore/shitcoins.py +0 -24
  31. dao_treasury-0.0.39.dist-info/RECORD +0 -53
  32. dao_treasury-0.0.39.dist-info/top_level.txt +0 -2
  33. {dao_treasury-0.0.39.dist-info → dao_treasury-0.0.41.dist-info}/WHEEL +0 -0
@@ -1,3 +1,15 @@
1
+ """Environment variable configuration for DAO Treasury.
2
+
3
+ Defines and loads environment variables (with types and defaults) used for
4
+ system configuration, such as SQL debugging. Uses :mod:`typed_envs` for convenience and safety.
5
+
6
+ Key Responsibilities:
7
+ - Define and load environment variables for the system.
8
+ - Provide type-safe access to configuration options.
9
+
10
+ This is the single source of truth for environment-based settings.
11
+ """
12
+
1
13
  from typing import Final
2
14
 
3
15
  from typed_envs import EnvVarFactory
dao_treasury/__init__.py CHANGED
@@ -1,3 +1,17 @@
1
+ """DAO Treasury package initializer.
2
+
3
+ Exposes the main public API for the library, including the Treasury class,
4
+ wallet management, sorting rules, and database models. Sets up address
5
+ nicknames and enables SQL debugging if configured.
6
+
7
+ Key Responsibilities:
8
+ - Import and expose core classes and functions.
9
+ - Initialize address nicknames in the database.
10
+ - Configure SQL debugging for development.
11
+
12
+ This is the main import point for users and integrations.
13
+ """
14
+
1
15
  from dao_treasury import ENVIRONMENT_VARIABLES as ENVS
2
16
  from dao_treasury._nicknames import setup_address_nicknames_in_db
3
17
  from dao_treasury._wallet import TreasuryWallet
Binary file
dao_treasury/_docker.py CHANGED
@@ -1,4 +1,17 @@
1
- """This module contains utilities for managing dao-treasury's docker containers"""
1
+ """Docker orchestration utilities for DAO Treasury.
2
+
3
+ Provides functions to build, start, and stop Docker Compose services
4
+ required for analytics dashboards (Grafana, renderer). Integrates with
5
+ eth-portfolio's Docker setup and ensures all containers are managed
6
+ consistently for local analytics.
7
+
8
+ Key Responsibilities:
9
+ - Build and manage Grafana and renderer containers.
10
+ - Integrate with eth-portfolio Docker services.
11
+ - Provide decorators/utilities for container lifecycle management.
12
+
13
+ This is the main entry for all Docker-based orchestration.
14
+ """
2
15
 
3
16
  import logging
4
17
  from importlib import resources
@@ -1,3 +1,18 @@
1
+ """Address nickname setup utilities.
2
+
3
+ This module provides functions to assign human-readable nicknames to
4
+ important on-chain addresses (e.g., Zero Address, Disperse.app, tokens).
5
+ It is used at package initialization to ensure all analytics and dashboards
6
+ display professional, consistent labels.
7
+
8
+ Key Responsibilities:
9
+ - Set nicknames for core addresses in the database.
10
+ - Integrate with constants and token metadata.
11
+ - Support professional, readable analytics outputs.
12
+
13
+ This is called automatically on package import.
14
+ """
15
+
1
16
  from typing import Final
2
17
 
3
18
  from pony.orm import db_session
Binary file
dao_treasury/constants.py CHANGED
@@ -1,11 +1,29 @@
1
+ """Core constants for DAO Treasury.
2
+
3
+ All constants are marked with `Final`, ensuring immutability and allowing
4
+ mypyc to compile them as extremely fast C-level constants for maximum
5
+ performance. Defines chain IDs, zero address, and key contract addresses
6
+ (e.g., Disperse.app) used throughout the system for transaction processing,
7
+ nickname assignment, and analytics.
8
+
9
+ Key Responsibilities:
10
+ - Provide canonical addresses and chain IDs.
11
+ - Support nickname setup and transaction categorization.
12
+ - Guarantee fast, immutable constants at runtime.
13
+
14
+ This is the single source of truth for system-wide constants.
15
+ """
16
+
1
17
  from typing import Final
2
18
 
3
19
  import y.constants
4
20
 
5
21
 
6
22
  CHAINID: Final = y.constants.CHAINID
23
+ # TODO: add docstring
7
24
 
8
25
  ZERO_ADDRESS: Final = "0x0000000000000000000000000000000000000000"
26
+ # TODO: add docstring
9
27
 
10
28
  # TODO: move disperse.app stuff from yearn-treasury to dao-treasury and then write a docs file
11
29
  DISPERSE_APP: Final = (
@@ -13,3 +31,4 @@ DISPERSE_APP: Final = (
13
31
  "0xd15fE25eD0Dba12fE05e7029C88b10C25e8880E3",
14
32
  )
15
33
  """If your treasury sends funds to disperse.app, we create additional txs in the db so each individual send can be accounted for."""
34
+ # TODO: all crosslink to disperse.py once ready
dao_treasury/db.py CHANGED
@@ -3,6 +3,7 @@
3
3
  Database models and utilities for DAO treasury reporting.
4
4
 
5
5
  This module defines Pony ORM entities for:
6
+
6
7
  - Blockchain networks (:class:`Chain`)
7
8
  - On-chain addresses (:class:`Address`)
8
9
  - ERC-20 tokens and native coin placeholder (:class:`Token`)
@@ -25,6 +26,7 @@ from pathlib import Path
25
26
  from typing import TYPE_CHECKING, Dict, Final, Tuple, Union, final
26
27
  from datetime import date, datetime, time, timezone
27
28
 
29
+ import eth_portfolio
28
30
  from a_sync import AsyncThreadPoolExecutor
29
31
  from brownie import chain
30
32
  from brownie.convert.datatypes import HexString
@@ -1383,3 +1385,24 @@ def _validate_integrity_error(
1383
1385
  )
1384
1386
  else None
1385
1387
  )
1388
+
1389
+
1390
+ def _drop_shitcoin_txs() -> None:
1391
+ """
1392
+ Purge any shitcoin txs from the db.
1393
+
1394
+ These should not be frequent, and only occur if a user populated the db before a shitcoin was added to the SHITCOINS mapping.
1395
+ """
1396
+ shitcoins = eth_portfolio.SHITCOINS[CHAINID]
1397
+ with db_session:
1398
+ shitcoin_txs = select(
1399
+ tx for tx in TreasuryTx if tx.token.address.address in shitcoins
1400
+ )
1401
+ if count := shitcoin_txs.count():
1402
+ logger.info(f"Purging {count} shitcoin txs from the database...")
1403
+ for tx in shitcoin_txs:
1404
+ tx.delete()
1405
+ logger.info("Shitcoin tx purge complete.")
1406
+
1407
+
1408
+ _drop_shitcoin_txs()
@@ -1,2 +1 @@
1
1
  from dao_treasury.sorting.rules.ignore.llamapay import *
2
- from dao_treasury.sorting.rules.ignore.shitcoins import *
dao_treasury/treasury.py CHANGED
@@ -1,3 +1,20 @@
1
+ """Treasury orchestration and analytics interface.
2
+
3
+ This module defines the Treasury class, which aggregates DAO wallets, sets up
4
+ sorting rules, and manages transaction ingestion and streaming analytics.
5
+ It coordinates the end-to-end flow from wallet configuration to database
6
+ population and dashboard analytics.
7
+
8
+ Key Responsibilities:
9
+ - Aggregate and manage DAO-controlled wallets.
10
+ - Ingest and process on-chain transactions.
11
+ - Apply sorting/categorization rules.
12
+ - Integrate with streaming protocols (e.g., LlamaPay).
13
+ - Populate the database for analytics and dashboards.
14
+
15
+ This is the main entry point for orchestrating DAO treasury analytics.
16
+ """
17
+
1
18
  from asyncio import create_task, gather
2
19
  from logging import getLogger
3
20
  from pathlib import Path
@@ -59,20 +76,22 @@ class Treasury(a_sync.ASyncGenericBase): # type: ignore [misc]
59
76
  TypeError: If any item in `wallets` is not a str or TreasuryWallet.
60
77
 
61
78
  Examples:
62
- Create a synchronous Treasury:
63
- >>> treasury = Treasury(
64
- ... wallets=["0xAbc123...", TreasuryWallet("0xDef456...", start_block=1000)],
65
- ... sort_rules=Path("/path/to/rules"),
66
- ... start_block=500,
67
- ... label="DAO Treasury",
68
- ... asynchronous=False
69
- ... )
70
-
71
- Create an asynchronous Treasury:
72
- >>> treasury_async = Treasury(
73
- ... wallets=["0xAbc123..."],
74
- ... asynchronous=True
75
- ... )
79
+ .. code-block:: python
80
+
81
+ # Create a synchronous Treasury
82
+ treasury = Treasury(
83
+ wallets=["0xAbc123...", TreasuryWallet("0xDef456...", start_block=1000)],
84
+ sort_rules=Path("/path/to/rules"),
85
+ start_block=500,
86
+ label="DAO Treasury",
87
+ asynchronous=False
88
+ )
89
+
90
+ # Create an asynchronous Treasury
91
+ treasury_async = Treasury(
92
+ wallets=["0xAbc123..."],
93
+ asynchronous=True
94
+ )
76
95
  """
77
96
  global TREASURY
78
97
  if TREASURY is not None:
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dao_treasury
3
- Version: 0.0.39
3
+ Version: 0.0.41
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
@@ -14,7 +14,7 @@ Classifier: Operating System :: OS Independent
14
14
  Classifier: Topic :: Software Development :: Libraries
15
15
  Requires-Python: >=3.10,<3.13
16
16
  Description-Content-Type: text/markdown
17
- Requires-Dist: eth-portfolio-temp<0.1,>=0.0.34.dev0
17
+ Requires-Dist: eth-portfolio-temp<0.1,>=0.0.38.dev0
18
18
  Dynamic: classifier
19
19
  Dynamic: description
20
20
  Dynamic: description-content-type
@@ -0,0 +1,51 @@
1
+ bf2b4fe1f86ad2ea158b__mypyc.cpython-311-darwin.so,sha256=J5rIz0J2oueudy6CaNKAR61IJgpR9CVBTkacz481NBQ,732128
2
+ dao_treasury/_nicknames.cpython-311-darwin.so,sha256=HXyHqFkVfRSOzUjKIhGjUFdKsj_7MeY-Zc-zs7Ad0FE,50656
3
+ dao_treasury/_wallet.py,sha256=epV8LVuwHlOzc9UkA66js7HfEiZBOSAGJMtWbDTzmjU,10462
4
+ dao_treasury/db.py,sha256=PfXCm8v4sLWdj3lenLJBA_076in300qKUSN9xdBEOCE,48013
5
+ dao_treasury/docker-compose.yaml,sha256=E6KE-IjWDisAM19PPDi4ApR6Eu7jmMTM6J9DhtgJvR4,1309
6
+ dao_treasury/ENVIRONMENT_VARIABLES.py,sha256=LEczR1MSWTY00sLHnFs3j_Jm8WZNJCxjwEzrvjbwl2E,636
7
+ dao_treasury/_wallet.cpython-311-darwin.so,sha256=7UntyOZLtNB3kOLbtuPuICW8ZfuXu7U-bFldSiQY4RA,50640
8
+ dao_treasury/constants.py,sha256=MM4X4TK2RD1JaTNMg7zdo6QjKZTTvep6g7TgckE7M-8,1220
9
+ dao_treasury/types.cpython-311-darwin.so,sha256=kWxeWupIaaePDpOV9fXKE7NGsE8_7yw6KvAeTzxMJkY,50616
10
+ dao_treasury/__init__.py,sha256=W4syl9-cNhHOdD25ye9U7aBJTLE_R-uP49FXC_6CUOE,1477
11
+ dao_treasury/_nicknames.py,sha256=bvz0b8C31tFQ0pGtpSJW86OwjUF_qMBal4VXVT5UyLo,1017
12
+ dao_treasury/types.py,sha256=dJDx0hYfDDL3slcUzRnCgrzFFsgCzoqg8uaTtLaT4kk,3685
13
+ dao_treasury/_docker.cpython-311-darwin.so,sha256=DRvzjw_sLq4qDDx51X-WBLHPUtDaxLK8myYt8shKyis,50640
14
+ dao_treasury/_docker.py,sha256=b3exLlhtaC9S3osrLQsL8SIOLKUtSoop2uue0cSP9WM,5908
15
+ dao_treasury/constants.cpython-311-darwin.so,sha256=4rL18SkW0IUiwCWZkgftb0JwSjXfwbf3_IbJg2H_pBc,50656
16
+ dao_treasury/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ dao_treasury/treasury.py,sha256=taTvwTH_Zdu2M61TrUCENcIUjxdQO3vryrZ2iVb6suM,7223
18
+ dao_treasury/main.py,sha256=31EA10Fpaj9y-cRJPnNnvCBI38UM0848xlzn7A0BzC4,8047
19
+ dao_treasury/.grafana/provisioning/datasources/datasources.yaml,sha256=mjQs8or651NgD_bZnKBm8vSghzjw_g3enL01YPt0dik,327
20
+ dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml,sha256=tr6FBJeAAPX76db8E3qBBVWnq2-yrWDXDGuclMDg6dw,1277
21
+ dao_treasury/.grafana/provisioning/dashboards/streams/LlamaPay.json,sha256=9OzlVtq0wRBDw3MhoaYLrT_hd7w_V3c_B7bYNmX4TJo,7023
22
+ dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json,sha256=gCWQTzawn5w9LVsxCi4SbobcVXK8IxXrZdk2syH4Ubg,13230
23
+ dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json,sha256=4TpUdEmo40EneKldjeNxaiNLW2-IsIBRiy5jz-nqFdY,25664
24
+ dao_treasury/.grafana/provisioning/dashboards/treasury/Treasury.json,sha256=p9bupL06-CKqkqCOb6KkgP1LCa6P1VMkq3yhkyqMAzI,70178
25
+ dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json,sha256=tKtUeBp9p-g21MOaFMPItUoXF_coHMM000yNipNB_RU,14352
26
+ dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json,sha256=DOpO3leNVyUUQD5ou5FkdGCGc1xJmCRQjuzSUCvBnGU,18139
27
+ dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json,sha256=O6ghjzBf333baPjuMuUNguxF2v6rvPCiOu39sm1zxxY,6533
28
+ dao_treasury/streams/llamapay.py,sha256=yn37gwVfqGFF9fOhHuj9_t7KlHGyrdekF2TUmVDyg64,13147
29
+ dao_treasury/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
+ dao_treasury/streams/__init__.cpython-311-darwin.so,sha256=Pk3nmpofBtLrklihyv2Xg5eiaoWqNArP3dufMVsjXx8,50640
31
+ dao_treasury/streams/llamapay.cpython-311-darwin.so,sha256=rUA5hpJYUhrTiXyxbYU49v0uWvTv4B490Q8mSS89NZo,50656
32
+ dao_treasury/sorting/_rules.py,sha256=vWkqJVA8yCHKRv9sw872Jq6G0zpM-v_J1jCz-Mgleec,8994
33
+ dao_treasury/sorting/factory.cpython-311-darwin.so,sha256=cCDEchHlTsUe83LfXH8Fr1x5Y3jDBusLGtlhxGP6lv8,50656
34
+ dao_treasury/sorting/__init__.py,sha256=vKj3NPB7EWbX7_fSUWKXk-NsyPasOkFhJvJVGclBOAE,10371
35
+ dao_treasury/sorting/rule.cpython-311-darwin.so,sha256=rVDOrdNoNpSJj6kwaOTPyWt3jyjOA12stXCTKdEYxeg,50632
36
+ dao_treasury/sorting/_matchers.cpython-311-darwin.so,sha256=hdW_HoqMBathInKNBJqZ4m-ohjU3Y94mDsUYCfwVxI4,50656
37
+ dao_treasury/sorting/factory.py,sha256=pFD6luc0bKxOTT1hlAp3ZwJw6R0wN8pjIZrqMZwhsko,10185
38
+ dao_treasury/sorting/rule.py,sha256=-4dokQbRJ2GPJLEwtpgGG0aXAM1pW4jI17aezo--Z5g,11491
39
+ dao_treasury/sorting/__init__.cpython-311-darwin.so,sha256=EhOt2-BgVU9Ccq5ZBJAs43wAjEbeVy4AfZY__lIdqtk,50640
40
+ dao_treasury/sorting/_rules.cpython-311-darwin.so,sha256=aI_quLXhV7XYqk8wVd6Zcbt_pL0O-Rhg5c8N1_2wpI8,50640
41
+ dao_treasury/sorting/_matchers.py,sha256=u0GfPYiODr_NtzbfyLxEKDuXmWRiaeuZulDj9FPDOH8,14005
42
+ dao_treasury/sorting/rules/__init__.py,sha256=ofzIsW0P74kuKr6DlScZIF8p7hBh6guRpe1uOq6oLLA,48
43
+ dao_treasury/sorting/rules/__init__.cpython-311-darwin.so,sha256=SbS1K04u6nSJPGhgiOGUFzc1MoWsfMCRp-olXM_KHiU,50640
44
+ dao_treasury/sorting/rules/ignore/llamapay.py,sha256=NgiVt9MRtI-f4mw9U5_gqttdPqDa3vt_z5XWJP_UYWs,763
45
+ dao_treasury/sorting/rules/ignore/__init__.py,sha256=dJ4oKSLe7fal1Ct7XtMCfVJAtvZXcyIomf8HF3gWUhQ,57
46
+ dao_treasury/sorting/rules/ignore/__init__.cpython-311-darwin.so,sha256=JkmGZLAt3jnMCoAD6BumJsy7cTgti0qxE0dc1Kmetb8,50656
47
+ dao_treasury/sorting/rules/ignore/llamapay.cpython-311-darwin.so,sha256=RM8dhWJ6XkzWyo9M1JGCYXWVM_6nUijVfz6lJdcKpVk,50672
48
+ dao_treasury-0.0.41.dist-info/RECORD,,
49
+ dao_treasury-0.0.41.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
50
+ dao_treasury-0.0.41.dist-info/top_level.txt,sha256=Gw-ri_26lZA_3hwhnOX48mffUbmBGr8NhtoQ0XoMeF8,41
51
+ dao_treasury-0.0.41.dist-info/METADATA,sha256=J-xw8fcakfibStZAOOFzAH3SPwZO1TDqQpwyMziWXqU,7030
@@ -0,0 +1,2 @@
1
+ bf2b4fe1f86ad2ea158b__mypyc
2
+ dao_treasury
@@ -1,24 +0,0 @@
1
- """This module is used to ignore any transactions that involve shitcoins in the :obj:`~eth_portfolio.SHITCOINS` mapping."""
2
-
3
- from typing import Final
4
-
5
- import eth_portfolio
6
-
7
- from dao_treasury import TreasuryTx
8
- from dao_treasury.constants import CHAINID
9
- from dao_treasury.sorting.factory import ignore
10
-
11
-
12
- SHITCOINS: Final = eth_portfolio.SHITCOINS[CHAINID]
13
-
14
-
15
- @ignore("Shitcoin")
16
- def is_shitcoin(tx: TreasuryTx) -> bool:
17
- """
18
- This category is for any token transfers involving any shitcoin which was added
19
- to your database before the shitcoin was added to :obj:`eth_portfolio.SHITCOINS`.
20
-
21
- Since the tx would now be excluded from the db entirely if you did a clean pull,
22
- we can safely ignore it.
23
- """
24
- return tx.token.address.address in SHITCOINS
@@ -1,53 +0,0 @@
1
- 8a0ad9a1a4146730a0f6__mypyc.cpython-311-darwin.so,sha256=iDtj_cWbVxz04QkiMSNt6EVyTCQMuLrfWG2XyWmvz04,815408
2
- dao_treasury-0.0.39.dist-info/RECORD,,
3
- dao_treasury-0.0.39.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
4
- dao_treasury-0.0.39.dist-info/top_level.txt,sha256=OJ9btLujcmz6HPYrhPuxnkTZ5Fl9uw584qBW96ZpkV4,41
5
- dao_treasury-0.0.39.dist-info/METADATA,sha256=gWkd23w5wkfZ5E-FrrWcWfnew1DJcvRNFKGcZDM7SAE,7030
6
- dao_treasury/_nicknames.cpython-311-darwin.so,sha256=UHxWd7VCLxrfQTAsnn7uwoYx6oTJoHA_LVYcKc5jiFQ,50656
7
- dao_treasury/_wallet.py,sha256=epV8LVuwHlOzc9UkA66js7HfEiZBOSAGJMtWbDTzmjU,10462
8
- dao_treasury/db.py,sha256=Qc95xWNIR_Wk7jutJnBe2eMntxRrdd2_pj68hqVK8kA,47318
9
- dao_treasury/docker-compose.yaml,sha256=E6KE-IjWDisAM19PPDi4ApR6Eu7jmMTM6J9DhtgJvR4,1309
10
- dao_treasury/ENVIRONMENT_VARIABLES.py,sha256=yKvgOMUyU7-fF_-1zSMXML7ah7-r2f0oHrOV0p10LPc,195
11
- dao_treasury/_wallet.cpython-311-darwin.so,sha256=hS2VTtJgjfrgKHTU1KhEVOL2qTHgsP65NcPw_ODsIYg,50640
12
- dao_treasury/constants.py,sha256=IFg_CyVnfPhPjKyFX1Ix4QaB8ghbOI5QZGSy2TNsUSA,507
13
- dao_treasury/types.cpython-311-darwin.so,sha256=Vp0iI1AxBnrMuMt8sUdCKU8F0V-IIWRIdF3JlwhAM4M,50616
14
- dao_treasury/__init__.py,sha256=ZQ0ZROQzSyJdYuQS1Z_VD0c7CiV8BWZcLTX66wO4slc,1004
15
- dao_treasury/_nicknames.py,sha256=deSpcDMtC_78C07tW0fZ_NzHIfHXsoHBVXfb_Dvlzsw,480
16
- dao_treasury/types.py,sha256=dJDx0hYfDDL3slcUzRnCgrzFFsgCzoqg8uaTtLaT4kk,3685
17
- dao_treasury/_docker.cpython-311-darwin.so,sha256=AEKazKy-07jz7JxZkWsCmtdvUBlJO66FbKKN0Dv5SX8,50640
18
- dao_treasury/_docker.py,sha256=7MnPA5xhRCM8Kqiogk87ltUVn8i_hpkNgO_hFC-7sPw,5430
19
- dao_treasury/constants.cpython-311-darwin.so,sha256=1CGBOv71F3uCVthw6qq_bRz4kL48aKsUoctLtDHzd-c,50656
20
- dao_treasury/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- dao_treasury/treasury.py,sha256=7xLVQPqnDd3cexbYuF1opTjCiHgkPqHFOanRom8wiLE,6506
22
- dao_treasury/main.py,sha256=31EA10Fpaj9y-cRJPnNnvCBI38UM0848xlzn7A0BzC4,8047
23
- dao_treasury/.grafana/provisioning/datasources/datasources.yaml,sha256=mjQs8or651NgD_bZnKBm8vSghzjw_g3enL01YPt0dik,327
24
- dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml,sha256=tr6FBJeAAPX76db8E3qBBVWnq2-yrWDXDGuclMDg6dw,1277
25
- dao_treasury/.grafana/provisioning/dashboards/streams/LlamaPay.json,sha256=9OzlVtq0wRBDw3MhoaYLrT_hd7w_V3c_B7bYNmX4TJo,7023
26
- dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json,sha256=gCWQTzawn5w9LVsxCi4SbobcVXK8IxXrZdk2syH4Ubg,13230
27
- dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json,sha256=4TpUdEmo40EneKldjeNxaiNLW2-IsIBRiy5jz-nqFdY,25664
28
- dao_treasury/.grafana/provisioning/dashboards/treasury/Treasury.json,sha256=p9bupL06-CKqkqCOb6KkgP1LCa6P1VMkq3yhkyqMAzI,70178
29
- dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json,sha256=tKtUeBp9p-g21MOaFMPItUoXF_coHMM000yNipNB_RU,14352
30
- dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json,sha256=DOpO3leNVyUUQD5ou5FkdGCGc1xJmCRQjuzSUCvBnGU,18139
31
- dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json,sha256=O6ghjzBf333baPjuMuUNguxF2v6rvPCiOu39sm1zxxY,6533
32
- dao_treasury/streams/llamapay.py,sha256=yn37gwVfqGFF9fOhHuj9_t7KlHGyrdekF2TUmVDyg64,13147
33
- dao_treasury/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- dao_treasury/streams/__init__.cpython-311-darwin.so,sha256=sA6qmBcSSF85b4q-Yhquwp4VH4RWQXT8N4P_tGLjMT0,50640
35
- dao_treasury/streams/llamapay.cpython-311-darwin.so,sha256=4HDX1rQprO5FDzdci9wfA5F_wmzeNj_t9X3Jw762mQI,50656
36
- dao_treasury/sorting/_rules.py,sha256=vWkqJVA8yCHKRv9sw872Jq6G0zpM-v_J1jCz-Mgleec,8994
37
- dao_treasury/sorting/factory.cpython-311-darwin.so,sha256=jBSJEMl6v-ImeHjZdsIb4ngnInpXhRF7WACrB437kMY,50656
38
- dao_treasury/sorting/__init__.py,sha256=vKj3NPB7EWbX7_fSUWKXk-NsyPasOkFhJvJVGclBOAE,10371
39
- dao_treasury/sorting/rule.cpython-311-darwin.so,sha256=lE7wRtkwAntN42n9TV7p9g-C2LA12cKUwidGb3h4wSw,50632
40
- dao_treasury/sorting/_matchers.cpython-311-darwin.so,sha256=HzU0fPC9zIVxEarPzBlvCSENjcszUiY8JHdYX9zTmj4,50656
41
- dao_treasury/sorting/factory.py,sha256=pFD6luc0bKxOTT1hlAp3ZwJw6R0wN8pjIZrqMZwhsko,10185
42
- dao_treasury/sorting/rule.py,sha256=-4dokQbRJ2GPJLEwtpgGG0aXAM1pW4jI17aezo--Z5g,11491
43
- dao_treasury/sorting/__init__.cpython-311-darwin.so,sha256=kKzqUEubXRvHzAYA7oyyucov5BBYvzarGyMOr0hFpqM,50640
44
- dao_treasury/sorting/_rules.cpython-311-darwin.so,sha256=wC6yiT5BQJk9kaB_6-gsVNVc2MRsbYLdRDDQL9_4yEY,50640
45
- dao_treasury/sorting/_matchers.py,sha256=u0GfPYiODr_NtzbfyLxEKDuXmWRiaeuZulDj9FPDOH8,14005
46
- dao_treasury/sorting/rules/__init__.py,sha256=ofzIsW0P74kuKr6DlScZIF8p7hBh6guRpe1uOq6oLLA,48
47
- dao_treasury/sorting/rules/__init__.cpython-311-darwin.so,sha256=IhntCWkqwNLEfjoLUcTYEx4lrnNJa0e0sRSQepRQdt0,50640
48
- dao_treasury/sorting/rules/ignore/llamapay.py,sha256=NgiVt9MRtI-f4mw9U5_gqttdPqDa3vt_z5XWJP_UYWs,763
49
- dao_treasury/sorting/rules/ignore/__init__.py,sha256=JFmwn1bIX5UYDnCH0UU4UTFUFSFaqL-VBG9SYtJGYtI,115
50
- dao_treasury/sorting/rules/ignore/shitcoins.cpython-311-darwin.so,sha256=osI3kqRYkl9pFXifT63pvCH1bQoUCqlkT-LftUo0ZdI,50688
51
- dao_treasury/sorting/rules/ignore/__init__.cpython-311-darwin.so,sha256=oJuMZuL-Gq_MJVCyLWf1snWj44rqElXNdpkdLmtkK8c,50656
52
- dao_treasury/sorting/rules/ignore/shitcoins.py,sha256=XVozrgrHlBESih3-xqXksaktjf3AJzWseowd4_yXDdI,767
53
- dao_treasury/sorting/rules/ignore/llamapay.cpython-311-darwin.so,sha256=qTgpLEMdU1Lf91pH6LCDT2bCQVVHm3F8JUoXFgonyQs,50672
@@ -1,2 +0,0 @@
1
- 8a0ad9a1a4146730a0f6__mypyc
2
- dao_treasury