Transaction Hash:
Block:
6870118 at Dec-12-2018 01:23:02 AM +UTC
Transaction Fee:
0.000420846 ETH
$1.16
Gas Used:
70,141 Gas / 6 Gwei
Emitted Events:
6 |
GameFanz.Transfer( from=[Receiver] GameFanz, to=[Sender] 0x52d9ac072c5456d9547d73e5138b8395dbcb4614, value=5000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3930E4dD...94b708428 | |||||
0x52D9AC07...5DBCB4614 |
0.032410697198743682 Eth
Nonce: 11
|
0.031989851198743682 Eth
Nonce: 12
| 0.000420846 | ||
0xcC16E3c0...786dfE610
Miner
| 21,040.543758650810220828 Eth | 21,040.544179496810220828 Eth | 0.000420846 |
Execution Trace
GameFanz.CALL( )
[GameFanz (ln:199)]
Transfer[GameFanz (ln:205)]
Transfer[GameFanz (ln:210)]
Transfer[GameFanz (ln:215)]
Transfer[GameFanz (ln:220)]
revert[GameFanz (ln:222)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.25;/*** @title SafeMath* @dev Math operations with safety checks that revert on error*/library SafeMath {/*** @dev Multiplies two numbers, reverts on overflow.*/function mul(uint256 a, uint256 b) internal pure returns (uint256) {// Gas optimization: this is cheaper than requiring 'a' not being zero, but the// benefit is lost if 'b' is also tested.// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522if (a == 0) {return 0;}uint256 c = a * b;require(c / a == b);return c;}/**