Skip to main content
PulseScanner.io

Address

0xe83ab9e1545aa2aa61a2dcc962eca700a7f48b4f
Current Holdings
$0.00
TXs sent
not counted
First Active
2024-12-02
block 22,084,332
Last Active
14 days ago
block 27,452,105
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchMetacrypt_B_TR_NC_Xsolc 0.8.9+commit.e5eed63aruntime exact · creation exact
// SPDX-License-Identifier: MIT

pragma solidity ^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 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) {
        return msg.sender;
    }

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