Skip to main content
PulseScanner.io

Address

0x7777777777697cfeecf846a76326da79cc606517
Current Holdings
$0.00
TXs sent
not counted
First Active
2023-07-07
block 17,723,013
Last Active
14 days ago
block 27,448,003
Funded By
not identified

Net worth historyi

4 snapshots · to block 27,530,853coverage change 26 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Aug
exact matchSigTokensolc 0.6.12+commit.27d51765runtime exact · creation exact
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}