ETH Price: $3,824.01 (+2.10%)

Transaction Decoder

Block:
22637995 at Jun-05-2025 11:04:23 AM +UTC
Transaction Fee:
0.000124159550739124 ETH $0.47
Gas Used:
46,364 Gas / 2.677930091 Gwei

Emitted Events:

1091 Dragon.Approval( owner=[Sender] 0x6cb091d3fa80b76ddb2e21b1c975d01763049955, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
0x6Cb091d3...763049955
0.013433254353530648 Eth
Nonce: 4
0.013309094802791524 Eth
Nonce: 5
0.000124159550739124
(BuilderNet)
84.206435323489142481 Eth84.206470419357838401 Eth0.00003509586869592

Execution Trace

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