chore: upgrade package.json engines to Node >=22.22.0 across all packages

This commit is contained in:
oib
2026-02-27 22:48:30 +01:00
parent 864ef4343e
commit d152044c6f
15 changed files with 283 additions and 835 deletions

View File

@@ -239,21 +239,4 @@ contract ZKReceiptVerifier is Groth16Verifier {
return true;
}
/**
* @dev Verify a performance proof
* @return valid Whether the proof is valid
*/
function verifyPerformanceProof(
uint256 agreementId,
uint256 responseTime,
uint256 accuracy,
uint256 availability,
uint256 computePower,
bytes memory zkProof
) external pure returns (bool valid) {
// Implementation for performance proof verification
// This is a placeholder since the actual implementation would need
// to parse the zkProof bytes and call the appropriate Circom verifier
return true;
}
}