ETH Price: $3,777.36 (+1.54%)

Transaction Decoder

Block:
18586004 at Nov-16-2023 05:41:11 PM +UTC
Transaction Fee:
0.001590935152986372 ETH $6.01
Gas Used:
29,884 Gas / 53.237021583 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0bc529c0...67F6Ad93e
0x0FE6642c...c8C4f735D
0.003156244 Eth
Nonce: 9351
0.001565308847013628 Eth
Nonce: 9352
0.001590935152986372
(beaverbuild)
16.547078104811884946 Eth16.547107988811884946 Eth0.000029884

Execution Trace

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