v1

latestOpenAPI 3.0.02026-07-26268286602.5 KB
transactions

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.

max_depth_hcuinteger required

Maximum HCU depth across all operations in the transaction

operation_countinteger required

Total number of FHE operations in the transaction

total_hcuinteger required

Total HCU (Homomorphic Compute Units) cost for all operations in the transaction

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
}