Sample State - 12Starlight/Godsend GitHub Wiki

{
 entities: {
   watchlist: {
     1: {
       id: 1,
       title: "Tesla",
       price: 640.81,
       p/e: null
     },
     2: {
       id: 12,
       title: "Apple",
       price: 323.87,
       p/e: 25.71
     },
     3: {
       id: 3,
       title: "Amazon",
       price: 1870.68,
       p/e: 82.89
     }
   },
   users: {
     11: {
       id: 11,
       username: "BlueJay",
       StockPicks: [1, 12],
       Cash: 45678        
     },
     25: {
       id: 25,
       username: "GoldenHawk",
       StockPicks: [3],
       Cash: 897452
     }
   },
   buys: {
     10: {
       stockId: 12,
       userId: 11,
     },
     11: {
       stockId: 1,
       userId: 25,
     },
     12: {
       stockId: 3,
       userId: 11,
     },
   },
   sells: {}
     1: {
       stockId: 3,
       userId: 25
     }
 },
 ui: {
   loading: true/false
 },
 errors: {
   login: ["Incorrect username/password combination"],
   chirpForm: ["Post body cannot be blank"],
 },
 session: { currentUserId: 25 }
}
⚠️ **GitHub.com Fallback** ⚠️