ETH Price: $3,712.13 (+2.76%)

Transaction Decoder

Block:
18593967 at Nov-17-2023 08:25:47 PM +UTC
Transaction Fee:
0.001547124997259916 ETH $5.74
Gas Used:
51,796 Gas / 29.869584471 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x063eD6F5...49dcbCFFf
669.434803311273625451 Eth
Nonce: 64862
669.433256186276365535 Eth
Nonce: 64863
0.001547124997259916
0x0bc529c0...67F6Ad93e
(Titan Builder)
28.591007287562863555 Eth28.591059083562863555 Eth0.000051796

Execution Trace

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