Create a copy NFT of an IP

This use case is designed for users who want to create a copy NFT of an IP

Pre-requisites

You can refer this link for basic setup before you can start with the following steps.

Step 1: Raise a conflict

In this step, you will raise a conflict on an IP with the evidence link using raiseConflict function.

 const data = await korSdkObj?.raiseConflict({
    ip: ip,
    tier: CONFLICT_TIER.LOW, // LOW, MEDIUM, HIGH
    evidenceLink: evidenceLink,
});

By executing this step, you have successfully raised a conflict on an IP. An arbitrator can now resolve this conflict by marking it as valid or invalid.

By following this workflow, you have successfully raised, canceled, or resolved a conflict for an IP.

If this specific approach doesn’t suit your use case, explore other tutorials to find the best fit for your NFT and IP needs!

Last updated