-
Notifications
You must be signed in to change notification settings - Fork 0
/
walletData.js
85 lines (83 loc) · 2.09 KB
/
walletData.js
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
/*========== Criteria ==========
Control
Validation
Transparency
Environment
Privacy
Fees
*/
/* ========== Features ==========
2fa
Bech32
Full Node
Hardware Wallet
Legacy Addresses
Lighting
Multisig
SegWit
*/
export const walletData = [
{
wallet: "Atomic Wallet",
logo: "/Assets/wallet_menu_windows.svg",
operatingSystem: ["windows", "linux", "macos", "android", "ios"],
userType: ["new"],
criteria: ["selfCustodial"],
features: ["2fa"],
},
{
wallet: "BitPay",
logo: "/Assets/wallet_menu_windows.svg",
operatingSystem: ["windows", "linux", "macos", "android", "ios"],
userType: ["new", "experienced"],
criteria: ["control"],
features: ["2fa"],
},
{
wallet: "Coinbase Wallet app",
logo: "/Assets/wallet_menu_windows.svg",
operatingSystem: ["android", "ios"],
userType: ["experienced"],
criteria: ["selfCustodial"],
features: ["2fa", "browserWallet", "api"],
},
{
wallet: "Doge Wallet",
logo: "/Assets/wallet_menu_windows.svg",
operatingSystem: ["windows", "linux", "macos"],
userType: ["experienced"],
criteria: ["selfCustodial"],
features: ["importWallet", "browserWallet", "openSource"],
},
{
wallet: "DogeChain",
logo: "/Assets/wallet_menu_windows.svg",
operatingSystem: ["windows", "linux", "macos"],
userType: ["experienced"],
criteria: ["selfCustodial"],
features: ["importWallet", "browserWallet", "openSource"],
},
{
wallet: "Dogecoin Core",
logo: "/Assets/wallet_menu_windows.svg",
operatingSystem: ["windows", "linux", "macos"],
userType: ["experienced", "new"],
criteria: ["control", "validation", "transparency", "privacy", "fees"],
features: [
"2fa",
"api",
"fullNode",
"importWallet",
"multiSig",
"openSource",
],
},
{
wallet: "Ledger",
logo: "/Assets/wallet_menu_windows.svg",
operatingSystem: ["hardware"],
userType: ["experienced"],
criteria: ["control", "validation", "environment", "privacy", "fees"],
features: ["importWallet", "browserWallet", "openSource"],
},
];