Skip to content

Commit

Permalink
Add new metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadai2010 committed Sep 26, 2024
1 parent 62a3aca commit fb069ac
Showing 1 changed file with 39 additions and 97 deletions.
136 changes: 39 additions & 97 deletions packages/nextjs/utils/simpleNFT/nftsMetadata.ts
Original file line number Diff line number Diff line change
@@ -1,124 +1,66 @@
const nftsMetadata = [
{
description: "It's actually a bison?",
external_url: "https://austingriffith.com/portfolio/paintings/", // <-- this can link to a page for the specific file too
image: "https://austingriffith.com/images/paintings/buffalo.jpg",
name: "Buffalo",
description: "It's actually a bison?",
image: "https://ipfs.io/ipfs/QmR4GGDdK8dsHfspLbcz864SaSUDUAVbF7Wc99NLJqqn2P/buffalo.jpg",
attributes: [
{
trait_type: "BackgroundColor",
value: "green",
},
{
trait_type: "Eyes",
value: "googly",
},
{
trait_type: "Stamina",
value: 42,
},
],
{ trait_type: "BackgroundColor", "value": "green" },
{ trait_type: "Eyes", "value": "googly" },
{ trait_type: "Stamina", "value": "42" }
]
},
{
description: "What is it so worried about?",
external_url: "https://austingriffith.com/portfolio/paintings/", // <-- this can link to a page for the specific file too
image: "https://austingriffith.com/images/paintings/zebra.jpg",
name: "Zebra",
description: "What is it so worried about?",
image: "https://ipfs.io/ipfs/QmR4GGDdK8dsHfspLbcz864SaSUDUAVbF7Wc99NLJqqn2P/zebra.jpg",
attributes: [
{
trait_type: "BackgroundColor",
value: "blue",
},
{
trait_type: "Eyes",
value: "googly",
},
{
trait_type: "Stamina",
value: 38,
},
],
{ trait_type: "BackgroundColor", "value": "blue" },
{ trait_type: "Eyes", "value": "googly" },
{ trait_type: "Stamina", "value": "38" }
]
},
{
description: "What a horn!",
external_url: "https://austingriffith.com/portfolio/paintings/", // <-- this can link to a page for the specific file too
image: "https://austingriffith.com/images/paintings/rhino.jpg",
name: "Rhino",
description: "What a horn!",
image: "https://ipfs.io/ipfs/QmR4GGDdK8dsHfspLbcz864SaSUDUAVbF7Wc99NLJqqn2P/rhino.jpg",
attributes: [
{
trait_type: "BackgroundColor",
value: "pink",
},
{
trait_type: "Eyes",
value: "googly",
},
{
trait_type: "Stamina",
value: 22,
},
],
{ trait_type: "BackgroundColor", "value": "pink" },
{ trait_type: "Eyes", "value": "googly" },
{ trait_type: "Stamina", "value": "22" }
]
},
{
description: "Is that an underbyte?",
external_url: "https://austingriffith.com/portfolio/paintings/", // <-- this can link to a page for the specific file too
image: "https://austingriffith.com/images/paintings/fish.jpg",
name: "Fish",
description: "Is that an underbyte?",
image: "https://ipfs.io/ipfs/QmR4GGDdK8dsHfspLbcz864SaSUDUAVbF7Wc99NLJqqn2P/fish.jpg",
attributes: [
{
trait_type: "BackgroundColor",
value: "blue",
},
{
trait_type: "Eyes",
value: "googly",
},
{
trait_type: "Stamina",
value: 15,
},
],
{ trait_type: "BackgroundColor", "value": "blue" },
{ trait_type: "Eyes", "value": "googly" },
{ trait_type: "Stamina", "value": "15" }
]
},
{
description: "So delicate.",
external_url: "https://austingriffith.com/portfolio/paintings/", // <-- this can link to a page for the specific file too
image: "https://austingriffith.com/images/paintings/flamingo.jpg",
name: "Flamingo",
description: "So delicate.",
image: "https://ipfs.io/ipfs/QmR4GGDdK8dsHfspLbcz864SaSUDUAVbF7Wc99NLJqqn2P/flamingo.jpg",
attributes: [
{
trait_type: "BackgroundColor",
value: "black",
},
{
trait_type: "Eyes",
value: "googly",
},
{
trait_type: "Stamina",
value: 6,
},
],
{ trait_type: "BackgroundColor", "value": "black" },
{ trait_type: "Eyes", "value": "googly" },
{ trait_type: "Stamina", "value": "6" }
]
},
{
description: "Raaaar!",
external_url: "https://austingriffith.com/portfolio/paintings/", // <-- this can link to a page for the specific file too
image: "https://austingriffith.com/images/paintings/godzilla.jpg",
name: "Godzilla",
description: "Raaaar!",
image: "https://ipfs.io/ipfs/QmR4GGDdK8dsHfspLbcz864SaSUDUAVbF7Wc99NLJqqn2P/godzilla.jpg",
attributes: [
{
trait_type: "BackgroundColor",
value: "orange",
},
{
trait_type: "Eyes",
value: "googly",
},
{
trait_type: "Stamina",
value: 99,
},
],
},
{ trait_type: "BackgroundColor", "value": "orange" },
{ trait_type: "Eyes", "value": "googly" },
{ trait_type: "Stamina", "value": "99" }
]
}


];

export type NFTMetaData = (typeof nftsMetadata)[number];
Expand Down

0 comments on commit fb069ac

Please sign in to comment.