ETH Price: $3,593.48 (+4.82%)

Transaction Decoder

Block:
18590771 at Nov-17-2023 09:41:47 AM +UTC
Transaction Fee:
0.001569883751664032 ETH $5.64
Gas Used:
51,784 Gas / 30.316000148 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0bc529c0...67F6Ad93e
(Fee Recipient: 0xF1...358F)
19,669.760684321276421223 Eth19,669.760787889276421223 Eth0.000103568
0xf89d7b9c...2B35EaA40
(Bybit: Hot Wallet)
12,340.500135697705476667 Eth
Nonce: 1687039
12,340.498565813953812635 Eth
Nonce: 1687040
0.001569883751664032

Execution Trace

YFI.transfer( recipient=0xa02cC3097500aac9f56e268f75A35ad90c4F4ae5, amount=1619670000000000000 ) => ( 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.5.16;
interface IERC20 {
function totalSupply() external view returns (uint);
function balanceOf(address account) external view returns (uint);
function transfer(address recipient, uint amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint amount) external returns (bool);
function transferFrom(address sender, address recipient, uint amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
}
contract Context {
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
}
contract ERC20 is Context, IERC20 {
using SafeMath for uint;
mapping (address => uint) private _balances;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX