File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol";
1010contract 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
You can’t perform that action at this time.
0 commit comments