-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201 from 0xPolygon/km/learn-frontpage
Doing the Learn front page and section styling
- Loading branch information
Showing
9 changed files
with
236 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
### Deep-dive into the architecture | ||
## Deep-dive into the architecture | ||
|
||
For a deep dive into the proposed architecture of Polygon 2.0, please read the blog post [here](https://polygon.technology/blog/polygon-2-0-protocol-vision-and-architecture). More details will be forthcoming and added to this section in the coming months. | ||
For a deep dive into the proposed architecture of Polygon 2.0, please read the blog post [here](https://polygon.technology/blog/polygon-2-0-protocol-vision-and-architecture). More details will be forthcoming and added to this section in the coming months. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,58 @@ | ||
The Polygon Knowledge Layer consists of two parts. Firstly, documents that developers need in order to build with Polygon protocols. Secondly, resources necessary for learning about Polygon technologies. | ||
|
||
The Learn section outlines scaling technologies, both live and in-development Polygon protocols, with the intention to display how they will all fit together. | ||
As these scaling technologies go live, details of the concepts will in tandem be documented and published. | ||
|
||
This section gives you a peek into the future, the Polygon 2.0 vision which is community-driven. | ||
|
||
## Polygon 2.0: The basics | ||
|
||
Polygon technologies will help developers build in an elastically scalable and unified ecosystem of ZK-powered Layer 2s on Ethereum, where users can create, program and exchange value. | ||
|
||
The Polygon 2.0 vision is a unified multichain ecosystem. A web of interoperable ZK-powered Ethereum L2s, with near-instant and atomic L2 <> L2 transactions, and designed to empower developers to build without limitations. Developers will choose to build dApps, design and launch dedicated application-specific L2 chains, or migrate existing EVM Layer 1 chains to become an L2. | ||
|
||
The endgame of Polygon 2.0 is for developers to build in an environment that feels and functions more like the internet. This means a blockchain ecosystem that can scale without limit, seamlessly unified, and backed by the decentralization and security of Ethereum. | ||
|
||
### Zero-knowledge is the key | ||
|
||
Fundamentally, building this web of ZK-powered L2s comes down to one challenge: trustless, off-chain computation. In order to scale Ethereum, one needs to preserve Ethereum’s execution logic while making it more efficient. | ||
|
||
The best way to accomplish this goal is through zero-knowledge cryptography as it is capable of providing verifiable proofs that attest to the integrity of off-chain computations. Otherwise, scaling technologies often have to add additional social-economic mechanisms to mediate off-chain computations. The consequence of which is delayed settlement of transactions. | ||
|
||
Polygon 2.0 applies the open source, zero-knowledge scaling technology developed at Polygon Labs, and this will allow Ethereum to scale to the limits of the internet. | ||
|
||
--- | ||
hide: | ||
- navigation | ||
- toc | ||
--- | ||
|
||
<style> | ||
.git-revision-date-localized-plugin, .md-source-file, .md-content__button.md-icon { | ||
display: none; | ||
} | ||
[data-md-color-scheme="default"] { | ||
.md-main, .md-sidebar__scrollwrap { | ||
background-color: #E8E8E8 !important; | ||
} | ||
} | ||
[data-md-color-scheme="slate"] { | ||
.md-main, .md-sidebar__scrollwrap { | ||
background-color: #181818 !important; | ||
} | ||
} | ||
</style> | ||
|
||
<div class="section-wrapper product-section-head"> | ||
<div class="hero-image"><img src="../img/learn/learn.svg" loading="lazy" class="hero-image" style="width: 40%; float: right;"></div> | ||
<div class="hero-left"> | ||
<h1 class="hero-heading">Learn</h1> | ||
<p class="hero-subtext">The Polygon Knowledge Layer consists of two parts. Firstly, tech docs that developers need in order to build with Polygon protocols. Secondly, resources necessary for learning about Polygon technologies.</p> | ||
<p class="hero-subtext">This section gives you a peek into the future, the Polygon 2.0 vision which is community-driven. | ||
</p> | ||
</div> | ||
</div> | ||
<div class="grid-container"> | ||
<div class="grid-item"> | ||
<a href="./liquidity-and-scalability"> | ||
<div class="product-list-item-header"> | ||
<div class="feature-card-heading">Liquidity and scalability</div> | ||
</div> | ||
<p class="feature-paragraph">ZK-powered L2s to unify liquidity across ecosystem and scale on demand.</p> | ||
</a> | ||
</div> | ||
<div class="grid-item"> | ||
<a href="./polygon-protocols"> | ||
<div class="product-list-item-header"> | ||
<div class="feature-card-heading">Polygon 2.0</div> | ||
</div> | ||
<p class="feature-paragraph">Widely-adopted EVM-compatible sidechain designed for low transaction costs and fast transaction times.</p> | ||
</a> | ||
</div> | ||
<div class="grid-item"> | ||
<a href="./deep-dive-arch"> | ||
<div class="product-list-item-header"> | ||
<div class="feature-card-heading">Deep dive into the architecture</div> | ||
</div> | ||
<p class="feature-paragraph">Read the blog for a deeper dive into the upcoming technologies.</p> | ||
</a> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
The Polygon Knowledge Layer consists of two parts. Firstly, documents that developers need in order to build with Polygon protocols. Secondly, resources necessary for learning about Polygon technologies. | ||
|
||
The Learn section gives you a peek into the future, the Polygon 2.0 vision which is community-driven. | ||
|
||
## Polygon 2.0: The basics | ||
|
||
Polygon technologies will help developers build in an elastically scalable and unified ecosystem of ZK-powered Layer 2s on Ethereum, where users can create, program and exchange value. | ||
|
||
The Polygon 2.0 vision is a unified multichain ecosystem. A web of interoperable ZK-powered Ethereum L2s, with near-instant and atomic L2 <> L2 transactions, and designed to empower developers to build without limitations. Developers will choose to build dApps, design and launch dedicated application-specific L2 chains, or migrate existing EVM Layer 1 chains to become an L2. | ||
|
||
The endgame of Polygon 2.0 is for developers to build in an environment that feels and functions more like the internet. This means a blockchain ecosystem that can scale without limit, seamlessly unified, and backed by the decentralization and security of Ethereum. | ||
|
||
### Zero-knowledge is the key | ||
|
||
Fundamentally, building this web of ZK-powered L2s comes down to one challenge: trustless, off-chain computation. In order to scale Ethereum, one needs to preserve Ethereum’s execution logic while making it more efficient. | ||
|
||
The best way to accomplish this goal is through zero-knowledge cryptography as it is capable of providing verifiable proofs that attest to the integrity of off-chain computations. Otherwise, scaling technologies often have to add additional social-economic mechanisms to mediate off-chain computations. The consequence of which is delayed settlement of transactions. | ||
|
||
Polygon 2.0 applies the open source, zero-knowledge scaling technology developed at Polygon Labs, and this will allow Ethereum to scale to the limits of the internet. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters