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 28f72bf commit d35ad16
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import "../../contracts/tokenUnlocking/TokenUnlocking.sol";
contract DeployTokenUnlocking is Script {
using stdJson for string;

address public OWNER = 0x9CBeE534B5D8a6280e01a14844Ee8aF350399C7F; // admin.taiko.eth
address public OWNER = 0x9CBeE534B5D8a6280e01a14844Ee8aF350399C7F; // admin.taiko.eth
address public TAIKO_TOKEN = 0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800; // token.taiko.eth
uint64 public TGE = 1716767999; // Date and time (GMT): Sunday, May 26, 2024 11:59:59 PM
uint64 public TGE = 1_716_767_999; // 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 @@ -32,9 +32,7 @@ contract DeployTokenUnlocking is Script {
vm.startBroadcast();
deployProxy({
impl: impl,
data: abi.encodeCall(
TokenUnlocking.init, (OWNER, TAIKO_TOKEN, recipients[i], TGE)
)
data: abi.encodeCall(TokenUnlocking.init, (OWNER, TAIKO_TOKEN, recipients[i], TGE))
});
vm.stopBroadcast();
console2.log("Deployed!\n");
Expand Down

0 comments on commit d35ad16

Please sign in to comment.