Skip to content

Commit 8594002

Browse files
committed
convert all markdown style props to objects
required for Next.js migration
1 parent bc70e6b commit 8594002

File tree

70 files changed

+84
-84
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+84
-84
lines changed

src/content/deprecated-software/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This section is for software for the desktop, command line, or server which has
2323

2424
<p align="center">
2525
<img width="300" height="180"
26-
style="background-color:#fff; padding:0px 10px 0px 10px;"
26+
style={{ backgroundColor: "#fff", padding: "0px 10px 0px 10px" }}
2727
src="https://miro.medium.com/max/1400/1*npKIT4jX5WwlRZmcBPusig.png" />
2828
</p>
2929

@@ -49,7 +49,7 @@ OpenEthereum was built for miners, service providers, and exchanges which need f
4949

5050
<p align="center">
5151
<img width="300" height="150"
52-
style="background-color:#fff; padding:0px 10px 0px 10px;"
52+
style={{ backgroundColor: "#fff", padding: "0px 10px 0px 10px" }}
5353
src="https://user-images.githubusercontent.com/47108/53807420-80433380-3f1d-11e9-80cd-967aabb26506.png" />
5454
</p>
5555

@@ -75,7 +75,7 @@ Grid could be seen as a successor to Mist, also a standalone, JavaScript-based d
7575

7676
<p align="center">
7777
<img width="500" height="350"
78-
style="background-color:#fff; padding:0px 10px 0px 10px;"
78+
style={{ backgroundColor: "#fff", padding: "0px 10px 0px 10px" }}
7979
src="https://user-images.githubusercontent.com/7814134/78335917-d0f8e600-758e-11ea-91e1-2433eaaef6f4.png" />
8080
</p>
8181

@@ -101,7 +101,7 @@ Ethereum Studio was developed to provide users with an IDE that had a built-in E
101101

102102
<p align="center">
103103
<img width="600" height="450"
104-
style="background-color:#fff; padding:0px 10px 0px 10px;"
104+
style={{ backgroundColor: "#fff", padding: "0px 10px 0px 10px" }}
105105
src="https://miro.medium.com/max/700/0*L222OAjPhe_KL1Iy." />
106106
</p>
107107

@@ -133,7 +133,7 @@ See the [Ethereum Wallets](/wallets/) page on ethereum.org.
133133

134134
<p align="center">
135135
<img width="120" height="200"
136-
style="background-color:#fff; padding:0px 10px 0px 10px;"
136+
style={{ backgroundColor: "#fff", padding: "0px 10px 0px 10px" }}
137137
src="https://mist.ethereum.org/images/logo@2x.png" />
138138
</p>
139139

@@ -269,7 +269,7 @@ ruby-ethereum was an Ethereum client written in Ruby. It was deprecated around 2
269269

270270
<p align="center">
271271
<img width="240" height="180"
272-
style="background-color:#fff; padding:0px 10px 0px 10px;"
272+
style={{ backgroundColor: "#fff", padding: "0px 10px 0px 10px" }}
273273
src="https://davidgerard.co.uk/blockchain/wp-content/uploads/2017/11/parity-logo.png" />
274274
</p>
275275

@@ -299,7 +299,7 @@ The ["Spin up your own Ethereum node"](/developers/docs/nodes-and-clients/run-a-
299299

300300
<p align="center">
301301
<img width="230" height="150"
302-
style="background-color:#fff; padding:0px 10px 0px 10px;"
302+
style={{ backgroundColor: "#fff", padding: "0px 10px 0px 10px" }}
303303
src="https://trinity.ethereum.org/images/trinity-logo-icon.svg" />
304304
</p>
305305

@@ -331,7 +331,7 @@ This section is for services deployed to Ethereum Mainnet and other EVM-based ne
331331

332332
<p align="center">
333333
<img width="400" height="267"
334-
style="background-color:#fff; padding:0px 0px 0px 0px;"
334+
style={{ backgroundColor: "#fff", padding: "0px 0px 0px 0px" }}
335335
src="https://miro.medium.com/max/1838/0*kA6PGbaYHLJOI66O" />
336336
</p>
337337

@@ -383,7 +383,7 @@ While The DAO failed, the concept endured. The basic technical, social, and gove
383383

384384
<p align="center">
385385
<img width="562" height="124"
386-
style="background-color:#fff; padding:0px 10px 0px 10px;"
386+
style={{ backgroundColor: "#fff", padding: "0px 10px 0px 10px" }}
387387
src="https://cryptodiffer.com/src/images/person/SparkPool-cryptodiffer.png" />
388388
</p>
389389

src/content/roadmap/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The roadmap is mostly the result of years of work by researchers and developers
6666
</RoadmapImageContent>
6767

6868
<InfoBanner mb={8}>
69-
<h4 style="margin-top: 0">What was ETH2?</h4>
69+
<h4 style={{ marginTop: 0 }}>What was ETH2?</h4>
7070

7171
<p>The term 'Eth2' was commonly used to describe the future of Ethereum before the switch to proof-of-stake but it was <strong>phased out in favor of more precise terminology.</strong> It was originally used to differentiate the Ethereum network before the switch to proof-of-stake and the network after, or sometimes to refer to the different Ethereum clients (execution clients were sometimes referred to as ETH1 clients and consensus clients were sometimes referred to as ETH2 clients).</p>
7272

src/content/roadmap/scaling/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ template: roadmap
1010
Ethereum is scaled using [layer 2s](/layer-2/#rollups) (also known as rollups), which batch transactions together and send the output to Ethereum. Even though rollups are up to eight times less expensive than Ethereum Mainnet, it's possible to optimize rollups further to reduce costs for end users. Rollups also rely on some centralized components that developers can remove as the rollups mature.
1111

1212
<InfoBanner mb={8} title="Transaction costs">
13-
<ul style="margin-bottom: 0">
13+
<ul style={{ marginBottom: 0 }}>
1414
<li>Today’s rollups are <strong>~3-8x</strong> cheaper than Ethereum layer 1</li>
1515
<li>ZK-rollups will soon lower fees by <strong>~40-100x</strong></li>
1616
<li>Upcoming changes to Ethereum will provide another <strong>~100-1000x</strong> of scaling</li>
17-
<li style="margin-bottom: 0">Users should benefit from transactions <strong>costing less than $0.001</strong></li>
17+
<li style={{ marginBottom: 0 }}>Users should benefit from transactions <strong>costing less than $0.001</strong></li>
1818
</ul>
1919
</InfoBanner>
2020

src/content/staking/pools/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ There are a variety of options available to help you with your setup. Use the ab
5353

5454
<StakingProductsCardGrid category="pools" />
5555

56-
Please note the importance of choosing a service that takes [client diversity](/developers/docs/nodes-and-clients/client-diversity/) seriously, as it improves the security of the network, and limits your risk. Services that have evidence of limiting majority client use are indicated with <em style="text-transform: uppercase;">"execution client diversity"</em> and <em style="text-transform: uppercase;">"consensus client diversity."</em>
56+
Please note the importance of choosing a service that takes [client diversity](/developers/docs/nodes-and-clients/client-diversity/) seriously, as it improves the security of the network, and limits your risk. Services that have evidence of limiting majority client use are indicated with <em style={{ textTransform: "uppercase" }}>"execution client diversity"</em> and <em style={{ textTransform: "uppercase" }}>"consensus client diversity."</em>
5757

5858
Have a suggestion for a staking tool we missed? Check out our [product listing policy](/contributing/adding-staking-products/) to see if it would be a good fit, and to submit it for review.
5959

src/content/staking/saas/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Below are some available SaaS provider. Use the above indicators to help guide y
4747

4848
<StakingProductsCardGrid category="saas" />
4949

50-
Please note the importance of supporting [client diversity](/developers/docs/nodes-and-clients/client-diversity/) as it improves the security of the network, and limits your risk. Services that have evidence of limiting majority client use are indicated with <em style="text-transform: uppercase;">"execution client diversity"</em> and <em style="text-transform: uppercase;">"consensus client diversity."</em>
50+
Please note the importance of supporting [client diversity](/developers/docs/nodes-and-clients/client-diversity/) as it improves the security of the network, and limits your risk. Services that have evidence of limiting majority client use are indicated with <em style={{ textTransform: "uppercase" }}>"execution client diversity"</em> and <em style={{ textTransform: "uppercase" }}>"consensus client diversity."</em>
5151

5252
#### Key Generators
5353

src/content/staking/solo/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ There are a variety of options available to help you with your setup. Use the ab
109109

110110
<StakingProductsCardGrid category="nodeTools" />
111111

112-
Please note the importance of choosing a [minority client](/developers/docs/nodes-and-clients/client-diversity/) as it improves the security of the network, and limits your risk. Tools that allow you to setup minority client are denoted as <em style="text-transform: uppercase;">"multi-client."</em>
112+
Please note the importance of choosing a [minority client](/developers/docs/nodes-and-clients/client-diversity/) as it improves the security of the network, and limits your risk. Tools that allow you to setup minority client are denoted as <em style={{ textTransform: "uppercase" }}>"multi-client."</em>
113113

114114
#### Key Generators
115115

src/content/translations/bn/staking/pools/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ summaryPoints:
5353

5454
<StakingProductsCardGrid category="pools" />
5555

56-
দয়া করে মনে রাখবেন এমন একটি পরিষেবা বেছে নেওয়ার গুরুত্ব যা [ক্লায়েন্ট বৈচিত্র্য](/developers/docs/nodes-and-clients/client-diversity/) কে গুরুত্ব সহকারে নেয়, কারণ এটি নেটওয়ার্কের নিরাপত্তা উন্নত করে এবং আপনার ঝুঁকি সীমিত করে। যে পরিষেবাগুলিতে সংখ্যাগরিষ্ঠ ক্লায়েন্টের ব্যবহার সীমিত করার প্রমাণ রয়েছে সেগুলি দিয়ে নির্দেশিত হয় <em style="text-transform: uppercase;">"এক্সিকিউশন ক্লায়েন্ট বৈচিত্র্য"</em> এবং <em style="text-transform: uppercase;">"কনসেনসাস ক্লায়েন্ট বৈচিত্র্য।"</em>
56+
দয়া করে মনে রাখবেন এমন একটি পরিষেবা বেছে নেওয়ার গুরুত্ব যা [ক্লায়েন্ট বৈচিত্র্য](/developers/docs/nodes-and-clients/client-diversity/) কে গুরুত্ব সহকারে নেয়, কারণ এটি নেটওয়ার্কের নিরাপত্তা উন্নত করে এবং আপনার ঝুঁকি সীমিত করে। যে পরিষেবাগুলিতে সংখ্যাগরিষ্ঠ ক্লায়েন্টের ব্যবহার সীমিত করার প্রমাণ রয়েছে সেগুলি দিয়ে নির্দেশিত হয় <em style={{ textTransform: "uppercase" }}>"এক্সিকিউশন ক্লায়েন্ট বৈচিত্র্য"</em> এবং <em style={{ textTransform: "uppercase" }}>"কনসেনসাস ক্লায়েন্ট বৈচিত্র্য।"</em>
5757

5858
আমরা মিস করেছি একটি স্টেকিংয়ের টুলস জন্য আপনার পরামর্শ আছে? আমাদের [পণ্য তালিকা নীতি](/contributing/adding-staking-products/) দেখুন এটি উপযুক্ত কিনা তা দেখতে এবং পর্যালোচনার জন্য জমা দিতে।
5959

src/content/translations/bn/staking/saas/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ summaryPoints:
4747

4848
<StakingProductsCardGrid category="saas" />
4949

50-
[ক্লায়েন্ট বৈচিত্র্য](/developers/docs/nodes-and-clients/client-diversity/) সমর্থন করার গুরুত্ব অনুগ্রহ করে মনে রাখবেন কারণ এটি নেটওয়ার্কের নিরাপত্তা উন্নত করে এবং আপনার ঝুঁকি সীমিত করে। যে পরিষেবাগুলিতে সংখ্যাগরিষ্ঠ ক্লায়েন্টের ব্যবহার সীমিত করার প্রমাণ রয়েছে সেগুলি দিয়ে নির্দেশিত হয় <em style="text-transform: uppercase;">"এক্সিকিউশন ক্লায়েন্ট বৈচিত্র্য"</em> এবং <em style="text-transform: uppercase;">"কনসেনসাস ক্লায়েন্ট বৈচিত্র্য।"</em>
50+
[ক্লায়েন্ট বৈচিত্র্য](/developers/docs/nodes-and-clients/client-diversity/) সমর্থন করার গুরুত্ব অনুগ্রহ করে মনে রাখবেন কারণ এটি নেটওয়ার্কের নিরাপত্তা উন্নত করে এবং আপনার ঝুঁকি সীমিত করে। যে পরিষেবাগুলিতে সংখ্যাগরিষ্ঠ ক্লায়েন্টের ব্যবহার সীমিত করার প্রমাণ রয়েছে সেগুলি দিয়ে নির্দেশিত হয় <em style={{ textTransform: "uppercase" }}>"এক্সিকিউশন ক্লায়েন্ট বৈচিত্র্য"</em> এবং <em style={{ textTransform: "uppercase" }}>"কনসেনসাস ক্লায়েন্ট বৈচিত্র্য।"</em>
5151

5252
#### কী জেনারেটর সমূহ
5353

src/content/translations/bn/staking/solo/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ summaryPoints:
109109

110110
<StakingProductsCardGrid category="nodeTools" />
111111

112-
একটি [মাইনরিটি ক্লায়েন্ট](/developers/docs/nodes-and-clients/client-diversity/) বেছে নেওয়া অত্যান্ত গুরুত্বপূর্ণ কারণ এটি নেটওয়ার্কের নিরাপত্তা উন্নত করে এবং আপনার ঝুঁকি সীমিত করে। যে টুলস আপনাকে মাইনরিটি ক্লায়েন্ট সেটআপ করতে দেয় সেগুলি <em style="text-transform: uppercase;">"মাল্টি-ক্লায়েন্ট"</em> হিসাবে চিহ্নিত করা হয়।
112+
একটি [মাইনরিটি ক্লায়েন্ট](/developers/docs/nodes-and-clients/client-diversity/) বেছে নেওয়া অত্যান্ত গুরুত্বপূর্ণ কারণ এটি নেটওয়ার্কের নিরাপত্তা উন্নত করে এবং আপনার ঝুঁকি সীমিত করে। যে টুলস আপনাকে মাইনরিটি ক্লায়েন্ট সেটআপ করতে দেয় সেগুলি <em style={{ textTransform: "uppercase" }}>"মাল্টি-ক্লায়েন্ট"</em> হিসাবে চিহ্নিত করা হয়।
113113

114114
#### কী জেনারেটর সমূহ
115115

src/content/translations/ca/energy-consumption/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Així com a mecanisme de construcció de confiança en la prova de participació
3636

3737
![imatge](energy_use_per_transaction.png)
3838

39-
<p style="text-align: center;"><small><i>Estimació del consum energètic de la prova de treball per tx utilitzada en una figura en base a les <a href="https://blog.ethereum.org/2021/05/18/country-power-no-more/" target="_blank" rel="noopener noreferrer">dades de maig de 2021</a>, al moment d'escriure la mateixa font suggeria un consum de fins a <a href="https://digiconomist.net/ethereum-energy-consumption" target="_blank" rel="noopener noreferrer">175,56 kWh</a></i></small></p>
39+
<p style={{ textTransform: "uppercase" }}><small><i>Estimació del consum energètic de la prova de treball per tx utilitzada en una figura en base a les <a href="https://blog.ethereum.org/2021/05/18/country-power-no-more/" target="_blank" rel="noopener noreferrer">dades de maig de 2021</a>, al moment d'escriure la mateixa font suggeria un consum de fins a <a href="https://digiconomist.net/ethereum-energy-consumption" target="_blank" rel="noopener noreferrer">175,56 kWh</a></i></small></p>
4040

4141
Comparem aquests nombres amb un servei com ara Visa. 100.000 transaccions de Visa utilitzen 149 kWh d'energia<sup>[^2]</sup>. Assumint que la fragmentació o «sharding» s'ha implementat, la tasa actual de transaccions d'Ethereum (15 transaccions per segon) s'incrementaria al menys en 64 vegades (el nombre de «shards»), sense comptabilitzar les optimitzacions adicionals dels «rollups». Una estimació realista per a un Ethereum posfusió i fragmentat amb «rollups» és de [25.000 - 100.000](https://twitter.com/VitalikButerin/status/1312905884549300224?s=20) transaccions per segon. Podem utilitzar aquesta informació per a estimar una quantitat màxima i mínima de consum energètic per cada 100.000 transaccions.
4242

0 commit comments

Comments
 (0)