Documentation ¶
Index ¶
- func OnProof(ctx context.Context, subscriber Subscriber, p ProofType, ...)
- func Register(p Proof)
- func WithMetrics(store Getter)
- type Broadcaster
- type DummyService
- type ErrFraudExists
- type Getter
- type Proof
- type ProofService
- func (f *ProofService) Broadcast(ctx context.Context, p Proof) error
- func (f *ProofService) Get(ctx context.Context, proofType ProofType) ([]Proof, error)
- func (f *ProofService) Start(context.Context) error
- func (f *ProofService) Stop(context.Context) error
- func (f *ProofService) Subscribe(proofType ProofType) (_ Subscription, err error)
- type ProofType
- type ProofUnmarshaler
- type Service
- type Subscriber
- type Subscription
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func OnProof ¶
func OnProof(ctx context.Context, subscriber Subscriber, p ProofType, handle func(proof Proof))
OnProof subscribes to the given Fraud Proof topic via the given Subscriber. In case a Fraud Proof is received, then the given handle function will be invoked.
func Register ¶
func Register(p Proof)
Register adds a string representation and unmarshaller for the provided ProofType.
func WithMetrics ¶ added in v0.4.0
func WithMetrics(store Getter)
WithMetrics enables metrics to monitor fraud proofs.
Types ¶
type Broadcaster ¶
type Broadcaster interface { // Broadcast takes a fraud `Proof` data structure that implements standard BinaryMarshal // interface and broadcasts it to all subscribed peers. Broadcast(context.Context, Proof) error }
Broadcaster is a generic interface that sends a `Proof` to all nodes subscribed on the Broadcaster's topic.
type DummyService ¶
type DummyService struct { }
func (*DummyService) Subscribe ¶
func (d *DummyService) Subscribe(ProofType) (Subscription, error)
type ErrFraudExists ¶
type ErrFraudExists struct {
Proof []Proof
}
func (*ErrFraudExists) Error ¶
func (e *ErrFraudExists) Error() string
type Getter ¶
type Getter interface { // Get fetches fraud proofs from the disk by its type. Get(context.Context, ProofType) ([]Proof, error) }
Getter encompasses the behavior to fetch stored fraud proofs.
type Proof ¶
type Proof interface { // Type returns the exact type of fraud proof. Type() ProofType // HeaderHash returns the block hash. HeaderHash() []byte // Height returns the block height corresponding to the Proof. Height() uint64 // Validate check the validity of fraud proof. // Validate throws an error if some conditions don't pass and thus fraud proof is not valid. // NOTE: header.ExtendedHeader should pass basic validation otherwise it will panic if it's // malformed. Validate(*header.ExtendedHeader) error encoding.BinaryMarshaler encoding.BinaryUnmarshaler }
Proof is a generic interface that will be used for all types of fraud proofs in the network.
type ProofService ¶
type ProofService struct {
// contains filtered or unexported fields
}
ProofService is responsible for validating and propagating Fraud Proofs. It implements the Service interface.
func CreateTestService ¶ added in v0.5.0
func CreateTestService(t *testing.T, enabledSyncer bool) (*ProofService, *mockStore)
func NewProofService ¶
func (*ProofService) Broadcast ¶
func (f *ProofService) Broadcast(ctx context.Context, p Proof) error
func (*ProofService) Start ¶
func (f *ProofService) Start(context.Context) error
Start joins fraud proofs topics, sets the stream handler for fraudProtocolID and starts syncing if syncer is enabled.
func (*ProofService) Stop ¶
func (f *ProofService) Stop(context.Context) error
Stop removes the stream handler and cancels the underlying ProofService
func (*ProofService) Subscribe ¶
func (f *ProofService) Subscribe(proofType ProofType) (_ Subscription, err error)
type ProofUnmarshaler ¶
ProofUnmarshaler aliases a function that parses data to `Proof`.
type Service ¶
type Service interface { Subscriber Broadcaster Getter }
Service encompasses the behavior necessary to subscribe and broadcast fraud proofs within the network.
type Subscriber ¶
type Subscriber interface { // Subscribe allows to subscribe on a Proof pub sub topic by its type. Subscribe(ProofType) (Subscription, error) }
Subscriber encompasses the behavior necessary to subscribe/unsubscribe from new FraudProof events from the network.