@unicitylabs/sphere-sdk 0.6.9 → 0.6.10-dev.2
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 +54 -42
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +54 -42
- package/dist/core/index.js.map +1 -1
- package/dist/impl/browser/index.cjs +2 -2
- package/dist/impl/browser/index.cjs.map +1 -1
- package/dist/impl/browser/index.js +2 -2
- package/dist/impl/browser/index.js.map +1 -1
- package/dist/impl/nodejs/index.cjs +2 -2
- package/dist/impl/nodejs/index.cjs.map +1 -1
- package/dist/impl/nodejs/index.js +2 -2
- package/dist/impl/nodejs/index.js.map +1 -1
- package/dist/index.cjs +54 -42
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +54 -42
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -2324,9 +2324,9 @@ var NostrTransportProvider = class _NostrTransportProvider {
|
|
|
2324
2324
|
if (subId) {
|
|
2325
2325
|
this.nostrClient?.unsubscribe(subId);
|
|
2326
2326
|
}
|
|
2327
|
-
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 });
|
|
2328
2328
|
resolve(events);
|
|
2329
|
-
},
|
|
2329
|
+
}, 15e3);
|
|
2330
2330
|
const subId = this.nostrClient.subscribe(filter, {
|
|
2331
2331
|
onEvent: (event) => {
|
|
2332
2332
|
events.push({
|