@1sat/wallet-toolbox 0.0.44 → 0.0.45

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.
@@ -68,6 +68,8 @@ export async function fullSync(options) {
68
68
  }
69
69
  console.log("=== END CHECKPOINT 2 ===");
70
70
  // Send chunk to remote
71
+ const chunkJson = JSON.stringify(chunk);
72
+ console.log(`[PUSH] Chunk size: ${(chunkJson.length / 1024).toFixed(1)} KB`);
71
73
  console.log("[PUSH] Sending chunk to remote...");
72
74
  const result = await remoteStorage.processSyncChunk(args, chunk);
73
75
  console.log(`[PUSH] Server response: inserts=${result.inserts}, updates=${result.updates}, done=${result.done}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1sat/wallet-toolbox",
3
- "version": "0.0.44",
3
+ "version": "0.0.45",
4
4
  "description": "BSV wallet library extending @bsv/wallet-toolbox with 1Sat Ordinals protocol support",
5
5
  "author": "1Sat Team",
6
6
  "license": "MIT",