EVM Archive Node Queries
Last updated
Was this helpful?
Last updated
Was this helpful?
enhances Hedera Mirror Nodes with extended EVM execution capabilities, allowing developers to perform gas-free smart contract queries, estimate gas usage, and simulate EVM transactions without committing state changes. These enhancements empower developers to:
Perform Gas-Free Smart Contract Queries: Retrieve data from smart contracts without incurring gas costs.
Estimate Gas Usage: Determine the gas required for executing specific contract functions.
Simulate EVM Transactions: Test transactions that involve state changes without committing those changes to the blockchain.
The API endpoint and parameters used for all operations described in this guide is:
estimate
(boolean): Determines the operation type.
true
: Performs gas estimation.
false
: Executes a query or simulation.
block
(string): Specifies the block for the operation (e.g., "latest" or a specific block number).
data
(string): Encoded function call data in hexadecimal format following the ABI specifications.
from
(string, optional): Address initiating the call. Required for simulations involving state changes.
to
(string): Target smart contract address (SaucerSwap's DeFi contract for this guide).
value
(number, optional): Amount of tinybars to send with the transaction. Relevant for simulations involving value transfers.
Before proceeding, ensure you have:
Basic knowledge of EVM smart contracts:
Essential tools installed and configured:
cURL for making HTTP requests.
Ethers.js (v6 or later or equivalent libraries) for interacting with the EVM-compatible networks.
Function data encoding:
Familiarity with encoding function data into the required EVM-compatible hexadecimal format.
Estimating gas usage helps determine the cost required to execute a smart contract function without actually performing the transaction.
Here's how to estimate gas usage using the /api/v1/contracts/call
endpoint:
The API returns an estimated gas value in hexadecimal format:
To interpret the hexadecimal gas estimate, follow these steps:
Extract the result
: the field from the API response containing the gas estimate in hexadecimal format.
Convert Hexadecimal to BigInt:
Use JavaScript's BigInt
to convert the hexadecimal string to a numerical value.
Output:
Understanding the Logic
Hexadecimal Representation: Smart contracts and blockchain APIs often use hexadecimal strings to represent numerical values, ensuring precise and compact data transmission.
Conversion to BigInt: JavaScript's BigInt
is used to handle large integers that exceed the safe integer limit of the standard Number
type, ensuring accuracy in calculations.
Interpretation: The numerical value (32525
in this case) represents the estimated gas required to execute the specified smart contract function.
Contract queries allow developers to retrieve data from smart contracts without altering the blockchain state. This is particularly useful for reading data such as token balances, contract states, and more.
Retrieve the token balance using a contract’s view function:
The API returns the result of the contract’s view function in hexadecimal format:
To interpret the hexadecimal result (e.g., token balance), follow these steps:
Extract the result
:
The result
field contains the data returned by the smart contract function.
Convert Hexadecimal to BigInt:
Output:
Understanding the Logic
Hexadecimal Representation: The smart contract's balanceOf
function returns the token balance in hexadecimal format.
Conversion to BigInt: Using BigInt
ensures accurate representation of potentially large token balances.
Interpretation: The numerical value (32
in this case) represents the token balance of the specified address
Simulate EVM transactions (non-view functions) that involve state changes to test contract interactions without committing them. This can be useful for testing token transfers, approvals, and other state-altering functions without changing the blockchain state.
This example simulates a token transfer by testing contract interactions without altering the state.
The empty result indicates that the simulation ran successfully without errors:
If you haven't already, install Ethers.js using npm:
Below is a detailed explanation of how to extract and interpret the result
from the API response.
Example Scenario
You have made an API request to retrieve a token balance, and received the following response:
You want to convert this hexadecimal result to a human-readable token balance.
JavaScript Code Example
Output:
Understanding the Logic
Extracting the result
:
Purpose: Assign the result
from the API response to the variable hexString
.
Content: The hexString
contains the ABI-encoded data returned by the smart contract function.
Converting Hexadecimal to BigInt:
Purpose: Convert the hexadecimal string to a BigInt
for numerical operations.
Explanation:
BigInt
: A JavaScript data type that can represent integers with arbitrary precision, suitable for handling large numbers often used in blockchain applications.
Conversion: The BigInt
constructor automatically parses the hexadecimal string (prefixed with 0x
) and converts it to its numerical equivalent.
Displaying the Token Balance:
Purpose: Output the numerical value of the token balance to the console.
Explanation:
.toString()
: Converts the BigInt
to a string for readable output.
Practical Example with Ethers.js for Complex Decoding
For more complex return types (e.g., multiple values, arrays), Ethers.js can be used to decode the result
based on the contract's ABI.
Output:
Explanation
Define the ABI:
The ABI specifies the getAmountsIn
function which returns an array of uint256
values.
Create an Interface:
ethers.Interface
uses the ABI to understand how to decode the data.
Decode the Result:
decodeFunctionResult
interprets the result
based on the function's return type.
Access the Decoded Data:
The decoded result is accessed as decodedResult[0]
and converted to a string for readability.
For detailed specifications, refer to the .
Understanding of and function encoding.
To decode the data returned by the Mirror Node, you need the of the smart contract you are interacting with. The ABI defines the structure of inputs and outputs for the contract's functions.