ETH Price: $2,770.11 (-2.49%)

Transaction Decoder

Block:
22550891 at May-24-2025 06:22:23 AM +UTC
Transaction Fee:
0.000020499314284482 ETH $0.06
Gas Used:
46,679 Gas / 0.439154958 Gwei

Emitted Events:

595 LinkToken.Approval( owner=[Sender] 0xed36ddd72cf3c706a3eee71f727d45e6792f849b, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.557669037966791931 Eth12.557669476749391931 Eth0.0000004387826
0x51491077...4EcF986CA
0xEd36ddD7...6792f849B
0.024586183225971993 Eth
Nonce: 2
0.024565683911687511 Eth
Nonce: 3
0.000020499314284482

Execution Trace

LinkToken.approve( _spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, _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