Function finishScheduledTransactionInstruction

  • Creates a transaction instruction to finalize a scheduled transaction.

    It specifies the holder address, tree account, signer, and balance account required to complete the transaction.

    Parameters

    • data: FinishScheduledTransactionData

      The necessary data for finalizing the scheduled transaction.

      • balanceAddress: PublicKey
      • holderAddress: PublicKey
      • neonEvmProgram: PublicKey
      • signerAddress: PublicKey
      • treeAccountAddress: PublicKey

    Returns TransactionInstruction

    A Solana TransactionInstruction to finalize the scheduled transaction.

    const instruction = finishScheduledTransactionInstruction({
    neonEvmProgram,
    holderAddress,
    treeAccountAddress,
    signerAddress,
    balanceAddress
    });
    transaction.add(instruction);