@unicitylabs/sphere-sdk 0.3.4 → 0.3.6
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 +2722 -153
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +169 -0
- package/dist/core/index.d.ts +169 -0
- package/dist/core/index.js +2718 -149
- package/dist/core/index.js.map +1 -1
- package/dist/impl/browser/index.cjs +385 -4
- package/dist/impl/browser/index.cjs.map +1 -1
- package/dist/impl/browser/index.js +385 -4
- package/dist/impl/browser/index.js.map +1 -1
- package/dist/impl/browser/ipfs.cjs +5 -1
- package/dist/impl/browser/ipfs.cjs.map +1 -1
- package/dist/impl/browser/ipfs.js +5 -1
- package/dist/impl/browser/ipfs.js.map +1 -1
- package/dist/impl/nodejs/index.cjs +385 -4
- package/dist/impl/nodejs/index.cjs.map +1 -1
- package/dist/impl/nodejs/index.d.cts +23 -0
- package/dist/impl/nodejs/index.d.ts +23 -0
- package/dist/impl/nodejs/index.js +385 -4
- package/dist/impl/nodejs/index.js.map +1 -1
- package/dist/index.cjs +2728 -153
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +270 -6
- package/dist/index.d.ts +270 -6
- package/dist/index.js +2721 -149
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -1666,7 +1666,11 @@ var STORAGE_KEYS_GLOBAL = {
|
|
|
1666
1666
|
/** Group chat: processed event IDs for deduplication */
|
|
1667
1667
|
GROUP_CHAT_PROCESSED_EVENTS: "group_chat_processed_events",
|
|
1668
1668
|
/** Group chat: last used relay URL (stale data detection) */
|
|
1669
|
-
GROUP_CHAT_RELAY_URL: "group_chat_relay_url"
|
|
1669
|
+
GROUP_CHAT_RELAY_URL: "group_chat_relay_url",
|
|
1670
|
+
/** Cached token registry JSON (fetched from remote) */
|
|
1671
|
+
TOKEN_REGISTRY_CACHE: "token_registry_cache",
|
|
1672
|
+
/** Timestamp of last token registry cache update (ms since epoch) */
|
|
1673
|
+
TOKEN_REGISTRY_CACHE_TS: "token_registry_cache_ts"
|
|
1670
1674
|
};
|
|
1671
1675
|
var STORAGE_KEYS_ADDRESS = {
|
|
1672
1676
|
/** Pending transfers for this address */
|