Transaction Hash:
Block:
7775613 at May-17-2019 04:30:18 AM +UTC
Transaction Fee:
0.0000877923894 ETH
$0.32
Gas Used:
21,947 Gas / 4.0002 Gwei
Emitted Events:
99 |
Dragon.Transfer( from=[Sender] 0x3ae8b56e7d53e430d102e9cdb33078654e7bd396, to=0x0D0707963952f2fBA59dD06f2b425ace40b492Fe, value=1422000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3ae8b56E...54E7bd396 | (Gate.io Dep: 0x3ae8b56E7d53E430D102E9cdb33078654E7bd396) |
0.0011782389132 Eth
Nonce: 5
|
0.0010904465238 Eth
Nonce: 6
| 0.0000877923894 | |
0x419c4dB4...8D9fDA05E | |||||
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 6,677.789060445094393654 Eth | 6,677.789148237483793654 Eth | 0.0000877923894 |
Execution Trace
Dragon.transfer( _to=0x0D0707963952f2fBA59dD06f2b425ace40b492Fe, _value=1422000000000000000000 ) => ( 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) {