block-sdk/proto/pob/builder/module/v1/module.proto
Nikhil Vasan 8b5ebc310a
feat: Provide Configuration Options for POB (#206) (#211)
Co-authored-by: Keefer Taylor | Tessellated <keefer@tessellated.io>
2023-07-17 14:32:20 +00:00

16 lines
396 B
Protocol Buffer

syntax = "proto3";
package pob.builder.module.v1;
import "cosmos/app/v1alpha1/module.proto";
// Module is the config object of the builder module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import : "github.com/skip-mev/pob/x/builder"
};
// Authority defines the custom module authority. If not set, defaults to the
// governance module.
string authority = 2;
}