ETH Price: $3,736.06 (-1.59%)
Gas: 0.37 Gwei

Transaction Decoder

Block:
22683269 at Jun-11-2025 07:00:35 PM +UTC
Transaction Fee:
0.000120708 ETH $0.45
Gas Used:
30,177 Gas / 4 Gwei

Emitted Events:

591 LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000002bd1d40900ef5cd5ca2bc8157794c89d0a29e9af, 0x00000000000000000000000028c6c06298d514db089934071355e5743bf21d60, 0000000000000000000000000000000000000000000000008c2a687ce7720000 )

Account State Difference:

  Address   Before After State Difference Code
0x2BD1d409...D0a29E9aF
(Binance Dep: 0x2BD1d40900Ef5CD5cA2bC8157794c89D0a29E9aF)
0.015735498270919392 Eth
Nonce: 1
0.015614790270919392 Eth
Nonce: 2
0.000120708
(Titan Builder)
9.027175298256720278 Eth9.027211696352549513 Eth0.000036398095829235
0x51491077...4EcF986CA

Execution Trace

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