-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
327feeb
commit 563ae30
Showing
5 changed files
with
149 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us squash bugs! | ||
|
||
--- | ||
|
||
## Summary of Bug | ||
|
||
<!-- Concisely describe the issue --> | ||
|
||
## Version | ||
|
||
<!-- git commit hash or release version --> | ||
|
||
## Steps to Reproduce | ||
|
||
<!-- What commands in order should someone run to reproduce your problem? --> | ||
|
||
____ | ||
|
||
## For Admin Use | ||
|
||
- [ ] Not duplicate issue | ||
- [ ] Appropriate labels applied | ||
- [ ] Appropriate contributors tagged | ||
- [ ] Contributor assigned/self-assigned |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: Feature Request | ||
about: Create a proposal to request a feature | ||
|
||
--- | ||
|
||
## Summary | ||
|
||
<!-- Short, concise description of the proposed feature --> | ||
|
||
## Problem Definition | ||
|
||
<!-- Why do we need this feature? | ||
What problems may be addressed by introducing this feature? | ||
What benefits does Regen Ledger stand to gain by including this feature? | ||
Are there any disadvantages of including this feature? --> | ||
|
||
## Proposal | ||
|
||
<!-- Detailed description of requirements of implementation --> | ||
|
||
____ | ||
|
||
#### For Admin Use | ||
|
||
- [ ] Not duplicate issue | ||
- [ ] Appropriate labels applied | ||
- [ ] Appropriate contributors tagged | ||
- [ ] Contributor assigned/self-assigned |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
name: Module Readiness Checklist | ||
about: Pre-flight checklist that modules must pass before ready for being enabled in stable builds of regen ledger | ||
labels: 'module-readiness-checklist' | ||
--- | ||
|
||
- [ ] Good unit and integration test coverage for all state machine logic (@assignee) | ||
- [ ] Internal API audit (at least 1 person) (@assignee) | ||
- [ ] Are Msg and Query methods and types well-named and organized? | ||
- [ ] Is everything well documented (godoc as well as README.md in module directory) | ||
- [ ] Internal state machine audit (at least 2 people) (@assignee1, @assignee2) | ||
- [ ] Read through MsgServer code and verify correctness upon visual inspection | ||
- [ ] Ensure all state machine code which could be confusing is properly commented | ||
- [ ] Make sure state machine logic matches Msg method documentation | ||
- [ ] Ensure that all state machine edge cases are covered with tests and that test coverage is sufficient | ||
- [ ] Assess potential threats for each method including spam attacks and ensure that threats have been addressed sufficiently. This should be done by writing up threat assessment for each method | ||
- [ ] Assess potential risks of any new third party dependencies and decide whether a dependency audit is needed | ||
- [ ] Internal completeness audit, fully impleted with tests (at least 1 person) (@assignee) | ||
- [ ] Genesis import and export of all state | ||
- [ ] Query services | ||
- [ ] CLI methods | ||
- [ ] Testnet / devnet testing after above internal audits | ||
- [ ] All Msg methods have been tested especially in light of any potential threats identified | ||
- [ ] Genesis import and export has been tested | ||
- [ ] Nice to have (and needed in some cases if threats could be high): official 3rd party audit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
## Description | ||
|
||
Closes: #XXXX | ||
|
||
<!-- Add a description of the changes that this PR introduces and the files that | ||
are the most critical to review. --> | ||
|
||
--- | ||
|
||
### Author Checklist | ||
|
||
*All items are required. Please add a note to the item if the item is not applicable and | ||
please add links to any relevant follow up issues.* | ||
|
||
I have... | ||
|
||
- [ ] included the correct `docs:` prefix in the PR title | ||
- [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#pr-targeting)) | ||
- [ ] provided a link to the relevant issue or specification | ||
- [ ] followed the [documentation writing guidelines](https://github.com/cosmos/cosmos-sdk/blob/main/docs/DOC_WRITING_GUIDELINES.md) | ||
- [ ] reviewed "Files changed" and left comments if necessary | ||
- [ ] confirmed all CI checks have passed | ||
|
||
### Reviewers Checklist | ||
|
||
*All items are required. Please add a note if the item is not applicable and please add | ||
your handle next to the items reviewed if you only reviewed selected items.* | ||
|
||
I have... | ||
|
||
- [ ] confirmed the correct `docs:` prefix in the PR title | ||
- [ ] confirmed all author checklist items have been addressed | ||
- [ ] confirmed that this PR only changes documentation | ||
- [ ] reviewed content for consistency | ||
- [ ] reviewed content for thoroughness | ||
- [ ] reviewed content for spelling and grammar | ||
- [ ] tested instructions (if applicable) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
## Description | ||
|
||
Closes: #XXXX | ||
|
||
<!-- Add a description of the changes that this PR introduces and the files that | ||
are the most critical to review. --> | ||
|
||
--- | ||
|
||
### Author Checklist | ||
|
||
*All items are required. Please add a note to the item if the item is not applicable and | ||
please add links to any relevant follow up issues.* | ||
|
||
I have... | ||
|
||
- [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title | ||
- [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#pr-targeting)) | ||
- [ ] provided a link to the relevant issue or specification | ||
- [ ] reviewed "Files changed" and left comments if necessary | ||
- [ ] confirmed all CI checks have passed | ||
|
||
### Reviewers Checklist | ||
|
||
*All items are required. Please add a note if the item is not applicable and please add | ||
your handle next to the items reviewed if you only reviewed selected items.* | ||
|
||
I have... | ||
|
||
- [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title | ||
- [ ] confirmed all author checklist items have been addressed | ||
- [ ] confirmed that this PR does not change production code |