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.
from web3 import Web3response = story_client.Dispute.raise_dispute( target_ip_id="0xC92EC2f4c86458AFee7DD9EB5d8c57920BfCD0Ba", # NOTE: you must use your own CID here, because every time it is used, # the protocol does not allow you to use it again cid="QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR", # you must pick from one of the whitelisted tags here: # https://docs.story.foundation/docs/dispute-module#dispute-tags target_tag="IMPROPER_REGISTRATION", bond=Web3.to_wei(0.1, 'ether'), # minimum of 0.1 liveness=2592000, tx_options={"wait_for_transaction": True})print(f"Dispute raised at transaction hash {response['tx_hash']}, Dispute ID: {response['dispute_id']}")
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.
If you only have a dispute_id, call dispute_id_to_assertion_id to get the assertion_id needed here.
You will need $WIP that the IP owner will have to deposit themselves using the
deposit function in the WIP Client.
Method
dispute_assertion
Parameters:
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”
# First get the assertion_id from the dispute_idassertion_id = story_client.Dispute.dispute_id_to_assertion_id(1)# Then dispute the assertionresponse = story_client.Dispute.dispute_assertion( ip_id="0xa1BaAA464716eC76A285Ef873d27f97645fE0366", assertion_id=assertion_id, counter_evidence_cid="QmX4zdp8VpzqvtKuEqMo6gfZPdoUx9TeHXCgzKLcFfSUbk")