Transaction Hash:
Block:
7777722 at May-17-2019 12:18:30 PM +UTC
Transaction Fee:
0.0000880484022 ETH
$0.32
Gas Used:
22,011 Gas / 4.0002 Gwei
Emitted Events:
87 |
Dragon.Transfer( from=[Sender] 0x7c957f76c25877bf1668ccd2024601291d9fdb70, to=0x0D0707963952f2fBA59dD06f2b425ace40b492Fe, value=19993000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06B8C588...834c8706E
Miner
| (Mining Express) | 3.459624448094118699 Eth | 3.459712496496318699 Eth | 0.0000880484022 | |
0x419c4dB4...8D9fDA05E | |||||
0x7c957F76...91D9fdb70 | (Gate.io Dep: 0x7c957F76c25877BF1668Ccd2024601291D9fdb70) |
0.000530888539818543 Eth
Nonce: 903
|
0.000442840137618543 Eth
Nonce: 904
| 0.0000880484022 |
Execution Trace
Dragon.transfer( _to=0x0D0707963952f2fBA59dD06f2b425ace40b492Fe, _value=19993000000000000000000 ) => ( 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) {