nostrdb

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

meta.fbs (144B)


      1 
      2 table NdbEventMeta {
      3   received_at:int;
      4   reactions:int;
      5   quotes:int;
      6   reposts:int;
      7   zaps:int;
      8   zap_total:long;
      9 }
     10 
     11 root_type NdbEventMeta;