@@ -11,6 +11,12 @@ import (
11
11
"github.com/spf13/viper"
12
12
)
13
13
14
+ // enable other cache/datastore backends besides redis?
15
+ // type ExtCache interface {
16
+ // cacheName(address common.Address, keyFunc func(common.Address) string, value string, duration time.Duration)
17
+ // getName(address common.Address, keyFunc func(common.Address) string) (string, error)
18
+ // }
19
+
14
20
var gbCache * GbCache
15
21
16
22
type GbCache struct {
@@ -58,6 +64,36 @@ func (c *GbCache) GetENSName(walletAddress common.Address) (string, error) {
58
64
return c .getName (walletAddress , keyENS )
59
65
}
60
66
67
+ func (c * GbCache ) StoreEvent (contractAddress common.Address , collectionName string , tokenID uint64 , priceWei uint64 , numItems uint , eventTime time.Time , eventType int64 ) {
68
+ xAddArgs := & redis.XAddArgs {
69
+ Stream : "sales" ,
70
+ MaxLen : 100000 ,
71
+ Approx : true ,
72
+ ID : "*" ,
73
+ Values : map [string ]any {
74
+ "contractAddress" : contractAddress .Hex (),
75
+ "collectionName" : collectionName ,
76
+ "tokenID" : tokenID ,
77
+ "priceWei" : priceWei ,
78
+ "numItems" : numItems ,
79
+ "eventTime" : eventTime ,
80
+ "eventType" : eventType ,
81
+ },
82
+ }
83
+
84
+ if c .rdb != nil {
85
+ gbl .Log .Debugf ("redis | adding sale: %s #%d" , collectionName , int (tokenID ))
86
+
87
+ if added , err := c .rdb .XAdd (c .rdb .Context (), xAddArgs ).Result (); err == redis .Nil {
88
+ gbl .Log .Errorf ("redis | strange redis.Nil while adding to stream: %s %d -xxx-> %s: %s" , collectionName , tokenID , xAddArgs .Stream , err )
89
+ } else if err != nil {
90
+ gbl .Log .Errorf ("redis | could not add event: %s" , err )
91
+ } else {
92
+ gbl .Log .Debugf ("redis | added event (%d) to stream: %s %d | %s" , eventType , collectionName , tokenID , added )
93
+ }
94
+ }
95
+ }
96
+
61
97
func (c * GbCache ) cacheName (address common.Address , keyFunc func (common.Address ) string , value string , duration time.Duration ) {
62
98
c .addressToName [address ] = value
63
99
0 commit comments