Transaction Hash:
Block:
7779166 at May-17-2019 05:55:32 PM +UTC
Transaction Fee:
0.000999297 ETH
$3.76
Gas Used:
37,011 Gas / 27 Gwei
Emitted Events:
20 |
Dragon.Transfer( from=[Sender] 0x2b5634c42055806a59e9107ed44d43c426e58258, to=0x38328BAefd9d1922E29933e50D7994Ba2418cB81, value=4049344581880000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2B5634C4...426E58258 | (KuCoin 1) |
13,282.318558460428961487 Eth
Nonce: 1467374
|
13,282.317559163428961487 Eth
Nonce: 1467375
| 0.000999297 | |
0x419c4dB4...8D9fDA05E | |||||
0x4C549990...bF4211fA5
Miner
| (Hiveon: Old Pool) | 1,196.787795743167723179 Eth | 1,196.788795040167723179 Eth | 0.000999297 |
Execution Trace
Dragon.transfer( _to=0x38328BAefd9d1922E29933e50D7994Ba2418cB81, _value=4049344581880000000000 ) => ( 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) {