forked from cerc-io/registry-sdk
Nabarun
2757281e5b
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) Co-authored-by: Isha Venikar <145848618+IshaVenikar@users.noreply.github.com> Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Reviewed-on: cerc-io/registry-sdk#12 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
16 lines
375 B
Protocol Buffer
16 lines
375 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cerc.onboarding.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/onboarding"
|
|
};
|
|
|
|
string authority = 1;
|
|
}
|