Documentation
¶
Overview ¶
Code generated by dynamic-ssz. DO NOT EDIT. Hash: 0320b1a213ffd50392da1508ded175aa3393866af8cb3c49e11a1f567072cc2e Version: v1.3.2 (https://github.com/pk910/dynamic-ssz)
Code generated by dynamic-ssz. DO NOT EDIT. Hash: 5f0adcbd8eb5537467d7661d49cdf8c72fef9cf3e869362fb4db07c91803a8f6 Version: v1.3.2 (https://github.com/pk910/dynamic-ssz)
Code generated by dynamic-ssz. DO NOT EDIT. Hash: b3f2ede19b13979a9c2be90662fc0cdba0d596036f32c580dafe66cde4f02fc7 Version: v1.3.2 (https://github.com/pk910/dynamic-ssz)
Index ¶
- type BuilderBid
- func (t *BuilderBid) HashTreeRoot() (root [32]byte, err error)
- func (t *BuilderBid) HashTreeRootWith(hh sszutils.HashWalker) error
- func (b *BuilderBid) MarshalJSON() ([]byte, error)
- func (t *BuilderBid) MarshalSSZ() ([]byte, error)
- func (t *BuilderBid) MarshalSSZTo(buf []byte) (dst []byte, err error)
- func (b *BuilderBid) MarshalYAML() ([]byte, error)
- func (t *BuilderBid) SizeSSZ() (size int)
- func (b *BuilderBid) String() string
- func (b *BuilderBid) UnmarshalJSON(input []byte) error
- func (t *BuilderBid) UnmarshalSSZ(buf []byte) (err error)
- func (b *BuilderBid) UnmarshalYAML(input []byte) error
- type SignedBuilderBid
- func (t *SignedBuilderBid) HashTreeRoot() (root [32]byte, err error)
- func (t *SignedBuilderBid) HashTreeRootWith(hh sszutils.HashWalker) error
- func (s *SignedBuilderBid) MarshalJSON() ([]byte, error)
- func (t *SignedBuilderBid) MarshalSSZ() ([]byte, error)
- func (t *SignedBuilderBid) MarshalSSZTo(buf []byte) (dst []byte, err error)
- func (s *SignedBuilderBid) MarshalYAML() ([]byte, error)
- func (t *SignedBuilderBid) SizeSSZ() (size int)
- func (s *SignedBuilderBid) String() string
- func (s *SignedBuilderBid) UnmarshalJSON(input []byte) error
- func (t *SignedBuilderBid) UnmarshalSSZ(buf []byte) (err error)
- func (s *SignedBuilderBid) UnmarshalYAML(input []byte) error
- type SubmitBlockRequest
- func (t *SubmitBlockRequest) HashTreeRoot() (root [32]byte, err error)
- func (t *SubmitBlockRequest) HashTreeRootWith(hh sszutils.HashWalker) error
- func (s *SubmitBlockRequest) MarshalJSON() ([]byte, error)
- func (t *SubmitBlockRequest) MarshalSSZ() ([]byte, error)
- func (t *SubmitBlockRequest) MarshalSSZTo(buf []byte) (dst []byte, err error)
- func (s *SubmitBlockRequest) MarshalYAML() ([]byte, error)
- func (t *SubmitBlockRequest) SizeSSZ() (size int)
- func (s *SubmitBlockRequest) String() string
- func (s *SubmitBlockRequest) UnmarshalJSON(input []byte) error
- func (t *SubmitBlockRequest) UnmarshalSSZ(buf []byte) (err error)
- func (s *SubmitBlockRequest) UnmarshalYAML(input []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BuilderBid ¶
type BuilderBid struct {
Header *bellatrix.ExecutionPayloadHeader
Value *uint256.Int `ssz-size:"32"`
Pubkey phase0.BLSPubKey `ssz-size:"48"`
}
BuilderBid represents a BuilderBid.
func (*BuilderBid) HashTreeRoot ¶ added in v0.1.9
func (t *BuilderBid) HashTreeRoot() (root [32]byte, err error)
HashTreeRoot computes the SSZ hash tree root of the *BuilderBid.
func (*BuilderBid) HashTreeRootWith ¶ added in v0.1.9
func (t *BuilderBid) HashTreeRootWith(hh sszutils.HashWalker) error
HashTreeRootWith computes the SSZ hash tree root of the *BuilderBid using the given hash walker.
func (*BuilderBid) MarshalJSON ¶
func (b *BuilderBid) MarshalJSON() ([]byte, error)
MarshalJSON implements json.Marshaler.
func (*BuilderBid) MarshalSSZ ¶ added in v0.1.9
func (t *BuilderBid) MarshalSSZ() ([]byte, error)
MarshalSSZ marshals the *BuilderBid to SSZ-encoded bytes.
func (*BuilderBid) MarshalSSZTo ¶ added in v0.1.9
func (t *BuilderBid) MarshalSSZTo(buf []byte) (dst []byte, err error)
MarshalSSZTo marshals the *BuilderBid to SSZ-encoded bytes, appending to the provided buffer.
func (*BuilderBid) MarshalYAML ¶
func (b *BuilderBid) MarshalYAML() ([]byte, error)
MarshalYAML implements yaml.Marshaler.
func (*BuilderBid) SizeSSZ ¶ added in v0.1.9
func (t *BuilderBid) SizeSSZ() (size int)
SizeSSZ returns the SSZ encoded size of the *BuilderBid.
func (*BuilderBid) String ¶
func (b *BuilderBid) String() string
String returns a string version of the structure.
func (*BuilderBid) UnmarshalJSON ¶
func (b *BuilderBid) UnmarshalJSON(input []byte) error
UnmarshalJSON implements json.Unmarshaler.
func (*BuilderBid) UnmarshalSSZ ¶ added in v0.1.9
func (t *BuilderBid) UnmarshalSSZ(buf []byte) (err error)
UnmarshalSSZ unmarshals the *BuilderBid from SSZ-encoded bytes.
func (*BuilderBid) UnmarshalYAML ¶
func (b *BuilderBid) UnmarshalYAML(input []byte) error
UnmarshalYAML implements yaml.Unmarshaler.
type SignedBuilderBid ¶
type SignedBuilderBid struct {
Message *BuilderBid
Signature phase0.BLSSignature `ssz-size:"96"`
}
SignedBuilderBid represents a SignedBuilderBid.
func (*SignedBuilderBid) HashTreeRoot ¶ added in v0.2.7
func (t *SignedBuilderBid) HashTreeRoot() (root [32]byte, err error)
HashTreeRoot computes the SSZ hash tree root of the *SignedBuilderBid.
func (*SignedBuilderBid) HashTreeRootWith ¶ added in v0.2.7
func (t *SignedBuilderBid) HashTreeRootWith(hh sszutils.HashWalker) error
HashTreeRootWith computes the SSZ hash tree root of the *SignedBuilderBid using the given hash walker.
func (*SignedBuilderBid) MarshalJSON ¶
func (s *SignedBuilderBid) MarshalJSON() ([]byte, error)
MarshalJSON implements json.Marshaler.
func (*SignedBuilderBid) MarshalSSZ ¶ added in v0.2.7
func (t *SignedBuilderBid) MarshalSSZ() ([]byte, error)
MarshalSSZ marshals the *SignedBuilderBid to SSZ-encoded bytes.
func (*SignedBuilderBid) MarshalSSZTo ¶ added in v0.2.7
func (t *SignedBuilderBid) MarshalSSZTo(buf []byte) (dst []byte, err error)
MarshalSSZTo marshals the *SignedBuilderBid to SSZ-encoded bytes, appending to the provided buffer.
func (*SignedBuilderBid) MarshalYAML ¶
func (s *SignedBuilderBid) MarshalYAML() ([]byte, error)
MarshalYAML implements yaml.Marshaler.
func (*SignedBuilderBid) SizeSSZ ¶ added in v0.2.7
func (t *SignedBuilderBid) SizeSSZ() (size int)
SizeSSZ returns the SSZ encoded size of the *SignedBuilderBid.
func (*SignedBuilderBid) String ¶
func (s *SignedBuilderBid) String() string
String returns a string version of the structure.
func (*SignedBuilderBid) UnmarshalJSON ¶
func (s *SignedBuilderBid) UnmarshalJSON(input []byte) error
UnmarshalJSON implements json.Unmarshaler.
func (*SignedBuilderBid) UnmarshalSSZ ¶ added in v0.2.7
func (t *SignedBuilderBid) UnmarshalSSZ(buf []byte) (err error)
UnmarshalSSZ unmarshals the *SignedBuilderBid from SSZ-encoded bytes.
func (*SignedBuilderBid) UnmarshalYAML ¶
func (s *SignedBuilderBid) UnmarshalYAML(input []byte) error
UnmarshalYAML implements yaml.Unmarshaler.
type SubmitBlockRequest ¶ added in v0.2.7
type SubmitBlockRequest struct {
Message *apiv1.BidTrace
ExecutionPayload *bellatrix.ExecutionPayload
Signature phase0.BLSSignature `ssz-size:"96"`
}
SubmitBlockRequest is the request from the builder to submit a block.
func (*SubmitBlockRequest) HashTreeRoot ¶ added in v0.2.7
func (t *SubmitBlockRequest) HashTreeRoot() (root [32]byte, err error)
HashTreeRoot computes the SSZ hash tree root of the *SubmitBlockRequest.
func (*SubmitBlockRequest) HashTreeRootWith ¶ added in v0.2.7
func (t *SubmitBlockRequest) HashTreeRootWith(hh sszutils.HashWalker) error
HashTreeRootWith computes the SSZ hash tree root of the *SubmitBlockRequest using the given hash walker.
func (*SubmitBlockRequest) MarshalJSON ¶ added in v0.2.7
func (s *SubmitBlockRequest) MarshalJSON() ([]byte, error)
MarshalJSON implements json.Marshaler.
func (*SubmitBlockRequest) MarshalSSZ ¶ added in v0.2.7
func (t *SubmitBlockRequest) MarshalSSZ() ([]byte, error)
MarshalSSZ marshals the *SubmitBlockRequest to SSZ-encoded bytes.
func (*SubmitBlockRequest) MarshalSSZTo ¶ added in v0.2.7
func (t *SubmitBlockRequest) MarshalSSZTo(buf []byte) (dst []byte, err error)
MarshalSSZTo marshals the *SubmitBlockRequest to SSZ-encoded bytes, appending to the provided buffer.
func (*SubmitBlockRequest) MarshalYAML ¶ added in v0.2.7
func (s *SubmitBlockRequest) MarshalYAML() ([]byte, error)
MarshalYAML implements yaml.Marshaler.
func (*SubmitBlockRequest) SizeSSZ ¶ added in v0.2.7
func (t *SubmitBlockRequest) SizeSSZ() (size int)
SizeSSZ returns the SSZ encoded size of the *SubmitBlockRequest.
func (*SubmitBlockRequest) String ¶ added in v0.2.7
func (s *SubmitBlockRequest) String() string
String returns a string version of the structure.
func (*SubmitBlockRequest) UnmarshalJSON ¶ added in v0.2.7
func (s *SubmitBlockRequest) UnmarshalJSON(input []byte) error
UnmarshalJSON implements json.Unmarshaler.
func (*SubmitBlockRequest) UnmarshalSSZ ¶ added in v0.2.7
func (t *SubmitBlockRequest) UnmarshalSSZ(buf []byte) (err error)
UnmarshalSSZ unmarshals the *SubmitBlockRequest from SSZ-encoded bytes.
func (*SubmitBlockRequest) UnmarshalYAML ¶ added in v0.2.7
func (s *SubmitBlockRequest) UnmarshalYAML(input []byte) error
UnmarshalYAML implements yaml.Unmarshaler.