Skip to content

Commit ace3fc5

Browse files
committed
draft flows
1 parent 6b03d4f commit ace3fc5

36 files changed

+574
-103
lines changed

learn/fundamentals/01.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Cryptography
3+
description: Learn about basic cryptography, hashing, encryption and public-key cryptography.
4+
type: learn
5+
---
6+
7+
Learn about basic cryptography, hashing, encryption and public-key cryptography.

learn/fundamentals/02.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Blocks
3+
description: What are blocks and how are they linked together.
4+
type: learn
5+
---
6+
7+
What are blocks and how are they linked together.

learn/fundamentals/03.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Transactions
3+
description: Learn all about transactions
4+
type: learn
5+
---
6+
7+
Learn all about transactions

learn/fundamentals/04.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Keys
3+
description: Public-/private key pairs control ownership of your wallet and funds.
4+
type: learn
5+
---
6+
7+
Public-/private key pairs control ownership of your wallet and funds.

learn/fundamentals/metadata.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"version": 1,
33
"name": "Fundamentals",
44
"description": "This journey helps you guide through some of the fundamental aspects of blockchain and Web3 development. You'll learn about basic cryptography, blocks, transactions, keys and how that's all linked together.",
5+
"level": "Beginner",
6+
"tags": ["Web3", "Blockchain", "Cryptography"],
57
"image": "",
68
"website": "https://www.useweb3.xyz/",
79
"twitter": "useWeb3",

learn/introduction/03_quizzes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ description: Quizzes
44
type: quiz
55
---
66

7-
Quizzes
7+
Quizzes will allow you to test if the previous learning modules were correctly understood.

learn/introduction/metadata.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"version": 1,
33
"name": "Introduction",
44
"description": "This starter module gets you up and running with the learning modules of useWeb3.",
5+
"level": "All",
6+
"tags": ["Fundamentals"],
57
"image": "",
68
"website": "https://www.useweb3.xyz/",
79
"twitter": "useWeb3"

learn/wallets/01.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
---
2-
name: The keys to your digital future
2+
name: What's an Ethereum wallet?
33
description: Wallets give access to your funds and Ethereum applications.
44
type: learn
55
---
66

7-
# What's an Ethereum wallet?
8-
97
Ethereum wallets are applications that let you interact with your Ethereum account. Think of it like an internet banking app – without the bank. Your wallet lets you read your balance, send transactions and connect to applications.
108

119
You need a wallet to send funds and manage your ETH.

learn/wallets/02.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,4 @@ description: Wallets make use of public-private key pairs to control ownership o
44
type: learn
55
---
66

7-
# Public-Key Cryptography
8-
9-
...
7+
Public-key cryptography, or asymmetric cryptography, is a cryptographic system that uses pairs of keys. Each pair consists of a public key (which may be known to others) and a private key (which may not be known by anyone except the owner).[1] The generation of such key pairs depends on cryptographic algorithms which are based on mathematical problems termed one-way functions. Effective security requires keeping the private key private; the public key can be openly distributed without compromising security.

learn/wallets/03.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
2-
name: Question 1
3-
description: Answer this question
2+
name: Derive a wallet address
3+
description: How to derive a wallet address from a secret recovery phrase.
44
type: quiz
5+
note: NEVER SHARE YOUR SECRET RECOVERY PHRASE WITH ANYONE! Losing access to your secret recovery phrase, or private key means you'll lose access to your account, ETH, NFTs and other funds.
56
---
67

7-
# What is ...
8+
Consider you have the following secret ('mnemonic') phrase.
89

9-
The public key behind private key..
10+
`announce room limb pattern dry unit scale effort smooth jazz weasel alcohol`
1011

11-
..
12-
13-
*NOTE: NEVER SHARE YOUR PRIVATE KEY WITH ANYONE! Copy and pasting a private key is a bad practice and should only be done for this exercise. Losing access to your private key means you'll lose access to your account, ETH, NFTs and other funds.
12+
What would be the corresponding address on it's first, default derivation path?

0 commit comments

Comments
 (0)