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.
Polysight
Prediction market resolving ambiguous outcomes via human jurors.
MetaDAO
DAO governance — verifies whether proposal conditions were met.
Lancer
Freelance marketplace using Jury for scope & quality disputes.
CoverFi
Parametric insurance adjudicating claim validity before payout.
GrantHub
Grant program verifying milestone delivery before release.
Integrate in one call
SolidityYourApp.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();
}