@unicitylabs/sphere-sdk 0.6.8 → 0.6.10-dev.1
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.
- package/dist/core/index.cjs +4 -8
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.js +4 -8
- package/dist/core/index.js.map +1 -1
- package/dist/impl/browser/index.cjs +3 -5
- package/dist/impl/browser/index.cjs.map +1 -1
- package/dist/impl/browser/index.js +3 -5
- package/dist/impl/browser/index.js.map +1 -1
- package/dist/impl/nodejs/index.cjs +3 -5
- package/dist/impl/nodejs/index.cjs.map +1 -1
- package/dist/impl/nodejs/index.js +3 -5
- package/dist/impl/nodejs/index.js.map +1 -1
- package/dist/index.cjs +4 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1991,9 +1991,7 @@ var NostrTransportProvider = class _NostrTransportProvider {
|
|
|
1991
1991
|
}
|
|
1992
1992
|
try {
|
|
1993
1993
|
const pm = import_nostr_js_sdk.NIP17.unwrap(event, this.keyManager);
|
|
1994
|
-
|
|
1995
|
-
this.updateLastDmEventTimestamp(event.created_at);
|
|
1996
|
-
}
|
|
1994
|
+
this.updateLastDmEventTimestamp(Math.floor(Date.now() / 1e3));
|
|
1997
1995
|
logger.debug("Nostr", "Gift wrap unwrapped, sender:", pm.senderPubkey?.slice(0, 16), "kind:", pm.kind);
|
|
1998
1996
|
if (pm.senderPubkey === this.keyManager.getPublicKeyHex()) {
|
|
1999
1997
|
try {
|
|
@@ -2326,9 +2324,9 @@ var NostrTransportProvider = class _NostrTransportProvider {
|
|
|
2326
2324
|
if (subId) {
|
|
2327
2325
|
this.nostrClient?.unsubscribe(subId);
|
|
2328
2326
|
}
|
|
2329
|
-
logger.warn("Nostr", `queryEvents timed out after
|
|
2327
|
+
logger.warn("Nostr", `queryEvents timed out after 15s, returning ${events.length} event(s)`, { kinds: filterObj.kinds, limit: filterObj.limit });
|
|
2330
2328
|
resolve(events);
|
|
2331
|
-
},
|
|
2329
|
+
}, 15e3);
|
|
2332
2330
|
const subId = this.nostrClient.subscribe(filter, {
|
|
2333
2331
|
onEvent: (event) => {
|
|
2334
2332
|
events.push({
|