ETH Price: $1,911.40 (-4.79%)

Transaction Decoder

Block:
6696698 at Nov-13-2018 11:52:47 AM +UTC
Transaction Fee:
0.000349884 ETH $0.67
Gas Used:
87,471 Gas / 4 Gwei

Emitted Events:

65 EmcoToken.Mine( beneficiary=[Sender] 0x2cb3525106b1c872468c598d8e9f632b907b851d, value=259363333513760000 )
66 EmcoToken.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0x2cb3525106b1c872468c598d8e9f632b907b851d, value=259363333513760000 )
67 EmcoToken.MiningBalanceUpdated( owner=[Sender] 0x2cb3525106b1c872468c598d8e9f632b907b851d, amount=318400000000000000, isDeposit=False )
68 EmcoToken.Mine( beneficiary=0x75c6A0Af58CEeCd9f6E691deC7cEE280D5aBa3C5, value=45770000031840000 )
69 EmcoToken.Transfer( from=0x0000000000000000000000000000000000000000, to=0x75c6A0Af58CEeCd9f6E691deC7cEE280D5aBa3C5, value=45770000031840000 )

Account State Difference:

  Address   Before After State Difference Code
0x2cb35251...b907b851d
0.0057024114 Eth
Nonce: 2
0.0053525274 Eth
Nonce: 3
0.000349884
(Spark Pool)
3,664.520315293706371869 Eth3,664.520665177706371869 Eth0.000349884
0xD97E4716...5e667Cd96

Execution Trace

EmcoToken.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.24;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
// Gas optimization: this is cheaper than asserting '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;
}
c = a * b;
assert(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX