Skip to content

Commit 8190dbf

Browse files
committed
Update token info with spreadsheet info
1 parent 8fff206 commit 8190dbf

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/Gang.sol

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ pragma solidity ^0.8.21;
33

44
import "@solady/src/tokens/ERC20.sol";
55

6-
/**
7-
* @title Gang Token
8-
*/
6+
/// @title Gang Token
7+
/// @notice ERC20 Token
8+
/// @author Rookmate (@0xRookmate)
99
contract 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);

0 commit comments

Comments
 (0)