ETH Price: $4,758.63 (+1.36%)

Transaction Decoder

Block:
18586639 at Nov-16-2023 07:48:23 PM +UTC
Transaction Fee:
0.002017582035009808 ETH $9.60
Gas Used:
34,696 Gas / 58.150277698 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0bc529c0...67F6Ad93e
0x58b70406...E05925023
(Bitso 1)
303.102454069205264883 Eth
Nonce: 243225
303.100436487170255075 Eth
Nonce: 243226
0.002017582035009808
(beaverbuild)
19.792438000380794178 Eth19.792472696380794178 Eth0.000034696

Execution Trace

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