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.

16 lines
569 B

  1. package api
  2. import (
  3. "github.com/hermeznetwork/hermez-node/common"
  4. "github.com/hermeznetwork/hermez-node/db/historydb"
  5. )
  6. // Status define status of the network
  7. type Status struct {
  8. Network historydb.Network `json:"network"`
  9. Metrics historydb.Metrics `json:"metrics"`
  10. Rollup common.RollupVariables `json:"rollup"`
  11. Auction common.AuctionVariables `json:"auction"`
  12. WithdrawalDelayer common.WDelayerVariables `json:"withdrawalDelayer"`
  13. RecommendedFee common.RecommendedFee `json:"recommendedFee"`
  14. }