Transaction Hash:
Block:
7775727 at May-17-2019 04:59:32 AM +UTC
Transaction Fee:
0.00035952 ETH
$0.93
Gas Used:
23,968 Gas / 15 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2a65Aca4...135398226
Miner
| (DwarfPool) | 792.196422566989759339 Eth | 792.196782086989759339 Eth | 0.00035952 | |
0x91f7798f...59Bb98dF2 |
0.04747006965 Eth
Nonce: 18
|
0.04711054965 Eth
Nonce: 19
| 0.00035952 |
Execution Trace
Dragon.transfer( _to=0x876EabF441B2EE5B5b0554Fd502a8E0600950cFa, _value=900000000000000000000 )
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) {