mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 18:28:01 +00:00
ea63991617
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
14 lines
267 B
Solidity
14 lines
267 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8;
|
|
|
|
contract Context {
|
|
function address_this() public view returns (address ret) {
|
|
ret = address(this);
|
|
}
|
|
|
|
function caller() public view returns (address ret) {
|
|
ret = msg.sender;
|
|
}
|
|
}
|