ETH Price: $3,779.48 (-0.78%)

Transaction Decoder

Block:
22590858 at May-29-2025 08:43:11 PM +UTC
Transaction Fee:
0.0001334435870176 ETH $0.50
Gas Used:
46,100 Gas / 2.894654816 Gwei

Emitted Events:

476 Dragon.Approval( owner=[Sender] 0xbb9b3e04db06eb8e77280a5bf4a43b01cf184bc8, spender=0x11111112...73A960582, value=132271807889325361341974 )

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(beaverbuild)
14.812572563966795602 Eth14.812577173966795602 Eth0.00000461
0xBb9B3E04...1cF184Bc8
0.006785763695554242 Eth
Nonce: 449
0.006652320108536642 Eth
Nonce: 450
0.0001334435870176

Execution Trace

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