ETH Price: $2,778.25 (+3.16%)

Transaction Decoder

Block:
22535359 at May-22-2025 02:12:59 AM +UTC
Transaction Fee:
0.000060402 ETH $0.17
Gas Used:
30,201 Gas / 2 Gwei

Emitted Events:

533 LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000006fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, 0x00000000000000000000000028c6c06298d514db089934071355e5743bf21d60, 000000000000000000000000000000000000000000000059e15a67e509f41000 )

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.010433034 Eth
Nonce: 112554
0.010372632 Eth
Nonce: 112555
0.000060402
(Titan Builder)
9.021893844760407924 Eth9.021930774143618493 Eth0.000036929383210569
0x51491077...4EcF986CA

Execution Trace

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