ETH Price: $2,763.43 (-2.36%)

Transaction Decoder

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:

Account State Difference:

  Address   Before After State Difference Code
0x3930E4dD...94b708428
0x52D9AC07...5DBCB4614
0.032410697198743682 Eth
Nonce: 11
0.031989851198743682 Eth
Nonce: 12
0.000420846
21,040.543758650810220828 Eth21,040.544179496810220828 Eth0.000420846

Execution Trace

GameFanz.CALL( )
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
pragma 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/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b);
return c;
}
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX