mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
20 lines
697 B
Protocol Buffer
20 lines
697 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package cosmos.bank.module.v1;
|
||
|
|
||
|
import "cosmos/app/v1alpha1/module.proto";
|
||
|
|
||
|
// Module is the config object of the bank module.
|
||
|
message Module {
|
||
|
option (cosmos.app.v1alpha1.module) = {
|
||
|
go_import: "github.com/cosmos/cosmos-sdk/x/bank"
|
||
|
};
|
||
|
|
||
|
// blocked_module_accounts configures exceptional module accounts which should be blocked from receiving funds.
|
||
|
// If left empty it defaults to the list of account names supplied in the auth module configuration as
|
||
|
// module_account_permissions
|
||
|
repeated string blocked_module_accounts_override = 1;
|
||
|
|
||
|
// authority defines the custom module authority. If not set, defaults to the governance module.
|
||
|
string authority = 2;
|
||
|
}
|