← Back to Patent Claims
Patent Claim 069 All Patents →

Liquidity Firewall with Code-Enforced Rolling-Drawdown Caps

Graduation-Gated Vault Support for Launch Pools, Bounded by Ordered 24-Hour, 7-Day, Total, and Hard-Stop Exposure Caps

Patent Claim JIL Sovereign July 2026 Claim 69 of 157

Executive Summary

Shared or federated liquidity support meant to backstop launch pools is itself an attractive drain target: a single manipulated or fast-collapsing pool can, absent hard limits, pull down support intended to protect many pools at once. ProofGuard's liquidity firewall treats vault support as a privilege a launch pool has to earn, and then bounds it with caps enforced entirely in code rather than by discretionary policy.

Support is disabled by default for every pool. Enabling it requires an explicit policy record and, ordinarily, that the pool has already reached a graduated lifecycle state. Once enabled, every individual draw is evaluated against a fixed precedence of checks — price band, rolling 24-hour drawdown, rolling 7-day drawdown, total exposure cap, and a hard stop — with the hard stop triggering an automatic, immediate disablement of further support for that pool.

Core Innovation: The caps are layered and ordered, not a single ceiling. A pool can be well under its total exposure cap and still have a draw denied because it has moved too fast within the last 24 hours — velocity is capped independently of magnitude.

Problem Statement

Insurance and support funds attached to DeFi protocols typically publish a single total-balance figure with no rolling-rate limit on how quickly that balance can be drawn down. A fast, concentrated attack can exhaust a nominally large fund within a single trading session even though the fund's total size looked adequate on paper. Where a discretionary limit does exist, it usually lives in a risk desk's internal policy rather than in code — meaning it can be paused, raised, or waived verbally under exactly the pressure of an active incident, when discipline matters most.

5
Independently ordered checks evaluated before any vault draw executes
0
Default vault exposure for any launch pool prior to earning graduated status
1
Hard-stop breach required to auto-disable support for that pool -- no separate manual step needed

Technical Architecture

Vault Support Policy

Each pool's vault-support policy is a discrete record specifying a total exposure cap, a rolling 24-hour drawdown limit, a rolling 7-day drawdown limit, a hard-stop threshold, an optional price band, and whether support requires the pool to have reached a graduated lifecycle state. Support is created in a disabled state and must be explicitly enabled, which itself is denied outright if no policy exists or if graduation is required but not yet reached.

CheckBasisOutcome on Violation
Support enabledPolicy stateDeny (support disabled)
Price within bandCurrent pool price vs. configured min/maxDeny (firewall active)
24-hour drawdownRolling sum of draws in trailing 24hDeny (drawdown limit exceeded)
7-day drawdownRolling sum of draws in trailing 7dDeny (drawdown limit exceeded)
Total exposureCumulative drawn amount vs. total capDeny (exposure cap exceeded)
Hard stopCumulative drawn amount vs. hard-stop thresholdDeny + auto-disable support

Ordered Evaluation, Atomic Effect

A draw request locks the pool and policy rows, evaluates the checks above in fixed order, and denies on the first violation encountered. A draw that would cross the hard-stop threshold is denied and the policy's enablement flag is flipped to disabled in the same database transaction, so no window exists in which a subsequent draw could slip through between the hard-stop breach and the disablement taking effect. An approved draw is recorded and the policy's cumulative-drawn figure is incremented before the transaction commits.

Evidentiary Anchoring

Every enablement, denial, draw, and hard stop is cryptographically anchored into a tamper-evident hash-chained ledger, giving operators and affected pools a verifiable record of exactly which cap stopped which draw and when.

Prior Art Differentiation

ApproachTotal Cap?Rolling-Rate Cap?Enforced ByAuto Hard-Stop?
Protocol insurance fund (typical)YesNoBalance check onlyNo
Discretionary risk-desk pausePolicy, not codePolicy, not codeManual decisionNo
JIL ProofGuardYesYes, 24h and 7dCode, ordered checksYes, atomic

Patent Claim

Independent Claim 69: A computer-implemented system for bounding liquidity-support exposure to a token-launch pool comprising: a vault-support policy record specifying a rolling 24-hour drawdown limit, a rolling 7-day drawdown limit, a total exposure cap, and a hard-stop exposure threshold, wherein support is disabled by default and enablement is conditioned on the pool having reached a graduated lifecycle state; and a draw-evaluation routine that, for each requested support draw, evaluates in a fixed order whether support is enabled, whether the current price falls within a configured price band, and whether the draw would cause the rolling 24-hour, rolling 7-day, or total exposure figures to exceed their respective limits, denying the draw on the first violation encountered, and, upon a draw that would cross the hard-stop threshold, both denying the draw and automatically disabling further support for that pool without requiring a separate manual action.