ETH Price: $3,784.60 (-1.04%)

Transaction Decoder

Block:
18586120 at Nov-16-2023 06:04:23 PM +UTC
Transaction Fee:
0.001751136 ETH $6.63
Gas Used:
30,192 Gas / 58 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0bc529c0...67F6Ad93e
2.342540252045787038 Eth2.342736633355513646 Eth0.000196381309726608
0x3A522573...5503D5F9E
0.006328730238012161 Eth
Nonce: 77
0.004577594238012161 Eth
Nonce: 78
0.001751136

Execution Trace

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