123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- import { Buffer } from 'node:buffer';
- import { PROGRAM_ID as TOKEN_METADATA_PROGRAM_ID } from '@metaplex-foundation/mpl-token-metadata';
- import { TOKEN_PROGRAM_ID } from '@solana/spl-token';
- import {
- Connection,
- Keypair,
- PublicKey,
- SYSVAR_RENT_PUBKEY,
- SystemProgram,
- Transaction,
- TransactionInstruction,
- sendAndConfirmTransaction,
- } from '@solana/web3.js';
- import * as borsh from 'borsh';
- function createKeypairFromFile(path: string): Keypair {
- return Keypair.fromSecretKey(Buffer.from(JSON.parse(require('node:fs').readFileSync(path, 'utf-8'))));
- }
- class Assignable {
- constructor(properties) {
- for (const [key, value] of Object.entries(properties)) {
- this[key] = value;
- }
- }
- }
- class CreateTokenArgs extends Assignable {
- toBuffer() {
- return Buffer.from(borsh.serialize(CreateTokenArgsSchema, this));
- }
- }
- const CreateTokenArgsSchema = new Map([
- [
- CreateTokenArgs,
- {
- kind: 'struct',
- fields: [
- ['token_title', 'string'],
- ['token_symbol', 'string'],
- ['token_uri', 'string'],
- ['token_decimals', 'u8'],
- ],
- },
- ],
- ]);
- describe('Create Tokens!', async () => {
- // const connection = new Connection(`http://localhost:8899`, 'confirmed');
- const connection = new Connection('https://api.devnet.solana.com/', 'confirmed');
- const payer = createKeypairFromFile(`${require('node:os').homedir()}/.config/solana/id.json`);
- const program = createKeypairFromFile('./program/target/deploy/program-keypair.json');
- it('Create an SPL Token!', async () => {
- const mintKeypair: Keypair = Keypair.generate();
- const metadataAddress = PublicKey.findProgramAddressSync(
- [Buffer.from('metadata'), TOKEN_METADATA_PROGRAM_ID.toBuffer(), mintKeypair.publicKey.toBuffer()],
- TOKEN_METADATA_PROGRAM_ID,
- )[0];
- // SPL Token default = 9 decimals
- //
- const instructionData = new CreateTokenArgs({
- token_title: 'Solana Gold',
- token_symbol: 'GOLDSOL',
- token_uri: 'https://raw.githubusercontent.com/solana-developers/program-examples/new-examples/tokens/tokens/.assets/spl-token.json',
- token_decimals: 9,
- });
- const ix = new TransactionInstruction({
- keys: [
- { pubkey: mintKeypair.publicKey, isSigner: true, isWritable: true }, // Mint account
- { pubkey: payer.publicKey, isSigner: false, isWritable: true }, // Mint authority account
- { pubkey: metadataAddress, isSigner: false, isWritable: true }, // Metadata account
- { pubkey: payer.publicKey, isSigner: true, isWritable: true }, // Payer
- { pubkey: SYSVAR_RENT_PUBKEY, isSigner: false, isWritable: false }, // Rent account
- { pubkey: SystemProgram.programId, isSigner: false, isWritable: false }, // System program
- { pubkey: TOKEN_PROGRAM_ID, isSigner: false, isWritable: false }, // Token program
- {
- pubkey: TOKEN_METADATA_PROGRAM_ID,
- isSigner: false,
- isWritable: false,
- }, // Token metadata program
- ],
- programId: program.publicKey,
- data: instructionData.toBuffer(),
- });
- const sx = await sendAndConfirmTransaction(connection, new Transaction().add(ix), [payer, mintKeypair]);
- console.log('Success!');
- console.log(` Mint Address: ${mintKeypair.publicKey}`);
- console.log(` Tx Signature: ${sx}`);
- });
- it('Create an NFT!', async () => {
- const mintKeypair: Keypair = Keypair.generate();
- const metadataAddress = PublicKey.findProgramAddressSync(
- [Buffer.from('metadata'), TOKEN_METADATA_PROGRAM_ID.toBuffer(), mintKeypair.publicKey.toBuffer()],
- TOKEN_METADATA_PROGRAM_ID,
- )[0];
- // NFT default = 0 decimals
- //
- const instructionData = new CreateTokenArgs({
- token_title: 'Homer NFT',
- token_symbol: 'HOMR',
- token_uri: 'https://raw.githubusercontent.com/solana-developers/program-examples/new-examples/tokens/tokens/.assets/nft.json',
- token_decimals: 9,
- });
- const ix = new TransactionInstruction({
- keys: [
- { pubkey: mintKeypair.publicKey, isSigner: true, isWritable: true }, // Mint account
- { pubkey: payer.publicKey, isSigner: false, isWritable: true }, // Mint authority account
- { pubkey: metadataAddress, isSigner: false, isWritable: true }, // Metadata account
- { pubkey: payer.publicKey, isSigner: true, isWritable: true }, // Payer
- { pubkey: SYSVAR_RENT_PUBKEY, isSigner: false, isWritable: false }, // Rent account
- { pubkey: SystemProgram.programId, isSigner: false, isWritable: false }, // System program
- { pubkey: TOKEN_PROGRAM_ID, isSigner: false, isWritable: false }, // Token program
- {
- pubkey: TOKEN_METADATA_PROGRAM_ID,
- isSigner: false,
- isWritable: false,
- }, // Token metadata program
- ],
- programId: program.publicKey,
- data: instructionData.toBuffer(),
- });
- const sx = await sendAndConfirmTransaction(connection, new Transaction().add(ix), [payer, mintKeypair]);
- console.log('Success!');
- console.log(` Mint Address: ${mintKeypair.publicKey}`);
- console.log(` Tx Signature: ${sx}`);
- });
- });
|