slowmist / blockchainSecurityDB

Home Page:https://consensys.github.io/blockchainSecurityDB/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Blockchain Security DB

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.

Setup

  • pip install mkdocs
  • mkdocs serve
  • Visit localhost:8000

Add or Update a Project

  • 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 build

About

https://consensys.github.io/blockchainSecurityDB/


Languages

Language:HTML 83.3%Language:JavaScript 14.8%Language:CSS 1.8%