Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x0639556F...4fF70D206 | (Bitget 4) |
53.041128388824158419 Eth
Nonce: 258052
|
53.041096946293374895 Eth
Nonce: 258053
| 0.000031442530783524 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.128705208788246236 Eth | 13.128710422897146236 Eth | 0.0000052141089 | |
0x51491077...4EcF986CA |
Execution Trace
LinkToken.transfer( _to=0xa49503fCe3D5C3DC7c65d315E16758d3BB975381, _value=4009160300000000000 ) => ( success=True )
transfer[LinkToken (ln:252)]
transfer[LinkToken (ln:257)]
1234567891011121314151617181920212223242526pragma 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 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal constant returns (uint256) {assert(b <= a);return a - b;}