Skip to content

Commit

Permalink
Merge branch 'main' into s2-badges-remigrate-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bearni95 authored Dec 16, 2024
2 parents 5b0a77c + a095c69 commit 16783c3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions packages/protocol/contracts/layer1/hekla/HeklaTaikoToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,16 @@ contract HeklaTaikoToken is EssentialContract, ERC20SnapshotUpgradeable, ERC20Vo
return super.transferFrom(_from, _to, _amount);
}

function clock() public view override returns (uint48) {
return SafeCastUpgradeable.toUint48(block.timestamp);
}

// solhint-disable-next-line func-name-mixedcase
function CLOCK_MODE() public pure override returns (string memory) {
// See https://eips.ethereum.org/EIPS/eip-6372
return "mode=timestamp";
}

function name() public pure override returns (string memory) {
return "Taiko Token";
}
Expand Down
3 changes: 2 additions & 1 deletion packages/protocol/deployments/hekla-contract-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
### taiko_token

- proxy: `0x6490E12d480549D333499236fF2Ba6676C296011`
- impl: `0x01BB2fD6D80942CE95B43c1322530fe690F2bc0e`
- impl: `0xD826bb700EAEdD6E83C32681f95a35Ac7F290104`
- owner: `0x1D2D1bb9D180541E88a6a682aCf3f61c1605B190`
- logs:
- deployed on Mar 29, 2024 at commit `b341a68d5`
- upgraded on Jun 18, 2024, added `batchTransfer` method.
- transferred ownership on Jul 8, 2024
- upgraded on Dec 16, 2024 at commit `ccc9500`

### signal_service

Expand Down

0 comments on commit 16783c3

Please sign in to comment.