ETH Price: $2,952.57 (-0.75%)

Transaction Decoder

Block:
22604921 at May-31-2025 07:54:47 PM +UTC
Transaction Fee:
0.000127709835603812 ETH $0.38
Gas Used:
46,739 Gas / 2.732404108 Gwei

Emitted Events:

343 LinkToken.Approval( owner=[Sender] 0xfac2532e92f2f68937c6d0d10cd616cc3c9c208c, spender=0x69460570...25f0Ca22d, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x51491077...4EcF986CA
(beaverbuild)
19.788503769772914694 Eth19.788550508772914694 Eth0.000046739
0xFAc2532E...c3C9C208c
0.117883165773070198 Eth
Nonce: 1
0.117755455937466386 Eth
Nonce: 2
0.000127709835603812

Execution Trace

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