-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathquiz.json
76 lines (76 loc) · 1.82 KB
/
quiz.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
{
"questions":[
{
"text":"What enables you to use your account after you lost your device?",
"answers":[
{
"text":"My password."
},
{
"text":"A call to the support hotline that will ask me some personal questions."
},
{
"text":"Keystore file and Password",
"correct":true
},
{
"text":"Profanity."
}
]
},
{
"text":"How many words from your 12 word mnemonic do you need to access your account?",
"answers":[
{
"text":"6"
},
{
"text":"7"
},
{
"text":"9"
},
{
"text":"12",
"correct":true
}
]
},
{
"text":"Who can send funds from your wallet?",
"answers":[
{
"text":"The wallet company"
},
{
"text":"The Ethereum Foundation"
},
{
"text":"The private key holder",
"correct":true
},
{
"text":"The NSA"
}
]
},
{
"text":"Who can see your wallet's funds and transactions?",
"answers":[
{
"text":"Only the private key holder"
},
{
"text":"Only you"
},
{
"text":"Anyone you sent a transaction to"
},
{
"text":"Anyone with access to the blockchain",
"correct":true
}
]
}
]
}