是否有类似于https://en.bitcoin.it/wiki/Block的描述Ethereum块结构的文档/图表?
我知道我可以在https://github.com/ethereum/pyethereum/blob/develop/ethereum/blocks.py找到实现,但我仍然缺少一些信息,比如bytesize和类似的.
发布于 2016-06-21 19:58:01
发布于 2016-09-06 13:30:01
下面是从另一个答案 ->定义中改编而来的一种虚幻现象,该定义来自于黄纸:

另见黄纸方程(35)。关于github 这里,Latex格式:
The component types are defined thus:
\begin{equation}
\begin{array}[t]{lclclcl}
H_p \in \mathbb{B}_{32} & \wedge & H_o \in \mathbb{B}_{32} & \wedge & H_c \in \mathbb{B}_{20} & \wedge \\
H_r \in \mathbb{B}_{32} & \wedge & H_t \in \mathbb{B}_{32} & \wedge & H_e \in \mathbb{B}_{32} & \wedge \\
H_b \in \mathbb{B}_{256} & \wedge & H_d \in \mathbb{P} & \wedge & H_i \in \mathbb{P} & \wedge \\
H_l \in \mathbb{P} & \wedge & H_g \in \mathbb{P} & \wedge & H_s \in \mathbb{P}_{256} & \wedge \\
H_x \in \mathbb{B} & \wedge & H_m \in \mathbb{B}_{32} & \wedge & H_n \in \mathbb{B}_{8}
\end{array}
\end{equation}
where
\begin{equation}
\mathbb{B}_n = \{ B: B \in \mathbb{B} \wedge \lVert B \rVert = n \}
\end{equation}https://ethereum.stackexchange.com/questions/6400
复制相似问题