@unicitylabs/sphere-sdk 0.4.4 → 0.4.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.
- package/dist/connect/index.cjs +10 -10
- package/dist/connect/index.cjs.map +1 -1
- package/dist/connect/index.js +10 -10
- package/dist/connect/index.js.map +1 -1
- package/dist/core/index.cjs +55 -25
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +6 -0
- package/dist/core/index.d.ts +6 -0
- package/dist/core/index.js +55 -25
- package/dist/core/index.js.map +1 -1
- package/dist/impl/browser/connect/index.cjs +10 -10
- package/dist/impl/browser/connect/index.cjs.map +1 -1
- package/dist/impl/browser/connect/index.js +10 -10
- package/dist/impl/browser/connect/index.js.map +1 -1
- package/dist/impl/browser/index.cjs +10 -10
- package/dist/impl/browser/index.cjs.map +1 -1
- package/dist/impl/browser/index.js +10 -10
- package/dist/impl/browser/index.js.map +1 -1
- package/dist/impl/browser/ipfs.cjs +10 -10
- package/dist/impl/browser/ipfs.cjs.map +1 -1
- package/dist/impl/browser/ipfs.js +10 -10
- package/dist/impl/browser/ipfs.js.map +1 -1
- package/dist/impl/nodejs/connect/index.cjs +10 -10
- package/dist/impl/nodejs/connect/index.cjs.map +1 -1
- package/dist/impl/nodejs/connect/index.js +10 -10
- package/dist/impl/nodejs/connect/index.js.map +1 -1
- package/dist/impl/nodejs/index.cjs +10 -10
- package/dist/impl/nodejs/index.cjs.map +1 -1
- package/dist/impl/nodejs/index.js +10 -10
- package/dist/impl/nodejs/index.js.map +1 -1
- package/dist/index.cjs +55 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -18
- package/dist/index.d.ts +24 -18
- package/dist/index.js +55 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1697,15 +1697,7 @@ var STORAGE_KEYS_GLOBAL = {
|
|
|
1697
1697
|
TRACKED_ADDRESSES: "tracked_addresses",
|
|
1698
1698
|
/** Last processed Nostr wallet event timestamp (unix seconds), keyed per pubkey */
|
|
1699
1699
|
LAST_WALLET_EVENT_TS: "last_wallet_event_ts",
|
|
1700
|
-
/** Group chat:
|
|
1701
|
-
GROUP_CHAT_GROUPS: "group_chat_groups",
|
|
1702
|
-
/** Group chat: messages */
|
|
1703
|
-
GROUP_CHAT_MESSAGES: "group_chat_messages",
|
|
1704
|
-
/** Group chat: members */
|
|
1705
|
-
GROUP_CHAT_MEMBERS: "group_chat_members",
|
|
1706
|
-
/** Group chat: processed event IDs for deduplication */
|
|
1707
|
-
GROUP_CHAT_PROCESSED_EVENTS: "group_chat_processed_events",
|
|
1708
|
-
/** Group chat: last used relay URL (stale data detection) */
|
|
1700
|
+
/** Group chat: last used relay URL (stale data detection) — global, same relay for all addresses */
|
|
1709
1701
|
GROUP_CHAT_RELAY_URL: "group_chat_relay_url",
|
|
1710
1702
|
/** Cached token registry JSON (fetched from remote) */
|
|
1711
1703
|
TOKEN_REGISTRY_CACHE: "token_registry_cache",
|
|
@@ -1728,7 +1720,15 @@ var STORAGE_KEYS_ADDRESS = {
|
|
|
1728
1720
|
/** Transaction history for this address */
|
|
1729
1721
|
TRANSACTION_HISTORY: "transaction_history",
|
|
1730
1722
|
/** Pending V5 finalization tokens (unconfirmed instant split tokens) */
|
|
1731
|
-
PENDING_V5_TOKENS: "pending_v5_tokens"
|
|
1723
|
+
PENDING_V5_TOKENS: "pending_v5_tokens",
|
|
1724
|
+
/** Group chat: joined groups for this address */
|
|
1725
|
+
GROUP_CHAT_GROUPS: "group_chat_groups",
|
|
1726
|
+
/** Group chat: messages for this address */
|
|
1727
|
+
GROUP_CHAT_MESSAGES: "group_chat_messages",
|
|
1728
|
+
/** Group chat: members for this address */
|
|
1729
|
+
GROUP_CHAT_MEMBERS: "group_chat_members",
|
|
1730
|
+
/** Group chat: processed event IDs for deduplication */
|
|
1731
|
+
GROUP_CHAT_PROCESSED_EVENTS: "group_chat_processed_events"
|
|
1732
1732
|
};
|
|
1733
1733
|
var STORAGE_KEYS = {
|
|
1734
1734
|
...STORAGE_KEYS_GLOBAL,
|