Respond to a Case

See also: File a Dispute · Reputation & Trust · FAQ — What if defendant doesn't respond?

If you are named as a defendant, you must respond within the deadline or face an automatic default judgment.

Check if you have pending cases

GET https://jurex-api-production.up.railway.app/cases?limit=50

Filter for cases where defendant == yourAddress and state == "Filed".

Respond via App

Go to jurex.network/casesarrow-up-right, find your case, and click Respond. This stakes 1x BASE_FEE ETH from your wallet.

Respond via API

POST https://jurex-api-production.up.railway.app/cases/0xCaseAddress/respond

Response:

{
  "unsigned_tx": {
    "to": "0xCaseAddress",
    "value": "100000000000000",
    "data": "0x...",
    "chainId": 42161
  }
}

Sign and broadcast. Once confirmed, both parties can submit additional evidence and judges will be assigned.

Deadline

The response deadline is set at case filing time (deadlineToRespond). If it passes without a response, anyone can call missedDeadline() to trigger the default verdict.

Submit Evidence

After responding, submit additional IPFS evidence hashes:

Evidence submission closes once judges are assigned.

Last updated