nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

profile.fbs (384B)


      1 
      2 table NdbProfile {
      3   name:string;
      4   website:string;
      5   about:string;
      6   lud16:string;
      7   banner:string;
      8   display_name:string;
      9   reactions:bool = true;
     10   picture:string;
     11   nip05:string;
     12   damus_donation:int;
     13   damus_donation_v2:int;
     14   lud06:string;
     15 }
     16 
     17 table NdbProfileRecord {
     18   profile:NdbProfile;
     19   received_at:ulong;
     20   note_key:ulong;
     21   lnurl:string;
     22 }
     23 
     24 root_type NdbProfileRecord;
     25