Recommended Folder Structure
Synopsis
This document outlines the recommended structure of Cosmos SDK modules. These ideas are meant to be applied as suggestions. Application developers are encouraged to improve upon and contribute to module structure and development design.
Structure
A typical Cosmos SDK module can be structured as follows:
proto
└── {project_name}
└── {module_name}
└── {proto_version}
├── {module_name}.proto
├── event.proto
├── genesis.proto
├── query.proto
└── tx.proto
{module_name}.proto
: The module's common message type definitions.event.proto
: The module's message type definitions related to events.genesis.proto
: The module's message type definitions related to genesis state.query.proto
: The module's Query service and related message type definitions.tx.proto
: The module's Msg service and related message type definitions.
x/{module_name}
├── client
│ ├── cli
│ │ ├── query.go
│ │ └── tx.go
│ └── testutil
│ ├── cli_test.go
│ └── suite.go
├── exported
│ └── exported.go
├── keeper
│ ├── genesis.go
│ ├── grpc_query.go
│ ├── hooks.go
│ ├── invariants.go
│ ├── keeper.go
│ ├── keys.go
│ ├── msg_server.go
│ └── querier.go
├── module
│ └── module.go
│ └── abci.go
│ └── autocli.go
├── simulation
│ ├── decoder.go
│ ├── genesis.go
│ ├── operations.go
│ └── params.go
├── {module_name}.pb.go
├── codec.go
├── errors.go
├── events.go
├── events.pb.go
├── expected_keepers.go
├── genesis.go
├── genesis.pb.go
├── keys.go
├── msgs.go
├── params.go
├── query.pb.go
├── tx.pb.go
└── README.md
client/
: The module's CLI client functionality implementation and the module's CLI testing suite.exported/
: The module's exported types - typically interface types. If a module relies on keepers from another module, it is expected to receive the keepers as interface contracts through theexpected_keepers.go
file (see below) in order to avoid a direct dependency on the module implementing the keepers. However, these interface contracts can define methods that operate on and/or return types that are specific to the module that is implementing the keepers and this is whereexported/
comes into play. The interface types that are defined inexported/
use canonical types, allowing for the module to receive the keepers as interface contracts through theexpected_keepers.go
file. This pattern allows for code to remain DRY and also alleviates import cycle chaos.keeper/
: The module'sKeeper
andMsgServer
implementation.module/
: The module'sAppModule
andAppModuleBasic
implementation.abci.go
: The module'sBeginBlocker
andEndBlocker
implementations (this file is only required ifBeginBlocker
and/orEndBlocker
need to be defined).autocli.go
: The module autocli options.
simulation/
: The module's simulation package defines functions used by the blockchain simulator application (simapp
).REAMDE.md
: The module's specification documents outlining important concepts, state storage structure, and message and event type definitions. Learn more how to write module specs in the spec guidelines.- The root directory includes type definitions for messages, events, and genesis state, including the type definitions generated by Protocol Buffers.
codec.go
: The module's registry methods for interface types.errors.go
: The module's sentinel errors.events.go
: The module's event types and constructors.expected_keepers.go
: The module's expected keeper interfaces.genesis.go
: The module's genesis state methods and helper functions.keys.go
: The module's store keys and associated helper functions.msgs.go
: The module's message type definitions and associated methods.params.go
: The module's parameter type definitions and associated methods.*.pb.go
: The module's type definitions generated by Protocol Buffers (as defined in the respective*.proto
files above).