dao-treasury 0.0.17__cp312-cp312-win32.whl → 0.0.61__cp312-cp312-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dao-treasury might be problematic. Click here for more details.
- dao_treasury/.grafana/provisioning/dashboards/breakdowns/Expenses.json +526 -0
- dao_treasury/.grafana/provisioning/dashboards/breakdowns/Revenue.json +526 -0
- dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml +76 -2
- dao_treasury/.grafana/provisioning/dashboards/streams/LlamaPay.json +225 -0
- dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json +13 -17
- dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json +167 -19
- dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json +876 -0
- dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json +645 -0
- dao_treasury/.grafana/provisioning/dashboards/treasury/Current Treasury Assets.json +593 -0
- dao_treasury/.grafana/provisioning/dashboards/treasury/Historical Treasury Balances.json +2999 -0
- dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json +513 -0
- dao_treasury/.grafana/provisioning/datasources/datasources.yaml +17 -0
- dao_treasury/ENVIRONMENT_VARIABLES.py +20 -0
- dao_treasury/__init__.py +24 -0
- dao_treasury/_docker.cp312-win32.pyd +0 -0
- dao_treasury/_docker.py +48 -23
- dao_treasury/_nicknames.cp312-win32.pyd +0 -0
- dao_treasury/_nicknames.py +32 -0
- dao_treasury/_wallet.cp312-win32.pyd +0 -0
- dao_treasury/_wallet.py +162 -10
- dao_treasury/constants.cp312-win32.pyd +0 -0
- dao_treasury/constants.py +39 -0
- dao_treasury/db.py +429 -57
- dao_treasury/docker-compose.yaml +6 -5
- dao_treasury/main.py +102 -13
- dao_treasury/sorting/__init__.cp312-win32.pyd +0 -0
- dao_treasury/sorting/__init__.py +181 -105
- dao_treasury/sorting/_matchers.cp312-win32.pyd +0 -0
- dao_treasury/sorting/_rules.cp312-win32.pyd +0 -0
- dao_treasury/sorting/_rules.py +1 -3
- dao_treasury/sorting/factory.cp312-win32.pyd +0 -0
- dao_treasury/sorting/factory.py +2 -6
- dao_treasury/sorting/rule.cp312-win32.pyd +0 -0
- dao_treasury/sorting/rule.py +16 -13
- dao_treasury/sorting/rules/__init__.cp312-win32.pyd +0 -0
- dao_treasury/sorting/rules/__init__.py +1 -0
- dao_treasury/sorting/rules/ignore/__init__.cp312-win32.pyd +0 -0
- dao_treasury/sorting/rules/ignore/__init__.py +1 -0
- dao_treasury/sorting/rules/ignore/llamapay.cp312-win32.pyd +0 -0
- dao_treasury/sorting/rules/ignore/llamapay.py +20 -0
- dao_treasury/streams/__init__.cp312-win32.pyd +0 -0
- dao_treasury/streams/__init__.py +0 -0
- dao_treasury/streams/llamapay.cp312-win32.pyd +0 -0
- dao_treasury/streams/llamapay.py +388 -0
- dao_treasury/treasury.py +75 -28
- dao_treasury/types.cp312-win32.pyd +0 -0
- dao_treasury-0.0.61.dist-info/METADATA +120 -0
- dao_treasury-0.0.61.dist-info/RECORD +54 -0
- dao_treasury-0.0.61.dist-info/top_level.txt +2 -0
- dao_treasury__mypyc.cp312-win32.pyd +0 -0
- 52b51d40e96d4333695d__mypyc.cp312-win32.pyd +0 -0
- dao_treasury/.grafana/provisioning/datasources/sqlite.yaml +0 -10
- dao_treasury-0.0.17.dist-info/METADATA +0 -36
- dao_treasury-0.0.17.dist-info/RECORD +0 -30
- dao_treasury-0.0.17.dist-info/top_level.txt +0 -2
- {dao_treasury-0.0.17.dist-info → dao_treasury-0.0.61.dist-info}/WHEEL +0 -0
dao_treasury/_docker.py
CHANGED
|
@@ -1,42 +1,65 @@
|
|
|
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
|
+
"""
|
|
15
|
+
|
|
1
16
|
import logging
|
|
2
|
-
import
|
|
17
|
+
from importlib import resources
|
|
3
18
|
import subprocess
|
|
4
19
|
from functools import wraps
|
|
5
|
-
from typing import Callable, Iterable, Tuple, TypeVar
|
|
20
|
+
from typing import Any, Callable, Coroutine, Final, Iterable, Tuple, TypeVar, List
|
|
6
21
|
|
|
7
|
-
|
|
22
|
+
import eth_portfolio_scripts.docker
|
|
8
23
|
from typing_extensions import ParamSpec
|
|
9
24
|
|
|
10
|
-
logger = logging.getLogger(__name__)
|
|
25
|
+
logger: Final = logging.getLogger(__name__)
|
|
11
26
|
|
|
12
|
-
compose_file =
|
|
13
|
-
|
|
27
|
+
compose_file: Final = str(
|
|
28
|
+
resources.files("dao_treasury").joinpath("docker-compose.yaml")
|
|
14
29
|
)
|
|
30
|
+
"""The path of dao-treasury's docker-compose.yaml file on your machine"""
|
|
31
|
+
|
|
15
32
|
|
|
33
|
+
def up(*services: str) -> None:
|
|
34
|
+
"""Build and start the specified containers defined in the compose file.
|
|
16
35
|
|
|
17
|
-
|
|
18
|
-
|
|
36
|
+
Args:
|
|
37
|
+
services: service names to bring up.
|
|
19
38
|
|
|
20
39
|
This function first builds the Docker services by invoking
|
|
21
|
-
:func:`build` and then starts
|
|
40
|
+
:func:`build` and then starts the specified services in detached mode using
|
|
22
41
|
Docker Compose. If Docker Compose is not available, it falls back
|
|
23
42
|
to the legacy ``docker-compose`` command.
|
|
24
43
|
|
|
25
44
|
Examples:
|
|
45
|
+
>>> up('grafana')
|
|
46
|
+
starting the grafana container
|
|
26
47
|
>>> up()
|
|
27
|
-
starting
|
|
48
|
+
starting all containers (grafana and renderer)
|
|
28
49
|
|
|
29
50
|
See Also:
|
|
30
51
|
:func:`build`
|
|
31
52
|
:func:`down`
|
|
32
53
|
:func:`_exec_command`
|
|
33
54
|
"""
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
55
|
+
# eth-portfolio containers must be started first so dao-treasury can attach to the eth-portfolio docker network
|
|
56
|
+
eth_portfolio_scripts.docker.up("victoria-metrics")
|
|
57
|
+
build(*services)
|
|
58
|
+
print(f"starting the {', '.join(services) if services else 'grafana'} container(s)")
|
|
59
|
+
_exec_command(["up", "-d", *services])
|
|
37
60
|
|
|
38
61
|
|
|
39
|
-
def down(
|
|
62
|
+
def down() -> None:
|
|
40
63
|
"""Stop and remove Grafana containers.
|
|
41
64
|
|
|
42
65
|
This function brings down the Docker Compose services defined
|
|
@@ -52,7 +75,7 @@ def down(*_) -> None:
|
|
|
52
75
|
_exec_command(["down"])
|
|
53
76
|
|
|
54
77
|
|
|
55
|
-
def build() -> None:
|
|
78
|
+
def build(*services: str) -> None:
|
|
56
79
|
"""Build Docker images for Grafana containers.
|
|
57
80
|
|
|
58
81
|
This function builds all services defined in the Docker Compose
|
|
@@ -68,14 +91,16 @@ def build() -> None:
|
|
|
68
91
|
:func:`_exec_command`
|
|
69
92
|
"""
|
|
70
93
|
print("building the grafana containers")
|
|
71
|
-
_exec_command(["build"])
|
|
94
|
+
_exec_command(["build", *services])
|
|
72
95
|
|
|
73
96
|
|
|
74
97
|
_P = ParamSpec("_P")
|
|
75
98
|
_T = TypeVar("_T")
|
|
76
99
|
|
|
77
100
|
|
|
78
|
-
def ensure_containers(
|
|
101
|
+
def ensure_containers(
|
|
102
|
+
fn: Callable[_P, Coroutine[Any, Any, _T]],
|
|
103
|
+
) -> Callable[_P, Coroutine[Any, Any, _T]]:
|
|
79
104
|
"""Decorator to ensure Grafana containers are running before execution.
|
|
80
105
|
|
|
81
106
|
This async decorator starts the Docker Compose services via
|
|
@@ -104,27 +129,27 @@ def ensure_containers(fn: Callable[_P, _T]) -> Callable[_P, _T]:
|
|
|
104
129
|
"""
|
|
105
130
|
|
|
106
131
|
@wraps(fn)
|
|
107
|
-
async def compose_wrap(*args: _P.args, **kwargs: _P.kwargs):
|
|
132
|
+
async def compose_wrap(*args: _P.args, **kwargs: _P.kwargs) -> _T:
|
|
108
133
|
# register shutdown sequence
|
|
109
134
|
# TODO: argument to leave them up
|
|
110
135
|
# NOTE: do we need both this and the finally?
|
|
111
136
|
# signal.signal(signal.SIGINT, down)
|
|
112
137
|
|
|
113
138
|
# start Grafana containers
|
|
114
|
-
up()
|
|
139
|
+
up("grafana")
|
|
115
140
|
|
|
116
141
|
try:
|
|
117
142
|
# attempt to run `fn`
|
|
118
|
-
await fn(*args, **kwargs)
|
|
143
|
+
return await fn(*args, **kwargs)
|
|
119
144
|
finally:
|
|
120
145
|
# stop and remove containers
|
|
121
146
|
# down()
|
|
122
|
-
|
|
147
|
+
pass
|
|
123
148
|
|
|
124
149
|
return compose_wrap
|
|
125
150
|
|
|
126
151
|
|
|
127
|
-
def _exec_command(command:
|
|
152
|
+
def _exec_command(command: List[str], *, compose_options: Tuple[str, ...] = ()) -> None:
|
|
128
153
|
"""Execute a Docker Compose command with system checks and fallback.
|
|
129
154
|
|
|
130
155
|
This internal function ensures that Docker and Docker Compose
|
|
@@ -149,7 +174,7 @@ def _exec_command(command: Iterable[str], *, compose_options: Tuple[str] = ()) -
|
|
|
149
174
|
See Also:
|
|
150
175
|
:func:`check_system`
|
|
151
176
|
"""
|
|
152
|
-
check_system()
|
|
177
|
+
eth_portfolio_scripts.docker.check_system()
|
|
153
178
|
try:
|
|
154
179
|
subprocess.check_output(
|
|
155
180
|
["docker", "compose", *compose_options, "-f", compose_file, *command]
|
|
Binary file
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
|
|
16
|
+
from typing import Final
|
|
17
|
+
|
|
18
|
+
from pony.orm import db_session
|
|
19
|
+
|
|
20
|
+
from dao_treasury import constants
|
|
21
|
+
from dao_treasury.db import Address, _set_address_nicknames_for_tokens
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
set_nickname: Final = Address.set_nickname
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def setup_address_nicknames_in_db() -> None:
|
|
28
|
+
with db_session:
|
|
29
|
+
set_nickname(constants.ZERO_ADDRESS, "Zero Address")
|
|
30
|
+
for address in constants.DISPERSE_APP:
|
|
31
|
+
set_nickname(address, "Disperse.app")
|
|
32
|
+
_set_address_nicknames_for_tokens()
|
|
Binary file
|
dao_treasury/_wallet.py
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
from dataclasses import dataclass
|
|
2
|
-
from
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
from typing import Dict, Final, List, Optional, final
|
|
3
4
|
|
|
5
|
+
import yaml
|
|
4
6
|
from brownie.convert.datatypes import EthAddress
|
|
5
7
|
from eth_typing import BlockNumber, ChecksumAddress, HexAddress
|
|
6
8
|
from y import convert
|
|
7
9
|
from y.time import closest_block_after_timestamp
|
|
8
10
|
|
|
11
|
+
from dao_treasury.constants import CHAINID
|
|
12
|
+
|
|
9
13
|
|
|
10
14
|
WALLETS: Final[Dict[ChecksumAddress, "TreasuryWallet"]] = {}
|
|
11
15
|
|
|
16
|
+
to_address: Final = convert.to_address
|
|
17
|
+
|
|
12
18
|
|
|
13
19
|
@final
|
|
14
20
|
@dataclass
|
|
@@ -30,8 +36,13 @@ class TreasuryWallet:
|
|
|
30
36
|
end_timestamp: Optional[int] = None
|
|
31
37
|
"""The last timestamp at which this wallet was considered owned by the DAO, if it wasn't always included in the treasury. If `end_timestamp` is provided, you cannot provide an `end_block`."""
|
|
32
38
|
|
|
39
|
+
networks: Optional[List[int]] = None
|
|
40
|
+
"""The networks where the DAO owns this wallet. If not provided, the wallet will be active on all networks."""
|
|
41
|
+
|
|
33
42
|
def __post_init__(self) -> None:
|
|
34
|
-
|
|
43
|
+
# If a user provides a wallets yaml file but forgets to wrap the address
|
|
44
|
+
# keys with quotes, it will be an integer we must convert to an address.
|
|
45
|
+
self.address = EthAddress(to_address(self.address))
|
|
35
46
|
|
|
36
47
|
start_block = self.start_block
|
|
37
48
|
start_timestamp = self.start_timestamp
|
|
@@ -62,6 +73,23 @@ class TreasuryWallet:
|
|
|
62
73
|
raise ValueError(f"TreasuryWallet {addr} already exists")
|
|
63
74
|
WALLETS[addr] = self
|
|
64
75
|
|
|
76
|
+
@staticmethod
|
|
77
|
+
def check_membership(
|
|
78
|
+
address: Optional[HexAddress], block: Optional[BlockNumber] = None
|
|
79
|
+
) -> bool:
|
|
80
|
+
if address is None:
|
|
81
|
+
return False
|
|
82
|
+
wallet = TreasuryWallet._get_instance(address)
|
|
83
|
+
if wallet is None:
|
|
84
|
+
return False
|
|
85
|
+
# If networks filter is set, only include if current chain is listed
|
|
86
|
+
if wallet.networks and CHAINID not in wallet.networks:
|
|
87
|
+
return False
|
|
88
|
+
return block is None or (
|
|
89
|
+
wallet._start_block <= block
|
|
90
|
+
and (wallet._end_block is None or wallet._end_block >= block)
|
|
91
|
+
)
|
|
92
|
+
|
|
65
93
|
@property
|
|
66
94
|
def _start_block(self) -> BlockNumber:
|
|
67
95
|
start_block = self.start_block
|
|
@@ -86,13 +114,137 @@ class TreasuryWallet:
|
|
|
86
114
|
def _get_instance(address: HexAddress) -> Optional["TreasuryWallet"]:
|
|
87
115
|
# sourcery skip: use-contextlib-suppress
|
|
88
116
|
try:
|
|
89
|
-
|
|
90
|
-
except KeyError:
|
|
91
|
-
pass
|
|
92
|
-
checksummed = convert.to_address(address)
|
|
93
|
-
try:
|
|
94
|
-
instance = WALLETS[address] = WALLETS[checksummed]
|
|
117
|
+
instance = WALLETS[address]
|
|
95
118
|
except KeyError:
|
|
119
|
+
checksummed = to_address(address)
|
|
120
|
+
try:
|
|
121
|
+
instance = WALLETS[address] = WALLETS[checksummed]
|
|
122
|
+
except KeyError:
|
|
123
|
+
return None
|
|
124
|
+
if instance.networks and CHAINID not in instance.networks:
|
|
96
125
|
return None
|
|
97
|
-
|
|
98
|
-
|
|
126
|
+
return instance
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
def load_wallets_from_yaml(path: Path) -> List[TreasuryWallet]:
|
|
130
|
+
"""
|
|
131
|
+
Load a YAML mapping of wallet addresses to configuration and return a list of TreasuryWallets.
|
|
132
|
+
'timestamp' in top-level start/end is universal.
|
|
133
|
+
'block' in top-level start/end must be provided under the chain ID key.
|
|
134
|
+
Optional 'networks' key lists chain IDs where this wallet is active.
|
|
135
|
+
"""
|
|
136
|
+
try:
|
|
137
|
+
data = yaml.safe_load(path.read_bytes())
|
|
138
|
+
except Exception as e:
|
|
139
|
+
raise ValueError(f"Failed to parse wallets YAML: {e}")
|
|
140
|
+
|
|
141
|
+
if not isinstance(data, dict):
|
|
142
|
+
raise ValueError("Wallets YAML file must be a mapping of address to config")
|
|
143
|
+
|
|
144
|
+
wallets: List[TreasuryWallet] = []
|
|
145
|
+
for address, cfg in data.items():
|
|
146
|
+
# Allow bare keys
|
|
147
|
+
if cfg is None:
|
|
148
|
+
cfg = {}
|
|
149
|
+
elif not isinstance(cfg, dict):
|
|
150
|
+
raise ValueError(f"Invalid config for wallet {address}, expected mapping")
|
|
151
|
+
|
|
152
|
+
kwargs = {"address": address}
|
|
153
|
+
|
|
154
|
+
# Extract optional networks list
|
|
155
|
+
networks = cfg.get("networks")
|
|
156
|
+
if networks:
|
|
157
|
+
if not isinstance(networks, list) or not all(
|
|
158
|
+
isinstance(n, int) for n in networks
|
|
159
|
+
):
|
|
160
|
+
raise ValueError(
|
|
161
|
+
f"'networks' for wallet {address} must be a list of integers, got {networks}"
|
|
162
|
+
)
|
|
163
|
+
kwargs["networks"] = networks
|
|
164
|
+
|
|
165
|
+
# Parse start: timestamp universal, block under chain key
|
|
166
|
+
start_cfg = cfg.get("start", {})
|
|
167
|
+
if not isinstance(start_cfg, dict):
|
|
168
|
+
raise ValueError(
|
|
169
|
+
f"Invalid 'start' for wallet {address}. Expected mapping, got {start_cfg}."
|
|
170
|
+
)
|
|
171
|
+
for key, value in start_cfg.items():
|
|
172
|
+
if key == "timestamp":
|
|
173
|
+
if "start_block" in kwargs:
|
|
174
|
+
raise ValueError(
|
|
175
|
+
"You cannot provide both a start block and a start timestamp"
|
|
176
|
+
)
|
|
177
|
+
kwargs["start_timestamp"] = value
|
|
178
|
+
elif key == "block":
|
|
179
|
+
if not isinstance(value, dict):
|
|
180
|
+
raise ValueError(
|
|
181
|
+
f"Invalid start block for wallet {address}. Expected mapping, got {value}."
|
|
182
|
+
)
|
|
183
|
+
for chainid, start_block in value.items():
|
|
184
|
+
if not isinstance(chainid, int):
|
|
185
|
+
raise ValueError(
|
|
186
|
+
f"Invalid chainid for wallet {address} start block. Expected integer, got {chainid}."
|
|
187
|
+
)
|
|
188
|
+
if not isinstance(start_block, int):
|
|
189
|
+
raise ValueError(
|
|
190
|
+
f"Invalid start block for wallet {address}. Expected integer, got {start_block}."
|
|
191
|
+
)
|
|
192
|
+
if chainid == CHAINID:
|
|
193
|
+
if "start_timestamp" in kwargs:
|
|
194
|
+
raise ValueError(
|
|
195
|
+
"You cannot provide both a start block and a start timestamp"
|
|
196
|
+
)
|
|
197
|
+
kwargs["start_block"] = start_block
|
|
198
|
+
else:
|
|
199
|
+
raise ValueError(
|
|
200
|
+
f"Invalid key: {key}. Valid options are 'block' or 'timestamp'."
|
|
201
|
+
)
|
|
202
|
+
|
|
203
|
+
chain_block = start_cfg.get(str(CHAINID)) or start_cfg.get(CHAINID)
|
|
204
|
+
if chain_block is not None:
|
|
205
|
+
if not isinstance(chain_block, int):
|
|
206
|
+
raise ValueError(
|
|
207
|
+
f"Invalid start.block for chain {CHAINID} on {address}"
|
|
208
|
+
)
|
|
209
|
+
kwargs["start_block"] = chain_block
|
|
210
|
+
|
|
211
|
+
# Parse end: timestamp universal, block under chain key
|
|
212
|
+
end_cfg = cfg.get("end", {})
|
|
213
|
+
if not isinstance(end_cfg, dict):
|
|
214
|
+
raise ValueError(
|
|
215
|
+
f"Invalid 'end' for wallet {address}. Expected mapping, got {end_cfg}."
|
|
216
|
+
)
|
|
217
|
+
|
|
218
|
+
for key, value in end_cfg.items():
|
|
219
|
+
if key == "timestamp":
|
|
220
|
+
if "end_block" in kwargs:
|
|
221
|
+
raise ValueError(
|
|
222
|
+
"You cannot provide both an end block and an end timestamp"
|
|
223
|
+
)
|
|
224
|
+
kwargs["end_timestamp"] = value
|
|
225
|
+
elif key == "block":
|
|
226
|
+
if not isinstance(value, dict):
|
|
227
|
+
raise ValueError(
|
|
228
|
+
f"Invalid end block for wallet {address}. Expected mapping, got {value}."
|
|
229
|
+
)
|
|
230
|
+
for chainid, end_block in value.items():
|
|
231
|
+
if not isinstance(chainid, int):
|
|
232
|
+
raise ValueError(
|
|
233
|
+
f"Invalid chainid for wallet {address} end block. Expected integer, got {chainid}."
|
|
234
|
+
)
|
|
235
|
+
if not isinstance(end_block, int):
|
|
236
|
+
raise ValueError(
|
|
237
|
+
f"Invalid end block for wallet {address}. Expected integer, got {end_block}."
|
|
238
|
+
)
|
|
239
|
+
if chainid == CHAINID:
|
|
240
|
+
kwargs["end_block"] = end_block
|
|
241
|
+
else:
|
|
242
|
+
raise ValueError(
|
|
243
|
+
f"Invalid key: {key}. Valid options are 'block' or 'timestamp'."
|
|
244
|
+
)
|
|
245
|
+
|
|
246
|
+
wallet = TreasuryWallet(**kwargs)
|
|
247
|
+
print(f"initialized {wallet}")
|
|
248
|
+
wallets.append(wallet)
|
|
249
|
+
|
|
250
|
+
return wallets
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
|
|
17
|
+
from typing import Final
|
|
18
|
+
|
|
19
|
+
import eth_portfolio._utils
|
|
20
|
+
import y.constants
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
CHAINID: Final = y.constants.CHAINID
|
|
24
|
+
# TODO: add docstring
|
|
25
|
+
|
|
26
|
+
ZERO_ADDRESS: Final = "0x0000000000000000000000000000000000000000"
|
|
27
|
+
# TODO: add docstring
|
|
28
|
+
|
|
29
|
+
# TODO: move disperse.app stuff from yearn-treasury to dao-treasury and then write a docs file
|
|
30
|
+
DISPERSE_APP: Final = (
|
|
31
|
+
"0xD152f549545093347A162Dce210e7293f1452150",
|
|
32
|
+
"0xd15fE25eD0Dba12fE05e7029C88b10C25e8880E3",
|
|
33
|
+
)
|
|
34
|
+
"""If your treasury sends funds to disperse.app, we create additional txs in the db so each individual send can be accounted for."""
|
|
35
|
+
# TODO: all crosslink to disperse.py once ready
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
SUPPRESS_ERROR_LOGS: Final = eth_portfolio._utils.SUPPRESS_ERROR_LOGS
|
|
39
|
+
"""Append tokens here when you don't expect them to price successfully and do not want to see the associated error logs."""
|