123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- import * as anchor from "@coral-xyz/anchor";
- import { TransferTokens } from "../target/types/transfer_tokens";
- import { Keypair } from "@solana/web3.js";
- import { getAssociatedTokenAddressSync } from "@solana/spl-token";
- describe("Transfer Tokens", () => {
- const provider = anchor.AnchorProvider.env();
- anchor.setProvider(provider);
- const payer = provider.wallet as anchor.Wallet;
- const program = anchor.workspace
- .TransferTokens as anchor.Program<TransferTokens>;
- 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}`);
- });
- });
|