You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
please copy to a markdown to follow while you walk through the code
2 people should be assigned to each section
API audit
spec audit: check if the spec is complete.
Are Msg and Query methods and types well-named and organized?
Is everything well documented (inline godoc as well as /spec/ folder in module directory)
check the proto definition - make sure everything is in accordance to ADR-30 (at least 1 person, TODO assignee)
Check new fields and endpoints have the Since: cosmos-sdk 0.47 comment
Completeness audit, fully implemented with tests
Genesis import and export of all state
Query services
CLI methods
All necessary migration scripts are present (if this is an upgrade of existing module)
State machine audit
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 (at least 90% coverage on module code)
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. Specifically we should be paying attention to:
algorithmic complexity and places this could be exploited (ex. nested for loops)
charging gas complex computation (ex. for loops)
storage is safe (we don't pollute the state).
Assess potential risks of any new third party dependencies and decide whether a dependency audit is needed
Check correctness of simulation implementation if any
Audit Changelog against commit log, ensuring all breaking changes, bug fixes, and improvements are properly documented.
If any changes are needed, please make them against main and backport them to release/v0.50.x
The text was updated successfully, but these errors were encountered:
Summary
This issue is meant to outline all the necessary checks and QA items for the next Cosmos SDK release -- Eden (v.50).
Major Changes
Precommit
andPrepareCheckState
AppModule callbacksQA Breakdown
Audit checklist
/spec/
folder in module directory)Since: cosmos-sdk 0.47
commentfor
loops)for
loops)If any changes are needed, please make them against main and backport them to release/v0.50.x
The text was updated successfully, but these errors were encountered: