datastreams

package
v0.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 28, 2024 License: MIT Imports: 5 Imported by: 3

Documentation

Index

Constants

View Source
const FeedIDBytesLen = 32

Variables

View Source
var ErrInvalidFeedID = errors.New("invalid feed ID")

Functions

This section is empty.

Types

type FeedID

type FeedID string

hex-encoded 32-byte value, prefixed with "0x", all lowercase

func FeedIDFromBytes

func FeedIDFromBytes(b [FeedIDBytesLen]byte) FeedID

func NewFeedID

func NewFeedID(s string) (FeedID, error)

func (FeedID) Bytes

func (id FeedID) Bytes() [FeedIDBytesLen]byte

Bytes() converts the FeedID string into a [32]byte value. Note: this function panics if the underlying string isn't of the right length. For production (i.e.) non-test uses, please create the FeedID via the NewFeedID constructor, which will validate the string.

func (FeedID) String

func (id FeedID) String() string

type FeedReport

type FeedReport struct {
	FeedID        string
	FullReport    []byte
	ReportContext []byte
	Signatures    [][]byte

	// Fields below are derived from FullReport
	// NOTE: BenchmarkPrice is a byte representation of big.Int. We can't use big.Int
	// directly due to Value serialization problems using mapstructure.
	BenchmarkPrice       []byte
	ObservationTimestamp int64
}

func UnwrapFeedReportList added in v0.2.0

func UnwrapFeedReportList(wrapped values.Value) ([]FeedReport, error)

Helpers for unwrapping a list of FeedReports - more efficient than using mapstructure/reflection

type ReportCodec

type ReportCodec interface {
	// unwrap reports and convert to a list of FeedReport
	Unwrap(wrapped values.Value) ([]FeedReport, error)

	// wrap a list of FeedReport to Value
	Wrap(reports []FeedReport) (values.Value, error)

	// validate signatures on a single FeedReport
	Validate(feedReport FeedReport, allowedSigners [][]byte, minRequiredSignatures int) error
}

type SignersMetadata added in v0.2.0

type SignersMetadata struct {
	Signers               [][]byte
	MinRequiredSignatures int
}

passed alongside Streams trigger events

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL