Platform

Overview

How It Works

Beneficiary Identity

Policy Corridors

Deterministic Finality

Architecture

Security Model

Governance

Integration

Solutions

Corridors Overview

Institutional Overview

Pricing

All Scenarios

Humanitarian Impact Fund

Assurance

Technical Assurance

Verify Receipt

Receipt Example

Developers

Documentation

APIs & Bridges

Architecture Docs

Glossary

BID API

Company

About

Team

Partners

Roadmap

Investors

Contact

Blog

All Documentation

Schedule Consultation
← Back to Patent Claims
Patent Claim 04 All Patents →

Autonomous Transaction Compliance Engine

Zone-Based Real-Time Regulatory Enforcement at the Consensus Layer

Patent Claim JIL Sovereign February 2026 Claim 4 of 36

01Executive Summary

The Autonomous Transaction Compliance Engine (ATCE) embeds regulatory enforcement directly into the blockchain settlement layer, eliminating the temporal gap between transaction execution and compliance verification that plagues every existing blockchain platform. Transactions are validated against jurisdiction-specific rules before they are included in a block - not after.

The system defines 13 compliance zones, each representing a distinct regulatory jurisdiction with its own configurable set of transaction limits, velocity controls, sanctions lists, asset restrictions, and corridor rules. Transactions are routed to zone-specific message topics on RedPanda and processed exclusively by validators authorized for that zone.

Core Innovation: Every other blockchain performs compliance as a post-hoc application-layer check. JIL Sovereign enforces compliance at the settlement layer itself - a non-compliant transaction is never written to the ledger in the first place. This eliminates the need for transaction reversal, fund freezing, or retroactive enforcement.

02Problem Statement

Financial compliance in blockchain systems today operates in a fundamentally broken model: transactions execute first, and compliance checks happen later - sometimes minutes, hours, or days after the funds have moved. This temporal gap creates regulatory exposure, operational risk, and costly remediation.

2.1 The Compliance Timing Gap

  • Application-Layer Compliance: Most blockchains rely on application-layer services (Chainalysis, Elliptic) that analyze transactions after they have been confirmed on-chain. By the time a violation is detected, the funds may have been moved again.
  • Manual Review Queues: SWIFT and traditional banking systems still rely on human compliance officers reviewing flagged transactions, introducing delays of hours to days.
  • Jurisdictional Fragmentation: A single transaction may cross three jurisdictions - each with different rules. No existing system enforces all applicable rules atomically at the point of execution.
  • Retroactive Enforcement: When violations are detected post-execution, the only remedies are fund freezing (requires custodial control) or legal action (slow, expensive, uncertain).
The Gap: No production blockchain enforces compliance rules at the settlement layer. Every existing solution applies compliance checks at the application layer, creating a window between transaction finality and compliance verification where non-compliant transactions can execute and propagate.

03Technical Architecture

3.1 The 13 Compliance Zones

Zone IDJurisdictionRegulatorSingle Tx LimitDaily VelocityTravel Rule
DE_BAFINGermanyBaFin$100,000$500,000Required above $1,000
EU_ESMAEuropean UnionESMA$150,000$750,000Required above $1,000
SG_MASSingaporeMAS$200,000$1,000,000Required above $1,500
CH_FINMASwitzerlandFINMA$250,000$1,000,000Required above $1,000
US_FINCENUnited StatesFinCEN$50,000$250,000Required above $3,000
GB_FCAUnited KingdomFCA$150,000$500,000Required above $1,000
JP_JFSAJapanJFSA$100,000$500,000Required above $3,000
AE_FSRAUAEFSRA$500,000$2,000,000Required above $1,000
BR_CVMBrazilCVM$50,000$200,000Required above $1,000
GLOBAL_FATFGlobal FallbackFATF Guidelines$100,000$500,000Required above $1,000

3.2 Zone Routing Architecture

Each transaction is routed to the appropriate compliance zone based on the sender's registered jurisdiction. The routing occurs at the message layer via RedPanda zone-specific topics before the transaction reaches consensus. Only validators authorized for a given zone can process transactions in that zone.

Transaction Submitted
    |
    v
Zone Router (settlement-api)
    |  Determines zone from sender jurisdiction
    |  Publishes to: jil.settlement.{ZONE_ID}
    v
RedPanda Zone Topic
    |  e.g., jil.settlement.DE_BAFIN
    |  Consumed by zone-authorized validators only
    v
Settlement Consumer (per validator)
    |  Loads zone-specific rules
    |  Validates: tx limits, velocity, sanctions, assets, corridors
    |  PASS -> commit to ledger
    |  FAIL -> reject with compliance receipt
    v
Ledger Commit (or Rejection Receipt)

3.3 Rule Enforcement Categories

Transaction Limits

Per-transaction maximum amount enforced at the zone level. Transactions exceeding the zone limit are rejected before reaching consensus.

Velocity Controls

Rolling 24-hour aggregate limits per account per zone. Prevents structuring attacks that split large transfers into multiple smaller transactions.

Sanctions Screening

Real-time screening against zone-specific sanctions lists (OFAC, EU, UN). Both sender and receiver addresses checked before execution.

Asset Restrictions

Zone-level asset whitelists and blacklists. Some jurisdictions restrict specific token types or require additional compliance for certain asset classes.

Corridor Rules

Cross-border transaction rules between zones. Some zone pairs require enhanced due diligence or are restricted entirely based on bilateral agreements.

Travel Rule

FATF Travel Rule enforcement with zone-specific thresholds. Originator and beneficiary information must be attached above the threshold amount.

04Implementation

4.1 Zone Configuration Format

{
  "zone_id": "DE_BAFIN",
  "jurisdiction": "Germany",
  "regulator": "BaFin",
  "rules": {
    "max_single_tx_usd": 100000,
    "max_daily_velocity_usd": 500000,
    "travel_rule_threshold_usd": 1000,
    "sanctions_lists": ["OFAC_SDN", "EU_CONSOLIDATED", "UN_SANCTIONS"],
    "restricted_assets": [],
    "allowed_corridors": ["EU_ESMA", "CH_FINMA", "GB_FCA", "GLOBAL_FATF"],
    "blocked_corridors": [],
    "enhanced_dd_corridors": ["US_FINCEN", "AE_FSRA"]
  },
  "validators": ["jil-validator-de"],
  "topic": "jil.settlement.DE_BAFIN"
}

4.2 Zone Message Topics

TopicPartition CountConsumer GroupRetention
jil.settlement.DE_BAFIN4settlement-consumer-DE_BAFIN7 days
jil.settlement.US_FINCEN4settlement-consumer-US_FINCEN7 days
jil.settlement.GLOBAL_FATF8settlement-consumer-GLOBAL_FATF7 days
jil.settlement.dlq2settlement-dlq-processor30 days

4.3 Compliance Receipt

Every transaction - whether approved or rejected - generates an immutable compliance receipt stored on-chain. Approved transactions include the receipt hash in the block. Rejected transactions produce a signed rejection receipt that can be independently verified.

Audit Trail: The compliance receipt contains the zone ID, the rules evaluated, the pass/fail result for each rule, the validator that processed the transaction, and a timestamp. This creates a complete, immutable audit trail that regulators can inspect without accessing the underlying transaction data - only the compliance metadata.

05Integration with JIL Ecosystem

5.1 Settlement Consumer (P2P Architecture)

Each validator node runs a settlement consumer service (port 8051) that subscribes only to the RedPanda topics for its authorized zones. This ensures that a German validator processes only DE_BAFIN transactions, a Singapore validator processes only SG_MAS transactions, and so on. The P2P architecture means there is no central compliance bottleneck.

5.2 RedPanda Zone Routing

When a transaction arrives at the settlement API, the sender's jurisdiction is determined from the account registry. The transaction is published to the corresponding zone topic. Consumer groups ensure that even if multiple validators are authorized for the same zone, each transaction is processed exactly once.

5.3 Corridor Switchboard

Cross-border transactions that span multiple zones are routed through the corridor switchboard service (port 8101). The switchboard enforces bilateral corridor rules - for example, a transaction from DE_BAFIN to US_FINCEN must satisfy both German and US compliance rules. If either zone rejects, the transaction fails atomically.

5.4 Policy Registry

The policy registry service (port 8103) stores the canonical zone configurations and distributes updates to all validators via signed configuration bundles. Zone rules can be updated by governance vote without requiring a network upgrade. Configuration changes take effect at the next epoch boundary.

06Prior Art Differentiation

SystemCompliance LayerEnforcement TimingZone SupportJIL Advantage
SWIFTManual review + sanctions screeningPost-submission (hours to days)Country-based routingJIL enforces pre-execution, zero delay
ChainalysisApplication-layer analyticsPost-confirmation (minutes to hours)None - global onlyJIL enforces per-zone at consensus
EllipticApplication-layer risk scoringPost-confirmationNoneJIL rejects before block inclusion
EthereumNo native complianceN/ANoneJIL has 10 configurable zones
Ripple/XRPGateway-level complianceAt gateway (centralized)Per-gatewayJIL enforces at consensus (decentralized)
Key Differentiator: JIL Sovereign is the first blockchain to enforce jurisdiction-specific compliance rules at the settlement layer rather than the application layer. Non-compliant transactions are rejected before block inclusion, eliminating the temporal gap that every other system relies on post-hoc remediation to address.

07Implementation Roadmap

Phase 1
Months 1 - 3

Core Zone Infrastructure

Deploy 13 compliance zones with configurable rule sets. Implement zone-specific RedPanda topics and settlement consumers. Basic transaction limits, velocity controls, and sanctions screening per zone. Compliance receipt generation for all transactions.

Phase 2
Months 4 - 6

Cross-Border Corridors

Corridor switchboard with bilateral rule enforcement. Travel Rule implementation per zone threshold. Enhanced due diligence corridors. Cross-zone audit trail linking for multi-jurisdiction transactions.

Phase 3
Months 7 - 9

Dynamic Rule Updates

Governance-voted zone rule updates via policy registry. Hot-reload of zone configurations at epoch boundaries. Regulatory API for zone authorities to query compliance data. Zone-specific reporting dashboards.

Phase 4
Months 10 - 12

Advanced Compliance

Machine learning anomaly detection per zone. Predictive velocity analysis for structuring detection. Real-time regulatory reporting feeds. Additional zone onboarding for new jurisdictions (target: 20 zones).

08Patent Claim

Claim 4: A system for autonomous transaction compliance enforcement at the blockchain settlement layer, comprising: a plurality of jurisdiction-specific compliance zones, each zone defining configurable rules for transaction limits, velocity controls, sanctions screening, asset restrictions, and cross-border corridor rules; a message routing layer that directs each transaction to the compliance zone corresponding to the originating account's registered jurisdiction; zone-authorized validators that evaluate transactions against the applicable zone rules before including them in a consensus block; wherein transactions that fail any zone rule are rejected with a signed compliance receipt before block inclusion, ensuring that non-compliant transactions are never written to the immutable ledger; and a corridor switchboard that enforces bilateral compliance rules for transactions crossing zone boundaries, requiring satisfaction of both the originating and destination zone rules for cross-border execution.