2023-03-28 16:44:41 +00:00
|
|
|
package rewards
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/blockchain"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/lookup"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/state/stategen"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Server struct {
|
|
|
|
Blocker lookup.Blocker
|
|
|
|
OptimisticModeFetcher blockchain.OptimisticModeFetcher
|
|
|
|
FinalizationFetcher blockchain.FinalizationFetcher
|
|
|
|
ReplayerBuilder stategen.ReplayerBuilder
|
2023-07-18 08:31:15 +00:00
|
|
|
TimeFetcher blockchain.TimeFetcher
|
|
|
|
Stater lookup.Stater
|
|
|
|
HeadFetcher blockchain.HeadFetcher
|
2023-03-28 16:44:41 +00:00
|
|
|
}
|