Dispute
Methods
- raise_dispute
- cancel_dispute
- resolve_dispute
- tag_if_related_ip_infringed
- dispute_assertion
- dispute_id_to_assertion_id
raise_dispute
Raises a dispute on a given ipId| Method |
|---|
raise_dispute |
target_ip_id: The IP ID that is the target of the dispute.target_tag: The target tag of the dispute. See dispute tags. Example: “IMPROPER_REGISTRATION”cid: Content Identifier (CID) for the dispute evidence. This should be obtained by uploading your dispute evidence (documents, images, etc.) to IPFS. Example: “QmX4zdp8VpzqvtKuEqMo6gfZPdoUx9TeHXCgzKLcFfSUbk”liveness: The liveness is the time window (in seconds) in which a counter dispute can be presented (30days).bond: The amount of wrapper IP that the dispute initiator pays upfront into a pool. To counter that dispute the opposite party of the dispute has to place a bond of the same amount. The winner of the dispute gets the original bond back + 50% of the other party bond. The remaining 50% of the loser party bond goes to the reviewer.tx_options: [Optional] Transaction options dictionary.
cancel_dispute
Cancels an ongoing dispute| Method |
|---|
cancel_dispute |
dispute_id: The ID of the dispute to be cancelled.data: [Optional] Additional data used in the cancellation process. Defaults to “0x”.tx_options: [Optional] Transaction options dictionary.
resolve_dispute
Resolves a dispute after it has been judged| Method |
|---|
resolve_dispute |
dispute_id: The ID of the dispute to be resolved.data: The data to resolve the dispute.tx_options: [Optional] Transaction options dictionary.
tag_if_related_ip_infringed
Tags a derivative if a parent has been tagged with an infringement tag or a group ip if a group member has been tagged with an infringement tag.| Method |
|---|
tag_if_related_ip_infringed |
infringement_tags: An array of tags relating to the disputeinfringement_tags[]['ip_id']: Theip_idto taginfringement_tags[]['dispute_id']: The dispute id that tagged the related infringing parent IP
tx_options: [Optional] Transaction options dictionary.
dispute_assertion
Counters a dispute that was raised by another party on an IP using counter evidence. This method can only be called by the IP’s owner to counter a dispute by providing counter evidence. The counter evidence (e.g., documents, images) should be uploaded to IPFS, and its corresponding CID is converted to a hash for the request. The liveness period is split in two parts:- the first part of the liveness period in which only the IP’s owner can be called the method.
- a second part in which any address can be called the method.
dispute_id, call dispute_id_to_assertion_id to get the assertion_id needed here.
| Method |
|---|
dispute_assertion |
ip_id: The IP ID that is the target of the dispute.assertion_id: The identifier of the assertion that was disputed. You can get this from thedispute_idby callingDispute.dispute_id_to_assertion_id.counter_evidence_cid: Content Identifier (CID) for the counter evidence. This should be obtained by uploading your dispute evidence (documents, images, etc.) to IPFS. Example: “QmX4zdp8VpzqvtKuEqMo6gfZPdoUx9TeHXCgzKLcFfSUbk”tx_options: [Optional] Transaction options dictionary.
dispute_id_to_assertion_id
Maps a dispute ID to an assertion ID.| Method |
|---|
dispute_id_to_assertion_id |
dispute_id: The dispute ID to convert to an assertion ID.

