@ocash/sdk 0.1.4-rc.0 → 0.1.4-rc.1
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/browser.cjs +84 -0
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.js +84 -0
- package/dist/browser.js.map +1 -1
- package/dist/index.cjs +84 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +84 -0
- package/dist/index.js.map +1 -1
- package/dist/node.cjs +84 -0
- package/dist/node.cjs.map +1 -1
- package/dist/node.js +84 -0
- package/dist/node.js.map +1 -1
- package/package.json +1 -1
package/dist/browser.cjs
CHANGED
|
@@ -7362,6 +7362,90 @@ var MerkleEngine = class _MerkleEngine {
|
|
|
7362
7362
|
throw new SdkError("MERKLE", "Failed to ingest local merkle leaves", { chainId, leafCount: leaves.length }, error);
|
|
7363
7363
|
}
|
|
7364
7364
|
}
|
|
7365
|
+
/**
|
|
7366
|
+
* Roll back the local Merkle tree to a previous checkpoint.
|
|
7367
|
+
*
|
|
7368
|
+
* Reconstructs correct frontier state by replaying merges from stored subtree
|
|
7369
|
+
* roots (level-5 nodes). Cost: O(batches × depth) where batches = target / 32.
|
|
7370
|
+
*
|
|
7371
|
+
* @param targetMergedElements Must be a non-negative multiple of 32 (SUBTREE_SIZE).
|
|
7372
|
+
* Pass 0 to reset to the empty tree.
|
|
7373
|
+
* @returns true if rollback succeeded, false if required data (checkpoint or
|
|
7374
|
+
* subtree roots) is missing in storage.
|
|
7375
|
+
*/
|
|
7376
|
+
async rollbackTree(chainId, targetMergedElements) {
|
|
7377
|
+
if (targetMergedElements < 0 || targetMergedElements % SUBTREE_SIZE !== 0) {
|
|
7378
|
+
throw new SdkError("MERKLE", "rollbackTree target must be a non-negative multiple of 32", { targetMergedElements });
|
|
7379
|
+
}
|
|
7380
|
+
const state = this.ensureChainState(chainId);
|
|
7381
|
+
const pending = this.ensurePendingLeaves(chainId);
|
|
7382
|
+
if (targetMergedElements === 0) {
|
|
7383
|
+
state.mergedElements = 0;
|
|
7384
|
+
state.root = getZeroHash(this.treeDepth);
|
|
7385
|
+
pending.length = 0;
|
|
7386
|
+
await this.storage?.setMerkleTree?.(chainId, {
|
|
7387
|
+
chainId,
|
|
7388
|
+
root: state.root,
|
|
7389
|
+
totalElements: 0,
|
|
7390
|
+
lastUpdated: Date.now()
|
|
7391
|
+
});
|
|
7392
|
+
return true;
|
|
7393
|
+
}
|
|
7394
|
+
const checkpoint = await this.storage?.getMerkleNode?.(chainId, `checkpoint-${targetMergedElements}`);
|
|
7395
|
+
if (!checkpoint) return false;
|
|
7396
|
+
const numBatches = targetMergedElements / SUBTREE_SIZE;
|
|
7397
|
+
const subtreeRoots = [];
|
|
7398
|
+
for (let batch = 0; batch < numBatches; batch++) {
|
|
7399
|
+
const node = await this.storage?.getMerkleNode?.(chainId, `${SUBTREE_DEPTH}-${batch}`);
|
|
7400
|
+
if (!node) return false;
|
|
7401
|
+
subtreeRoots.push(node.hash);
|
|
7402
|
+
}
|
|
7403
|
+
const resetNodes = [];
|
|
7404
|
+
for (let level = SUBTREE_DEPTH; level < this.treeDepth; level++) {
|
|
7405
|
+
resetNodes.push({
|
|
7406
|
+
chainId,
|
|
7407
|
+
id: `frontier-${level}`,
|
|
7408
|
+
level,
|
|
7409
|
+
position: 0,
|
|
7410
|
+
hash: getZeroHash(level)
|
|
7411
|
+
});
|
|
7412
|
+
}
|
|
7413
|
+
await this.storage?.upsertMerkleNodes?.(chainId, resetNodes);
|
|
7414
|
+
let replayRoot = getZeroHash(this.treeDepth);
|
|
7415
|
+
for (let batch = 0; batch < numBatches; batch++) {
|
|
7416
|
+
const merged = await this.mergeSubtreeToMainTree({
|
|
7417
|
+
chainId,
|
|
7418
|
+
subtreeRoot: subtreeRoots[batch],
|
|
7419
|
+
newTotalElements: (batch + 1) * SUBTREE_SIZE
|
|
7420
|
+
});
|
|
7421
|
+
replayRoot = merged.finalRoot;
|
|
7422
|
+
await this.storage?.upsertMerkleNodes?.(chainId, merged.nodesToStore.map((n) => ({ ...n, chainId })));
|
|
7423
|
+
}
|
|
7424
|
+
const replayNorm = _MerkleEngine.normalizeHex32(replayRoot, "replay.root");
|
|
7425
|
+
const checkpointNorm = _MerkleEngine.normalizeHex32(checkpoint.hash, "checkpoint.root");
|
|
7426
|
+
if (replayNorm !== checkpointNorm) {
|
|
7427
|
+
return false;
|
|
7428
|
+
}
|
|
7429
|
+
state.mergedElements = targetMergedElements;
|
|
7430
|
+
state.root = checkpointNorm;
|
|
7431
|
+
pending.length = 0;
|
|
7432
|
+
this.hydratedChains.add(chainId);
|
|
7433
|
+
await this.storage?.setMerkleTree?.(chainId, {
|
|
7434
|
+
chainId,
|
|
7435
|
+
root: state.root,
|
|
7436
|
+
totalElements: targetMergedElements,
|
|
7437
|
+
lastUpdated: Date.now()
|
|
7438
|
+
});
|
|
7439
|
+
const updatedCheckpoint = {
|
|
7440
|
+
chainId,
|
|
7441
|
+
id: `checkpoint-${targetMergedElements}`,
|
|
7442
|
+
level: -1,
|
|
7443
|
+
position: 0,
|
|
7444
|
+
hash: checkpointNorm
|
|
7445
|
+
};
|
|
7446
|
+
await this.storage?.upsertMerkleNodes?.(chainId, [updatedCheckpoint]);
|
|
7447
|
+
return true;
|
|
7448
|
+
}
|
|
7365
7449
|
/**
|
|
7366
7450
|
* Convenience wrapper to request a single proof.
|
|
7367
7451
|
*/
|