tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at migrate 7 lines 211 B view raw
1export const formatNumber = (num: number): string => { 2 return num.toLocaleString(); 3}; 4 5export const formatTimestamp = (timestamp: number): string => { 6 return new Date(timestamp / 1000).toLocaleString(); 7};