16 lines
402 B
Protocol Buffer
16 lines
402 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sdk.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/block-sdk/x/builder"
|
|
};
|
|
|
|
// Authority defines the custom module authority. If not set, defaults to the
|
|
// governance module.
|
|
string authority = 1;
|
|
} |