Skip to content

Commit 33e13e0

Browse files
authored
chore: add lesson title and contributors (#251)
1 parent dd17e67 commit 33e13e0

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

data/contributors.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ export const contributors: ContributorLookup = {
3333
},
3434
wolovim: {
3535
displayName: 'wolovim',
36+
moreInfoUrl: 'https://twitter.com/wolovim',
37+
avatarUrl: 'https://avatars.githubusercontent.com/u/3621728?v=4',
3638
},
3739
_7i7o: {
3840
displayName: '7i7o',

pages/lessons/fundamentals/wolovim-part-1.mdx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ icons:
99
]
1010
---
1111

12-
# **A Developer's Guide to Ethereum, Pt. 1**
12+
import { LessonHeader } from '../../../components/mdx/LessonHeader'
13+
14+
<LessonHeader
15+
title="A Developer's Guide to Ethereum, Pt. 1"
16+
/>
1317

1418
So, you’ve heard about this [Ethereum](https://ethereum.org/) thing and are ready to venture down the rabbit hole? This post will quickly cover some blockchain basics, then get you interacting with a simulated Ethereum node – reading block data, checking account balances, and sending transactions. Along the way, we’ll highlight the differences between traditional ways of building apps and this new decentralized paradigm. Some code is included, but the focus is on the concepts, not a final product.
1519

@@ -322,3 +326,11 @@ This seems as good a place as any to take a break. The rabbit hole continues on,
322326
<Callout emoji='💡' size='md' variant='info'>
323327
**Note**: This series is being converted from the [Snake Charmers](https://snakecharmers.ethereum.org/) blog. Part 2 is not on Academy yet, but can be found in its original form [here](https://snakecharmers.ethereum.org/a-developers-guide-to-ethereum-pt-2/).
324328
</Callout>
329+
330+
import { ContributorFooter } from '../../../components/mdx/ContributorFooter'
331+
332+
<ContributorFooter
333+
authors={['wolovim']}
334+
reviewers={['georgemac510', 'piablo']}
335+
contributors={[]}
336+
/>

0 commit comments

Comments
 (0)