Transaction Hash:
Block:
7779368 at May-17-2019 06:42:29 PM +UTC
Transaction Fee:
0.000462231 ETH
$1.78
Gas Used:
22,011 Gas / 21 Gwei
Emitted Events:
29 |
Dragon.Transfer( from=[Sender] 0xb57ee14f65ab9f4dcc04e4449fefc501355e0827, to=0x689C56AEf474Df92D44A1B70850f808488F9769C, value=14013000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x419c4dB4...8D9fDA05E | |||||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 3,969.189424917418808243 Eth | 3,969.189887148418808243 Eth | 0.000462231 | |
0xB57Ee14F...1355E0827 |
0.010833772854286952 Eth
Nonce: 925
|
0.010371541854286952 Eth
Nonce: 926
| 0.000462231 |
Execution Trace
Dragon.transfer( _to=0x689C56AEf474Df92D44A1B70850f808488F9769C, _value=14013000000000000000000 ) => ( True )
transfer[ERC20Basic (ln:92)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.18;// File: zeppelin-solidity/contracts/math/SafeMath.sol/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {function mul(uint256 a, uint256 b) internal pure returns (uint256) {if (a == 0) {return 0;}uint256 c = a * b;assert(c / a == b);return c;}function div(uint256 a, uint256 b) internal pure returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal pure returns (uint256) {