Derives a synchronous Treasury Pool address for the given Neon EVM program and pool index.
This function computes a program-derived address (PDA) for a specific treasury pool
using a predefined seed ("treasury_pool") and the provided pool index.
The resulting address is used to manage Neon EVM's treasury pools within Solana.
Parameters
neonEvmProgram: PublicKey
The public key of the Neon EVM program.
treasuryPoolIndex: number
The index of the treasury pool.
Returns [PublicKey,number]
A tuple containing:
PublicKey: The derived treasury pool address.
number: The bump seed used in PDA derivation.
Example
const [poolAddress, bump] = treasuryPoolAddressSync(neonEvmProgram, 3); console.log("Treasury Pool Address:", poolAddress.toBase58());
Derives a synchronous Treasury Pool address for the given Neon EVM program and pool index.
This function computes a program-derived address (PDA) for a specific treasury pool using a predefined seed (
"treasury_pool"
) and the provided pool index. The resulting address is used to manage Neon EVM's treasury pools within Solana.