Skip to content

Commit a608f10

Browse files
committed
fix: wallet links format
use the correct format for links. example: ```json "links": [ { "type": "Website", "url": "https://zeusln.com/" } ], ```
1 parent 0fe037a commit a608f10

1 file changed

Lines changed: 18 additions & 3 deletions

File tree

lngal_data.json

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,12 @@
223223
{
224224
"project_name": "Electrum",
225225
"project_level": "Non-Custodial Desktop Wallet",
226-
"links": ["https://electrum.org/"],
226+
"links": [
227+
{
228+
"type": "Website",
229+
"url": "https://electrum.org/"
230+
}
231+
],
227232
"tags": ["Desktop", "Non-Custodial", "Python"]
228233
},
229234
{
@@ -252,13 +257,23 @@
252257
{
253258
"project_name": "Exodus Wallet",
254259
"project_level": "Non-Custodial Mobile Wallet",
255-
"links": ["https://exodus.com/"],
260+
"links": [
261+
{
262+
"type": "Website",
263+
"url": "https://exodus.com/"
264+
}
265+
],
256266
"tags": ["Self-Custodial", "User-Friendly", "Mobile","Hot-wallet"]
257267
},
258268
{
259269
"project_name": "Zeus Wallet",
260270
"project_level": "Non-Custodial Mobile Wallet",
261-
"links": ["https://zeusln.com/"],
271+
"links": [
272+
{
273+
"type": "Website",
274+
"url": "https://zeusln.com/"
275+
}
276+
],
262277
"tags": ["Non-Custodial", "Remote Node Control"]
263278
}
264279
]

0 commit comments

Comments
 (0)