From the Leaflet.js documentation it states that it uses a default CRS of 3857.
This implies that if I am going to generate points with PostGIS based on polygons, or points created by drawing or dropping on Leaflet.js canvas, I would need to use the following SQL:
SELECT ST_SetSRID(ST_MakePoint(lng, lat),3857)