Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.56 KB

CONTRIBUTING.md

File metadata and controls

39 lines (26 loc) · 1.56 KB

Contributing

We welcome all contributions - send a pull request or open an issue. When possible, send different pull requests by section/topic.

Layout and Compilation

All files are in the src folder; they are compiled to the main README.md by running make

Audience

Write for an intermediate Ethereum developer, they know the basics of Solidity programming and have coded a number of contracts

Style Guidelines

General

  • Favor succinctness in writing
    • Use max 3-4 sentences in a section (exceptions can be made when critical)
    • Show, don’t tell (examples speak more than lengthy exposition)
    • Include a simple, illustrative example rather than complex examples that require substantial, extraneous reading
  • Add a source link to the original document when available
  • Create new sections when warranted
  • Keep code lines under 80 characters when possible
  • Mark code as insecure, bad, good where relevant
  • Use the format of the Airbnb Javascript Style guide as a starting point

Recommendations Section

  • Always favor a declarative tip starting with a verb for the section title
  • Include good and bad examples, when possible
  • Ensure each subsection has an anchor tag for future hyperlinking

Attacks Section

  • Provide an example - then point to a recommendation for the solution in the relevant section of the doc
  • List first/most visible attack, where possible
  • Ensure each subsection has an anchor tag for future hyperlinking
  • Mark vulnerable pieces of code as // INSECURE