Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://consensys.github.io/blockchainSecurityDB


https://consensys.github.io/blockchainSecurityDB

Last synced: 12 days ago
JSON representation

Awesome Lists containing this project

README

        

# 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](https://github.com/ConsenSys/blockchainSecurityDB#add-or-update-a-project).

### 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 generate-markdown`