EvidenceModule
State Variables
arbitrator
IArbitratorV2 public arbitrator;
Functions
constructor
constructor(IArbitratorV2 _arbitrator);
submitEvidence
Submits evidence.
function submitEvidence(uint256 _evidenceGroupID, string calldata _evidence) external;
Parameters
Name | Type | Description |
---|---|---|
_evidenceGroupID | uint256 | Unique identifier of the evidence group the evidence belongs to. It's the submitter responsability to submit the right evidence group ID. |
_evidence | string | IPFS path to evidence, example: '/ipfs/Qmarwkf7C9RuzDEJNnarT3WZ7kem5bk8DZAzx78acJjMFH/evidence.json'. |
Events
Evidence
event Evidence(
IArbitratorV2 indexed _arbitrator, uint256 indexed _evidenceGroupID, address indexed _party, string _evidence
);