You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

  1. # Development Notes
  2. ## ToDo list
  3. - Backend
  4. - Network Address generation avoiding infinite relation loops
  5. - Sankey Address generation without loops
  6. - Frontend
  7. - After Sankey visualization, go to Network Address visualization and render without Sankey dots
  8. - Both
  9. - Tx/day
  10. - Tx volume
  11. - Block size
  12. - Blockchain size
  13. other
  14. - To get tx/hours of last 24 hours
  15. Search for TxModel with DateF > last24h
  16. Count for each hour
  17. - To get tx/day of last month
  18. Search TxModel with DateF > last month
  19. Count each day
  20. - Add counter with total blocks, total tx, total address
  21. - store date hour, day, etc:
  22. ```Go
  23. type DateModel struct {
  24. Hour string `json:"hour"`
  25. Day string `json:"day"`
  26. Month string `json:"month"`
  27. Amount float64 `json:"amount"`
  28. BlockHash string `json:"blockhash"`
  29. BlockHeight string `json:"blockheight"`
  30. }
  31. ```
  32. - mantain connection with wallet using websockets
  33. - add 24h to hour analysis, to show also hours with 0 transactions