@@ -287,42 +287,42 @@ func (c *Client) parseIdentity(identity *wallet.IdentityCertificate) Displayable
287287 avatarURL = identity .DecryptedFields ["profilePhoto" ]
288288 badgeLabel = fmt .Sprintf ("X account certified by %s" , identity .CertifierInfo .Name )
289289 badgeIconURL = identity .CertifierInfo .IconUrl
290- badgeClickURL = "https://socialcert.net" // TODO Make a specific page for this.
290+ badgeClickURL = "https://socialcert.net"
291291
292292 case KnownIdentityTypes .DiscordCert :
293293 name = identity .DecryptedFields ["userName" ]
294294 avatarURL = identity .DecryptedFields ["profilePhoto" ]
295295 badgeLabel = fmt .Sprintf ("Discord account certified by %s" , identity .CertifierInfo .Name )
296296 badgeIconURL = identity .CertifierInfo .IconUrl
297- badgeClickURL = "https://socialcert.net" // TODO Make a specific page for this.
297+ badgeClickURL = "https://socialcert.net"
298298
299299 case KnownIdentityTypes .EmailCert :
300300 name = identity .DecryptedFields ["email" ]
301301 avatarURL = "XUTZxep7BBghAJbSBwTjNfmcsDdRFs5EaGEgkESGSgjJVYgMEizu"
302302 badgeLabel = fmt .Sprintf ("Email certified by %s" , identity .CertifierInfo .Name )
303303 badgeIconURL = identity .CertifierInfo .IconUrl
304- badgeClickURL = "https://socialcert.net" // TODO Make a specific page for this.
304+ badgeClickURL = "https://socialcert.net"
305305
306306 case KnownIdentityTypes .PhoneCert :
307307 name = identity .DecryptedFields ["phoneNumber" ]
308308 avatarURL = "XUTLxtX3ELNUwRhLwL7kWNGbdnFM8WG2eSLv84J7654oH8HaJWrU"
309309 badgeLabel = fmt .Sprintf ("Phone certified by %s" , identity .CertifierInfo .Name )
310310 badgeIconURL = identity .CertifierInfo .IconUrl
311- badgeClickURL = "https://socialcert.net" // TODO Make a specific page for this.
311+ badgeClickURL = "https://socialcert.net"
312312
313313 case KnownIdentityTypes .IdentiCert :
314314 name = fmt .Sprintf ("%s %s" , identity .DecryptedFields ["firstName" ], identity .DecryptedFields ["lastName" ])
315315 avatarURL = identity .DecryptedFields ["profilePhoto" ]
316316 badgeLabel = fmt .Sprintf ("Government ID certified by %s" , identity .CertifierInfo .Name )
317317 badgeIconURL = identity .CertifierInfo .IconUrl
318- badgeClickURL = "https://identicert.me" // TODO Make a specific page for this.
318+ badgeClickURL = "https://identicert.me"
319319
320320 case KnownIdentityTypes .Registrant :
321321 name = identity .DecryptedFields ["name" ]
322322 avatarURL = identity .DecryptedFields ["icon" ]
323323 badgeLabel = fmt .Sprintf ("Entity certified by %s" , identity .CertifierInfo .Name )
324324 badgeIconURL = identity .CertifierInfo .IconUrl
325- badgeClickURL = "https://projectbabbage.com/docs/registrant" // TODO: Make this doc page exist
325+ badgeClickURL = "https://projectbabbage.com/docs/registrant"
326326
327327 case KnownIdentityTypes .CoolCert :
328328 if identity .DecryptedFields ["cool" ] == "true" {
@@ -336,14 +336,14 @@ func (c *Client) parseIdentity(identity *wallet.IdentityCertificate) Displayable
336336 avatarURL = "XUT4bpQ6cpBaXi1oMzZsXfpkWGbtp2JTUYAoN7PzhStFJ6wLfoeR"
337337 badgeLabel = "Represents the ability for anyone to access this information."
338338 badgeIconURL = "XUUV39HVPkpmMzYNTx7rpKzJvXfeiVyQWg2vfSpjBAuhunTCA9uG"
339- badgeClickURL = "https://projectbabbage.com/docs/anyone-identity" // TODO: Make this doc page exist
339+ badgeClickURL = "https://projectbabbage.com/docs/anyone-identity"
340340
341341 case KnownIdentityTypes .Self :
342342 name = "You"
343343 avatarURL = "XUT9jHGk2qace148jeCX5rDsMftkSGYKmigLwU2PLLBc7Hm63VYR"
344344 badgeLabel = "Represents your ability to access this information."
345345 badgeIconURL = "XUUV39HVPkpmMzYNTx7rpKzJvXfeiVyQWg2vfSpjBAuhunTCA9uG"
346- badgeClickURL = "https://projectbabbage.com/docs/self-identity" // TODO: Make this doc page exist
346+ badgeClickURL = "https://projectbabbage.com/docs/self-identity"
347347
348348 default :
349349 name = DefaultIdentity .Name
0 commit comments