Skip to content

Commit

Permalink
Update Deploy.s.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik committed May 13, 2024
1 parent 0c063f3 commit a33459b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ contract DeployTokenUnlocking is Script {

address public OWNER = 0x9CBeE534B5D8a6280e01a14844Ee8aF350399C7F; // admin.taiko.eth
address public TAIKO_TOKEN = 0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800; // token.taiko.eth
uint256 public TGE = 1716767999; // Date and time (GMT): Sunday, May 26, 2024 11:59:59 PM
uint64 public TGE = 1716767999; // Date and time (GMT): Sunday, May 26, 2024 11:59:59 PM
address public IMPL = vm.envAddress("TOKEN_VESTING_IMPL");

function setUp() public { }
Expand All @@ -33,7 +33,7 @@ contract DeployTokenUnlocking is Script {
deployProxy({
impl: impl,
data: abi.encodeCall(
TokenUnlocking.init, (OWNER, TAIKO_TOKEN, recipients[i], uint64(TGE))
TokenUnlocking.init, (OWNER, TAIKO_TOKEN, recipients[i], TGE)
)
});
vm.stopBroadcast();
Expand Down

0 comments on commit a33459b

Please sign in to comment.