- Updated `mapping-service` to include WEB3-ETH-IBAN support, health check endpoint, and improved error handling for account-wallet linking. - Added new provider connection and status endpoints in `mapping-service`. - Enhanced `orchestrator` service with health check, trigger management endpoints, and improved error handling for trigger validation and submission. - Updated dependencies in `package.json` for both services, including `axios`, `uuid`, and type definitions. - Improved packet service with additional validation and error handling for packet generation and dispatching. - Introduced webhook service enhancements, including delivery retries, dead letter queue management, and webhook management endpoints.
1.3 KiB
1.3 KiB
Orchestrator Service
ISO-20022 orchestrator service managing trigger state machine and rail adapters.
Features
- ISO-20022 message routing and normalization
- Trigger state machine (CREATED → VALIDATED → SUBMITTED → PENDING → SETTLED/REJECTED)
- On-chain fund locking and release
- Rail adapter coordination (Fedwire, SWIFT, SEPA, RTGS)
- Event publishing
State Machine
CREATED → VALIDATED → SUBMITTED_TO_RAIL → PENDING → SETTLED
↓
REJECTED
API Endpoints
GET /v1/orchestrator/triggers/:triggerId- Get triggerGET /v1/orchestrator/triggers- List triggersPOST /v1/orchestrator/triggers/:triggerId/validate-and-lock- Validate and lockPOST /v1/orchestrator/triggers/:triggerId/mark-submitted- Mark submittedPOST /v1/orchestrator/triggers/:triggerId/confirm-settled- Confirm settledPOST /v1/orchestrator/triggers/:triggerId/confirm-rejected- Confirm rejectedPOST /v1/iso/inbound- Route inbound ISO-20022 messagePOST /v1/iso/outbound- Route outbound ISO-20022 message
Rails
Supported payment rails:
fedwire- Fedwireswift- SWIFTsepa- SEPArtgs- RTGS
Configuration
REST_API_URL- Main REST API URLRPC_URL- Blockchain RPC URLPRIVATE_KEY- Signer private key