@ercworldio/blockchain-shared 1.0.5-dev.7-PROJ-1469.4 → 1.0.5-dev.7-PROJ-1469.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -135,6 +135,16 @@
|
|
|
135
135
|
"source": "wallet"
|
|
136
136
|
}
|
|
137
137
|
],
|
|
138
|
+
"quicknodeStreams": [
|
|
139
|
+
{
|
|
140
|
+
"network": "solana-devnet",
|
|
141
|
+
"dataset": "block",
|
|
142
|
+
"name": "solana-escrow-logs",
|
|
143
|
+
"listConfig": {
|
|
144
|
+
"key": "escrow-address"
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
],
|
|
138
148
|
"quicknodeNotificationConfig": [
|
|
139
149
|
{
|
|
140
150
|
"name": "escrow-sol-dev",
|
package/build/services/Redis.js
CHANGED
|
@@ -277,7 +277,7 @@ class Redis {
|
|
|
277
277
|
try {
|
|
278
278
|
const pref = `${this.prefix}-`;
|
|
279
279
|
const normalizedKey = expiredKey.startsWith(pref) ? expiredKey.slice(pref.length) : expiredKey;
|
|
280
|
-
this.logger.info(`Redis: key expired: ${normalizedKey}`);
|
|
280
|
+
// this.logger.info(`Redis: key expired: ${normalizedKey}`);
|
|
281
281
|
let value = null;
|
|
282
282
|
try {
|
|
283
283
|
value = yield this.get_object(expiredKey);
|
|
@@ -381,7 +381,7 @@ class Redis {
|
|
|
381
381
|
get_object(_key_1) {
|
|
382
382
|
return __awaiter(this, arguments, void 0, function* (_key, use_prefix = true) {
|
|
383
383
|
const key = this.get_key(_key, use_prefix);
|
|
384
|
-
this.logger.info(`Redis: Getting object with key: ${key}`);
|
|
384
|
+
// this.logger.info(`Redis: Getting object with key: ${key}`);
|
|
385
385
|
const raw = yield this._get(key);
|
|
386
386
|
return raw ? JSON.parse(raw) : null;
|
|
387
387
|
});
|
|
@@ -110,7 +110,7 @@ class RedisPubSub {
|
|
|
110
110
|
this.logger.info(`RedisPubSub: pSubscribe: Subscribed to pattern: ${pattern}`);
|
|
111
111
|
yield this.subscriber.pSubscribe(pattern, (eventKey) => __awaiter(this, void 0, void 0, function* () {
|
|
112
112
|
try {
|
|
113
|
-
this.logger.info(`RedisPubSub: pSubscribe: Received subscriber event: ${event.eventName}. eventkey: ${eventKey}`)
|
|
113
|
+
// this.logger.info(`RedisPubSub: pSubscribe: Received subscriber event: ${event.eventName}. eventkey: ${eventKey}`)
|
|
114
114
|
// Get the value before it expires (if possible) or use the key
|
|
115
115
|
const pref = `${this.prefix}-`;
|
|
116
116
|
if (eventKey.startsWith(pref))
|
package/package.json
CHANGED