/MUSIC-METADATA-IPFS

the music metadata you love, with IPFS hosting on nft.storage :rainbow:

Primary LanguageJavaScriptMIT LicenseMIT

Music NFT IPFS Metadata

Standard for musicians pioneered by Catalog & Mint Songs.

Compatible with contracts created by:

- WARNING: this code is unaudited

Get Started

To add music NFT metadata to your next music NFT drop, just

install with NPM

npm i music-metadata-ipfs

or install with Yarn

yarn add music-metadata-ipfs

Configure your API key

  • set your .env.local file with NEXT_PUBLIC_NFT_STORAGE_API_KEY=YOUR_API_KEY
  • get a free API key from nft.storage

Usage

  1. import { MusicMetadataProvider } from 'music-metadata-ipfs'
  2. wrap your Music Metadata Form in a <MusicMetadataProvider>.
  3. import { useMusicMetadata } from 'music-metadata-ipfs'
  4. const { metadata, setMetadata, createIpfsMetadata } = useMusicMetadata()
  5. modify music metadata: onChange={(e) => setMetadata({ ...metadata, image: e })}
  6. upload your metadata to IPFS: const ipfs = await createIpfsMetadata()
  7. take your music metadata to any ERC721 token contract (Catalog, Manifold, Zora, Sound, etc.)

Example Music NFT:

import MusicMetadataForm from '...'
import { MusicMetadataProvider } from 'music-metadata-ipfs'

const MusicNFTMinter = () => {
  return (
    <MusicMetadataProvider>
      <MusicMetadataForm />
    </MusicMetadataProvider>
  )
}

export default MusicNFTMinter
  • 73 Music NFT attributes stored on chain in your music nft metadata. Screen Shot 2022-07-30 at 8 59 39 PM

You Newest Tool for Music NFTs (decentralized on IPFS)

Screen Shot 2022-07-30 at 9 00 55 PM

How to deploy

  • yarn build && npm publish

Credits:

More info

Checkout our Github for the latest changes.