forked from cerc-io/registry-sdk
Prathamesh Musale
1147b83f8c
Part of [Service provider auctions](https://www.notion.so/Service-provider-auctions-a7b63697d818479493ec145ea6ea3c1c) Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Co-authored-by: Isha Venikar <ishavenikar@Ishas-MacBook-Air.local> Reviewed-on: cerc-io/registry-sdk#28 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
18 lines
473 B
Protocol Buffer
18 lines
473 B
Protocol Buffer
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) = {
|
|
go_import : "git.vdb.to/cerc-io/laconicd/x/auction"
|
|
};
|
|
|
|
// authority defines the custom module authority. If not set, defaults to the
|
|
// governance module.
|
|
string authority = 2;
|
|
}
|