2021-10-09 11:22:03 +00:00
|
|
|
# Nimbus
|
2022-04-13 09:17:07 +00:00
|
|
|
# Copyright (c) 2021-2022 Status Research & Development GmbH
|
2021-10-09 11:22:03 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
# https://github.com/ethereum/portal-network-specs/blob/master/history-network.md#content-keys-and-values
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
import
|
2022-07-01 19:51:51 +00:00
|
|
|
std/[options, math],
|
2022-04-13 09:17:07 +00:00
|
|
|
nimcrypto/[sha2, hash], stew/byteutils, stint,
|
2021-10-23 12:28:12 +00:00
|
|
|
ssz_serialization,
|
2021-10-09 11:22:03 +00:00
|
|
|
../../common/common_types
|
|
|
|
|
2022-06-16 06:50:29 +00:00
|
|
|
export ssz_serialization, common_types, hash
|
2021-10-09 11:22:03 +00:00
|
|
|
|
2022-07-01 19:51:51 +00:00
|
|
|
## Types and calls for history network content keys
|
2022-09-28 07:09:38 +00:00
|
|
|
|
2022-08-09 12:32:41 +00:00
|
|
|
const
|
2022-09-28 07:09:38 +00:00
|
|
|
# Maximum content key size:
|
|
|
|
# - 32 bytes for SSZ serialized `BlockKey`
|
|
|
|
# - 1 byte for `ContentType`
|
|
|
|
# TODO: calculate it somehow from the object definition (macro?)
|
|
|
|
maxContentKeySize* = 33
|
2022-07-01 19:51:51 +00:00
|
|
|
|
2021-10-09 11:22:03 +00:00
|
|
|
type
|
|
|
|
ContentType* = enum
|
2022-01-05 08:49:49 +00:00
|
|
|
blockHeader = 0x00
|
|
|
|
blockBody = 0x01
|
|
|
|
receipts = 0x02
|
2022-06-14 21:38:34 +00:00
|
|
|
epochAccumulator = 0x03
|
2022-11-04 08:27:01 +00:00
|
|
|
blockHeaderWithProof = 0x04
|
2021-10-09 11:22:03 +00:00
|
|
|
|
2022-06-14 21:38:34 +00:00
|
|
|
BlockKey* = object
|
2021-10-09 11:22:03 +00:00
|
|
|
blockHash*: BlockHash
|
|
|
|
|
2022-06-14 21:38:34 +00:00
|
|
|
EpochAccumulatorKey* = object
|
2022-10-10 10:59:55 +00:00
|
|
|
epochHash*: Digest # TODO: Perhaps this should be called epochRoot in the spec instead
|
2022-06-14 21:38:34 +00:00
|
|
|
|
2022-01-05 08:49:49 +00:00
|
|
|
ContentKey* = object
|
|
|
|
case contentType*: ContentType
|
|
|
|
of blockHeader:
|
2022-06-14 21:38:34 +00:00
|
|
|
blockHeaderKey*: BlockKey
|
2022-01-05 08:49:49 +00:00
|
|
|
of blockBody:
|
2022-06-14 21:38:34 +00:00
|
|
|
blockBodyKey*: BlockKey
|
2022-01-05 08:49:49 +00:00
|
|
|
of receipts:
|
2022-06-14 21:38:34 +00:00
|
|
|
receiptsKey*: BlockKey
|
|
|
|
of epochAccumulator:
|
|
|
|
epochAccumulatorKey*: EpochAccumulatorKey
|
2022-11-04 08:27:01 +00:00
|
|
|
of blockHeaderWithProof:
|
|
|
|
blockHeaderWithProofKey*: BlockKey
|
2021-10-09 11:22:03 +00:00
|
|
|
|
|
|
|
func encode*(contentKey: ContentKey): ByteList =
|
2021-10-22 15:49:23 +00:00
|
|
|
ByteList.init(SSZ.encode(contentKey))
|
2021-10-09 11:22:03 +00:00
|
|
|
|
|
|
|
func decode*(contentKey: ByteList): Option[ContentKey] =
|
|
|
|
try:
|
|
|
|
some(SSZ.decode(contentKey.asSeq(), ContentKey))
|
|
|
|
except SszError:
|
|
|
|
return none[ContentKey]()
|
|
|
|
|
|
|
|
func toContentId*(contentKey: ByteList): ContentId =
|
2022-05-24 11:27:22 +00:00
|
|
|
# TODO: Should we try to parse the content key here for invalid ones?
|
2022-09-10 19:00:27 +00:00
|
|
|
let idHash = sha2.sha256.digest(contentKey.asSeq())
|
2021-10-09 11:22:03 +00:00
|
|
|
readUintBE[256](idHash.data)
|
|
|
|
|
|
|
|
func toContentId*(contentKey: ContentKey): ContentId =
|
|
|
|
toContentId(encode(contentKey))
|
2022-04-13 09:17:07 +00:00
|
|
|
|
|
|
|
func `$`*(x: BlockHash): string =
|
|
|
|
"0x" & x.data.toHex()
|
|
|
|
|
2022-06-14 21:38:34 +00:00
|
|
|
func `$`*(x: BlockKey): string =
|
2022-09-28 07:09:38 +00:00
|
|
|
"blockHash: " & $x.blockHash
|
2022-06-14 21:38:34 +00:00
|
|
|
|
2022-04-13 09:17:07 +00:00
|
|
|
func `$`*(x: ContentKey): string =
|
2022-06-14 21:38:34 +00:00
|
|
|
var res = "(type: " & $x.contentType & ", "
|
|
|
|
|
|
|
|
case x.contentType:
|
|
|
|
of blockHeader:
|
|
|
|
res.add($x.blockHeaderKey)
|
|
|
|
of blockBody:
|
|
|
|
res.add($x.blockBodyKey)
|
|
|
|
of receipts:
|
|
|
|
res.add($x.receiptsKey)
|
|
|
|
of epochAccumulator:
|
|
|
|
let key = x.epochAccumulatorKey
|
|
|
|
res.add("epochHash: " & $key.epochHash)
|
2022-11-04 08:27:01 +00:00
|
|
|
of blockHeaderWithProof:
|
|
|
|
res.add($x.blockHeaderWithProofKey)
|
2022-06-14 21:38:34 +00:00
|
|
|
|
|
|
|
res.add(")")
|
2022-04-13 09:17:07 +00:00
|
|
|
|
2022-06-14 21:38:34 +00:00
|
|
|
res
|
2022-07-01 19:51:51 +00:00
|
|
|
|
|
|
|
## Types for history network content
|
|
|
|
|
|
|
|
const
|
|
|
|
MAX_TRANSACTION_LENGTH* = 2^24 # ~= 16 million
|
|
|
|
MAX_TRANSACTION_COUNT* = 2^14 # ~= 16k
|
|
|
|
MAX_RECEIPT_LENGTH* = 2^27 # ~= 134 million
|
|
|
|
MAX_HEADER_LENGTH = 2^13 # = 8192
|
|
|
|
MAX_ENCODED_UNCLES_LENGTH* = MAX_HEADER_LENGTH * 2^4 # = 2**17 ~= 131k
|
|
|
|
|
|
|
|
type
|
|
|
|
## Types for content
|
|
|
|
# TODO: Using `init` on these lists appears to fail because of the constants
|
|
|
|
# that are used? Strange.
|
|
|
|
TransactionByteList* = List[byte, MAX_TRANSACTION_LENGTH] # RLP data
|
|
|
|
Transactions* = List[TransactionByteList, MAX_TRANSACTION_COUNT]
|
|
|
|
Uncles* = List[byte, MAX_ENCODED_UNCLES_LENGTH] # RLP data
|
|
|
|
|
|
|
|
BlockBodySSZ* = object
|
|
|
|
transactions*: Transactions
|
|
|
|
uncles*: Uncles
|
|
|
|
|
|
|
|
ReceiptByteList* = List[byte, MAX_RECEIPT_LENGTH] # RLP data
|
|
|
|
ReceiptsSSZ* = List[ReceiptByteList, MAX_TRANSACTION_COUNT]
|
2022-11-04 08:27:01 +00:00
|
|
|
|
|
|
|
AccumulatorProof* = array[15, Digest]
|
|
|
|
|
|
|
|
BlockHeaderProofType* = enum
|
|
|
|
none = 0x00 # An SSZ Union None
|
|
|
|
accumulatorProof = 0x01
|
|
|
|
|
|
|
|
BlockHeaderProof* = object
|
|
|
|
case proofType*: BlockHeaderProofType
|
|
|
|
of none:
|
|
|
|
discard
|
|
|
|
of accumulatorProof:
|
|
|
|
accumulatorProof*: AccumulatorProof
|
|
|
|
|
|
|
|
BlockHeaderWithProof* = object
|
|
|
|
header*: ByteList # RLP data
|
|
|
|
proof*: BlockHeaderProof
|
|
|
|
|
|
|
|
func init*(T: type BlockHeaderProof, proof: AccumulatorProof): T =
|
|
|
|
BlockHeaderProof(proofType: accumulatorProof, accumulatorProof: proof)
|