Skip to content

Commit

Permalink
Add more optional fields. Update state to Active
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewWestberg committed Nov 8, 2022
1 parent db20ea8 commit 6b8fad7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
16 changes: 14 additions & 2 deletions CIP-0060/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CIP: 60
Title: Music Token Metadata
Authors: Andrew Westberg <awestberg@projectnewm.io>, Ryan Jones <rjones@projectnewm.io>, Justin Morgan <jusemorgan@gmail.com>, Ian Singer <tcl@fre5hmusic.com>, Anthony Eizmendiz <aeizmendiz@icloud.com>, Session Cruz <session@demu.pro>, Jimmy Londo <SickCityCleveland@gmail.com>, Gudbrand Tokerud <Gudbrand.tokerud@gmail.com>, Kevin St.Clair <kos1777@gmail.com>
Comments-URI: no comments yet
Status: Proposed
Status: Active
Type: Process
Created: 2022-07-26
License: CC-BY-4.0
Expand All @@ -29,7 +29,7 @@ This CIP divides the additional metadata parameters into two categories of `Requ
| artists | Array\<Artist\> | "artists": [<br/> { "name": "Stevie Nicks" },<br/>{ "name": "Tom Petty" }<br/>] | |
| album_title| String | "album_title": "Mr. Bad Guy" | |
| track_number | Integer | "track_number": 1 | |
| song_title | String \| Array<\String\> | "song_title": "Let's Turn it On" | |
| song_title | String \| Array\<String\> | "song_title": "Let's Turn it On" | |
| song_duration | String | "song_duration": "PT3M21S" | ISO8601 Duration Format |
| genres | Array\<String\> | "genres": ["Rock","Classic Rock"] | Limited to 3 genres total. Players should ignore extra genres. |
| copyright | String | "copyright": "℗ 1985 Sony Records" | |
Expand Down Expand Up @@ -63,6 +63,10 @@ This CIP divides the additional metadata parameters into two categories of `Requ
| parental_advisory | String | "parental_advisory": "Explicit" | Explicit/Censored/Non-Explicit
| explicit | Boolean | "explicit": true | |
| isrc | String | "isrc": "US-SKG-22-12345" | |
| iswc | String | "iswc": "T-123456789-Z" | |
| ipi | Array\<String\> | "ipi": ["595014347","342287075","550983139"] | |
| ipn | Array\<String\> | "ipn": ["38474593","2734040"] | |
| isni | Array\<String\> | "isni": ["000000038578365X","0000000037234532X"] | |
| metadata_language | String | "metadata_language": "en-US" | https://tools.ietf.org/search/bcp47 |
| country_of_origin | String | "country_of_origin": "United States" | |
| language | String | "language": "en-US" | https://tools.ietf.org/search/bcp47 |
Expand Down Expand Up @@ -330,6 +334,14 @@ Implementing this simplifies and commonizes the process for creating music token

This CIP is the result of several online meetings between many different companies building music-related projects on top of Cardano. These meetings were organized as many in the community started to see fragmentation in the way music NFTs were being minted on Cardano. These meetings gave the opportunity for a bit of a reset and will allow a much brighter future for music on Cardano. As long as all projects agree on some of these basic fields, there is great flexibility in this CIP to do application-specific unique things on top of the music NFT itself. The CIP is intentionally open-ended and can be updated in future versions if there are additional fields that the wider group could benefit from.

## Path to Active

This proposal is now considered in an Active state and has been implemented by a number of parties.

- [x] SickCityNFT - sickcity.xyz
- [x] NEWM - newm.io
- [x] SoundRig - soundrig.io

# Copyright

This CIP is licensed under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode)
8 changes: 8 additions & 0 deletions CIP-0060/cddl/version-1.cddl
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ files_details =
? parental_advisory: string,
? explicit: bool,
? isrc: string,
? iswc: string,
? ipi: [* string],
? ipn: [* string],
? isni: [* string],
? metadata_language: string,
? country_of_origin: string,
? language: string,
Expand Down Expand Up @@ -97,6 +101,10 @@ metadata_details =
? parental_advisory: string,
? explicit: bool,
? isrc: string,
? iswc: string,
? ipi: [* string],
? ipn: [* string],
? isni: [* string],
? metadata_language: string,
? country_of_origin: string,
? language: string,
Expand Down

0 comments on commit 6b8fad7

Please sign in to comment.