-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Added the section clarifying the network maturity criteria #14954
Merged
+187
−0
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d60fdea
Feat: Added the section clarifying the network maturity criteria
LifeofDan-EL ca7acf1
Added back <BasePageProps> in networks.tsx
LifeofDan-EL 5f66d31
Made review changes.
LifeofDan-EL c1a1aea
use ExpandableCard
pettinarip 501f39c
use Link component
pettinarip 9af3b03
reuse Table component to define the table
pettinarip 02419da
Merge branch 'dev' into website-update
pettinarip File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
import InlineLink from "./ui/Link" | ||
import { | ||
Table, | ||
TableBody, | ||
TableCell, | ||
TableHead, | ||
TableHeader, | ||
TableRow, | ||
} from "./ui/table" | ||
import ExpandableCard from "./ExpandableCard" | ||
|
||
import DevelopingImage from "@/public/images/network-maturity/developing.svg" | ||
import EmergingImage from "@/public/images/network-maturity/emerging.svg" | ||
import MaturingImage from "@/public/images/network-maturity/maturing.svg" | ||
import RobustImage from "@/public/images/network-maturity/robust.svg" | ||
|
||
const NetworkMaturity = () => { | ||
return ( | ||
<div className="mx-9 mt-10"> | ||
<ExpandableCard title="Network maturity explained"> | ||
<div> | ||
<div className="space-y-4"> | ||
<p> | ||
We review the network’s progress towards{" "} | ||
<InlineLink href="https://medium.com/l2beat/introducing-stages-a-framework-to-evaluate-rollups-maturity-d290bb22befe"> | ||
Ethereum alignment | ||
</InlineLink>{" "} | ||
(<strong>rollup stages 0-2</strong>),{" "} | ||
<strong>total value locked (TVL)</strong>, | ||
<strong> time live in production</strong>, and{" "} | ||
<strong>risk considerations</strong>. These levels help track | ||
network development and provide a standardized way for the | ||
community to evaluate progress. | ||
</p> | ||
<p> | ||
Technical progress alone is not enough, user adoption and age are | ||
essential part of the overall strength and maturity on any | ||
network. | ||
</p> | ||
</div> | ||
|
||
<Table className="mt-4 w-full max-w-[760px]"> | ||
<TableHeader> | ||
<TableRow> | ||
<TableHead className="w-1/2">Maturity</TableHead> | ||
<TableHead className="w-1/2">Requirements</TableHead> | ||
</TableRow> | ||
</TableHeader> | ||
<TableBody> | ||
<TableRow> | ||
<TableCell className="border-none bg-[#3C4CEB] align-middle text-white"> | ||
<div className="flex items-center gap-2"> | ||
<RobustImage /> | ||
<strong>Robust</strong> | ||
</div> | ||
</TableCell> | ||
<TableCell> | ||
• Stage 2<br />• At least $1B TVL | ||
</TableCell> | ||
</TableRow> | ||
|
||
<TableRow> | ||
<TableCell className="bg-[#6995F7] align-middle text-white"> | ||
<div className="flex items-center gap-2"> | ||
<MaturingImage /> | ||
<strong>Maturing</strong> | ||
</div> | ||
</TableCell> | ||
<TableCell> | ||
• Stage 1<br />• At least $150M TVL | ||
<br />• 6+ months live in production | ||
</TableCell> | ||
</TableRow> | ||
|
||
<TableRow> | ||
<TableCell className="bg-[#CADFFB] align-middle text-black"> | ||
<div className="flex items-center gap-2"> | ||
<DevelopingImage /> | ||
<strong>Developing</strong> | ||
</div> | ||
</TableCell> | ||
<TableCell> | ||
• Stage 0<br />• Risk assessment: 3/5 (L2beat) | ||
<br />• At least $150M TVL | ||
<br />• 6+ months live in production | ||
</TableCell> | ||
</TableRow> | ||
|
||
<TableRow> | ||
<TableCell className="bg-[#E8F1FF] align-middle text-black"> | ||
<div className="flex items-center gap-2"> | ||
<EmergingImage /> | ||
<strong>Emerging</strong> | ||
</div> | ||
</TableCell> | ||
<TableCell> | ||
• Stage 0<br />• Risk assessment: 2/5 (L2beat) | ||
<br />• At least $150M TVL or 6+ months live in production | ||
</TableCell> | ||
</TableRow> | ||
</TableBody> | ||
</Table> | ||
</div> | ||
</ExpandableCard> | ||
</div> | ||
) | ||
} | ||
|
||
export default NetworkMaturity |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add empty space between end of sentence and information in brackets?
Ethereum alignment(rollup stages 0-2) -> Ethereum alignment (rollup stages 0-2)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching that, I have made both changes and pushed a commit right away.