mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
18 lines
500 B
Protocol Buffer
18 lines
500 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package cosmos.crisis.module.v1;
|
||
|
|
||
|
import "cosmos/app/v1alpha1/module.proto";
|
||
|
|
||
|
// Module is the config object of the crisis module.
|
||
|
message Module {
|
||
|
option (cosmos.app.v1alpha1.module) = {
|
||
|
go_import: "github.com/cosmos/cosmos-sdk/x/crisis"
|
||
|
};
|
||
|
|
||
|
// fee_collector_name is the name of the FeeCollector ModuleAccount.
|
||
|
string fee_collector_name = 1;
|
||
|
|
||
|
// authority defines the custom module authority. If not set, defaults to the governance module.
|
||
|
string authority = 2;
|
||
|
}
|