Skip to content

Commit

Permalink
fix: rename name puffer points to carrot (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksatyarth2 authored Jan 9, 2025
1 parent 3c749a1 commit c63c542
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mainnet-contracts/src/CARROT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ contract CARROT is ERC20, ERC20Permit {
* @notice Constructor for the CARROT token
* totalSupply is 100 million CARROT
*/
constructor(address initialOwner) ERC20("Puffer Points", "CARROT") ERC20Permit("Puffer Points") {
constructor(address initialOwner) ERC20("Carrot", "CARROT") ERC20Permit("Carrot") {
_mint(initialOwner, 100_000_000 ether);
}
}
2 changes: 1 addition & 1 deletion mainnet-contracts/test/unit/CARROT.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ contract CARROTTest is UnitTestHelper {

function test_constructor() public view {
assertEq(carrot.totalSupply(), 100_000_000 ether);
assertEq(carrot.name(), "Puffer Points");
assertEq(carrot.name(), "Carrot");
assertEq(carrot.symbol(), "CARROT");
}

Expand Down

0 comments on commit c63c542

Please sign in to comment.