Blockchain Security DB is an open-source database created by ConsenSys Diligence for all things blockchain security. The database contains a catalog of blockchain projects with details pertaining to their security including audits, bounties, and security contacts. Click on the name of the project in the project column to see more details about a project. To add or update a project, see this guide.
pip install mkdocs
mkdocs serve
- Visit
localhost:8000
-
In the
/projects
directory, create a JSON file named after your project.- Note: Check to see if your project already exists before creating a new one.
-
Using the following template, fill in project data.
{
"project": "Project Name",
"project_url": "Project URL",
"description": "Description of your project",
"bounty": "Bounty program URL",
"bounty_max": "Max bounty payout",
"security_contact": "Security contact email",
"audits": [
{
"repos": [
{
"url": "URL of the repo pertaining to audit"
}
],
"title": "Audit title",
"date": "mm/yy",
"auditor": "Name of auditor",
"url": "Audit URL",
"effort": "Person-weeks effort of audit"
}
]
}
- Run
npm run generate-markdown