ETH Price: $2,971.85 (-2.26%)

Transaction Decoder

Block:
18594148 at Nov-17-2023 09:02:11 PM +UTC
Transaction Fee:
0.001653021676819968 ETH $4.91
Gas Used:
47,008 Gas / 35.164688496 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0bc529c0...67F6Ad93e
(Titan Builder)
28.673108442555280868 Eth28.673500436605637348 Eth0.00039199405035648
0xE81A3969...484F1D18C
0.04 Eth
Nonce: 92
0.038346978323180032 Eth
Nonce: 93
0.001653021676819968

Execution Trace

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