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
The current module structure could benefit from better organization. At ~800 lines, it's not overly large, but the naming conventions make it difficult to distinguish between similar components (QueryBuilder, RpcBuilder, RpcHandler, RpcRequest, RpcRequestHandler, MultiRpcBuilder, etc.).
Proposed Solution
Consider splitting the module into smaller sub-modules organized by:
Core traits that items implement
Logical categories (potentially with nested layers)
Example Structure
near_api::common::query::<module_name> # Core implementations
near_api::common::query::<module_name>::aliases # Aliases like QueryBuilder
This would make it easier to differentiate between related components like RpcBuilder and MultiRpcBuilder and their respective aliases.
Module Organization and Naming Clarity
Description
The current module structure could benefit from better organization. At ~800 lines, it's not overly large, but the naming conventions make it difficult to distinguish between similar components (QueryBuilder, RpcBuilder, RpcHandler, RpcRequest, RpcRequestHandler, MultiRpcBuilder, etc.).
Proposed Solution
Consider splitting the module into smaller sub-modules organized by:
Example Structure
This would make it easier to differentiate between related components like
RpcBuilder
andMultiRpcBuilder
and their respective aliases.Additional Context
Originally discussed in PR #45: #45 (comment)
The text was updated successfully, but these errors were encountered: