(profile: RawProfile)
| 420 | } |
| 421 | |
| 422 | function fromRawProfile(profile: RawProfile): Profile { |
| 423 | return { |
| 424 | pubkey: profile.pubkey, |
| 425 | displayName: profile.display_name, |
| 426 | avatarUrl: profile.avatar_url, |
| 427 | about: profile.about, |
| 428 | nip05Handle: profile.nip05_handle, |
| 429 | ownerPubkey: profile.owner_pubkey, |
| 430 | }; |
| 431 | } |
| 432 | |
| 433 | function fromRawUserProfileSummary( |
| 434 | profile: RawUserProfileSummary, |
no outgoing calls
no test coverage detected