ETH Price: $2,761.73 (-2.42%)

Transaction Decoder

Block:
22551023 at May-24-2025 06:48:59 AM +UTC
Transaction Fee:
0.000113211469144389 ETH $0.31
Gas Used:
47,289 Gas / 2.394033901 Gwei

Emitted Events:

76 LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000053cb56920b0c081fa9f7eedb1e1c0b99f44eea42, 0x0000000000000000000000004a645ae405803fdf7e3451c329b425716e3739e4, 00000000000000000000000000000000000000000000000044233db384c64800 )

Account State Difference:

  Address   Before After State Difference Code
0x51491077...4EcF986CA
0x53cB5692...9f44EEA42
0.001711698576668077 Eth
Nonce: 1
0.001598487107523688 Eth
Nonce: 2
0.000113211469144389
(MEV Builder: 0x6adb...200)
5.030895780863961211 Eth5.030990358863961211 Eth0.000094578

Execution Trace

LinkToken.transfer( _to=0x4A645aE405803Fdf7E3451c329B425716E3739e4, _value=4909835860000000000 ) => ( success=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