@unicitylabs/sphere-sdk 0.3.7 → 0.3.8

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.
@@ -599,6 +599,7 @@ async function loadIpnsModule() {
599
599
  async function createSignedRecord(keyPair, cid, sequenceNumber, lifetimeMs = DEFAULT_LIFETIME_MS) {
600
600
  const { createIPNSRecord, marshalIPNSRecord } = await loadIpnsModule();
601
601
  const record = await createIPNSRecord(
602
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
602
603
  keyPair,
603
604
  `/ipfs/${cid}`,
604
605
  sequenceNumber,
@@ -1709,7 +1710,11 @@ var STORAGE_KEYS_GLOBAL = {
1709
1710
  /** Cached token registry JSON (fetched from remote) */
1710
1711
  TOKEN_REGISTRY_CACHE: "token_registry_cache",
1711
1712
  /** Timestamp of last token registry cache update (ms since epoch) */
1712
- TOKEN_REGISTRY_CACHE_TS: "token_registry_cache_ts"
1713
+ TOKEN_REGISTRY_CACHE_TS: "token_registry_cache_ts",
1714
+ /** Cached price data JSON (from CoinGecko or other provider) */
1715
+ PRICE_CACHE: "price_cache",
1716
+ /** Timestamp of last price cache update (ms since epoch) */
1717
+ PRICE_CACHE_TS: "price_cache_ts"
1713
1718
  };
1714
1719
  var STORAGE_KEYS_ADDRESS = {
1715
1720
  /** Pending transfers for this address */