mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 19:51:20 +00:00
17 lines
508 B
Go
17 lines
508 B
Go
package validator
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/blockchain"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/core"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/sync"
|
|
)
|
|
|
|
// Server defines a server implementation for HTTP endpoints, providing
|
|
// access data relevant to the Ethereum Beacon Chain.
|
|
type Server struct {
|
|
GenesisTimeFetcher blockchain.TimeFetcher
|
|
SyncChecker sync.Checker
|
|
HeadFetcher blockchain.HeadFetcher
|
|
CoreService *core.Service
|
|
}
|