Smart contract security audit for developers and auditors
Smart contract security audit for developers and auditors: finds vulnerabilities, gas optimizations, and best-practice violations in Solidity, Rust, Move, or TypeScript code, with a diff review mode for proposed changes. Category: inference.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.05listed 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://agentforge-taupe.vercel.app/v1/code-review
| Category | Code and developer |
|---|---|
| Provider host | agentforge-taupe.vercel.app |
| 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": "pragma solidity ^0.8.0;\ncontract Example {\n function withdraw() public {\n payable(msg.sender).transfer(address(this).balance);\n }\n}",
"focus": "security",
"language": "solidity"
},
"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": {
"code": {
"description": "Source code to review",
"maxLength": 50000,
"minLength": 1,
"type": "string"
},
"focus": {
"default": "all",
"enum": [
"security",
"gas_optimization",
"best_practices",
"all"
],
"type": "string"
},
"language": {
"default": "solidity",
"enum": [
"solidity",
"rust",
"move",
"typescript"
],
"type": "string"
},
"previousCode": {
"description": "Previous version of code for diff review mode",
"maxLength": 50000,
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
},
"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": {
"gasOptimization": {
"description": "Gas optimization report (when focus includes gas)",
"type": "object"
},
"issues": {
"items": {
"properties": {
"category": {
"type": "string"
},
"description": {
"type": "string"
},
"line": {
"type": "number"
},
"severity": {
"enum": [
"info",
"low",
"medium",
"high",
"critical"
],
"type": "string"
},
"suggestion": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"metadata": {
"properties": {
"linesAnalyzed": {
"type": "number"
},
"model": {
"type": "string"
},
"processingTimeMs": {
"type": "number"
}
},
"type": "object"
},
"overallRisk": {
"enum": [
"low",
"medium",
"high",
"critical"
],
"type": "string"
},
"summary": {
"type": "string"
}
},
"required": [
"overallRisk",
"issues",
"summary",
"metadata"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}