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:
The Ethereum-style Neon wallet address in hexadecimal format.
The public key of the Neon EVM program.
A tuple containing:
PublicKey
number
const [walletPDA, bump] = neonWalletProgramAddress( "0x1234567890abcdef1234567890abcdef12345678", neonEvmProgram);console.log("Neon Wallet PDA:", walletPDA.toBase58()); Copy
const [walletPDA, bump] = neonWalletProgramAddress( "0x1234567890abcdef1234567890abcdef12345678", neonEvmProgram);console.log("Neon Wallet PDA:", walletPDA.toBase58());
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: