Represents a Treasury Pool Address within the Neon EVM ecosystem.

This class is responsible for managing a specific treasury pool account. It provides utilities for deriving, retrieving, and representing treasury pool addresses.

Constructors

Properties

Accessors

Methods

Constructors

  • Creates an instance of TreasuryPoolAddress.

    Parameters

    • publicKey: PublicKey

      The derived public key representing the treasury pool.

    • index: number

      The index of the treasury pool.

    Returns TreasuryPoolAddress

    const treasuryPool = new TreasuryPoolAddress(somePublicKey, 5);
    

Properties

index: number

The index of the treasury pool.

publicKey: PublicKey

The derived public key representing the treasury pool address.

Accessors

  • get buffer(): Buffer
  • Retrieves the buffer representation of the treasury pool index.

    This buffer is typically used as a seed for PDA derivation.

    Returns Buffer

    A buffer representation of the treasury pool index.

    const treasuryPool = new TreasuryPoolAddress(somePublicKey, 3);
    console.log("Index Buffer:", treasuryPool.buffer);

Methods

  • Finds and returns a random Treasury Pool Address from the available pool count.

    This method selects a random pool index and derives the associated public key using treasuryPoolAddressSync().

    Parameters

    • neonEvmProgram: PublicKey

      The public key of the Neon EVM program.

    • count: number

      The total number of treasury pools available.

    Returns TreasuryPoolAddress

    A TreasuryPoolAddress instance representing the derived treasury pool.

    const treasuryPool = TreasuryPoolAddress.find(neonEvmProgram, 10);
    console.log("Treasury Pool Address:", treasuryPool.publicKey.toBase58());
    console.log("Treasury Pool Index:", treasuryPool.index);