Creates an instance of NeonClientApi.
The base API URL for the Neon EVM service.
Emulates the execution of a given Ethereum-like transaction on Neon EVM.
This function is used to simulate the execution of a transaction without broadcasting it.
The transaction data to emulate.
Optional
maxStepsToExecute: number = 500000The maximum number of execution steps.
Optional
provideAccountInfo: any = nullOptional account information to include.
A promise resolving to the emulation result.
Retrieves the balance of a given Neon EVM account.
The Neon wallet address.
The Chain ID of the Neon network.
A promise resolving to the account balance.
Fetches holder account information based on the given Solana public key.
The Solana public key of the holder account.
A promise resolving to the holder account details.
Retrieves the transaction tree associated with a specific transaction origin.
The origin transaction data.
The nonce value of the transaction.
A promise resolving to the transaction tree details.
Waits for the execution of a scheduled transaction tree.
This function polls the transaction tree and accumulates its execution results over time.
The origin transaction data.
The nonce value of the transaction.
The maximum waiting time in milliseconds.
A promise resolving to an array of executed transaction statuses.
Deprecated
use NeonProxyRpcApi A client API for interacting with Neon EVM infrastructure.
This class provides a set of methods to emulate transactions, query balances, fetch storage values, retrieve holder accounts, and execute transaction trees on Neon EVM.
Example