IP Asset에 약관 첨부하기
라이선스 조건을 첨부하면 IPA는 라이선스 생성을 위한 자격을 갖추게 된다.
그 이후 IP의 파생물을 창작하고자 하는 사용자는 라이선스를 발행할 수 있으며, 라이선스를 소각하여 자신의 IP를 원본 저작물의 파생 IPA로 등록할 수 있다.
0) Prerequisites
존재하는 IPA(
ipId) (참고 : IP Asset 등록하는 방법)존재하는 라이선스 약관(
termsId) (참고: PIL 등록하기)
1) 라이선스 약관 첨부하기
const response = await client.license.attachLicenseTerms({
licenseTermsId: "1",
ipId: "0x4c1f8c1035a8cE379dd4ed666758Fb29696CF721",
txOptions: { waitForTransaction: true }
});
if (response.success) {
console.log(`Attached License Terms to IPA at transaction hash ${response.txHash}.`)
} else {
console.log(`License Terms already attached to this IPA.`)
}Note: 모든 IP Asset들은 기본적으로 비상업적 소셜 리믹스 라이선스가 첨부되어 있다.
Reference
Last updated