Made stablecoin and reservecoin names and symbols configurable#47
Made stablecoin and reservecoin names and symbols configurable#47DeveloperAmrit wants to merge 1 commit into
Conversation
modified: scripts/DeploymentParameters.sol modified: scripts/deployDjedContract.s.sol modified: scripts/deployDjedShuContract.sol modified: src/Djed.sol modified: src/DjedShu.sol modified: src/test/Djed.t.sol modified: src/test/Fee.t.sol modified: src/test/TransactionLimit.t.sol modified: src/test/Utilities.sol
📝 WalkthroughWalkthroughThe changes make stablecoin and reserve coin names/symbols configurable throughout the system by introducing four new string parameters (nameSC, symbolSC, nameRC, symbolRC) into constructors, deployment scripts, and configuration files, replacing hardcoded values with parameterized alternatives. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Possibly related issues
Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Fixes #18
Description
This PR makes the names and symbols for the stablecoin (SC) and reservecoin (RC) configurable during deployment. Previously, these values were hardcoded within the Djed and DjedShu contracts.
Key Changes
Summary by CodeRabbit
Release Notes
New Features
Chores