cosmos-sdk/proto/cosmos/protocolpool/module/v1/module.proto
Alex | Interchain Labs d68d169a63
feat: add x/protocolpool (#23933)
Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com>
2025-03-29 19:45:39 +00:00

15 lines
410 B
Protocol Buffer

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