-
Notifications
You must be signed in to change notification settings - Fork 4
/
format.json
37 lines (37 loc) · 902 Bytes
/
format.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
[
{
"name": "Bitcoin",
"symbol": "BTC",
"alternative_symbol": "XBT",
"wallet_regexp": "\\b([13][0-9A-Za-z]{24,35})\\b",
"group": "1"
},
{
"name": "Ethereum",
"symbol": "ETH",
"alternative_symbol": " ",
"wallet_regexp": "\\b(0x)?([0-9a-fA-F]{40})\\b",
"group": "2"
},
{
"name": "litecoin",
"symbol": "LTC",
"alternative_symbol": " ",
"wallet_regexp": "\\b([LM][0-9A-Za-z]{24,35})\\b",
"group": "1"
},
{
"name": "monero",
"symbol": "XMR",
"alternative_symbol": " ",
"wallet_regexp": "\\b(4[0-9A-Za-z]{94})\\b",
"group": "1"
},
{
"name": "dogecoin",
"symbol": "DOGE",
"alternative_symbol": " ",
"wallet_regexp": "\\b(D[0-9A-Z][0-9A-Za-z]{32})\\b",
"group": "1"
}
]