Transaction Hash:
Block:
7775050 at May-17-2019 02:24:31 AM +UTC
Transaction Fee:
0.0008103732 ETH
$2.95
Gas Used:
51,947 Gas / 15.6 Gwei
Emitted Events:
69 |
Dragon.Transfer( from=[Sender] 0x2b5634c42055806a59e9107ed44d43c426e58258, to=0x8bd43251fc5ec5c8d0BCC58DCd792Dc0e046920d, value=20000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2B5634C4...426E58258 | (KuCoin 1) |
7,376.035011392865902942 Eth
Nonce: 1466334
|
7,376.034201019665902942 Eth
Nonce: 1466335
| 0.0008103732 | |
0x419c4dB4...8D9fDA05E | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 642.715694015498962986 Eth | 642.716504388698962986 Eth | 0.0008103732 |
Execution Trace
Dragon.transfer( _to=0x8bd43251fc5ec5c8d0BCC58DCd792Dc0e046920d, _value=20000000000000000000 ) => ( 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) {