ETH Price: $4,666.79 (+8.23%)

Transaction Decoder

Block:
22688544 at Jun-12-2025 12:39:59 PM +UTC
Transaction Fee:
0.000598145961643165 ETH $2.79
Gas Used:
51,935 Gas / 11.517203459 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(Titan Builder)
5.667609001715896116 Eth5.667712923650896116 Eth0.000103921935
0x9239dF3E...E7957b3c3
(CoinSpot 15)
10.019275602063549426 Eth
Nonce: 162665
10.018677456101906261 Eth
Nonce: 162666
0.000598145961643165

Execution Trace

Dragon.transfer( _to=0x0B9306fDdEDEEF3991d085B1272EA36D30D1a82C, _value=504627673839999975424 ) => ( 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