123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import { Buffer } from 'node:buffer';
- import { type PublicKey, SystemProgram, TransactionInstruction } from '@solana/web3.js';
- import * as borsh from 'borsh';
- import { MyInstruction } from '.';
- export class Create {
- instruction: MyInstruction;
- name: string;
- constructor(props: { instruction: MyInstruction; name: string }) {
- this.instruction = props.instruction;
- this.name = props.name;
- }
- toBuffer() {
- return Buffer.from(borsh.serialize(CreateSchema, this));
- }
- static fromBuffer(buffer: Buffer) {
- return borsh.deserialize(CreateSchema, Create, buffer);
- }
- }
- export const CreateSchema = new Map([
- [
- Create,
- {
- kind: 'struct',
- fields: [
- ['instruction', 'u8'],
- ['name', 'string'],
- ],
- },
- ],
- ]);
- export function createCreateUserInstruction(target: PublicKey, payer: PublicKey, programId: PublicKey, name: string): TransactionInstruction {
- const instructionObject = new Create({
- instruction: MyInstruction.CreateUser,
- name,
- });
- const ix = new TransactionInstruction({
- keys: [
- { pubkey: target, isSigner: false, isWritable: true },
- { pubkey: payer, isSigner: true, isWritable: true },
- { pubkey: SystemProgram.programId, isSigner: false, isWritable: false },
- ],
- programId: programId,
- data: instructionObject.toBuffer(),
- });
- return ix;
- }
|