Skip to content
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

update energy consumption page #8376

Merged
merged 12 commits into from
Nov 3, 2022
26 changes: 19 additions & 7 deletions src/components/EnergyConsumptionChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,27 +64,39 @@ const EnergyConsumptionChart: React.FC = () => {
color: "#FF0000",
},
{
name: "Gold mining",
name: "Gold mining (Galaxy Digital)",
amount: 240,
color: "#D7B14A",
breakpoint: mediumBreakpoint,
},
{
name: "BTC PoW",
name: "Global data centers",
amount: 200,
color: "#F2A900",
color: "#D7B14A",
breakpoint: mediumBreakpoint,
},
{
name: "ETH PoW",
amount: 112,
color: "#C1B6F5",
name: "Gold mining (CBECI)",
amount: 130,
color: "#D7B14A",
breakpoint: mediumBreakpoint,
},
{
name: "BTC PoW",
amount: 100,
color: "#F2A900",
},
{
name: "Netflix",
amount: 94,
color: "#E50914",
breakpoint: smallBreakpoint,
},
{
name: "ETH PoW",
amount: 78,
color: "#C1B6F5",
},
{
name: "Gaming in the US",
amount: 34,
Expand All @@ -99,7 +111,7 @@ const EnergyConsumptionChart: React.FC = () => {
},
{
name: "ETH PoS",
amount: 0.01,
amount: 0.0026,
wackerow marked this conversation as resolved.
Show resolved Hide resolved
color: "#C1B6F5",
},
]
Expand Down
Loading