Metaplex/Core
Core Asset Launchpad
A comprehensive Core Asset creation component with advanced plugin system
Core Asset Launchpad
Core Asset Launchpad
Loading...
Installation
Install dependencies
Start by installing required Metaplex Core dependencies
pnpm add @solana/web3.js @solana/wallet-adapter-react @metaplex-foundation/umi @metaplex-foundation/umi-bundle-defaults @metaplex-foundation/mpl-core @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 Core Asset Launchpad
pnpm dlx shadcn@canary add https://www.murphyai.dev/r/core-asset-launchpad.json
Basic Usage
import { CoreAssetLaunchpad } from "@/components/ui/murphy/core-asset-launchpad";
export default function MyPage() {
return (
<div>
<h1 className="text-xl font-bold mb-2">Create Core Asset</h1>
<CoreAssetLaunchpad className="max-w-2xl" />
</div>
);
}