feat: Deploy TestReputationRegistry to Celo Mainnet and update contract constants#19
Merged
DianaRicee merged 1 commit intomainfrom Sep 24, 2025
Merged
feat: Deploy TestReputationRegistry to Celo Mainnet and update contract constants#19DianaRicee merged 1 commit intomainfrom
DianaRicee merged 1 commit intomainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Description
Summary
This PR introduces the Celo Mainnet deployment of the
TestReputationRegistrycontract, along with minor adjustments to contract parameters and constructor initialization.Key Changes
📄 Contract:
TestReputationRegistry.solMAX_REPUTATIONfrom 1100 → 1000 for a more standardized scoring scale.MIN_REPUTATION = 0andINITIAL_REPUTATION = 500for balanced defaults.info = "Test 3"for testing/deployment traceability.📂 Deployment:
broadcast/DeployTestReputationRegistry.s.sol/42220/run-latest.json0x1ee41a6f09b0458bac30f0a61fcca02c94b750e40x6f86cb902bad751500a01a86e5c8f43d8e3f5f972ababfdb69c98533c1f6282b0x1edc144e1dbd4080960ec329020995327f9daad57af0bdcfa6c2b0e896942b28UserRegistered).Motivation
MAX_REPUTATIONto1000ensures a clear upper bound that’s easy to reason about."Test 3"in the constructor makes it easier to distinguish deployments across environments.Next Steps