ETH Price: $3,641.08 (-2.83%)

Transaction Decoder

Block:
22593651 at May-30-2025 06:05:47 AM +UTC
Transaction Fee:
0.00008073860335385 ETH $0.29
Gas Used:
51,935 Gas / 1.55460871 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
0xa504c146...8B2416469
0.100007709665171 Eth
Nonce: 4
0.09992697106181715 Eth
Nonce: 5
0.00008073860335385
(BuilderNet)
48.13353624902629371 Eth48.13355569357245488 Eth0.00001944454616117

Execution Trace

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