Overview
Digital Jungle is bjungle’s digital ecosystem, exposed as a set of independent applications that integrate via NATS events and signed webhooks.
The four applications
Section titled “The four applications”| App | Role |
|---|---|
| Platform | Identity provider (OIDC), tenant registry, unified outbound webhook dispatcher. |
| Bmonkey | Identity / KYC / biometric verification / dynamic forms. |
| Bhawk | SARLAFT risk engine, restricted list screening. |
| Bseal | Cryptographic e-signature over PDF templates (AWS KMS). |
Each app:
- owns its own logical database (
bjungle_platform,bjungle_bmonkey, etc.), - deploys and scales independently,
- authenticates against Platform via OIDC,
- emits events via NATS JetStream.
Multi-tenancy
Section titled “Multi-tenancy”Row-Level Security (RLS) in PostgreSQL makes it impossible to access another tenant’s data — not even via application bugs. Each API key identifies a tenant. The middleware sets the session context before every query.
Token economy — Açaí
Section titled “Token economy — Açaí”Every billable operation costs Açaí tokens. One bundle covers all three modules:
| Operation | Tokens |
|---|---|
| Biometric KYC (selfie + document + liveness) | 80 |
| KYC reuse (SSI wallet, with consent) | 32 |
| SARLAFT evaluation | 10 |
| E-signature PDF | 40 |
See Pricing for full details.