ETH Price: $3,772.23 (+0.61%)

Transaction Decoder

Block:
22610082 at Jun-01-2025 01:15:23 PM +UTC
Transaction Fee:
0.000073810868953486 ETH $0.28
Gas Used:
47,159 Gas / 1.565149154 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(BuilderNet)
56.210647100559669633 Eth56.210647102210234633 Eth0.000000001650565
0xF0ad8475...17B377F4E
0.000315338925895808 Eth
Nonce: 123
0.000241528056942322 Eth
Nonce: 124
0.000073810868953486

Execution Trace

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