v1
latestOpenAPI 3.0.02026-07-26268286602.5 KBtransactions
List FHE operations for a specific transaction
Retrieves Fully Homomorphic Encryption (FHE) operations parsed from transaction logs. Includes operation details, HCU (Homomorphic Compute Unit) costs, operation types, and related metadata.
get/{chain_id}/api/v2/transactions/{transaction_hash_param}/fhe-operations
Path parameters
transaction_hash_paramstring required
Transaction hash in the path
chain_idstring required
The ID of the blockchain
Response
FHE operations for the specified transaction with transaction-level metrics.
Example response
{
"items": [
{
"block_number": 12345678,
"fhe_type": "Uint8",
"hcu_cost": 100,
"hcu_depth": 1,
"operation": "FheAdd",
"type": "arithmetic"
}
],
"max_depth_hcu": 3,
"operation_count": 5,
"total_hcu": 500
}