Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChunkInclusionProof ¶ added in v1.18.0
type ChunkInclusionProof struct {
ProofSegments []common.Hash `json:"proofSegments"`
ProveSegment common.Hash `json:"proveSegment"`
ProofSegments2 []common.Hash `json:"proofSegments2"`
ProveSegment2 common.Hash `json:"proveSegment2"`
ChunkSpan uint64 `json:"chunkSpan"`
ProofSegments3 []common.Hash `json:"proofSegments3"`
PostageProof PostageProof `json:"postageProof"`
SocProof []SOCProof `json:"socProof"`
}
ChunkInclusionProof structure must exactly match corresponding structure (of the same name) in Redistribution.sol smart contract. github.com/ethersphere/storage-incentives/blob/ph_f2/src/Redistribution.sol github.com/ethersphere/storage-incentives/blob/master/src/Redistribution.sol (when merged to master)
func NewChunkInclusionProof ¶ added in v1.18.0
func NewChunkInclusionProof(proofp1, proofp2, proofp3 bmt.Proof, sampleItem storer.SampleItem) (ChunkInclusionProof, error)
NewChunkInclusionProof transforms arguments to ChunkInclusionProof object
type ChunkInclusionProofs ¶ added in v1.18.0
type ChunkInclusionProofs struct {
A ChunkInclusionProof `json:"proof1"`
B ChunkInclusionProof `json:"proof2"`
C ChunkInclusionProof `json:"proofLast"`
}
type Contract ¶
type Contract interface {
ReserveSalt(context.Context) ([]byte, error)
IsPlaying(context.Context, uint8) (bool, error)
IsWinner(context.Context) (bool, error)
Claim(context.Context, ChunkInclusionProofs) (common.Hash, error)
Commit(context.Context, []byte, uint64) (common.Hash, error)
Reveal(context.Context, uint8, []byte, []byte) (common.Hash, error)
}
type PostageProof ¶ added in v1.18.0
type PostageProof struct {
Signature []byte `json:"signature"`
PostageId common.Hash `json:"postageId"`
Index uint64 `json:"index"`
TimeStamp uint64 `json:"timeStamp"`
}
SOCProof structure must exactly match corresponding structure (of the same name) in Redistribution.sol smart contract.
type SOCProof ¶ added in v1.18.0
type SOCProof struct {
Signer common.Address `json:"signer"`
Signature []byte `json:"signature"`
Identifier common.Hash `json:"identifier"`
ChunkAddr common.Hash `json:"chunkAddr"`
}
SOCProof structure must exactly match corresponding structure (of the same name) in Redistribution.sol smart contract.
Click to show internal directories.
Click to hide internal directories.