ETH Price: $3,575.17 (+0.97%)

Transaction Decoder

Block:
18587176 at Nov-16-2023 09:36:59 PM +UTC
Transaction Fee:
0.002022503403582496 ETH $7.23
Gas Used:
51,784 Gas / 39.056531044 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0bc529c0...67F6Ad93e
3.206694699230735431 Eth3.206798267230735431 Eth0.000103568
0xDFd5293D...a1343963d
(Binance 16)
17,686.544237548775825652 Eth
Nonce: 7554501
17,686.542215045372243156 Eth
Nonce: 7554502
0.002022503403582496

Execution Trace

YFI.transfer( recipient=0x648e9390D7dBF9eE00E606b0a62e77c58f767A40, amount=1909300000000000000 ) => ( 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