File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 11
2+ # 0.1.5 -- NPM Package Tweaks  
3+ 
4+ -  Including all stores in lib
5+ 
26# 0.1.4 -- NPM Package  
37
48-  NPM Package using npmpub
Original file line number Diff line number Diff line change 11{
22  "name" : " eth-indexer" 
3-   "version" : " 0.1.4 " 
3+   "version" : " 0.1.5 " 
44  "description" : " High performance Ethereum smart contract event indexing for fast local retrieval" 
55  "author" : 
" Dominiek Ter Heide <[email protected] >" ,
 66  "license" : " MIT" 
Original file line number Diff line number Diff line change 22import  logger  from  './logger' ; 
33import  Ethereum  from  './ethereum' ; 
44
5+ import  memoryStore  from  './stores/memory' ; 
56import  fileStore  from  './stores/file' ; 
7+ import  redisStore  from  './stores/redis' ; 
8+ import  mongodbStore  from  './stores/mongodb' ; 
9+ import  elasticsearchStore  from  './stores/elasticsearch' ; 
10+ import  levelStore  from  './stores/level' ; 
611
712export  const  stores  =  { 
13+   memory : memoryStore , 
814  file : fileStore , 
15+   redis : redisStore , 
16+   mongodb : mongodbStore , 
17+   elasticsearch : elasticsearchStore , 
18+   level : levelStore , 
919} ; 
1020
1121const  waitForBlockchainSync  =  client  =>  new  Promise ( ( accept )  =>  { 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments