Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Non-fungible royalty token #1190

Closed
aalimk opened this issue Jul 1, 2018 · 5 comments
Closed

Non-fungible royalty token #1190

aalimk opened this issue Jul 1, 2018 · 5 comments
Labels

Comments

@aalimk
Copy link

aalimk commented Jul 1, 2018

eip:
title: Non-fungible royalty token standard
author: Aalim Khan (aalim.khan@gmail.com) and Shaan Ray (twitter.com/shaanray)
status: Draft
type: Standards Track
category: ERC
created: 2018-06-24

Simple Summary

A standard interface for non-fungible tokens that pay royalties for a digital asset to the original creator(s) and/or owner(s).

Abstract

This standard will allow for the implementation of a standard API for non-fungible tokens that represent virtual collectibles or physical property within smart contracts.
Examples include:

Virtual collectibles: in game assets, digital art, music, stock images
Physical property: unique artwork, limited edition vehicles, real estate, physical collectibles or memorabilia

There will be 3 types of relationships that can exist with the digital asset:

The "creator" who holds the creative license
The "owner" who holds the ownership license
The "renter" who rents the digital asset

The creative license holder of a token will always get paid an agreed upon portion of a digital asset's value every time the digital asset is the subject of a transaction.
A transaction in this context is one of the following 3 cases:

The digital asset's ownership license is sold to a new owner
The digital asset is rented out by the ownership license holder to another user
The creative license holder sells the creative license (the license seller is entitled to 100% of the revenue from this transaction)

Motivation

Existing standards for non-fungible tokens fall short of addressing the issue of ensuring that the creator(s) of an asset are entitled to the revenue or value generated by an asset over the course of its existence.

Specification

Methods

// Function to initialize token and set the owner(s) and the royalty rates. Returns the unique token ID for the digital asset.
function approve(address[] owners, uint royaltyForOwnershipTransfer, uint royaltyForRental) returns uint256;

// Function to transfer creative license of token
function transferCreativeLicense(address[] creativeLicenseHolders, address[] newOwners, uint256 tokenId);

// Function to transfer ownership license of token
function transferOwnershipLicense(address[] creativeLicenseHolders, address[] ownershipLicenseHolders, address newOwners[], uint256 tokenId);

// Function to rent asset
function rentAsset(address[] creativeLicenseHolders, address[] ownershipLicenseHolders, address[] renters, uint256 tokenId);

Events

event Approval(address[] indexed _owner, address[] indexed _approved, uint256 indexed _tokenId);

event CreativeLicenseTransferred(address[] indexed creativeLicenseHolders, address[] indexed newOwners, uint256 indexed tokenId);

event OwnershipLicenseTransferred(address[] indexed creativeLicenseHolders, address[] indexed ownershipLicenseHolders, address[] indexed newOwners, uint256 indexed tokenId);

event AssetRented(address[] indexed creativeLicenseHolders, address[] indexed ownershipLicenseHolders, address[] indexed renters, uint256 indexed tokenId);

Rationale

This ERC standard would empower creators of unique digital and real world assets to participate in the financial upside of their creations. This standard will reward creators beyond the point of initial sale of their product. It will encourage individuals to unleash their creative potential and be confident that their creations will provide them recurring income as the asset's price rises in value or achieves commercial success. It will allow for multiple parties to co-create and sell assets. Guaranteeing creative owners a means to reliable recurring revenue will foster the growth of various creative industries for the benefit of all.

For example, in the art industry, the artist does not receive any royalty from their work after the initial sale. If artists can be guaranteed that their creative efforts can provide them with a means of recurring revenue, this will inspire more people to consider commercializing their creativity which will be beneficial to not only the art industry, but to the wider art community as a whole.

Another example can be found in the gaming industry. E-sports is a huge phenomenon where many people tune in to watch. When well known players of a gaming community take part in global tournaments, viewership of the game's live streams rise and so do game's popularity. Digital assets of popular players from previous tournaments can be rented out to other players which will serve to drive up the hype of the digital asset, the people involved, and the game as a whole.

Copyright

Copyright and related rights waived via CC0.

@github-actions
Copy link

github-actions bot commented Dec 5, 2021

There has been no activity on this issue for two months. It will be closed in a week if no further activity occurs. If you would like to move this EIP forward, please respond to any outstanding feedback or add a comment indicating that you have addressed all required feedback and are ready for a review.

@github-actions github-actions bot added the stale label Dec 5, 2021
@aalimk
Copy link
Author

aalimk commented Dec 9, 2021

Implementation TBD

@github-actions github-actions bot removed the stale label Dec 9, 2021
@MicahZoltu
Copy link
Contributor

@aalimk Do you plan on pursuing this as an EIP? Right now this is just an idea, and ideas should be discussed over at https://ethereum-magicians.org/ rather than here (this is a fairly recent process change).

@github-actions
Copy link

There has been no activity on this issue for two months. It will be closed in a week if no further activity occurs. If you would like to move this EIP forward, please respond to any outstanding feedback or add a comment indicating that you have addressed all required feedback and are ready for a review.

@github-actions github-actions bot added the stale label Jun 10, 2022
@MicahZoltu
Copy link
Contributor

Closing this issue for housekeeping purposes. People are welcome to continue discussing in this thread, but for additional visibility an EIP should be created or the conversation should be migrated to https://ethereum-magicians.org/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants