Fix token supply inconsistency: update to 750,000 tokens across all files #47
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.
This PR resolves a critical inconsistency in token supply values that would cause deployment verification failures.
Problem
The deployment scripts and test files had different
totalSupply
values:scripts/deploy.js
andscripts/deploy-DE.js
: 500,000 tokenstest/SEQICO.test.js
: 1,000,000 tokensThis inconsistency would cause deployment verification to fail when the actual deployed contract supply doesn't match test expectations.
Solution
Updated all files to use 750,000 tokens as requested by @sonnyquinn24:
Changes Made
All files now consistently reference the same token supply value, ensuring deployment verification will pass and the contract behaves as expected in both deployment and testing scenarios.
Fixes #39.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.