Skip to content

Commit 76d28d1

Browse files
authored
Merge pull request #10433 from dmatsuoka/energy_consumption_june_2023
Update energy consumption estimates [Fixes #10371]
2 parents dd00bbd + bdd9acf commit 76d28d1

File tree

2 files changed

+52
-45
lines changed

2 files changed

+52
-45
lines changed

src/components/EnergyConsumptionChart.tsx

Lines changed: 29 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -82,24 +82,24 @@ const EnergyConsumptionChart: React.FC = () => {
8282
base: [
8383
{
8484
name: t("energy-consumption-chart-global-data-centers-label"),
85-
amount: 200,
85+
amount: 190,
8686
color: "#FF0000",
8787
},
8888
{
8989
name: t("energy-consumption-chart-btc-pow-label"),
90-
amount: 131,
90+
amount: 149,
9191
color: "#F2A900",
9292
},
93-
{
94-
name: t("energy-consumption-chart-eth-pow-label"),
95-
amount: 78,
96-
color: "#C1B6F5",
97-
},
9893
{
9994
name: t("energy-consumption-chart-gaming-us-label"),
10095
amount: 34,
10196
color: "#71BB8A",
10297
},
98+
{
99+
name: t("energy-consumption-chart-eth-pow-label"),
100+
amount: 21,
101+
color: "#C1B6F5",
102+
},
103103
{
104104
name: t("energy-consumption-chart-eth-pos-label"),
105105
amount: 0.0026,
@@ -109,27 +109,27 @@ const EnergyConsumptionChart: React.FC = () => {
109109
sm: [
110110
{
111111
name: t("energy-consumption-chart-global-data-centers-label"),
112-
amount: 200,
112+
amount: 190,
113113
color: "#FF0000",
114114
},
115115
{
116-
name: t("energy-consumption-gold-mining-cbeci-label"),
117-
amount: 131,
118-
color: "#F2A900",
116+
name: t("energy-consumption-chart-btc-pow-label"),
117+
amount: 149,
118+
color: "#D7B14A",
119119
},
120120
{
121-
name: t("energy-consumption-chart-btc-pow-label"),
121+
name: t("energy-consumption-gold-mining-cbeci-label"),
122122
amount: 131,
123-
color: "#D7B14A",
123+
color: "#F2A900",
124124
},
125125
{
126126
name: t("energy-consumption-chart-eth-pow-label"),
127-
amount: 78,
127+
amount: 21,
128128
color: "#C1B6F5",
129129
},
130130
{
131131
name: t("energy-consumption-chart-netflix-label"),
132-
amount: 0.451,
132+
amount: 0.457,
133133
color: "#E50914",
134134
},
135135
{
@@ -141,32 +141,37 @@ const EnergyConsumptionChart: React.FC = () => {
141141
md: [
142142
{
143143
name: t("energy-consumption-chart-global-data-centers-label"),
144-
amount: 200,
144+
amount: 190,
145145
color: "#FF0000",
146146
},
147147
{
148-
name: t("energy-consumption-gold-mining-cbeci-label"),
149-
amount: 131,
148+
name: t("energy-consumption-chart-btc-pow-label"),
149+
amount: 149,
150150
color: "#D7B14A",
151151
},
152152
{
153-
name: t("energy-consumption-chart-btc-pow-label"),
153+
name: t("energy-consumption-gold-mining-cbeci-label"),
154154
amount: 131,
155155
color: "#D7B14A",
156156
},
157+
{
158+
name: t("energy-consumption-chart-gaming-us-label"),
159+
amount: 34,
160+
color: "#71BB8A",
161+
},
157162
{
158163
name: t("energy-consumption-chart-eth-pow-label"),
159-
amount: 78,
164+
amount: 21,
160165
color: "#C1B6F5",
161166
},
162167
{
163-
name: t("energy-consumption-chart-gaming-us-label"),
164-
amount: 34,
165-
color: "#71BB8A",
168+
name: "Google",
169+
amount: 19,
170+
color: "#E50914",
166171
},
167172
{
168173
name: t("energy-consumption-chart-netflix-label"),
169-
amount: 0.451,
174+
amount: 0.457,
170175
color: "#E50914",
171176
},
172177
{

0 commit comments

Comments
 (0)