ETH Price: $3,746.41 (+3.12%)

Transaction Decoder

Block:
22651534 at Jun-07-2025 08:31:47 AM +UTC
Transaction Fee:
0.000041050298829488 ETH $0.15
Gas Used:
30,071 Gas / 1.365112528 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(beaverbuild)
16.321290226918246807 Eth16.321305262418246807 Eth0.0000150355
0xAf7D1E3D...B71880Ad6
0.003956391488285738 Eth
Nonce: 6955
0.00391534118945625 Eth
Nonce: 6956
0.000041050298829488

Execution Trace

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