import type { ConfirmOptions, Connection, PublicKey, Signer, TransactionSignature } from '@solana/web3.js';
import { sendAndConfirmTransaction, Transaction } from '@solana/web3.js';
import { TOKEN_PROGRAM_ID } from '../constants.js';
import { createMintToCheckedInstruction } from '../instructions/mintToChecked.js';
import { getSigners } from './internal.js';
/**
* Mint tokens to an account, asserting the token mint and decimals
*
* @param connection Connection to use
* @param payer Payer of the transaction fees
* @param mint Mint for the account
* @param destination Address of the account to mint to
* @param authority Minting authority
* @param amount Amount to mint
* @param decimals Number of decimals in amount to mint
* @param multiSigners Signing accounts if `authority` is a multisig
* @param confirmOptions Options for confirming the transaction
* @param programId SPL Token program account
*
* @return Signature of the confirmed transaction
*/
export async function mintToChecked(
connection: Connection,
payer: Signer,
mint: PublicKey,
destination: PublicKey,
authority: Signer | PublicKey,
amount: number | bigint,
decimals: number,
multiSigners: Signer[] = [],
confirmOptions?: ConfirmOptions,
programId = TOKEN_PROGRAM_ID,
): Promise<TransactionSignature> {
const [authorityPublicKey, signers] = getSigners(authority, multiSigners);
const transaction = new Transaction().add(
createMintToCheckedInstruction(
mint,
destination,
authorityPublicKey,
amount,
decimals,
multiSigners,
programId,
),
);
return await sendAndConfirmTransaction(connection, transaction, [payer, ...signers], confirmOptions);
}