PIL Flavors (examples)

PIL is very configurable, but we support pre-configured License Terms for ease of use. We expect these to be the most popular options:

Flavor #1: Non-Commercial Social Remixing

This flavor is already registered as licenseTermsId = 1 on Story. In addition, every single IP Asset has these terms attached by default.

Let the world build on and play with your creation. This license allows for endless free remixing while tracking all uses of your work while giving you full credit. Similar to: TikTok plus attribution.

What others can do?

Others canOthers cannot
✅ Remix this work
(derivativesAllowed == true)
❌ Commercialize the original and derivative works
(commercialUse == false)
✅ Distribute their remix anywhere❌ Claim credit for the remix as original work
(derivativesAttribution == true)
✅ Credit you appropriately
(derivativesAttribution == true)

 PIL Term Values

  • On-chain:
PILTerms({
  transferable: true,
  royaltyPolicy: zeroAddress,
  mintingFee: 0,
  expiration: 0,
  commercialUse: false,
  commercialAttribution: false,
  commercializerChecker: zeroAddress,
  commercializerCheckerData: EMPTY_BYTES,
  commercialRevShare: 0,
  commercialRevCelling: 0,
  derivativesAllowed: true,
  derivativesAttribution: true,
  derivativesApproval: false,
  derivativesReciprocal: true,
  derivativeRevCelling: 0,
  currency: zeroAddress,
  uri: ''
});
  • Off-chain:
ParameterOptions / Tags
TerritoryNo restrictions
Channels of DistributionNo Restriction
AttributionTrue
Content StandardsNo Restriction
SublicensableFalse
AI Learning ModelsTrue
Restriction on Cross-Platform UseFalse
Governing LawCalifornia
Alternative Dispute ResolutionTag: Alternative-Dispute-Resolution Ledger-Authoritative-Dispute-Resolution
Additional License ParametersNone

Flavor #2: Commercial Use

Retain control over reuse of your work, while allowing anyone to appropriately use the work in exchange for the economic terms you set. This is similar to Shutterstock with creator-set rules.

What others can do?

Others canOthers cannot
✅ Purchase the right to use your creation
(mintingFee is set)
❌ Claim credit for the remix as original work
(derivativesAttribution == true)
✅ Remix this work
(derivativesAllowed == true)
❌ Claim credit for the original work
(commercialAttribution == true)
✅ Distribute their remix anywhere
✅ Credit you appropriately
(derivativesAttribution == true)
✅ Commercialize the original and derivative works
(commercialUse == true)

 PIL Term Values

  • On-chain:
PILTerms({
  transferable: true,
  royaltyPolicy: royaltyPolicy,
  mintingFee: mintingFee,
  expiration: 0,
  commercialUse: true,
  commercialAttribution: true,
  commercializerChecker: zeroAddress,
  commercializerCheckerData: EMPTY_BYTES,
  commercialRevShare: 0,
  commercialRevCelling: 0,
  derivativesAllowed: true,
  derivativesAttribution: true,
  derivativesApproval: false,
  derivativesReciprocal: false,
  derivativeRevCelling: 0,
  currency: currencyToken,
  uri: ''
})
  • Off-chain
ParameterOptions / Tags
TerritoryNo restrictions
Channels of DistributionNo Restriction
AttributionTrue
Content StandardsNo Restriction
SublicensableFalse
AI Learning ModelsTrue
Restriction on Cross-Platform UseFalse
Governing LawCalifornia
Alternative Dispute ResolutionTag: Alternative-Dispute-Resolution Ledger-Authoritative-Dispute-Resolution
Additional License ParametersNone

Flavor #3: Commercial Remix

Let the world build on and play with your creation... and earn money together from it! This license allows for endless free remixing while tracking all uses of your work while giving you full credit, with each derivative paying a percentage of revenue to its "parent" IP.

What others can do?

Others canOthers cannot
✅ Remix this work
(derivativesAllowed == true)
❌ Claim credit for the remix as original work
(derivativesAttribution == true)
✅ Distribute their remix anywhere❌ Claim credit for the original work
(commercialAttribution == true)
✅ Credit you appropriately
(derivativesAttribution == true)
❌ Claim all the revenue from commercial use of the original work or derivative works
(commercialRevShare is set)
✅ Commercialize the original and derivative works
(commercialUse == true)

 PIL Term Values

  • On-chain:
PILTerms({
  transferable: true,
  royaltyPolicy: royaltyPolicy,
  mintingFee: 0,
  expiration: 0,
  commercialUse: true,
  commercialAttribution: true,
  commercializerChecker: zeroAddress,
  commercializerCheckerData: EMPTY_BYTES,
  commercialRevShare: commercialRevShare,
  commercialRevCelling: 0,
  derivativesAllowed: true,
  derivativesAttribution: true,
  derivativesApproval: false,
  derivativesReciprocal: true,
  derivativeRevCelling: 0,
  currency: zeroAddress,
  uri: ''
});
  • Off-chain
ParameterOptions / Tags
TerritoryNo restrictions
Channels of DistributionNo Restriction
AttributionTrue
Content StandardsNo Restriction
SublicensableFalse
AI Learning ModelsTrue
Restriction on Cross-Platform UseFalse
Governing LawCalifornia
Alternative Dispute ResolutionTag: Alternative-Dispute-Resolution Ledger-Authoritative-Dispute-Resolution
Additional License ParametersNone

Examples

Here are some common examples of royalty flow. More coming soon!

Example 1

Explanation

Someone registers their Azuki on Story. By default, that IP Asset has Non-Commercial Social Remixing Terms, which specify that anyone can create derivatives of that work but cannot commercialize them. So, someone else creates & registers a remix of that work (IPA2) which inherits those same terms. Someone else then does the same to IPA2, creating & registering IPA3.

The owner of IPA1 then decides that others can commercialize the work, but they cannot create derivatives to do so, they must pay a 10 USDC minting fee, and they must share 10% of all revenue earned. So, someone wants to commercialize IPA1 by putting it on a t-shirt. They pay the 10 USDC minting fee to get a License Token, which represents the license to commercialize IPA1. They then put the image on a t-shirt and sell it. 10% of revenue earned by that t-shirt must be sent on-chain to IPA1.

Example 2

Explanation

Someone registers their Azuki on Story. By default, that IP Asset has Non-Commercial Social Remixing Terms, which specify that anyone can create derivatives of that work but cannot commercialize them. So, someone else creates & registers a remix of that work (IPA2) which inherits those same terms. Someone else then does the same to IPA2, creating & registering IPA3.

The owner of IPA1 then decides that others can create derivatives of their work and commercialize them, but they must pay a 10 USDC minting fee and share 10% of all revenue earned. So, someone wants to commercialize IPA1 by putting it on a t-shirt. They pay the 10 USDC minting fee to get a License Token and burn it to create their own derivative, which changes the background color to red. They then put the remixed image on a t-shirt and sell it. 10% of revenue earned by that t-shirt must be sent on-chain to IPA1.

A third person wants to commercialize the remix by putting it in a TV advertisement, but they want to change the hair color to white. So, they pay a 10 USDC minting fee (of which, 1 USDC gets sent back to IPA1) to create their own derivative. They then put the remixed image in a TV ad. 10% of revenue earned by that t-shirt must be sent on-chain to IPA4, of which 10% will be distributed back to IPA1.