ETH Price: $2,584.22 (-1.78%)

Transaction Decoder

Block:
22551054 at May-24-2025 06:55:11 AM +UTC
Transaction Fee:
0.000031442530783524 ETH $0.08
Gas Used:
52,089 Gas / 0.603630916 Gwei

Emitted Events:

436 LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000000639556f03714a74a5feeaf5736a4a64ff70d206, 0x000000000000000000000000a49503fce3d5c3dc7c65d315e16758d3bb975381, 00000000000000000000000000000000000000000000000037a3660d29193800 )

Account State Difference:

  Address   Before After State Difference Code
0x0639556F...4fF70D206
(Bitget 4)
53.041128388824158419 Eth
Nonce: 258052
53.041096946293374895 Eth
Nonce: 258053
0.000031442530783524
(Titan Builder)
13.128705208788246236 Eth13.128710422897146236 Eth0.0000052141089
0x51491077...4EcF986CA

Execution Trace

LinkToken.transfer( _to=0xa49503fCe3D5C3DC7c65d315E16758d3BB975381, _value=4009160300000000000 ) => ( 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