Versions in this module Expand all Collapse all v1 v1.0.0 Aug 15, 2021 Changes in this version + const NoHeight + const NoTimeout + type CheckFunc func(ts *types.TipSet) (done bool, more bool, err error) + type EventHandler func(data eventData, prevTs, ts *types.TipSet, curH abi.ChainEpoch) (more bool, err error) + type Events struct + func NewEvents(ctx context.Context, api eventAPI) *Events + func (e *Events) ChainAt(hnd HeightHandler, rev RevertHandler, confidence int, h abi.ChainEpoch) error + type HeightHandler func(ctx context.Context, ts *types.TipSet, curH abi.ChainEpoch) error + type MsgHandler func(msg *types.Message, rec *types.MessageReceipt, ts *types.TipSet, ...) (more bool, err error) + type MsgMatchFunc func(msg *types.Message, ts *types.TipSet) (matched bool, err error) + type RevertHandler func(ctx context.Context, ts *types.TipSet) error + type StateChange interface + type StateChangeHandler func(oldTs, newTs *types.TipSet, states StateChange, curH abi.ChainEpoch) (more bool, err error) + type StateMatchFunc func(oldTs, newTs *types.TipSet) (bool, StateChange, error)