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.

14 lines
516 B

  1. package common
  2. import (
  3. eth "github.com/ethereum/go-ethereum/common"
  4. )
  5. // Operator represents a Hermez network operator who wins an auction for an specific slot
  6. // WARNING: this is strongly based on the previous implementation, once the new spec is done, this may change a lot.
  7. type Operator struct {
  8. Forger eth.Address // address of the forger
  9. Beneficiary eth.Address // address of the beneficiary
  10. Withdraw eth.Address // address of the withdraw
  11. URL string // URL of the operators API
  12. }