You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The structure of Conflux's blockchain is based on DAG, and an Epoch usually consists of multiple blocks. Transaction execution is performed epoch by epoch. In eSpace, an eSpace block actually corresponds to an Epoch in the DAG, which means it contains transactions from multiple blocks in the DAG.
10
+
11
+
Due to this feature, transactions within a single Conflux eSpace block may have different block contexts (coinbase, timestamp, difficulty) during execution. Currently, the block properties affected by this issue include:
12
+
13
+
1. coinbase
14
+
2. difficulty/prevrandao
15
+
3. gaslimit: current block gaslimit
16
+
4. timestamp
17
+
5. basefee
18
+
19
+
Conflux eSpace does not support blobhash and blobbasefee because Conflux does not support EIP-4844. These two opcodes will return default values during execution.
20
+
21
+
Some services require verification of transaction execution, so we provide the `debug_blockProperties` interface to query the block properties of all transactions in an eSpace block.
0 commit comments