-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcourse.json
113 lines (113 loc) · 3.42 KB
/
course.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"courseTitle": "Mesh PBL",
"authors": [
"Mesh and Gimbalabs"
],
"modules": [
{
"id": "100",
"title": "Getting Started With MeshJS",
"slts": [
{
"id": "100.1",
"slt": "I have a Cardano Browser wallet extension installed on my computer."
},
{
"id": "100.2",
"slt": "I have NodeJS installed on my local computer."
},
{
"id": "100.3",
"slt": "I am familiar with some essentials of the React framework, like components, props, and hooks."
},
{
"id": "100.4",
"slt": "I can integrate Mesh into a new Project."
}
]
},
{
"id": "101",
"title": "Browser Wallet Integration",
"slts": [
{
"id": "101.1",
"slt": "I can use Mesh to connect a CIP-30 compliant wallet to a decentralized application."
},
{
"id": "101.2",
"slt": "I can see information about my wallet in my web browser."
},
{
"id": "101.3",
"slt": "I can build a component that lists the assets in my browser wallet."
}
]
},
{
"id": "102",
"title": "Mesh React",
"slts": [
{
"id": "102.1",
"slt": "I can set up Mesh Provider so that I can use Mesh React Components and Hooks."
},
{
"id": "102.2",
"slt": "I can connect or disconnect wallet using useWallet hook."
},
{
"id": "102.3",
"slt": "I can get the connected wallet address using useAddress hook."
},
{
"id": "102.4",
"slt": "I can get a list of assets or tokens in connected wallets using useAssets hook."
},
{
"id": "102.5",
"slt": "I can get information regarding the amount of ADA in lovelace in the connected wallet using useLovelace hook."
},
{
"id": "102.6",
"slt": "I can get information about the connected wallet network using useNetwork hook."
}
]
},
{
"id": "201",
"title": "Transactions",
"slts": []
},
{
"id": "202",
"title": "Minting",
"slts": []
},
{
"id": "203",
"title": "Multi-Sig",
"slts": []
},
{
"id": "204",
"title": "Smart Contract Interactions",
"slts": []
},
{
"id": "205",
"title": "Staking",
"slts": []
},
{
"id": "206",
"title": "Wallet Verification and Message Signing",
"slts": []
},
{
"id": "207",
"title": "App Wallet",
"slts": []
}
]
}