-
Notifications
You must be signed in to change notification settings - Fork 0
/
Context.sol
38 lines (33 loc) · 1.42 KB
/
Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// SPDX-License-Identifier: MIT
/*
█▀▄▀█ █▀▀ ▀█▀ ▄▀█ █▄▀ █ █▄░█ █▀▀ █▀
█░▀░█ ██▄ ░█░ █▀█ █░█ █ █░▀█ █▄█ ▄█
Welcome to MetaKings
> 100%Unmintable contract
> 100%Unruggable contract
> Website:https://Metakings.ai
> Telegram:https://t.me/metakings
*/
pragma solidity >=0.4.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.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor() internal {}
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}