File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,15 @@ pragma solidity ^0.8.21;
33
44import "@solady/src/tokens/ERC20.sol " ;
55
6- /**
7- * @title Gang Token
8- */
6+ /// @title Gang Token
7+ /// @notice ERC20 Token
8+ /// @author Rookmate (@0xRookmate)
99contract Gang is ERC20 {
10- string private _name = "Gang Gang " ; // TODO: CHECK FINAL NAME WITH THE TEAM
11- string private _symbol = "GANG " ; // TODO: CHECK FINAL SYMBOL WITH THE TEAM
12- uint8 private immutable _decimals = 18 ; // TODO: CHECK FINAL DECIMALS WITH THE TEAM
13- uint256 public immutable MAX_SUPPLY = 10_000_000_000 * (10 ** 18 ); // TODO: CHECK TOTAL WITH THE TEAM
10+ // TODO: CHECK FINAL DECISION WITH THE TEAM
11+ string private _name = "Gang Token " ;
12+ string private _symbol = "GANG " ;
13+ uint8 private immutable _decimals = 18 ;
14+ uint256 public immutable MAX_SUPPLY = 1_000_000_000 * (10 ** 18 );
1415
1516 constructor () {
1617 _mint (msg .sender , MAX_SUPPLY);
You can’t perform that action at this time.
0 commit comments