Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://consensys.github.io/blockchainSecurityDB
https://consensys.github.io/blockchainSecurityDB
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://consensys.github.io/blockchainSecurityDB
- Owner: Consensys
- Created: 2020-06-12T18:25:20.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-10T12:52:11.000Z (almost 2 years ago)
- Last Synced: 2024-05-23T03:33:13.098Z (9 months ago)
- Language: JavaScript
- Homepage: https://consensys.github.io/blockchainSecurityDB/
- Size: 2.15 MB
- Stars: 89
- Watchers: 14
- Forks: 40
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-blockchain-security - Blockchain Security Database
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`