Skip to content

Commit d5c76c4

Browse files
Merge branch 'main' of https://github.com/0xPolygon/polygon-docs into platform/unhook-kurtosis
2 parents 774f008 + 8b8c5e8 commit d5c76c4

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

docs/cdk/concepts/rollup-vs-validium.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ Using Ethereum to store transaction data is generally considered the most secure
1010

1111
Within the rollup category, there are further nuances to storing transaction data on Ethereum. Some rollups post serialized transaction data directly, whereas others post state differences instead. Some rollups use [calldata](https://docs.soliditylang.org/en/v0.8.26/types.html#data-location) to store transaction data, while others use more recent Ethereum features such as Blobs, introduced in [EIP-4844](https://www.eip4844.com/).
1212

13-
The CDK provides full flexibility to developers to choose what to do with transaction data, including the ability to build rollups that store data on Ethereum as a rollup like the Polygon zkEVM.
13+
The CDK provides full flexibility to developers to choose what to do with transaction data, including the ability to build rollups that store data on Ethereum as a rollup like the Polygon zkEVM.
14+
15+
!!! note
16+
Currently, the rollup mode of Polygon CDK does not support BLOB mode (EIP4844), but this functionality is coming soon.
1417

1518
## Validiums
1619

@@ -61,4 +64,4 @@ Below is a breakdown of the technical differences between a zkEVM rollup and val
6164
## Further reading
6265

6366
- [Ethereum documentation: rollups](https://ethereum.org/en/developers/docs/scaling/#rollups)
64-
- [Ethereum documentation: validiums](https://ethereum.org/en/developers/docs/scaling/validium/)
67+
- [Ethereum documentation: validiums](https://ethereum.org/en/developers/docs/scaling/validium/)

docs/cdk/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ hide:
3030
<div class="grid-item">
3131
<a href="./getting-started">
3232
<div class="product-list-item-header">
33-
<div class="feature-card-heading">Try the CDK Locally</div>
33+
<div class="feature-card-heading">Try the CDK locally</div>
3434
</div>
3535
<p class="feature-paragraph">Get started by deploying a chain with the CDK on your local machine.</p>
3636
</a>
3737
</div>
3838
<div class="grid-item">
3939
<a href="./concepts/layer2s">
4040
<div class="product-list-item-header">
41-
<div class="feature-card-heading">CDK Concepts</div>
41+
<div class="feature-card-heading">CDK concepts</div>
4242
</div>
4343
<p class="feature-paragraph">Learn the concepts behind the CDK.</p>
4444
</a>
4545
</div>
4646
<div class="grid-item">
4747
<a href="./architecture/cdk-zkevm">
4848
<div class="product-list-item-header">
49-
<div class="feature-card-heading">CDK Architecture</div>
49+
<div class="feature-card-heading">CDK architecture</div>
5050
</div>
5151
<p class="feature-paragraph">Dive deeper into the components of a CDK chain and how they interact.</p>
5252
</a>
@@ -62,7 +62,7 @@ hide:
6262
<div class="grid-item">
6363
<a href="https://discord.com/invite/0xpolygonRnD" target="_blank">
6464
<div class="product-list-item-header">
65-
<div class="feature-card-heading">Join the Dev Community</div>
65+
<div class="feature-card-heading">Join the dev community</div>
6666
</div>
6767
<p class="feature-paragraph">Join our developer Discord server to ask questions and get help.</p>
6868
</a>

overrides/404.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{% extends "main.html" %}
2+
3+
{% block content %}
4+
<h1>404 - Not found</h1>
5+
{% endblock %}
6+
7+
{% block htmltitle %}
8+
<title>404 - Not found</title>
9+
{% endblock %}

0 commit comments

Comments
 (0)