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

mint nft url #184

Merged
merged 1 commit into from
Aug 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions indexer-js-queue-handler/indexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,21 @@ function mint(nftType, token_id, receiver_id) {
metadata = {
title: "CREATOR",
description: "You have contributed to the Open Web!",
media: "https://ipfs.io/ipfs/bafybeie3t57lvq3swqrsk3ads6mjrz63bug6xofdffbbrngpmtrhdjyoaq"
media: "https://ipfs.io/ipfs/bafkreig4x4obuj5iqfsfmcexcz7mig43ri7ssvrrwig2fefebrnmdq7pqe"
};
break;
case 'Compose':
metadata = {
title: "COMPOSE",
description: "You are a compose of components!",
media: "YOUR_MEDIA_LINK_FOR_COMPOSE" // Replace with the actual media link for this type
media: "https://ipfs.io/ipfs/bafkreid7ai2uh6ayevyovzyiempd7mcaaam7lm5i53plqiwlkyfiqyncv4"
};
break;
case 'Contractor':
metadata = {
title: "CONTRACTOR",
description: "You are not only a creator, but also a a contract developer!",
media: "YOUR_MEDIA_LINK_FOR_CONTRACTOR" // Replace with the actual media link for this type
media: "https://ipfs.io/ipfs/bafkreiaqie5rsjehu4aesempkjg6gmzmjdaczahk6k24or6cmneevq4t2m" // Replace with the actual media link for this type
};
break;
default:
Expand Down