Security check of smart contracts
security check of smart contracts
Checks smart contracts for vulnerabilities and fraud indicators.
Example:
from sonc import SmartContractAuditor
auditor = SmartContractAuditor()
report = auditor.audit("<smart_contract_address>")
print(report)Output:
{
"score": 85,
"risks": ["Reentrancy", "Unchecked external call"],
"audit_status": "Medium Risk"
}Last updated