2024-02-09 08:44:45 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package cerc.auction.module.v1;
|
|
|
|
|
|
|
|
import "cosmos/app/v1alpha1/module.proto";
|
|
|
|
|
|
|
|
// Module is the app config object of the module.
|
|
|
|
// Learn more: https://docs.cosmos.network/main/building-modules/depinject
|
|
|
|
message Module {
|
|
|
|
option (cosmos.app.v1alpha1.module) = {
|
2024-04-01 09:57:26 +00:00
|
|
|
go_import : "git.vdb.to/cerc-io/laconicd/x/auction"
|
2024-02-09 08:44:45 +00:00
|
|
|
};
|
2024-09-05 07:07:54 +00:00
|
|
|
|
|
|
|
// authority defines the custom module authority. If not set, defaults to the
|
|
|
|
// governance module.
|
|
|
|
string authority = 2;
|
2024-02-09 08:44:45 +00:00
|
|
|
}
|