ETH Price: $2,986.88 (+7.45%)

Transaction Decoder

Block:
22651505 at Jun-07-2025 08:25:59 AM +UTC
Transaction Fee:
0.000029186473108563 ETH $0.09
Gas Used:
30,059 Gas / 0.970972857 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
0x79811CAD...433Cf817f
0.006621714661322322 Eth
Nonce: 619
0.006592528188213759 Eth
Nonce: 620
0.000029186473108563
(beaverbuild)
16.236188618147581681 Eth16.236190992808581681 Eth0.000002374661

Execution Trace

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