ETH Price: $3,790.40 (-1.58%)

Transaction Decoder

Block:
18905344 at Dec-31-2023 12:04:47 PM +UTC
Transaction Fee:
0.000599587998902464 ETH $2.27
Gas Used:
46,439 Gas / 12.911302976 Gwei

Emitted Events:

278 LinkToken.Approval( owner=[Sender] 0xae3642a03a1e4bd7ab7d919d14c54ecf1bfdddd3, spender=0x0439e60F...7f400C3f1, value=59645003000000000000 )

Account State Difference:

  Address   Before After State Difference Code
5.880746035061229749 Eth5.880750678961229749 Eth0.0000046439
0x51491077...4EcF986CA
0xAE3642A0...f1BFdddd3
0.005554108536030272 Eth
Nonce: 5
0.004954520537127808 Eth
Nonce: 6
0.000599587998902464

Execution Trace

LinkToken.approve( _spender=0x0439e60F02a8900a951603950d8D4527f400C3f1, _value=59645003000000000000 ) => ( 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