Function solanaToNeonAddress

  • Converts a Solana public key into a Neon EVM-compatible address.

    This function generates an Ethereum-style Neon wallet address from a given Solana PublicKey. It applies the keccak256 hash function to the Solana public key bytes and extracts the last 20 bytes (12 to 32) to create a valid Neon EVM address.

    Parameters

    • publicKey: PublicKey

      The Solana public key to be converted.

    Returns NeonAddress

    A 20-byte Ethereum-style Neon wallet address.

    const solanaPubKey = new PublicKey("8ab7...a1b3");
    const neonAddress = solanaToNeonAddress(solanaPubKey);
    console.log("Neon Address:", neonAddress); // 0x...