amethyst/app/src/main/java/com/vitorpamplona/amethyst/ui/note/PubKeyFormatter.kt

13 wiersze
223 B
Kotlin
Czysty Zwykły widok Historia

2023-01-11 18:31:20 +00:00
package com.vitorpamplona.amethyst.ui.note
import nostr.postr.toHex
fun ByteArray.toDisplayHex(): String {
return toHex().toDisplayHex()
}
fun String.toDisplayHex(): String {
return replaceRange(6, length-6, ":")
}