ETH Price: $4,296.33 (+0.72%)

Transaction Decoder

Block:
22639597 at Jun-05-2025 04:27:47 PM +UTC
Transaction Fee:
0.000412574984539112 ETH $1.77
Gas Used:
46,076 Gas / 8.954227462 Gwei

Emitted Events:

293 Dragon.Approval( owner=[Sender] 0x07b172d47bea438bec597feb1c2ccf1674872dc8, spender=0x1231DEB6...7486F4EaE, value=659141300000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x07b172D4...674872Dc8
0.452701670361286415 Eth
Nonce: 48
0.452289095376747303 Eth
Nonce: 49
0.000412574984539112
0x419c4dB4...8D9fDA05E
(BuilderNet)
85.945748767235764037 Eth85.945751942830544837 Eth0.0000031755947808

Execution Trace

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