Metaplex/Token Metadata
Token Metadata Launchpad Form
A comprehensive token creation component with Metaplex Token Metadata standard
Token Metadata Launchpad Form
Token Metadata Launchpad
Installation
Install dependencies
Start by installing required Metaplex Token Metadata dependencies
pnpm add @solana/web3.js @solana/wallet-adapter-react @metaplex-foundation/umi @metaplex-foundation/umi-bundle-defaults @metaplex-foundation/mpl-token-metadata @metaplex-foundation/umi-signer-wallet-adapters react-hook-form @hookform/resolvers zod
Add Wallet Provider
Make sure you have added the Wallet Provider to your application. If not, follow the steps in the Connect Wallet Button guide first.
Add Token Metadata Launchpad Form
pnpm dlx shadcn@canary add https://www.murphyai.dev/r/tm-launchpad-form.json
Basic Usage
import { TMLaunchpadForm } from "@/components/ui/murphy/tm-launchpad-form";
export default function MyPage() {
return (
<div>
<h1 className="text-xl font-bold mb-2">Create Token with Metadata</h1>
<TMLaunchpadForm className="max-w-2xl" />
</div>
);
}