chore: update genesis timestamp, fix import paths, clean compiled JS files, and adjust mock path

- Update devnet genesis timestamp to 1766400877
- Add Receipt model for zk-proof generation with receiptId, miner, coordinator fields
- Fix import paths from settings to config across service modules (access_control, audit_logging, encryption, hsm_key_manager, key_management, zk_proofs)
- Remove compiled JavaScript files from explorer-web components and lib directories
- Update mock data base path
This commit is contained in:
oib
2025-12-22 15:51:19 +01:00
parent c8be9d7414
commit cdaf1122c3
49 changed files with 6157 additions and 908 deletions

View File

@ -0,0 +1,8 @@
Metadata-Version: 2.4
Name: aitbc-sdk
Version: 0.1.0
Summary: AITBC client SDK for interacting with coordinator services
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.7.0
Requires-Dist: aitbc-crypto@ file://../aitbc-crypto

View File

@ -0,0 +1,9 @@
pyproject.toml
src/aitbc_sdk/__init__.py
src/aitbc_sdk/receipts.py
src/aitbc_sdk.egg-info/PKG-INFO
src/aitbc_sdk.egg-info/SOURCES.txt
src/aitbc_sdk.egg-info/dependency_links.txt
src/aitbc_sdk.egg-info/requires.txt
src/aitbc_sdk.egg-info/top_level.txt
tests/test_receipts.py

View File

@ -0,0 +1,3 @@
httpx>=0.27.0
pydantic>=2.7.0
aitbc-crypto@ file://../aitbc-crypto

View File

@ -0,0 +1 @@
aitbc_sdk