model.go 491 B

123456789101112131415161718192021222324252627282930313233
  1. package model
  2. type Block struct {
  3. CreatedAt uint64
  4. No int64
  5. TxCnt int
  6. UncleCnt int
  7. Miner string
  8. GasUsed uint64
  9. GasLimit uint64
  10. BaseFee uint64
  11. Reward float64
  12. }
  13. type Tx struct {
  14. CreatedAt uint64
  15. BlockNumber string
  16. Hash string
  17. From string
  18. To string
  19. Type string
  20. Value string
  21. Gas string
  22. GasPrice string
  23. Input string
  24. }
  25. type Call struct {
  26. From string
  27. To string
  28. Type string
  29. Value string
  30. }