-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
since Evidence in ArbitratorV2 is to be handled at arbitrator anyway, the threads meant for internal consumption in stake curate will be known as Posts to avoid confusion
- Loading branch information
1 parent
553106a
commit f53cc02
Showing
3 changed files
with
24 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// SPDX-License-Identifier: MIT | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
import "./IArbitrator.sol"; | ||
|
||
/** @title IPost | ||
* Inspired in ERC-1497: Evidence Standard | ||
*/ | ||
interface IPost { | ||
/** | ||
* @dev To be raised when post is submitted. Should point to the resource. | ||
* @param _threadId Unique identifier of the thread the post belongs to. | ||
* @param _post IPFS path to post, example: '/ipfs/Qmarwkf7C9RuzDEJNnarT3WZ7kem5bk8DZAzx78acJjMFH/evidence.json' | ||
*/ | ||
event Post(uint256 indexed _threadId, string _post); | ||
} |
This file was deleted.
Oops, something went wrong.