Function createBalanceAccountTransaction

  • Creates a Solana transaction to initialize a balance account for a given Neon EVM wallet.

    This function generates a transaction that contains an instruction to create a balance account, ensuring that the specified Neon address has a corresponding balance tracking account on Solana.

    Parameters

    • neonEvmProgram: PublicKey

      The public key of the Neon EVM program.

    • solanaWallet: PublicKey

      The public key of the Solana wallet initiating the transaction.

    • neonAddress: string

      The Neon EVM wallet address associated with this balance account.

    • chainId: number

      The chain ID representing the network where the transaction is executed.

    Returns Transaction

    A Solana Transaction object, ready to be signed and sent.

    const transaction = createBalanceAccountTransaction(
    neonEvmProgram,
    solanaWallet,
    "0xNeonWalletAddress",
    245022926
    );
    transaction.recentBlockhash = (await connection.getLatestBlockhash()).blockhash;
    const signature = await connection.sendTransaction(transaction, [signer]);