2021-06-18 17:20:48 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2021 Status Research & Development GmbH
|
|
|
|
# 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/stateless-ethereum-specs/blob/master/state-network.md#content
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
import
|
2021-07-09 14:15:10 +00:00
|
|
|
nimcrypto/[sha2, hash], stew/objects, eth/ssz/ssz_serialization
|
|
|
|
|
|
|
|
export ssz_serialization
|
2021-06-18 17:20:48 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
ByteList* = List[byte, 2048]
|
|
|
|
|
|
|
|
ContentType* = enum
|
|
|
|
Account = 0x01
|
|
|
|
ContractStorage = 0x02
|
|
|
|
ContractBytecode = 0x03
|
|
|
|
|
|
|
|
NetworkId* = uint16
|
|
|
|
|
2021-07-09 14:15:10 +00:00
|
|
|
NodeHash* = List[byte, 32] # MDigest[32 * 8] - keccak256
|
2021-06-18 17:20:48 +00:00
|
|
|
|
|
|
|
CodeHash* = List[byte, 32] # MDigest[32 * 8] - keccak256
|
|
|
|
|
|
|
|
Address* = List[byte, 20]
|
|
|
|
|
|
|
|
ContentKey* = object
|
2021-07-09 14:15:10 +00:00
|
|
|
networkId*: NetworkId
|
|
|
|
contentType*: ContentType
|
2021-06-18 17:20:48 +00:00
|
|
|
# TODO: How shall we deal with the different ContentKey structures?
|
2021-07-09 14:15:10 +00:00
|
|
|
# Lets start with just node hashes for now.
|
|
|
|
# address: Address
|
|
|
|
# triePath: ByteList
|
|
|
|
nodeHash*: NodeHash
|
2021-06-18 17:20:48 +00:00
|
|
|
|
|
|
|
ContentId* = MDigest[32 * 8]
|
|
|
|
|
2021-07-09 14:15:10 +00:00
|
|
|
KeccakHash* = MDigest[32 * 8] # could also import from either eth common types or trie defs
|
|
|
|
|
|
|
|
template toSszType*(x: ContentType): uint8 =
|
|
|
|
uint8(x)
|
|
|
|
|
2021-06-18 17:20:48 +00:00
|
|
|
template toSszType*(x: auto): auto =
|
2021-07-09 14:15:10 +00:00
|
|
|
x
|
|
|
|
|
|
|
|
func fromSszBytes*(T: type ContentType, data: openArray[byte]):
|
|
|
|
T {.raises: [MalformedSszError, Defect].} =
|
|
|
|
if data.len != sizeof(uint8):
|
|
|
|
raiseIncorrectSize T
|
|
|
|
|
|
|
|
var contentType: T
|
|
|
|
if not checkedEnumAssign(contentType, data[0]):
|
|
|
|
raiseIncorrectSize T
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2021-07-09 14:15:10 +00:00
|
|
|
contentType
|
2021-06-18 17:20:48 +00:00
|
|
|
|
|
|
|
func toContentId*(contentKey: ContentKey): ContentId =
|
|
|
|
sha2.sha_256.digest(SSZ.encode(contentKey))
|