-
Notifications
You must be signed in to change notification settings - Fork 0
Transaction Pipeline
Richard Kindler edited this page Nov 25, 2025
·
1 revision
The transaction pipeline is optimized for safety, determinism, and scaling.
-
Request Ingestion Request hits API → validated → queued.
-
Deduplication Check Idempotency key prevents duplicates.
-
Queue Buffering Workers monitor queue depth and scale as needed.
-
KMS Signing Worker serializes tx → KMS signs → signature returned.
-
Broadcast Signed transaction pushed to RPC endpoint.
-
Finalization Tracking Gateway tracks confirmation status and exposes it through /tx/:id.