import { describe, it } from 'node:test'; import * as anchor from '@coral-xyz/anchor'; import { getAssociatedTokenAddressSync } from '@solana/spl-token'; import { Keypair } from '@solana/web3.js'; import { PublicKey } from '@solana/web3.js'; import { BankrunProvider } from 'anchor-bankrun'; import { startAnchor } from 'solana-bankrun'; import type { TransferTokens } from '../target/types/transfer_tokens'; const IDL = require('../target/idl/transfer_tokens.json'); const PROGRAM_ID = new PublicKey(IDL.address); const METADATA_PROGRAM_ID = new PublicKey('metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s'); describe('Transfer Tokens Bankrun', async () => { const context = await startAnchor( '', [ { name: 'transfer_tokens', programId: PROGRAM_ID }, { name: 'token_metadata', programId: METADATA_PROGRAM_ID }, ], [], ); const provider = new BankrunProvider(context); anchor.setProvider(provider); const payer = provider.wallet as anchor.Wallet; const program = new anchor.Program(IDL, provider); const metadata = { name: 'Solana Gold', symbol: 'GOLDSOL', uri: 'https://raw.githubusercontent.com/solana-developers/program-examples/new-examples/tokens/tokens/.assets/spl-token.json', }; // Generate new keypair to use as address for mint account. const mintKeypair = new Keypair(); // Generate new keypair to use as address for recipient wallet. const recipient = new Keypair(); // Derive the associated token address account for the mint and payer. const senderTokenAddress = getAssociatedTokenAddressSync(mintKeypair.publicKey, payer.publicKey); // Derive the associated token address account for the mint and recipient. const recepientTokenAddress = getAssociatedTokenAddressSync(mintKeypair.publicKey, recipient.publicKey); it('Create an SPL Token!', async () => { const transactionSignature = await program.methods .createToken(metadata.name, metadata.symbol, metadata.uri) .accounts({ payer: payer.publicKey, mintAccount: mintKeypair.publicKey, }) .signers([mintKeypair]) .rpc(); console.log('Success!'); console.log(` Mint Address: ${mintKeypair.publicKey}`); console.log(` Transaction Signature: ${transactionSignature}`); }); it('Mint tokens!', async () => { // Amount of tokens to mint. const amount = new anchor.BN(100); // Mint the tokens to the associated token account. const transactionSignature = await program.methods .mintToken(amount) .accounts({ mintAuthority: payer.publicKey, recipient: payer.publicKey, mintAccount: mintKeypair.publicKey, associatedTokenAccount: senderTokenAddress, }) .rpc(); console.log('Success!'); console.log(` Associated Token Account Address: ${senderTokenAddress}`); console.log(` Transaction Signature: ${transactionSignature}`); }); it('Transfer tokens!', async () => { // Amount of tokens to transfer. const amount = new anchor.BN(50); const transactionSignature = await program.methods .transferTokens(amount) .accounts({ sender: payer.publicKey, recipient: recipient.publicKey, mintAccount: mintKeypair.publicKey, senderTokenAccount: senderTokenAddress, recipientTokenAccount: recepientTokenAddress, }) .rpc(); console.log('Success!'); console.log(` Transaction Signature: ${transactionSignature}`); }); });