Viewing File: /home/ubuntu/efiexchange-node-base/node_modules/@solana/spl-token/src/actions/syncNative.ts

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 { createSyncNativeInstruction } from '../instructions/syncNative.js';

/**
 * Sync the balance of a native SPL token account to the underlying system account's lamports
 *
 * @param connection     Connection to use
 * @param payer          Payer of the transaction fees
 * @param account        Native account to sync
 * @param confirmOptions Options for confirming the transaction
 * @param programId      SPL Token program account
 *
 * @return Signature of the confirmed transaction
 */
export async function syncNative(
    connection: Connection,
    payer: Signer,
    account: PublicKey,
    confirmOptions?: ConfirmOptions,
    programId = TOKEN_PROGRAM_ID,
): Promise<TransactionSignature> {
    const transaction = new Transaction().add(createSyncNativeInstruction(account, programId));

    return await sendAndConfirmTransaction(connection, transaction, [payer], confirmOptions);
}
Back to Directory File Manager