Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 4 additions & 17 deletions docs/network/overview/ethereum-differences.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ behavior on Ethereum Mainnet; if you're experiencing otherwise, please contact u

:::note

With Linea [Beta v4](../../changelog/release-notes.mdx#beta-v40), Linea upgraded to the Pectra hard fork.
With Linea [Beta v4.4](../../changelog/release-notes.mdx#beta-v44), Linea upgraded to the Fusaka hard fork.

:::

Expand Down Expand Up @@ -75,29 +75,16 @@ for more._
<th>Ethereum</th>
<th>Linea</th>
</tr>
<tr>
<td>`BLAKE2f`</td>
<td>
Compression function F used in the BLAKE2 cryptographic hashing algorithm.
</td>
<td>Not supported.</td>
</tr>
<tr>
<td>`MODEXP`</td>
<td>Arbitrary-precision exponentiation under modulo.</td>
<td>Only supports arguments (base, exponent, modulus) that do not exceed
512-byte integers.</td>
1024-byte integers.</td>
</tr>
<tr>
<td>Precompiles as transaction recipients</td>
<td>Applicable to various use cases.</td>
<td>Not supported. A transaction `to` address cannot be a precompile, i.e. an
address in the range `0x01`-`0x09`.</td>
</tr>
<tr>
<td>`RIPEMD-160`</td>
<td>A hash function.</td>
<td>Not supported.</td>
<td>Not supported. A transaction `to` address cannot be a precompile.</td>
</tr>
</table>

Expand All @@ -107,7 +94,7 @@ for more._
introduced a smart contract that enables the caller to `get` or `set` the hash tree root of a
beacon chain block.

This functionality is available with Linea Beta v4. However, due to the difference in block time
This functionality is available on Linea. However, due to the difference in block time
when compared to Ethereum Mainnet, only the root of the previous block is available.

## Call data
Expand Down
Loading