Skip to content

Commit 7f877e9

Browse files
committed
cleanup & small improvements
1 parent 166aa9d commit 7f877e9

File tree

3 files changed

+55
-31
lines changed

3 files changed

+55
-31
lines changed

internal/cache/cache.go

+36
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ import (
1111
"github.com/spf13/viper"
1212
)
1313

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+
1420
var gbCache *GbCache
1521

1622
type GbCache struct {
@@ -58,6 +64,36 @@ func (c *GbCache) GetENSName(walletAddress common.Address) (string, error) {
5864
return c.getName(walletAddress, keyENS)
5965
}
6066

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+
6197
func (c *GbCache) cacheName(address common.Address, keyFunc func(common.Address) string, value string, duration time.Duration) {
6298
c.addressToName[address] = value
6399

internal/gbnode/node.go

+19-1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,22 @@ func New(endpoint string) (*ChainNode, error) {
104104
}, nil
105105
}
106106

107+
// New returns a new gbnode if connection to the given endpoint succeeds.
108+
func NewNode(nodeID int, name string, marker string, endpoint string) (*ChainNode, error) {
109+
client, err := ethclient.DialContext(ctx, endpoint)
110+
if err != nil {
111+
return nil, err
112+
}
113+
114+
return &ChainNode{
115+
NodeID: nodeID,
116+
Name: name,
117+
Marker: marker,
118+
Client: client,
119+
WebsocketsEndpoint: endpoint,
120+
}, nil
121+
}
122+
107123
// GetNodesFromConfig reads the websockets endpoints slice from config, connects to them and returns a list with successfully connected nodes.
108124
func GetNodesFromConfig(endpoints []string) *NodeCollection {
109125
var gbnodeWg sync.WaitGroup
@@ -137,9 +153,11 @@ func GetNodesFromConfig(endpoints []string) *NodeCollection {
137153

138154
// ChainNode represents a w3 provider configuration.
139155
type ChainNode struct {
156+
NodeID int `mapstructure:"id"`
140157
Name string `mapstructure:"name"`
158+
Marker string `mapstructure:"marker"`
141159
Client *ethclient.Client
142-
WebsocketsEndpoint string `mapstructure:"url"`
160+
WebsocketsEndpoint string `mapstructure:"endpoint"`
143161
ReceivedMessages uint64 `mapstructure:"received_messages"`
144162
KillTimer time.Timer `mapstructure:"kill_timer"`
145163
}

internal/style/style.go

-30
Original file line numberDiff line numberDiff line change
@@ -307,36 +307,6 @@ func toFixed(num float64, precision int) float64 {
307307
return float64(round(num*output)) / output
308308
}
309309

310-
// func FormatTokenInfo(tokenID uint64, collection *gbCollections.Collection, isMint bool, color bool) string {
311-
// var (
312-
// collectionName = collection.Name
313-
// prefix = " #"
314-
// id = fmt.Sprint(tokenID)
315-
316-
// tokenInfo string
317-
// )
318-
319-
// collectionName = strings.ReplaceAll(collectionName, "Psychedelics Anonymous", "PA")
320-
// collectionName = strings.ReplaceAll(collectionName, "Open Edition", "OE")
321-
// collectionName = strings.ReplaceAll(collectionName, " Collection", "")
322-
323-
// if collection.Address == common.HexToAddress("0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85") {
324-
// collectionName = "ENS: Ethereum Name Service"
325-
// prefix = ""
326-
// id = ""
327-
// }
328-
329-
// if color {
330-
// collectionName = collection.Style().Faint(isMint).Render(collectionName)
331-
// id = collection.Style().Faint(isMint).Render(fmt.Sprint(id))
332-
// prefix = collection.StyleSecondary().Faint(isMint).Render(prefix)
333-
// }
334-
335-
// tokenInfo = fmt.Sprintf("%s %s%s", collectionName, prefix, id)
336-
337-
// return tokenInfo
338-
// }
339-
340310
// TerminalLink formats a link for the terminal using ANSI codes.
341311
func TerminalLink(params ...string) string {
342312
var text string

0 commit comments

Comments
 (0)