Skip to content
Merged
Show file tree
Hide file tree
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
Binary file added public/images/layer-2/zircuit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/data-layer/mocks/fetch-grow-the-pie-blockspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,12 @@
"social": 0.001,
"token_transfers": 0.15,
"unlabeled": 0.2489
},
"zircuit": {
"nft": 0.0002,
"defi": 0.55,
"social": 0.001,
"token_transfers": 0.18,
"unlabeled": 0.2688
}
}
6 changes: 4 additions & 2 deletions src/data-layer/mocks/fetch-grow-the-pie.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"scroll": 0.0006960238817157083,
"starknet": 0.008022904792072736,
"unichain": 0.000016663839829337946,
"ink": 0.00007565276727613611
"ink": 0.00007565276727613611,
"zircuit": 0.00012345678901234567
},
"activeAddresses": {
"ethereum": 2367780,
Expand All @@ -29,6 +30,7 @@
"scroll": 27214,
"starknet": 173451,
"unichain": 21490,
"ink": 77713
"ink": 77713,
"zircuit": 45000
}
}
12 changes: 12 additions & 0 deletions src/data-layer/mocks/fetch-l2beat.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,18 @@
{ "name": "Exit Window", "sentiment": "bad" },
{ "name": "Proposer Failure", "sentiment": "good" }
]
},
"zircuit": {
"stage": "Stage 0",
"tvl": { "total": 350000000 },
"tvs": { "breakdown": { "total": 350000000 } },
"risks": [
{ "name": "Sequencer Failure", "sentiment": "bad" },
{ "name": "State Validation", "sentiment": "good" },
{ "name": "Data Availability", "sentiment": "good" },
{ "name": "Exit Window", "sentiment": "bad" },
{ "name": "Proposer Failure", "sentiment": "bad" }
]
}
}
}
1 change: 1 addition & 0 deletions src/data/networks/growthepieIds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ export const LAYER2_GROWTHEPIE_IDS: string[] = [
"starknet",
"unichain",
"ink",
"zircuit",
]
17 changes: 17 additions & 0 deletions src/data/networks/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import OptimismLogo from "@/public/images/layer-2/optimism.png"
import ScrollLogo from "@/public/images/layer-2/scroll.png"
import StarknetLogo from "@/public/images/layer-2/starknet.png"
import UnichainLogo from "@/public/images/layer-2/unichain.png"
import ZircuitLogo from "@/public/images/layer-2/zircuit.png"
import ZkSyncEraLogo from "@/public/images/layer-2/zksyncEra.jpg"

export interface Rollup {
Expand Down Expand Up @@ -187,4 +188,20 @@ export const layer2Data: Rollups = [
growthepieLink: "https://www.growthepie.com/chains/ink",
feeToken: ["ETH"],
},
{
l2beatID: "zircuit",
growthepieID: "zircuit",
name: "Zircuit",
chainName: "Zircuit Mainnet",
logo: ZircuitLogo,
networkType: "zk",
description: "page-layer-2-zircuit-description",
website: "https://zircuit.com/",
applicationsLink: "https://www.zircuit.com/ecosystem",
blockExplorerLink: "https://explorer.zircuit.com/",
bridgeLink: "https://bridge.zircuit.com/",
l2BeatLink: "https://l2beat.com/scaling/projects/zircuit",
growthepieLink: "https://www.growthepie.com/chains/zircuit",
feeToken: ["ETH"],
},
]
3 changes: 2 additions & 1 deletion src/intl/en/page-layer-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,6 @@
"page-layer-2-mode-description": "Mode is an OP stack Optimistic Rollup building the AIFi economy.",
"page-layer-2-taiko-description": "Taiko is a decentralized, Ethereum-equivalent ZK-EVM rollup that enables seamless cross-chain communication.",
"page-layer-2-unichain-description": "Unichain is a DeFi-native Ethereum L2, built to be the home for liquidity across chains",
"page-layer-2-ink-description": "Ink is an Ethereum OP Stack layer 2 blockchain designed to be the house of DeFi for the Superchain; a powerful baselayer for deploying innovative DeFi protocols."
"page-layer-2-ink-description": "Ink is an Ethereum OP Stack layer 2 blockchain designed to be the house of DeFi for the Superchain; a powerful baselayer for deploying innovative DeFi protocols.",
"page-layer-2-zircuit-description": "Zircuit is an EVM-compatible ZK Rollup featuring AI-powered Sequencer-Level Security to detect and prevent malicious transactions."
}
4 changes: 4 additions & 0 deletions src/lib/utils/networkMaturity.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
const getMaturityPoints = (l2beatData) => {
if (!l2beatData?.risks) return 0

const data = l2beatData.risks.reduce((acc, curr) => {
return {
...acc,
Expand Down Expand Up @@ -48,6 +50,8 @@ const getMaturityPoints = (l2beatData) => {
}

export const networkMaturity = (l2beatData) => {
if (!l2beatData) return "emerging"

const maturityPoints = getMaturityPoints(l2beatData)

if (
Expand Down