- Introduced Aggregator.sol for Chainlink-compatible oracle functionality, including round-based updates and access control. - Added OracleWithCCIP.sol to extend Aggregator with CCIP cross-chain messaging capabilities. - Created .gitmodules to include OpenZeppelin contracts as a submodule. - Developed a comprehensive deployment guide in NEXT_STEPS_COMPLETE_GUIDE.md for Phase 2 and smart contract deployment. - Implemented Vite configuration for the orchestration portal, supporting both Vue and React frameworks. - Added server-side logic for the Multi-Cloud Orchestration Portal, including API endpoints for environment management and monitoring. - Created scripts for resource import and usage validation across non-US regions. - Added tests for CCIP error handling and integration to ensure robust functionality. - Included various new files and directories for the orchestration portal and deployment scripts.
48 lines
755 B
Plaintext
48 lines
755 B
Plaintext
# Financial Tokenization Service
|
|
# Python dependencies for ISO-20022, SWIFT FIN, and other financial file tokenization
|
|
|
|
# Core dependencies
|
|
flask==3.0.0
|
|
flask-restx==1.3.0
|
|
pydantic==2.5.0
|
|
python-dotenv==1.0.0
|
|
|
|
# Financial file parsing
|
|
iso20022==0.1.0
|
|
swift-message-parser==1.0.0
|
|
xmltodict==0.13.0
|
|
lxml==4.9.3
|
|
|
|
# Blockchain integration
|
|
web3==6.11.0
|
|
eth-account==0.9.0
|
|
eth-abi==4.1.0
|
|
|
|
# Firefly SDK
|
|
firefly-sdk==1.0.0
|
|
|
|
# Cacti SDK
|
|
cacti-sdk==1.0.0
|
|
|
|
# Database
|
|
sqlalchemy==2.0.23
|
|
psycopg2-binary==2.9.9
|
|
alembic==1.12.1
|
|
|
|
# Utilities
|
|
python-dateutil==2.8.2
|
|
pytz==2023.3
|
|
cryptography==41.0.7
|
|
requests==2.31.0
|
|
aiohttp==3.9.1
|
|
|
|
# Logging and monitoring
|
|
structlog==23.2.0
|
|
prometheus-client==0.19.0
|
|
|
|
# Testing
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
pytest-cov==4.1.0
|
|
|