Transaction Hash:
Block:
10461599 at Jul-15-2020 03:08:04 AM +UTC
Transaction Fee:
0.00135308217800027 ETH
$2.64
Gas Used:
46,658 Gas / 29.000003815 Gwei
Emitted Events:
| 73 |
MCHDailyActionV4.Action( user=[Sender] 0x748806db0dba1a0259f2f10cc0652061aa2160ad, at=1594782445 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x4C549990...bF4211fA5
Miner
| (Hiveon: Old Pool) | 870.218930229274937143 Eth | 870.220283311452937413 Eth | 0.00135308217800027 | |
| 0x748806DB...1aa2160ad |
0.038176020184809137 Eth
Nonce: 16
|
0.037822938006808867 Eth
Nonce: 17
| 0.00035308217800027 | ||
| 0xD7bEC4D6...b59b5F896 | 8.439 Eth | 8.438 Eth | 0.001 |
Execution Trace
MCHDailyActionV4.requestDailyActionReward( _signature=0x9DFFAEDE4D428D8B12B2D910B9EFF74FEBF3443973C984B7B0C4946FA8D8893120CCF3ADABC74E14E4B9ECA8BF3B22EA6FB1757DD21C486DF518B02FC02BB5A51C, _time=1594782445, _support=1000000000000000 )
-
Null: 0x000...001.00fa47b4( ) - ETH 0.001
0x748806db0dba1a0259f2f10cc0652061aa2160ad.CALL( )
requestDailyActionReward[MCHDailyActionV4 (ln:345)]
validateSig[MCHDailyActionV4 (ln:346)]recover[MCHDailyActionV4 (ln:359)]recover[MCHDailyActionV4 (ln:377)]ecrecover[ECDSA (ln:105)]
ethSignedMessageHash[MCHDailyActionV4 (ln:359)]toEthSignedMessageHash[MCHDailyActionV4 (ln:373)]
encodeData[MCHDailyActionV4 (ln:359)]
transfer[MCHDailyActionV4 (ln:350)]Action[MCHDailyActionV4 (ln:351)]
// Copyright (c) 2018-2020 double jump.tokyo inc.
pragma solidity 0.5.17;
library Roles {
struct Role {
mapping (address => bool) bearer;
}
function add(Role storage role, address account) internal {
require(!has(role, account), "role already has the account");
role.bearer[account] = true;
}
function remove(Role storage role, address account) internal {
require(has(role, account), "role dosen't have the account");
role.bearer[account] = false;
}
function has(Role storage role, address account) internal view returns (bool) {
return role.bearer[account];
}
}
interface IERC165 {
function supportsInterface(bytes4 interfaceID) external view returns (bool);
}
/// @title ERC-165 Standard Interface Detection
/// @dev See https://eips.ethereum.org/EIPS/eip-165
contract ERC165 is IERC165 {
bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
mapping(bytes4 => bool) private _supportedInterfaces;
constructor () internal {
_registerInterface(_INTERFACE_ID_ERC165);
}
function supportsInterface(bytes4 interfaceId) external view returns (bool) {
return _supportedInterfaces[interfaceId];
}
function _registerInterface(bytes4 interfaceId) internal {
require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
_supportedInterfaces[interfaceId] = true;
}
}
library ECDSA {
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* NOTE: This call _does not revert_ if the signature is invalid, or
* if the signer is otherwise unable to be retrieved. In those scenarios,
* the zero address is returned.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
// Check the signature length
if (signature.length != 65) {
return (address(0));
}
// Divide the signature in r, s and v variables
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
// solhint-disable-next-line no-inline-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return address(0);
}
if (v != 27 && v != 28) {
return address(0);
}
// If the signature is valid (and not malleable), return the signer address
return ecrecover(hash, v, r, s);
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* replicates the behavior of the
* https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`]
* JSON-RPC method.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
}
library Uint256 {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(a >= b, "subtraction overflow");
return a - b;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0, "division by 0");
return a / b;
}
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0, "modulo by 0");
return a % b;
}
function toString(uint256 a) internal pure returns (string memory) {
bytes32 retBytes32;
uint256 len = 0;
if (a == 0) {
retBytes32 = "0";
len++;
} else {
uint256 value = a;
while (value > 0) {
retBytes32 = bytes32(uint256(retBytes32) / (2 ** 8));
retBytes32 |= bytes32(((value % 10) + 48) * 2 ** (8 * 31));
value /= 10;
len++;
}
}
bytes memory ret = new bytes(len);
uint256 i;
for (i = 0; i < len; i++) {
ret[i] = retBytes32[i];
}
return string(ret);
}
}
contract Withdrawable {
using Roles for Roles.Role;
event WithdrawerAdded(address indexed account);
event WithdrawerRemoved(address indexed account);
Roles.Role private withdrawers;
constructor() public {
withdrawers.add(msg.sender);
}
modifier onlyWithdrawer() {
require(isWithdrawer(msg.sender), "Must be withdrawer");
_;
}
function isWithdrawer(address account) public view returns (bool) {
return withdrawers.has(account);
}
function addWithdrawer(address account) public onlyWithdrawer() {
withdrawers.add(account);
emit WithdrawerAdded(account);
}
function removeWithdrawer(address account) public onlyWithdrawer() {
withdrawers.remove(account);
emit WithdrawerRemoved(account);
}
function withdrawEther() public onlyWithdrawer() {
msg.sender.transfer(address(this).balance);
}
}
interface IERC173 /* is ERC165 */ {
/// @dev This emits when ownership of a contract changes.
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/// @notice Get the address of the owner
/// @return The address of the owner.
function owner() external view returns (address);
/// @notice Set the address of the new owner of the contract
/// @param _newOwner The address of the new owner of the contract
function transferOwnership(address _newOwner) external;
}
contract ERC173 is IERC173, ERC165 {
address private _owner;
constructor() public {
_registerInterface(0x7f5828d0);
_transferOwnership(msg.sender);
}
modifier onlyOwner() {
require(msg.sender == owner(), "Must be owner");
_;
}
function owner() public view returns (address) {
return _owner;
}
function transferOwnership(address _newOwner) public onlyOwner() {
_transferOwnership(_newOwner);
}
function _transferOwnership(address _newOwner) internal {
address previousOwner = owner();
_owner = _newOwner;
emit OwnershipTransferred(previousOwner, _newOwner);
}
}
contract Operatable is ERC173 {
using Roles for Roles.Role;
event OperatorAdded(address indexed account);
event OperatorRemoved(address indexed account);
event Paused(address account);
event Unpaused(address account);
bool private _paused;
Roles.Role private operators;
constructor() public {
operators.add(msg.sender);
_paused = false;
}
modifier onlyOperator() {
require(isOperator(msg.sender), "Must be operator");
_;
}
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
function transferOwnership(address _newOwner) public onlyOperator() {
_transferOwnership(_newOwner);
}
function isOperator(address account) public view returns (bool) {
return operators.has(account);
}
function addOperator(address account) public onlyOperator() {
operators.add(account);
emit OperatorAdded(account);
}
function removeOperator(address account) public onlyOperator() {
operators.remove(account);
emit OperatorRemoved(account);
}
function paused() public view returns (bool) {
return _paused;
}
function pause() public onlyOperator() whenNotPaused() {
_paused = true;
emit Paused(msg.sender);
}
function unpause() public onlyOperator() whenPaused() {
_paused = false;
emit Unpaused(msg.sender);
}
}
contract MCHDailyActionV4 is Operatable, Withdrawable {
using Uint256 for uint256;
address public validator;
mapping(address => int64) public lastActionDate;
event Action(
address indexed user,
int64 at
);
constructor(address _varidator) public {
setValidater(_varidator);
}
function deposit() external payable onlyOperator() {}
function setValidater(address _varidator) public onlyOperator() {
validator = _varidator;
}
function requestDailyActionReward(bytes calldata _signature, int64 _time, uint256 _support) external whenNotPaused() {
require(validateSig(msg.sender, _time, _support, _signature), "invalid signature");
int64 day = _time / 86400;
require(lastActionDate[msg.sender] < day, "already requested today");
lastActionDate[msg.sender] = day;
msg.sender.transfer(_support);
emit Action(
msg.sender,
_time
);
}
function validateSig(address _from, int64 _time, uint256 _support, bytes memory _signature) private view returns (bool) {
require(validator != address(0));
address signer = recover(ethSignedMessageHash(encodeData(_from, _time, _support)), _signature);
return (signer == validator);
}
function encodeData(address _from, int64 _time, uint256 _support) private pure returns (bytes32) {
return keccak256(abi.encode(
_from,
_time,
_support
)
);
}
function ethSignedMessageHash(bytes32 _data) private pure returns (bytes32) {
return ECDSA.toEthSignedMessageHash(_data);
}
function recover(bytes32 _data, bytes memory _signature) private pure returns (address) {
return ECDSA.recover(_data, _signature);
}
}