()
| 14 | ) |
| 15 | |
| 16 | func ModuleAccountPerms() map[string][]string { |
| 17 | return map[string][]string{ |
| 18 | authtypes.FeeCollectorName: nil, |
| 19 | bmemodule.ModuleName: {authtypes.Burner, authtypes.Minter}, |
| 20 | emodule.ModuleName: nil, |
| 21 | distrtypes.ModuleName: nil, |
| 22 | minttypes.ModuleName: {authtypes.Minter}, |
| 23 | stakingtypes.BondedPoolName: {authtypes.Burner, authtypes.Staking}, |
| 24 | stakingtypes.NotBondedPoolName: {authtypes.Burner, authtypes.Staking}, |
| 25 | verification.ModuleName: nil, |
| 26 | govtypes.ModuleName: {authtypes.Burner}, |
| 27 | ibctransfertypes.ModuleName: {authtypes.Minter, authtypes.Burner}, |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | func ModuleAccountAddrs() map[string]bool { |
| 32 | perms := ModuleAccountPerms() |
no outgoing calls