Skip to content

Commit bb7020b

Browse files
committed
execution client detail edits
1 parent 9fe20e5 commit bb7020b

File tree

1 file changed

+19
-32
lines changed

1 file changed

+19
-32
lines changed

lib/ethereum/README.md

Lines changed: 19 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -93,39 +93,26 @@ We will use AWS Cloud9 to execute the subsequent commands. Follow the instructio
9393

9494
Configure your setup.
9595

96-
<!DOCTYPE html>
97-
<html>
98-
<head>
99-
<title>Execution Layer Client</title>
100-
<style>
101-
nav {
102-
display: flex;
103-
justify-content: center;
104-
margin-top: 20px;
105-
}
106-
</style>
107-
</head>
108-
<body>
109-
<nav>
110-
<select id="execution-clients">
96+
**Execution Layer Client Options**
97+
98+
<nav>
99+
<select id="execution-clients">
111100
<option value="">Select an option</option>
112-
<option value="lib/ethereum/geth-noderunners-docs.md">Geth Lighthouse</option>
113-
<option value="lib/ethereum/lighthouse-erigon-noderunners-docs.md">Erigon Lighthouse</option>
114-
<option value="lib/ethereum/prysm-erigon-noderunners-docs.md">Erigon Prysm</option>
115-
</select>
116-
</nav>
117-
118-
<script>
119-
// Add event listener to the dropdown
120-
document.getElementById('my-dropdown').addEventListener('change', function() {
121-
var selectedValue = this.value;
122-
if (selectedValue) {
123-
window.location.href = selectedValue;
124-
}
125-
});
126-
</script>
127-
</body>
128-
</html>
101+
<option value="lib/ethereum/geth-noderunners-docs.md">Geth Lighthouse</option>
102+
<option value="lib/ethereum/lighthouse-erigon-noderunners-docs.md">Erigon Lighthouse</option>
103+
<option value="lib/ethereum/prysm-erigon-noderunners-docs.md">Erigon Prysm</option>
104+
</select>
105+
</nav>
106+
107+
<script>
108+
// Add event listener to the dropdown
109+
document.getElementById('execution-clients').addEventListener('change', function() {
110+
var selectedValue = this.value;
111+
if (selectedValue) {
112+
window.location.href = selectedValue;
113+
}
114+
});
115+
</script>
129116

130117

131118
Create your own copy of `.env` file and edit it:

0 commit comments

Comments
 (0)