ETH Price: $2,572.21 (-1.91%)

Transaction Decoder

Block:
22550929 at May-24-2025 06:30:11 AM +UTC
Transaction Fee:
0.000060402 ETH $0.16
Gas Used:
30,201 Gas / 2 Gwei

Emitted Events:

370 LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000068472779cb750ce56de8c95c41c1aca8da755e5a, 0x00000000000000000000000028c6c06298d514db089934071355e5743bf21d60, 00000000000000000000000000000000000000000000000bdf8d9afe4dfd0c00 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.929942974241078101 Eth12.929988184466468263 Eth0.000045210225390162
0x51491077...4EcF986CA
0x68472779...8Da755E5A
0.038643588992146 Eth
Nonce: 1
0.038583186992146 Eth
Nonce: 2
0.000060402

Execution Trace

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