Is your feature request related to a problem? Please describe.
The code uses traits like QuerierWrapper, CustomQuery, and From, which may confuse junior devs.
Describe the solution you'd like
Add inline doc comments above:
- Each trait implementation
- Structs used in query bindings
Explain why they're used and how they connect to the chain.
Describe alternatives you've considered
Having developers Google the traits—but this breaks flow and learning.
Additional context
Use /// style comments to show up in Rust docs too.
Is your feature request related to a problem? Please describe.
The code uses traits like
QuerierWrapper,CustomQuery, andFrom, which may confuse junior devs.Describe the solution you'd like
Add inline doc comments above:
Explain why they're used and how they connect to the chain.
Describe alternatives you've considered
Having developers Google the traits—but this breaks flow and learning.
Additional context
Use
///style comments to show up in Rust docs too.