Function neonWalletProgramAddress

  • Derives a synchronous Neon wallet program address for a given Neon wallet.

    This function computes a program-derived address (PDA) for a Neon wallet within the Neon EVM. The PDA is generated based on:

    • Seed version: Ensures compatibility with account derivation logic.
    • Neon wallet address: The Ethereum-style wallet address used within Neon EVM.

    Parameters

    • neonWallet: string

      The Ethereum-style Neon wallet address in hexadecimal format.

    • neonEvmProgram: PublicKey

      The public key of the Neon EVM program.

    Returns [PublicKey, number]

    A tuple containing:

    • PublicKey: The derived Neon wallet program address.
    • number: The bump seed used in PDA derivation.
    const [walletPDA, bump] = neonWalletProgramAddress(
    "0x1234567890abcdef1234567890abcdef12345678",
    neonEvmProgram
    );
    console.log("Neon Wallet PDA:", walletPDA.toBase58());