123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- import { describe, it } from 'node:test';
- import * as anchor from '@coral-xyz/anchor';
- import type { Program } from '@coral-xyz/anchor';
- import type NodeWallet from '@coral-xyz/anchor/dist/cjs/nodewallet';
- import { ASSOCIATED_PROGRAM_ID } from '@coral-xyz/anchor/dist/cjs/utils/token';
- import { ASSOCIATED_TOKEN_PROGRAM_ID, TOKEN_PROGRAM_ID, getAssociatedTokenAddressSync } from '@solana/spl-token';
- import { Keypair, PublicKey, SystemProgram } from '@solana/web3.js';
- import { BankrunProvider } from 'anchor-bankrun';
- import { startAnchor } from 'solana-bankrun';
- import type { MintNft } from '../target/types/mint_nft';
- const IDL = require('../target/idl/mint_nft.json');
- const PROGRAM_ID = new PublicKey(IDL.address);
- const METADATA_PROGRAM_ID = new PublicKey('metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s');
- describe('mint-nft bankrun', async () => {
- const context = await startAnchor(
- '',
- [
- { name: 'mint_nft', programId: PROGRAM_ID },
- { name: 'token_metadata', programId: METADATA_PROGRAM_ID },
- ],
- [],
- );
- const provider = new BankrunProvider(context);
- anchor.setProvider(provider);
- const wallet = provider.wallet as anchor.Wallet;
- const program = new anchor.Program<MintNft>(IDL, provider);
- const TOKEN_METADATA_PROGRAM_ID = new anchor.web3.PublicKey('metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s');
- const mintAuthority = anchor.web3.PublicKey.findProgramAddressSync([Buffer.from('authority')], program.programId)[0];
- const collectionKeypair = Keypair.generate();
- const collectionMint = collectionKeypair.publicKey;
- const mintKeypair = Keypair.generate();
- const mint = mintKeypair.publicKey;
- const getMetadata = async (mint: anchor.web3.PublicKey): Promise<anchor.web3.PublicKey> => {
- return anchor.web3.PublicKey.findProgramAddressSync(
- [Buffer.from('metadata'), TOKEN_METADATA_PROGRAM_ID.toBuffer(), mint.toBuffer()],
- TOKEN_METADATA_PROGRAM_ID,
- )[0];
- };
- const getMasterEdition = async (mint: anchor.web3.PublicKey): Promise<anchor.web3.PublicKey> => {
- return anchor.web3.PublicKey.findProgramAddressSync(
- [Buffer.from('metadata'), TOKEN_METADATA_PROGRAM_ID.toBuffer(), mint.toBuffer(), Buffer.from('edition')],
- TOKEN_METADATA_PROGRAM_ID,
- )[0];
- };
- it('Create Collection NFT', async () => {
- console.log('\nCollection Mint Key: ', collectionMint.toBase58());
- const metadata = await getMetadata(collectionMint);
- console.log('Collection Metadata Account: ', metadata.toBase58());
- const masterEdition = await getMasterEdition(collectionMint);
- console.log('Master Edition Account: ', masterEdition.toBase58());
- const destination = getAssociatedTokenAddressSync(collectionMint, wallet.publicKey);
- console.log('Destination ATA = ', destination.toBase58());
- const tx = await program.methods
- .createCollection()
- .accountsPartial({
- user: wallet.publicKey,
- mint: collectionMint,
- mintAuthority,
- metadata,
- masterEdition,
- destination,
- systemProgram: SystemProgram.programId,
- tokenProgram: TOKEN_PROGRAM_ID,
- associatedTokenProgram: ASSOCIATED_TOKEN_PROGRAM_ID,
- tokenMetadataProgram: TOKEN_METADATA_PROGRAM_ID,
- })
- .signers([collectionKeypair])
- .rpc({
- skipPreflight: true,
- });
- console.log('\nCollection NFT minted: TxID - ', tx);
- });
- it('Mint NFT', async () => {
- console.log('\nMint', mint.toBase58());
- const metadata = await getMetadata(mint);
- console.log('Metadata', metadata.toBase58());
- const masterEdition = await getMasterEdition(mint);
- console.log('Master Edition', masterEdition.toBase58());
- const destination = getAssociatedTokenAddressSync(mint, wallet.publicKey);
- console.log('Destination', destination.toBase58());
- const tx = await program.methods
- .mintNft()
- .accountsPartial({
- owner: wallet.publicKey,
- destination,
- metadata,
- masterEdition,
- mint,
- mintAuthority,
- collectionMint,
- systemProgram: SystemProgram.programId,
- tokenProgram: TOKEN_PROGRAM_ID,
- associatedTokenProgram: ASSOCIATED_PROGRAM_ID,
- tokenMetadataProgram: TOKEN_METADATA_PROGRAM_ID,
- })
- .signers([mintKeypair])
- .rpc({
- skipPreflight: true,
- });
- console.log('\nNFT Minted! Your transaction signature', tx);
- });
- it('Verify Collection', async () => {
- const mintMetadata = await getMetadata(mint);
- console.log('\nMint Metadata', mintMetadata.toBase58());
- const collectionMetadata = await getMetadata(collectionMint);
- console.log('Collection Metadata', collectionMetadata.toBase58());
- const collectionMasterEdition = await getMasterEdition(collectionMint);
- console.log('Collection Master Edition', collectionMasterEdition.toBase58());
- const tx = await program.methods
- .verifyCollection()
- .accountsPartial({
- authority: wallet.publicKey,
- metadata: mintMetadata,
- mint,
- mintAuthority,
- collectionMint,
- collectionMetadata,
- collectionMasterEdition,
- systemProgram: SystemProgram.programId,
- sysvarInstruction: anchor.web3.SYSVAR_INSTRUCTIONS_PUBKEY,
- tokenMetadataProgram: TOKEN_METADATA_PROGRAM_ID,
- })
- .rpc({
- skipPreflight: true,
- });
- console.log('\nCollection Verified! Your transaction signature', tx);
- });
- });
|