NostrElixir.Nip02.Follow (nostr_elixir v0.1.0)

View Source

Struct representing a follow entry for NIP-02 follow list.

  • :pubkey - Public key (hex or bech32 string)
  • :relay_url - Relay URL (string or nil)
  • :alias - Alias (string or nil)

Summary

Types

t()

@type t() :: %NostrElixir.Nip02.Follow{
  alias: String.t() | nil,
  pubkey: String.t(),
  relay_url: String.t() | nil
}