feat: persist anchors, liquidity, and settlements in PostgreSQL - #239
Merged
Jagadeeshftw merged 1 commit intoAug 30, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the proposed durable persistence solution for issue #220. The service now has a PostgreSQL-backed production runtime instead of losing network state on restart.
DATABASE_URLin production and fails fast when PostgreSQL is unreachable.numeric(78,0)and string-to-bigint conversion at the repository boundary.DATABASE_URLis omitted.Settlement concurrency and integrity
Settlement opening is performed in one PostgreSQL transaction. It locks all liquidity rows for the requested asset and all pending or executed settlement rows for that asset before calculating availability and inserting the pending settlement. This prevents concurrent API instances from reserving the same liquidity twice. Execute and cancel use conditional pending-state transitions so a settlement can only move out of pending once.
The schema includes foreign keys, non-negative and positive amount checks, valid status checks, cancellation reasons, and indexes for anchor, asset, status, and ordered settlement queries.
Migrations and deployment
The checked-in
node-pg-migratemigration creates the complete initial schema. Deployments should run:The implementation follows the proposal posted on the issue: #220 (comment)
Verification
npm run typechecknpm run buildnpm run lintnpm test -- --runInBand --silentCloses #220