Viewing File: /home/ubuntu/efiexchange-node-base/node_modules/@solana/spl-token/src/instructions/transfer.ts
import { struct, u8 } from '@solana/buffer-layout';
import { u64 } from '@solana/buffer-layout-utils';
import type { AccountMeta, PublicKey, Signer } from '@solana/web3.js';
import { TransactionInstruction } from '@solana/web3.js';
import { TOKEN_PROGRAM_ID } from '../constants.js';
import {
TokenInvalidInstructionDataError,
TokenInvalidInstructionKeysError,
TokenInvalidInstructionProgramError,
TokenInvalidInstructionTypeError,
} from '../errors.js';
import { addSigners } from './internal.js';
import { TokenInstruction } from './types.js';
/** TODO: docs */
export interface TransferInstructionData {
instruction: TokenInstruction.Transfer;
amount: bigint;
}
/** TODO: docs */
export const transferInstructionData = struct<TransferInstructionData>([u8('instruction'), u64('amount')]);
/**
* Construct a Transfer instruction
*
* @param source Source account
* @param destination Destination account
* @param owner Owner of the source account
* @param amount Number of tokens to transfer
* @param multiSigners Signing accounts if `owner` is a multisig
* @param programId SPL Token program account
*
* @return Instruction to add to a transaction
*/
export function createTransferInstruction(
source: PublicKey,
destination: PublicKey,
owner: PublicKey,
amount: number | bigint,
multiSigners: (Signer | PublicKey)[] = [],
programId = TOKEN_PROGRAM_ID,
): TransactionInstruction {
const keys = addSigners(
[
{ pubkey: source, isSigner: false, isWritable: true },
{ pubkey: destination, isSigner: false, isWritable: true },
],
owner,
multiSigners,
);
const data = Buffer.alloc(transferInstructionData.span);
transferInstructionData.encode(
{
instruction: TokenInstruction.Transfer,
amount: BigInt(amount),
},
data,
);
return new TransactionInstruction({ keys, programId, data });
}
/** A decoded, valid Transfer instruction */
export interface DecodedTransferInstruction {
programId: PublicKey;
keys: {
source: AccountMeta;
destination: AccountMeta;
owner: AccountMeta;
multiSigners: AccountMeta[];
};
data: {
instruction: TokenInstruction.Transfer;
amount: bigint;
};
}
/**
* Decode a Transfer instruction and validate it
*
* @param instruction Transaction instruction to decode
* @param programId SPL Token program account
*
* @return Decoded, valid instruction
*/
export function decodeTransferInstruction(
instruction: TransactionInstruction,
programId = TOKEN_PROGRAM_ID,
): DecodedTransferInstruction {
if (!instruction.programId.equals(programId)) throw new TokenInvalidInstructionProgramError();
if (instruction.data.length !== transferInstructionData.span) throw new TokenInvalidInstructionDataError();
const {
keys: { source, destination, owner, multiSigners },
data,
} = decodeTransferInstructionUnchecked(instruction);
if (data.instruction !== TokenInstruction.Transfer) throw new TokenInvalidInstructionTypeError();
if (!source || !destination || !owner) throw new TokenInvalidInstructionKeysError();
// TODO: key checks?
return {
programId,
keys: {
source,
destination,
owner,
multiSigners,
},
data,
};
}
/** A decoded, non-validated Transfer instruction */
export interface DecodedTransferInstructionUnchecked {
programId: PublicKey;
keys: {
source: AccountMeta | undefined;
destination: AccountMeta | undefined;
owner: AccountMeta | undefined;
multiSigners: AccountMeta[];
};
data: {
instruction: number;
amount: bigint;
};
}
/**
* Decode a Transfer instruction without validating it
*
* @param instruction Transaction instruction to decode
*
* @return Decoded, non-validated instruction
*/
export function decodeTransferInstructionUnchecked({
programId,
keys: [source, destination, owner, ...multiSigners],
data,
}: TransactionInstruction): DecodedTransferInstructionUnchecked {
return {
programId,
keys: {
source,
destination,
owner,
multiSigners,
},
data: transferInstructionData.decode(data),
};
}
Back to Directory
File Manager