Realistic output shape
Illustrative output from the canonical adapter fixture and schema. It is not a completed paid execution or a current live observation.
{
"service_id": "evm_access_list_analyze",
"evidence_scope": "caller_supplied_data",
"access_list_analysis": "{\"duplicate_storage_keys\":0,\"entry_count\":1,\"intrinsic_access_list_gas\":\"6200\",\"storage_key_count\":2,\"unique_addresses\":1,\"unique_storage_keys\":2}",
"warnings": [
"Analysis does not simulate state access or execution."
]
}
View complete output schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"service_id",
"evidence_scope",
"access_list_analysis",
"warnings"
],
"properties": {
"service_id": {
"type": "string",
"const": "evm_access_list_analyze",
"minLength": 23,
"maxLength": 23
},
"evidence_scope": {
"type": "string",
"const": "caller_supplied_data",
"minLength": 20,
"maxLength": 20
},
"access_list_analysis": {
"type": "string",
"minLength": 1,
"maxLength": 65536
},
"warnings": {
"type": "array",
"minItems": 1,
"maxItems": 8,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}
}