Hedera · Schema

ContractCallResponse

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise

Properties

Name Type Description
result string Result in hexadecimal from executed contract call.
View JSON Schema on GitHub

JSON Schema

ContractCallResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/ContractCallResponse.json",
  "title": "ContractCallResponse",
  "type": "object",
  "properties": {
    "result": {
      "description": "Result in hexadecimal from executed contract call.",
      "example": "0x0000000000006d8d",
      "format": "binary",
      "pattern": "^0x[0-9a-fA-F]+$",
      "type": "string"
    }
  }
}