github.com/0xPolygon/supernets2-node@v0.0.0-20230711153321-2fe574524eaa/state/globalexitroot.go (about)

     1  package state
     2  
     3  import (
     4  	"time"
     5  
     6  	"github.com/ethereum/go-ethereum/common"
     7  )
     8  
     9  // GlobalExitRoot struct
    10  type GlobalExitRoot struct {
    11  	BlockNumber     uint64
    12  	Timestamp       time.Time
    13  	MainnetExitRoot common.Hash
    14  	RollupExitRoot  common.Hash
    15  	GlobalExitRoot  common.Hash
    16  }