ETH Price: $2,976.49 (-2.45%)

Transaction Decoder

Block:
22705778 at Jun-14-2025 10:28:35 PM +UTC
Transaction Fee:
0.000023335353099903 ETH $0.07
Gas Used:
46,667 Gas / 0.500039709 Gwei

Emitted Events:

333 LinkToken.Approval( owner=[Sender] 0xe9176baa3cb4473651510a4fe36c06f1b42e65f9, spender=0x00000000...072C22734, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.032844854225432915 Eth11.032848540918432915 Eth0.000003686693
0x51491077...4EcF986CA
0xE9176baA...1b42E65F9
0.00074818591810445 Eth
Nonce: 32
0.000724850565004547 Eth
Nonce: 33
0.000023335353099903

Execution Trace

LinkToken.approve( _spender=0x0000000000001fF3684f28c67538d4D072C22734, _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.16;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
assert(b <= a);
return a - b;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX