cosmos-sdk/proto/cosmos/mint/module/v1/module.proto

17 lines
423 B
Protocol Buffer

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