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
12 changes: 12 additions & 0 deletions public/images/network-maturity/developing.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions public/images/network-maturity/emerging.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions public/images/network-maturity/maturing.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions public/images/network-maturity/robust.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -17,31 +17,31 @@ const NetworkMaturityTooltip = ({ maturity }: { maturity: MaturityLevel }) => {
description:
"Fully decentralized and secure network that cannot be tampered with or stopped by any individual or group, including its creators.\n\nThis is a network that fulfills Ethereum's vision of decentralization.",
tag: {
className: "bg-blue-100 text-black border-none",
className: "bg-blue-600 text-white border-none",
},
},
maturing: {
label: "Maturing",
description:
"A network transitioning to being decentralized. A group of actors still may be able to halt the network in extreme situations.",
tag: {
className: "bg-blue-200 text-black border-none",
className: "bg-blue-400 text-white border-none",
},
},
developing: {
label: "Developing",
description:
"A centralized operator runs the network but adds fail-safe features to reduce risks of centralization.",
tag: {
className: "bg-blue-400 text-white border-none",
className: "bg-blue-200 text-black border-none",
},
},
emerging: {
label: "Emerging",
description:
"A centralized operator runs the network. The data is publicly visible on Ethereum to verify whether the operator is being honest.",
tag: {
className: "bg-blue-600 text-white border-none",
className: "bg-blue-100 text-black border-none",
},
},
} as const
Expand Down
Loading