Ledger GraphQL
Banking ledger with GraphQL Relay, DataLoader and MongoDB. Cursor-based pagination, ACID transactions.
14 challenges simulating real Brazilian financial market problems

Ever wondered how a Pix transfer actually works under the hood?
Not the pretty app interface. The ugly part. The massive XMLs, binary protocols, key directories, nightly reconciliations.
This project is a deep dive into that. 14 technical challenges simulating real Brazilian financial market problems.
Each challenge is a miniature of a real system. SPI, DICT, ISO 8583, Open Finance — these all exist in production and move billions daily.
The idea is simple: if you understand how these systems work internally, you can build anything in fintech.
Each challenge is independent. You can run just the SPI Simulator or spin everything up at once.
git clone https://github.com/mateussiqueira/banking-stack.git
cd banking-stack
pnpm install
docker compose up -d
pnpm devDone. 13 services running. Each on its own port, each with its own database.
There's no right or wrong answer. There are trade-offs.
Node.js is great for prototyping. Go is great for production. GraphQL is good for complex queries. REST is good for simplicity. MongoDB is good for flexible data. PostgreSQL is good for structured data.
The goal isn't to teach you a language. It's to teach you how to think.