Platform Documentation

BlockSecOps
Documentation

Everything you need to integrate and use BlockSecOps for enterprise-grade Web3 security.

Platform Documentation

Multi-Language
Support

Solidity

Ethereum and EVM-compatible chains

Integrated Tools

SolidityDefendSlitherAderynSemgrepSolhintHalmosEchidnaWakeMedusa

Rust (Solana)

Solana smart contract security

Integrated Tools

Sol-azySec3 X-RayTrident Fuzzercargo-fuzz

Cairo

Starknet smart contracts

Integrated Tools

CaracalStarknet FoundryTayt

API
Examples

Integrate BlockSecOps into your existing workflow

Scan a Contract

bash
curl -X POST https://api.blocksecops.com/v1/scan \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "contract": "MyToken.sol",
    "language": "solidity",
    "tools": ["slither", "mythril"]
  }'

Get Scan Results

javascript
const response = await fetch(
  'https://api.blocksecops.com/v1/scan/abc123',
  {
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY'
    }
  }
)
const results = await response.json()
Knowledge Base

Browse by
Category

Comprehensive guides and tutorials for every aspect of the platform.

Getting Started

12 articles

Learn the basics of BlockSecOps platform

  • Introduction to BlockSecOps
  • System Requirements
  • Installation Guide
  • First Security Scan
  • Understanding Results

Security Tools

25 articles

Deep dive into integrated security scanners

  • SolidityDefend Integration
  • Slither Integration
  • Aderyn Setup
  • Semgrep Rules
  • Custom Tool Integration

CI/CD Integration

18 articles

Automate security in your pipeline

  • GitHub Actions Setup
  • GitLab CI/CD
  • Jenkins Plugin
  • Pre-commit Hooks
  • Automated Reports

Workflows

15 articles

Optimize your security workflow

  • Team Collaboration
  • Review Process
  • Findings Management
  • False Positive Handling
  • Best Practices

API Reference

30 articles

Complete API documentation

  • Authentication
  • REST API Endpoints
  • WebSocket Events
  • SDK Reference
  • Rate Limits

Configuration

20 articles

Customize BlockSecOps for your needs

  • Project Settings
  • Tool Configuration
  • Notification Setup
  • Custom Rules
  • Environment Variables