mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 18:28:01 +00:00
066acc4663
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
63 lines
1.2 KiB
Solidity
63 lines
1.2 KiB
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8;
|
|
|
|
/* runner.json
|
|
{
|
|
"differential": true,
|
|
"actions": [
|
|
{
|
|
"Instantiate": {
|
|
"code": {
|
|
"Solidity": {
|
|
"contract": "Context"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"Call": {
|
|
"dest": {
|
|
"Instantiated": 0
|
|
},
|
|
"data": "846a1ee1"
|
|
}
|
|
},
|
|
{
|
|
"Call": {
|
|
"dest": {
|
|
"Instantiated": 0
|
|
},
|
|
"data": "fc9c8d39"
|
|
}
|
|
},
|
|
{
|
|
"Call": {
|
|
"dest": {
|
|
"Instantiated": 0
|
|
},
|
|
"data": "3af973b1"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
*/
|
|
|
|
contract Context {
|
|
function address_this() public view returns (address ret) {
|
|
ret = address(this);
|
|
}
|
|
|
|
function caller() public view returns (address ret) {
|
|
ret = msg.sender;
|
|
}
|
|
|
|
function chain_id() public view returns (uint) {
|
|
uint256 id;
|
|
assembly {
|
|
id := chainid()
|
|
}
|
|
return id;
|
|
}
|
|
}
|