ETH Price: $2,576.22 (+0.49%)

Transaction Decoder

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 Code
(DwarfPool)
792.196422566989759339 Eth792.196782086989759339 Eth0.00035952
0x91f7798f...59Bb98dF2
0.04747006965 Eth
Nonce: 18
0.04711054965 Eth
Nonce: 19
0.00035952

Execution Trace

Dragon.transfer( _to=0x876EabF441B2EE5B5b0554Fd502a8E0600950cFa, _value=900000000000000000000 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma 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 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX