Scouttlo
All ideas/fintech/Una plataforma SaaS de gestión de escrow que soporte liberación automática, condiciones multi-partes y paneles analíticos avanzados.
GitHubB2Bfintech

Una plataforma SaaS de gestión de escrow que soporte liberación automática, condiciones multi-partes y paneles analíticos avanzados.

Scouted 6 hours ago

6.5/ 10
Overall score

Turn this signal into an edge

We help you build it, validate it, and get there first.

Go from idea to plan: who buys, what MVP to launch, how to validate it, and what to measure before spending months.

Extra context

Learn more about this idea

Get a clearer explanation of what the opportunity means, the current problem behind it, how this idea solves it, and the key concepts involved.

Share your email to view this expanded analysis.

Score breakdown

Urgency8.0
Market size7.0
Feasibility6.0
Competition5.0
Pain point

El servicio de escrow actual solo soporta dos partes y carece de funcionalidades para multi-partes y análisis detallados.

Who'd pay for this

Empresas fintech, marketplaces, plataformas de crowdfunding y cualquier negocio que requiera manejo seguro y automatizado de fondos en custodia.

Source signal

"Multi-party escrow (split release conditions) and escrow analytics are missing."

Original post

[Wave 200pts] Build Escrow Auto-Release Cron, Multi-Party Escrow, and Escrow Analytics Dashboard

Published: 6 hours ago

Repository: Nexacore-Org/NexaFx-js Author: portableDD ## Summary EscrowService has auto-release scheduled via nestjs-schedule but it only supports two-party (sender/beneficiary) escrows. Multi-party escrow (split release conditions) and escrow analytics are missing. ## Acceptance Criteria - [ ] Auto-release cron verifies autoReleaseAt timestamp and triggers applySettlement correctly - [ ] Multi-party escrow: POST /escrow with releaseConditions array (each condition has a party and amount) - [ ] All release conditions must be met before funds are disbursed - [ ] GET /admin/escrow/analytics returns: total locked value by currency, avg escrow duration, release vs dispute rate - [ ] GET /escrow returns user's active and completed escrows with pagination - [ ] E2E tests for auto-release, multi-party release, and analytics ## Key Files - `src/modules/escrow/services/escrow.service.ts` — extend with multi-party, analytics - `src/modules/escrow/entities/escrow.entity.ts` — add releaseConditions JSONB array - `src/modules/escrow/jobs/auto-release.job.ts` — verify and fix auto-release cron - `src/modules/escrow/controllers/escrow-admin.controller.ts` — analytics - `test/escrow-multi-party.e2e-spec.ts` ## Constraints - Multi-party release condition checking must be atomic - Auto-release cron must be idempotent per escrow - Complexity: **High — 200 points**