From 33dc19fbc72da44eec539abd37a605ece4243a22 Mon Sep 17 00:00:00 2001 From: cantinaverse Date: Mon, 29 Sep 2025 07:28:32 -0700 Subject: [PATCH 1/2] feat: Update package-lock.json file --- .../package-lock.json | 12 ++++++------ src/onchain/TestReputationRegistry.sol | 3 +-- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/frontend/decentralized-reputation-system/package-lock.json b/frontend/decentralized-reputation-system/package-lock.json index 39fa993..329acf6 100644 --- a/frontend/decentralized-reputation-system/package-lock.json +++ b/frontend/decentralized-reputation-system/package-lock.json @@ -1853,9 +1853,9 @@ } }, "node_modules/@types/react": { - "version": "19.1.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.14.tgz", - "integrity": "sha512-ukd93VGzaNPMAUPy0gRDSC57UuQbnH9Kussp7HBjM06YFi9uZTFhOvMSO2OKqXm1rSgzOE+pVx1k1PYHGwlc8Q==", + "version": "19.1.15", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.15.tgz", + "integrity": "sha512-+kLxJpaJzXybyDyFXYADyP1cznTO8HSuBpenGlnKOAkH4hyNINiywvXS/tGJhsrGGP/gM185RA3xpjY0Yg4erA==", "devOptional": true, "dependencies": { "csstype": "^3.0.2" @@ -6334,9 +6334,9 @@ } }, "node_modules/viem": { - "version": "2.37.8", - "resolved": "https://registry.npmjs.org/viem/-/viem-2.37.8.tgz", - "integrity": "sha512-mL+5yvCQbRIR6QvngDQMfEiZTfNWfd+/QL5yFaOoYbpH3b1Q2ddwF7YG2eI2AcYSh9LE1gtUkbzZLFUAVyj4oQ==", + "version": "2.37.9", + "resolved": "https://registry.npmjs.org/viem/-/viem-2.37.9.tgz", + "integrity": "sha512-XXUOE5yJcjr9/M9kRoQcPMUfetwHprO9aTho6vNELjBKJIBx7rYq1fjvBw+xEnhsRjhh5lsORi6B0h8fYFB7NA==", "funding": [ { "type": "github", diff --git a/src/onchain/TestReputationRegistry.sol b/src/onchain/TestReputationRegistry.sol index ff6ff3a..5ab7a31 100644 --- a/src/onchain/TestReputationRegistry.sol +++ b/src/onchain/TestReputationRegistry.sol @@ -28,8 +28,7 @@ contract TestReputationRegistry { event UserRegistered(address indexed user, uint256 initialReputation); event ReputationUpdated(address indexed user, uint256 oldScore, uint256 newScore, address indexed rater); - constructor() { - } + constructor() {} /** * @dev Register a new user (anyone can call) From 05aa5e0d44a86ca65c35f0d6339f618e6c4814cd Mon Sep 17 00:00:00 2001 From: cantinaverse Date: Mon, 29 Sep 2025 07:31:00 -0700 Subject: [PATCH 2/2] feat: forge fmt --- src/onchain/TestReputationRegistry.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/onchain/TestReputationRegistry.sol b/src/onchain/TestReputationRegistry.sol index 5ab7a31..f33979b 100644 --- a/src/onchain/TestReputationRegistry.sol +++ b/src/onchain/TestReputationRegistry.sol @@ -28,8 +28,6 @@ contract TestReputationRegistry { event UserRegistered(address indexed user, uint256 initialReputation); event ReputationUpdated(address indexed user, uint256 oldScore, uint256 newScore, address indexed rater); - constructor() {} - /** * @dev Register a new user (anyone can call) * @param user Address of the user to register