The independent gate before a merge, deploy, or payout
The independent gate before a merge, deploy, or payout. Deterministic JavaScript (Node) or Python 3 run against a contract or claim; returns HELD, BROKE with the failing input, FINDINGS, or DROP. BROKE requires a contract. Ephemeral sandbox, nothing stored. 0.10 USDC; allow up to 120s.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.1listed price per call
n/aprice it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://kenoodl.com/api/verify
| Category | Code and developer |
|---|---|
| Provider host | kenoodl.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"code": "def add(a, b): return a - b",
"contract": {
"examples": [
{
"call": "add(2,3)",
"expected": "5"
}
],
"fn": "add"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"assumption": {
"description": "A claim about the code in plain words, for a FINDINGS read (never BROKE).",
"maxLength": 4000,
"type": "string"
},
"code": {
"description": "The function source under test.",
"maxLength": 64000,
"type": "string"
},
"contract": {
"description": "Provide a {fn, examples:[{call, expected}]} contract for a BROKE-capable verdict. BROKE fires only from a contract you provide.",
"type": "object"
}
},
"required": [
"code"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"closer": {
"type": "string"
},
"contract": {
"type": "object"
},
"detail": {
"type": "string"
},
"proof": {
"type": "string"
},
"proofRuns": {
"type": "string"
},
"verdict": {
"enum": [
"HELD",
"BROKE",
"FINDINGS",
"DROP"
],
"type": "string"
}
},
"required": [
"verdict"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}