refactor(theme): remove light theme and enforce dark mode across all apps

This commit is contained in:
oib
2026-02-27 14:00:33 +01:00
parent 521f7ec04a
commit d023654e74
15 changed files with 89 additions and 447 deletions

View File

@@ -0,0 +1,15 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
contract MockZKVerifier {
function verifyPerformanceProof(
uint256,
uint256,
uint256,
uint256,
uint256,
bytes memory
) external pure returns (bool) {
return true;
}
}