Skip to main content
PulseScanner.io

Address

0x0925a012ff85bef7afa9bef7b42bac9fbdec68bf
Current Holdings
$9,141.50
TXs sent
not counted
First Active
not recorded
Last Active
not recorded
Funded By
not identified

Net worth historyi

3,416 snapshots · to block 27,574,837coverage change 26 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Aug
partial matchV4Poolsolc 0.8.20+commit.a1b79de6runtime partial · creation partial
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.8.0 <0.9.0;

/// @title Abstract contract with modified blockTimestamp functionality
/// @notice Allows the pool and other contracts to get a timestamp truncated to 32 bits
/// @dev Can be overridden in tests to make testing easier
abstract contract Timestamp {
  /// @dev This function is created for testing by overriding it.
  /// @return A timestamp converted to uint32
  function _blockTimestamp() internal view virtual returns (uint32) {
    return uint32(block.timestamp); // truncation is desired
  }
}