Skip to content

Commit a390d2a

Browse files
authored
Merge pull request #17 from OpenZeppelin/further-refine-docs-integrate-deepwiki
Improve documentation and add community standards files
2 parents 4c25b95 + e941909 commit a390d2a

17 files changed

+3400
-23
lines changed

CODE_OF_CONDUCT.md

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
We as members, contributors, and leaders pledge to make participation in our
6+
community a harassment-free experience for everyone, regardless of age, body
7+
size, visible or invisible disability, ethnicity, sex characteristics, gender
8+
identity and expression, level of experience, education, socio-economic status,
9+
nationality, personal appearance, race, religion, or sexual identity
10+
and orientation.
11+
12+
We pledge to act and interact in ways that contribute to an open, welcoming,
13+
diverse, inclusive, and healthy community.
14+
15+
## Our Standards
16+
17+
Examples of behavior that contributes to a positive environment for our
18+
community include:
19+
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
24+
and learning from the experience
25+
- Focusing on what is best not just for us as individuals, but for the
26+
overall community
27+
28+
Examples of unacceptable behavior include:
29+
30+
- The use of sexualized language or imagery, and sexual attention or
31+
advances of any kind
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email
35+
address, without their explicit permission
36+
- Other conduct which could reasonably be considered inappropriate in a
37+
professional setting
38+
39+
## Enforcement Responsibilities
40+
41+
Community leaders are responsible for clarifying and enforcing our standards of
42+
acceptable behavior and will take appropriate and fair corrective action in
43+
response to any behavior that they deem inappropriate, threatening, offensive,
44+
or harmful.
45+
46+
Community leaders have the right and responsibility to remove, edit, or reject
47+
comments, commits, code, wiki edits, issues, and other contributions that are
48+
not aligned to this Code of Conduct, and will communicate reasons for moderation
49+
decisions when appropriate.
50+
51+
## Scope
52+
53+
This Code of Conduct applies within all community spaces, and also applies when
54+
an individual is officially representing the community in public spaces.
55+
Examples of representing our community include using an official e-mail address,
56+
posting via an official social media account, or acting as an appointed
57+
representative at an online or offline event.
58+
59+
## Enforcement
60+
61+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62+
reported to the community leaders responsible for enforcement on [Telegram](https://t.me/openzeppelin_tg/2).
63+
All complaints will be reviewed and investigated promptly and fairly.
64+
65+
All community leaders are obligated to respect the privacy and security of the
66+
reporter of any incident.
67+
68+
## Enforcement Guidelines
69+
70+
Community leaders will follow these Community Impact Guidelines in determining
71+
the consequences for any action they deem in violation of this Code of Conduct:
72+
73+
### 1. Correction
74+
75+
**Community Impact**: Use of inappropriate language or other behavior deemed
76+
unprofessional or unwelcome in the community.
77+
78+
**Consequence**: A private, written warning from community leaders, providing
79+
clarity around the nature of the violation and an explanation of why the
80+
behavior was inappropriate. A public apology may be requested.
81+
82+
### 2. Warning
83+
84+
**Community Impact**: A violation through a single incident or series
85+
of actions.
86+
87+
**Consequence**: A warning with consequences for continued behavior. No
88+
interaction with the people involved, including unsolicited interaction with
89+
those enforcing the Code of Conduct, for a specified period of time. This
90+
includes avoiding interactions in community spaces as well as external channels
91+
like social media. Violating these terms may lead to a temporary or
92+
permanent ban.
93+
94+
### 3. Temporary Ban
95+
96+
**Community Impact**: A serious violation of community standards, including
97+
sustained inappropriate behavior.
98+
99+
**Consequence**: A temporary ban from any sort of interaction or public
100+
communication with the community for a specified period of time. No public or
101+
private interaction with the people involved, including unsolicited interaction
102+
with those enforcing the Code of Conduct, is allowed during this period.
103+
Violating these terms may lead to a permanent ban.
104+
105+
### 4. Permanent Ban
106+
107+
**Community Impact**: Demonstrating a pattern of violation of community
108+
standards, including sustained inappropriate behavior, harassment of an
109+
individual, or aggression toward or disparagement of classes of individuals.
110+
111+
**Consequence**: A permanent ban from any sort of public interaction within
112+
the community.
113+
114+
## Attribution
115+
116+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
117+
version 2.0, available at
118+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
119+
120+
Community Impact Guidelines were inspired by [Mozilla's code of conduct
121+
enforcement ladder](https://github.com/mozilla/diversity).
122+
123+
[homepage]: https://www.contributor-covenant.org
124+
125+
For answers to common questions about this code of conduct, see the FAQ at
126+
https://www.contributor-covenant.org/faq. Translations are available at
127+
https://www.contributor-covenant.org/translations.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## 🚀 Features
88

99
- **Extensible SDK**: Build custom detectors with AST traversal, symbol resolution, and helper macros.
10-
- **Out-of-the-box Detectors**: Prebuilt checks for common pitfalls like authorization issues, unchecked transfers, and more.
10+
- **Out-of-the-box Detectors**: Prebuilt checks for common pitfalls like improper TTL extension, contract panics, and unsafe temporary storage usage.
1111
- **CLI Scanner**: `soroban-scanner` command-line tool for running detectors against your codebase.
1212
- **CI/CD Ready**: Easily integrate into GitHub Actions, GitLab CI, or other pipelines.
1313
- **OpenZeppelin Inspector Compatible**: Fully ready to be used as a custom scanner with OpenZeppelin Inspector.
@@ -64,7 +64,7 @@ soroban-scanner scan path/to/your/contracts --load path/to/libmy_detector.so
6464

6565
## 📝 Writing Custom Detectors
6666

67-
Leverage the [SDK Documentation](docs/overview.md) to author your own detectors:
67+
Leverage the [SDK Getting Started Documentation](docs/getting_started.md) to author your own detectors:
6868

6969
- AST helpers for traversing Rust code.
7070
- Symbol table utilities for resolving types and references.
@@ -74,7 +74,6 @@ Leverage the [SDK Documentation](docs/overview.md) to author your own detectors:
7474

7575
Find detailed docs for developing and contributing:
7676

77-
- [Project Overview](docs/overview.md)
7877
- [Getting Started](docs/getting_started.md)
7978
- [Contributing](docs/contributing.md)
8079

SECURITY.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Security Policy
2+
3+
Security vulnerabilities should be [disclosed](#reporting-a-vulnerability) by email to security@openzeppelin.com.
4+
5+
To make your support policy require less maintenance, you can simplify the table and description by automatically tying support to the most recent major version. Here’s a revised version:
6+
7+
---
8+
9+
## Supported Versions
10+
11+
Only the latest **major** version is supported and receives security updates. Alpha, Beta, and Release Candidate versions are not supported.
12+
13+
Security patches are released for the latest minor and patch version of the current major release.
14+
15+
Only critical severity bug fixes may be backported to earlier major versions.
16+
17+
| Version | Supported |
18+
| ------------ | --------- |
19+
| Latest major ||
20+
| Older majors ||
21+
22+
23+
## Reporting a Vulnerability
24+
25+
We're extremely grateful for security researchers and users that report vulnerabilities to us.
26+
All reports are thoroughly investigated by the project's security team.
27+
28+
Vulnerabilities are reported privately via GitHub's [Security Advisories](https://docs.github.com/en/code-security/security-advisories) feature.
29+
Please use the following link to submit your vulnerability: [Report a vulnerability](https://github.com/openzeppelin/soroban-security-detectors-sdk/security/advisories/new)
30+
31+
Please see
32+
[Privately reporting a security vulnerability](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability#privately-reporting-a-security-vulnerability)
33+
for more information on how to submit a vulnerability using GitHub's interface.
34+
35+
## Legal
36+
37+
OpenZeppelin Soroban Security Detectors SDK is made available under the GNU AGPL 3.0 License, which disclaims all warranties in relation to the project and which limits the liability of those that contribute and maintain the project, including OpenZeppelin. Your use of the project is also governed by the terms found at www.openzeppelin.com/tos (the "Terms"). As set out in the Terms, you are solely responsible for any use of OpenZeppelin Soroban Security Detectors SDK and you assume all risks associated with any such use. This Security Policy in no way evidences or represents an on-going duty by any contributor, including OpenZeppelin, to correct any flaws or alert you to all or any of the potential risks of utilizing the project.

0 commit comments

Comments
 (0)