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_transaction_inspect",
"evidence_scope": "caller_supplied_data",
"transaction_inspection": "{\"from\":\"0x0000000000000000000000000000000000000001\",\"gas_limit\":\"21000\",\"hash\":\"0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"input_bytes\":0,\"nonce\":\"1\",\"supplied_fields\":[\"from\",\"gas\",\"hash\",\"input\",\"nonce\",\"to\",\"value\"],\"to\":\"0x0000000000000000000000000000000000000002\",\"type\":null,\"value_atomic\":\"10\"}",
"warnings": [
"Supplied transaction fields are not independently verified on-chain."
]
}
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",
"transaction_inspection",
"warnings"
],
"properties": {
"service_id": {
"type": "string",
"const": "evm_transaction_inspect",
"minLength": 23,
"maxLength": 23
},
"evidence_scope": {
"type": "string",
"const": "caller_supplied_data",
"minLength": 20,
"maxLength": 20
},
"transaction_inspection": {
"type": "string",
"minLength": 1,
"maxLength": 65536
},
"warnings": {
"type": "array",
"minItems": 1,
"maxItems": 8,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}
}