ERC-1497: Evidence Standard
About The Standard
Defines a standard for submitting evidence in dispute resolution. Evidence is not stored on-chain due to gas considerations. Instead it is represented with off-chain resources, standardized JSON objects that can be hosted anywhere.
Evidence are submitted and looked up via smart contract event logs. We can leverage the immutability and availability of the blockchain to create a permanent log of submission that any interface can look up and use to access the evidence JSON.
It defines a standard way for dApps that are part of the dispute resolution process to share context and information:
for Arbitrable dApps: gives a way to provide the details of disputes to the Arbitrator.
for Arbitrators: gives a way to see context and evidence of disputes that need to be ruled.
Evidence
EvidenceMaterial provided by each party of a dispute in order to support their viewpoint, submit extra information for arbitrators and give reasons why they believe they are right.
It’s extra information that parties can submit for arbitrators that tries to prove that the dispute should be ruled in favor.
E.g.: emails, screenshots, contracts, testimony
How it’s used:
Arbitrablecontracts emit an event that contains a reference to an evidence JSON file when new evidence is submitted.
MetaEvidence
MetaEvidenceGives context to a dispute so that arbitrators are able to accurately and fairly evaluate it. Used to convey general information about the dispute to the arbitrator.
E.g.: the agreement, parties involved, what has to be decided (the question the arbitrators have to answer), the human readable meanings of rulings and specific modes of display for evidence.
How it’s used:
Each dispute includes only one piece of
MetaEvidence, however, the sameMetaEvidencecan be used for multiple disputesIt is up to the
Arbitrablecontract to determine howMetaEvidenceis submitted and assigned to a disputeIn some use cases,
MetaEvidenceis all that theArbitratorwill need in order to make a ruling.MetaEvidencehas to be created before a dispute can arise. It should be created at the same time as the agreement so that it can be impartial.
Last updated
Was this helpful?