ETH Price: $3,803.94 (+0.92%)

Transaction Decoder

Block:
18586239 at Nov-16-2023 06:28:11 PM +UTC
Transaction Fee:
0.002491220230072048 ETH $9.48
Gas Used:
51,784 Gas / 48.107914222 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0bc529c0...67F6Ad93e
2.631801752288008201 Eth2.631802529048215337 Eth0.000000776760207136
0x6cc8dCbC...3b107fd21
(Bitrue)
243.024075937643614869 Eth
Nonce: 436142
243.021584717413542821 Eth
Nonce: 436143
0.002491220230072048

Execution Trace

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