Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 7fdda2d

Browse files
danmtmvines
authored andcommitted
chore(token): expose transfer checked instruction
1 parent 5f4b735 commit 7fdda2d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

token/js/module.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,16 @@ declare module '@solana/spl-token' {
247247
authority: PublicKey,
248248
multiSigners: Array<Signer>,
249249
): TransactionInstruction;
250+
static createTransferCheckedInstruction(
251+
programId: PublicKey,
252+
source: PublicKey,
253+
mint: PublicKey,
254+
destination: PublicKey,
255+
owner: PublicKey,
256+
multiSigners: Array<Signer>,
257+
amount: number | u64,
258+
decimals: number,
259+
): TransactionInstruction;
250260
static createAssociatedTokenAccountInstruction(
251261
associatedProgramId: PublicKey,
252262
programId: PublicKey,

0 commit comments

Comments
 (0)