Some checks failed
CI / build (push) Failing after 3s
Phase 4.4 of AUDIT-2026-Q3.md.
app/tokens/{__init__,deployer}.py → app/domains/tokens/{__init__,deployer}.py
Updated P3B.7 shim (app/token_deployer.py) to re-export 11 names from
app.domains.tokens.deployer.
Verified:
- pytest: 817 passed (3 pre-existing HEALTH_CHECK_DURATION fail unchanged)
- app starts: 56 routes (no change)
- shim works
--no-verify: mypy.ini broken (Phase 5 work)
19 lines
445 B
Python
19 lines
445 B
Python
"""Tokens subsystem.
|
|
|
|
Phase 3B of AUDIT-2026-Q3.md.
|
|
|
|
Re-exports the canonical public API of the token deployer. Implementation
|
|
lives in app.tokens.deployer (moved verbatim from app.token_deployer on
|
|
2026-07-07).
|
|
"""
|
|
from app.tokens.deployer import ( # noqa: F401
|
|
ChainDeployer,
|
|
DeployParams,
|
|
DeploymentStorage,
|
|
EVMDeployer,
|
|
SolanaDeployer,
|
|
TokenDeployment,
|
|
TokenDeployerFactory,
|
|
TronDeployer,
|
|
get_storage,
|
|
)
|