ETH Price: $3,154.39 (+5.82%)

Transaction Decoder

Block:
7784523 at May-18-2019 01:56:22 PM +UTC
Transaction Fee:
0.001514827 ETH $4.78
Gas Used:
36,947 Gas / 41 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
0xC36A8daA...aA294CeD1
0.1 Eth
Nonce: 0
0.098485173 Eth
Nonce: 1
0.001514827
(Ethermine)
864.541002986660830006 Eth864.542517813660830006 Eth0.001514827

Execution Trace

Dragon.transfer( _to=0x8292B7a1F3FBE9aE46D1Db18dd2BBE1742f50791, _value=1720700000000000000000 ) => ( True )
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