ETH Price: $4,271.40 (+6.50%)

Transaction Decoder

Block:
22588634 at May-29-2025 01:13:47 PM +UTC
Transaction Fee:
0.00016068213394716 ETH $0.69
Gas Used:
46,088 Gas / 3.486420195 Gwei

Emitted Events:

29 Dragon.Approval( owner=[Sender] 0xbade322f8bb393a1253158748d797af2cddf264b, spender=0x11111112...73A960582, value=75438583506460840000000 )

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
0xbade322f...2cdDF264b
0.019885783984584852 Eth
Nonce: 393
0.019725101850637692 Eth
Nonce: 394
0.00016068213394716
(BuilderNet)
43.865895121759571301 Eth43.865899730559571301 Eth0.0000046088

Execution Trace

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