Apps on Jury/Integrations

Integrations

Apps that route disputes to the Jury Protocol. Add arbitration to your own product with a single contract call.

Jury Escrow First-party

Our own non-custodial escrow — the reference app proving the protocol.

Cases · 8,240Volume · $12.4M

Polysight

Prediction market resolving ambiguous outcomes via human jurors.

Cases · 3,110Volume · $8.1M

MetaDAO

DAO governance — verifies whether proposal conditions were met.

Cases · 920Volume · $4.7M

Lancer

Freelance marketplace using Jury for scope & quality disputes.

Cases · 2,480Volume · $6.2M

CoverFi

Parametric insurance adjudicating claim validity before payout.

Cases · 640Volume · $9.3M

GrantHub

Grant program verifying milestone delivery before release.

Cases · 410Volume · $2.1M

Integrate in one call

Solidity
YourApp.sol
// Open a dispute — jurors return a binding ruling
uint256 caseId = jury.createDispute(
  "Did the seller deliver order #4821?",
  evidenceURI, 7, 100e6 // panel, bond
);
 
function onJuryRuling(uint256 id, bool yes) external {
  yes ? _release() : _refund();
}