01Contract

Solidity Code Verification

Is this Solidity safe to deploy, or safe to call? Static analysis of the source for known vulnerability patterns, with a clear overall risk level and the issues found. Check it before it goes on-chain or before your agent interacts with it.

https://centry.cybercentry.co.uk/api/services/solidity_code_verification
ERC-8126AI Agent Verificationnames this service as SCVFinalco-authored by Cybercentry
ERC-8196AI Agent Authenticated Walletnames this service as SCVFinalco-authored by Cybercentry
02Buy

$1.00 per call.

Finds known vulnerability patterns before the contract goes on-chain

Clear overall risk level (Informational → Critical)

Returns a job ID + detailed findings

Returns
job_idstring
Job ID
overall_riskstring
Overall Risk Level
Call it directly
curl -i -X POST "https://centry.cybercentry.co.uk/api/services/solidity_code_verification" \
  -H "Content-Type: application/json" \
  -d '{"solidity_code":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\ncontract Vault { mapping(address => uint) public bal; function withdraw() external { (bool ok,) = msg.sender.call{value: bal[msg.sender]}(\"\"); require(ok); bal[msg.sender] = 0; } }"}'

POST JSON is canonical · GET query params also work · unpaid requests return 402 · see the payment flow