← Back to Patent Claims
Patent Claim 102 All Patents →

Three-Tier Cryptographically-Scoped AMM Control Authority

Autonomous On-Ledger Rules, a Signed Self-Expiring Risk Engine, and Multisig Human Governance Restricted to Halt/Resume

Patent Claim JIL Sovereign July 2026 Claim 102 of 157

Executive Summary

JIL Sovereign's AMM v5 governance module splits control over live trading parameters into three cryptographically distinct authority types, each with a permission set matched to how fast and how consequentially it needs to act. Autonomous rule-based authorities react instantly to pre-audited on-ledger conditions; a risk-engine authority issues signed, time-to-live-bound actions that can adjust spreads, batch caps, and entity throttles but cannot halt the market or touch keys; and human governance, requiring multiple independently verified signatures, is the only tier that can enter or exit a full market halt, rotate risk-engine keys, or change the hard parameter bounds themselves.

No tier can silently exceed hard-coded limits: every parameter change from any tier is checked against a shared ParameterBounds structure, and only a full governance multisig action can move those bounds. Risk-engine actions additionally expire automatically - every action carries its own TTL and is rejected outright if submitted without one.

Core Innovation: Authority is scoped not just by who can act but by what kind of action they are cryptographically permitted to take - autonomous rules can react instantly but cannot grant emergency powers to themselves; the risk engine can adapt continuously but every action self-expires and is bounded; only human multisig governance can halt, resume, or move the bounds.

Problem Statement

An AMM that concentrates spread-adjustment, throttling, and emergency-halt power in a single administrative key faces an unavoidable tradeoff: either the key requires human sign-off for every routine adjustment, which is too slow to matter during a fast-moving stress event, or it is automated end-to-end, which means a single compromised or malfunctioning signer can also halt the market or drain risk controls.

3
Cryptographically distinct authority tiers
2-of-N
Default governance multisig threshold
0
Risk-engine actions permitted without a TTL

Why a Single-Key Model Falls Short

  • Fully manual control: Cannot react at the speed a live stress event requires; every parameter tweak waits on human multisig latency.
  • Fully automated control: Grants a single compromised key the power to halt trading or grant itself unlimited authority - no separation between "adaptive" and "existential" actions.
  • Unbounded automated actions: Even a well-intentioned automated system without hard parameter bounds can misconfigure itself into an economically absurd state.

Technical Architecture

Authority Permission Matrix

PermissionAutonomousRisk EngineGovernance
Adjust spreadsYesYesNo
Adjust batch capsYesYesNo
Throttle entities/clustersNoYesNo
Change pair modeYesYesNo
Halt marketYes (rule-based)NoYes
Resume from haltNoNoYes
Rotate keys / update boundsNoNoYes

Hard Parameter Bounds (No Tier May Exceed)

ParameterBound
Spread1 - 500 basis points
Batch cap$100 - $10,000,000
Throttle TTLUp to 7 days
RFQ bond$0 - $100,000
Withdrawal cap1% - 100% of vault assets per epoch

Cryptographic Enforcement

Risk-engine actions are structured records carrying an engine ID, engine and model version, a signature, a creation time, and an explicit expiry; submission is rejected if the issuing authority is unknown, revoked, or of the wrong type, if the TTL exceeds the governed maximum, or if any requested parameter falls outside its hard bound. Governance actions require a threshold number of independently verified Ed25519 signatures over the specific action ID before they can execute, and even an approved action executes only the specific, named change it was signed for - there is no generic "admin override" path.

Prior Art Differentiation

ApproachTiersSelf-Expiring Actions?Hard Bounds?
Single admin key / EOA1NoNo
Timelock-only governance1 (delayed)NoNot inherent
Multisig-only for all actions1NoNot inherent
JIL Sovereign3, permission-scopedYes - risk-engine tierYes - all tiers

Patent Claim

Independent Claim 102: A computer-implemented system for tiered automated market-maker governance comprising: a first authority type authorized to apply deterministic, rule-triggered parameter adjustments including a market halt, without human signature; a second authority type authorized to submit cryptographically signed parameter-adjustment and entity-throttle actions, each action carrying a mandatory time-to-live after which it automatically expires, said second authority type being denied authorization to halt or resume trading; a third authority type requiring a threshold number of independently verified signatures before executing an action, said third authority type being the exclusive authority capable of halting a halted market's resumption, rotating cryptographic keys, or modifying parameter bounds; and a shared parameter-bounds validator that rejects any action, from any authority type, requesting a parameter value outside currently governed hard limits.