Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x06FD4bA7...Caa99E3B0 | (Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0) |
0.010433034 Eth
Nonce: 112554
|
0.010372632 Eth
Nonce: 112555
| 0.000060402 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.021893844760407924 Eth | 9.021930774143618493 Eth | 0.000036929383210569 | |
0x51491077...4EcF986CA |
Execution Trace
LinkToken.transfer( _to=0x28C6c06298d514Db089934071355E5743bf21d60, _value=1657998628200000000000 ) => ( 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;}