mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
6 lines
194 B
Dart
6 lines
194 B
Dart
/// Truncates a hex pubkey to the first 8 characters with an ellipsis.
|
|
String shortPubkey(String pubkey) {
|
|
if (pubkey.length > 12) return '${pubkey.substring(0, 8)}\u2026';
|
|
return pubkey;
|
|
}
|