Skip to content

Commit

Permalink
add personal use
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuahannan committed Oct 19, 2023
1 parent ca54d68 commit 389c169
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions contracts/MetadataViews.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -880,10 +880,10 @@ pub contract MetadataViews {
}

pub fun nlpAce(): NFTLicense {
let license = NFTLicense().additionalContentExperienceRights()
let license = NFTLicense().personalUse().additionalContentExperienceRights()
// license.setBadgeLink(link: Media(file: , mediaType: ))
// license.setDescriptionLink(link: Media(file: , mediaType: ))
license.setDescription("This license gives the buyer ACE Rights")
license.setDescription("This license gives the buyer Personal Use Rights and ACE Rights")
return license
}

Expand All @@ -896,26 +896,26 @@ pub contract MetadataViews {
}

pub fun nlpVote(): NFTLicense {
let license = NFTLicense().votingRights()
let license = NFTLicense().personalUse().votingRights()
// license.setBadgeLink(link: Media(file: , mediaType: ))
// license.setDescriptionLink(link: Media(file: , mediaType: ))
license.setDescription("This license gives the buyer Voting Rights")
license.setDescription("This license gives the buyer Personal Use Rights and Voting Rights")
return license
}

pub fun nlpCom(): NFTLicense {
let license = NFTLicense().commercialRights()
let license = NFTLicense().personalUse().commercialRights()
// license.setBadgeLink(link: Media(file: , mediaType: ))
// license.setDescriptionLink(link: Media(file: , mediaType: ))
license.setDescription("This license gives the buyer Comm Rights")
license.setDescription("This license gives the buyer Personal Use Rights and Comm Rights")
return license
}

pub fun nlpMerch(): NFTLicense {
let license = NFTLicense().merchandisingRights()
let license = NFTLicense().personalUse().merchandisingRights()
// license.setBadgeLink(link: Media(file: , mediaType: ))
// license.setDescriptionLink(link: Media(file: , mediaType: ))
license.setDescription("This license gives the buyer Merch Rights")
license.setDescription("This license gives the buyer Personal Use Rights and Merch Rights")
return license
}

Expand Down
Loading

0 comments on commit 389c169

Please sign in to comment.