Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
radicle-explorer src views users UserAddress.svelte
<script lang="ts">
  import { formatDid, formatNodeId } from "@app/lib/utils";

  import Id from "@app/components/Id.svelte";

  export let did: { prefix: string; pubkey: string };
</script>

<div style:word-break="break-word">
  <Id styleWidth="fit-content" ariaLabel="node-id" id={formatDid(did)}>
    <div class="txt-overflow">
      {formatNodeId(did.pubkey)}
    </div>
  </Id>
</div>