Skip to content

Commit 7c1a15e

Browse files
author
ilitteri
committed
Remove EIP712, VERSION and TOTAL_SUPPLY
1 parent 7d36774 commit 7c1a15e

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

claim_contracts/src/AlignedToken.sol

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol";
1010
contract AlignedToken is
1111
Initializable,
1212
ERC20Upgradeable,
13-
EIP712Upgradeable,
1413
ERC20PermitUpgradeable,
1514
ERC20BurnableUpgradeable,
1615
Ownable2StepUpgradeable
@@ -21,12 +20,6 @@ contract AlignedToken is
2120
/// @notice Symbol of the token.
2221
string public constant SYMBOL = "ALIGN";
2322

24-
/// @notice Version of the token implementation.
25-
string public constant VERSION = "1";
26-
27-
/// @notice Total supply of the token.
28-
uint256 public constant TOTAL_SUPPLY = 10_000_000_000e18; // 10 billion
29-
3023
/// @custom:oz-upgrades-unsafe-allow constructor
3124
constructor() {
3225
_disableInitializers();
@@ -48,7 +41,6 @@ contract AlignedToken is
4841
"Invalid _foundation or _claimSupplier"
4942
);
5043
__ERC20_init(NAME, SYMBOL);
51-
__EIP712_init(NAME, VERSION);
5244
__ERC20Permit_init(NAME);
5345
__ERC20Burnable_init();
5446
__Ownable2Step_init(); // default is msg.sender

0 commit comments

Comments
 (0)