Function balanceAccountNonce

  • Retrieves the nonce value from a Neon wallet balance account.

    This function fetches the Neon wallet balance account from the Solana blockchain and extracts its nonce value. The nonce is used in transaction processing to ensure uniqueness.

    Parameters

    • connection: Connection

      The Solana connection object used for querying account data.

    • neonWallet: string

      The Ethereum-style Neon wallet address in hexadecimal format.

    • neonEvmProgram: PublicKey

      The public key of the Neon EVM program.

    • chainId: number

      The chain ID associated with the Neon network.

    Returns Promise<bigint>

    A promise resolving to the nonce value, or 0n if the balance account does not exist.

    const nonce = await balanceAccountNonce(connection, "0x1234567890abcdef1234567890abcdef12345678", neonEvmProgram, 245022926);
    console.log("Balance Account Nonce:", nonce);