ETH Price: $3,115.29 (+4.93%)

Transaction Decoder

Block:
22605486 at May-31-2025 09:48:35 PM +UTC
Transaction Fee:
0.000045178174072808 ETH $0.14
Gas Used:
46,088 Gas / 0.980258941 Gwei

Emitted Events:

189 Dragon.Approval( owner=[Sender] 0x04058566ff20d81eb57bcb74f84a125feeeb7432, spender=0x11111112...73A960582, value=2840754164736208600000 )

Account State Difference:

  Address   Before After State Difference Code
0x04058566...FEEeb7432
0.009946298645690412 Eth
Nonce: 171
0.009901120471617604 Eth
Nonce: 172
0.000045178174072808
0x419c4dB4...8D9fDA05E
(Titan Builder)
5.048584298866271933 Eth5.048588907666271933 Eth0.0000046088

Execution Trace

Dragon.approve( _spender=0x1111111254EEB25477B68fb85Ed929f73A960582, _value=2840754164736208600000 ) => ( 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