ETH Price: $3,777.63 (-2.65%)

Transaction Decoder

Block:
19430308 at Mar-14-2024 02:32:23 AM +UTC
Transaction Fee:
0.003666587478512957 ETH $13.85
Gas Used:
73,951 Gas / 49.581310307 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x5AEf5bba...57b87c62c
(MEV Builder: 0x88c...34A)
1.890851409399841772 Eth1.890851483350841772 Eth0.000000073951
0xa8ab8Dc3...88AC50359
3.269673992375980093 Eth
Nonce: 89
3.266007404897467136 Eth
Nonce: 90
0.003666587478512957

Execution Trace

DeepFakeAI.transfer( recipient=0x658579BFFd19C20F48c9fA16bE306534f032654A, amount=1220269996190801412115814 ) => ( 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
/**
* Website: FakeAI.io
* Telegram: https://t.me/FakeAI
* Twitter: https://twitter.com/DeepFakeAI_
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this;
return msg.data;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX