Function createScheduledTransactionStartFromAccountInstruction

  • Creates a transaction instruction to start a scheduled transaction from an account.

    This function constructs a Solana transaction instruction that initiates a scheduled transaction using a tree structure. It requires the holder account, tree account, operator, and balance account to be provided. Additional accounts can be included as needed.

    Parameters

    • neonEvmProgram: PublicKey

      The public key of the Neon EVM program.

    • operator: PublicKey

      The public key of the operator executing the transaction - instance of the SolanaNeonAccount.

    • balanceAddress: PublicKey

      The public key of the balance account involved in the transaction.

    • holderAddress: PublicKey

      The public key of the holder account storing transaction data.

    • treeAddress: PublicKey

      The public key of the tree account managing the transaction.

    • index: number

      The nonce of the scheduled transaction.

    • OptionaladditionAccounts: PublicKey[] = []

      An optional list of additional accounts required for execution.

    Returns TransactionInstruction

    A Solana TransactionInstruction to start the scheduled transaction.

    const instruction = createScheduledTransactionStartFromAccountInstruction(
    neonEvmProgram,
    operator,
    balanceAddress,
    holderAddress,
    treeAddress,
    1, // Transaction nonce
    [additionalAccount1, additionalAccount2] // Optional additional accounts
    );
    transaction.add(instruction);