Dispute allows you to manage disputes within Story.
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.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.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.Method |
---|
tag_if_related_ip_infringed |
infringement_tags
: An array of tags relating to the dispute
infringement_tags[]['ip_id']
: The ip_id
to taginfringement_tags[]['dispute_id']
: The dispute id that tagged the related infringing parent IPtx_options
: [Optional] Transaction options dictionary.dispute_id
, call dispute_id_to_assertion_id
to get the assertion_id
needed here.
deposit
function in the WIP Client.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 the dispute_id
by calling Dispute.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.Method |
---|
dispute_id_to_assertion_id |
dispute_id
: The dispute ID to convert to an assertion ID.