Transaction Hash:
Block:
21937227 at Feb-27-2025 10:58:59 AM +UTC
Transaction Fee:
0.000178805526273364 ETH
$0.67
Gas Used:
148,964 Gas / 1.200327101 Gwei
Emitted Events:
195 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
|
196 |
WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=200000000000000000 )
|
197 |
WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=200000000000000000 )
|
198 |
Omira.Transfer( from=UniswapV2Pair, to=Omira, value=1263615375577526118089 )
|
199 |
Omira.Transfer( from=UniswapV2Pair, to=[Sender] 0x6ed6e94a3cdda0550d642ea97cdb4cfd6237c3e1, value=24008692135972996243704 )
|
200 |
UniswapV2Pair.Sync( reserve0=6483368814252917149521297, reserve1=51354163147594432138 )
|
201 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=0, amount1In=200000000000000000, amount0Out=25272307511550522361793, amount1Out=0, to=[Sender] 0x6ed6e94a3cdda0550d642ea97cdb4cfd6237c3e1 )
|
202 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 00000000000000000000000006113abcef9d163c026441b112e70c82ee1c4a79, 0000000000000000000000006ed6e94a3cdda0550d642ea97cdb4cfd6237c3e1, 00000000000000000000000000000000000000000000000002c68af0bb140000, 0000000000000000000000000000000000000000000005158388f62a30d5e0f8 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06113abC...2EE1c4A79 | |||||
0x1f9090aa...8e676c326
Miner
| 1.62854738927975851 Eth | 1.62862187127975851 Eth | 0.000074482 | ||
0x279ba98e...32b7C420F | |||||
0x6ED6e94a...D6237c3E1 |
0.47437177 Eth
Nonce: 0
|
0.274192964473726636 Eth
Nonce: 1
| 0.200178805526273364 | ||
0xC02aaA39...83C756Cc2 | 2,923,202.145864117978134196 Eth | 2,923,202.345864117978134196 Eth | 0.2 |
Execution Trace
ETH 0.2
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.2
WETH9.CALL( )
-
WETH9.transfer( dst=0x279ba98e72F5BEA8EDA92F1bf0a449c32b7C420F, wad=200000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
Omira.balanceOf( account=0x6ED6e94a3CddA0550D642Ea97cDB4CfD6237c3E1 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x279ba98e72F5BEA8EDA92F1bf0a449c32b7C420F ) => ( 51354163147594432138 )
UniswapV2Pair.swap( amount0Out=25272307511550522361793, amount1Out=0, to=0x6ED6e94a3CddA0550D642Ea97cDB4CfD6237c3E1, data=0x )
-
Omira.transfer( to=0x6ED6e94a3CddA0550D642Ea97cDB4CfD6237c3E1, value=25272307511550522361793 ) => ( True )
-
Omira.balanceOf( account=0x279ba98e72F5BEA8EDA92F1bf0a449c32b7C420F ) => ( 6483368814252917149521297 )
-
WETH9.balanceOf( 0x279ba98e72F5BEA8EDA92F1bf0a449c32b7C420F ) => ( 51354163147594432138 )
-
-
Omira.balanceOf( account=0x6ED6e94a3CddA0550D642Ea97cDB4CfD6237c3E1 ) => ( 24008692135972996243704 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: Omira
12345678910111213141516// Copyright (C) 2015, 2016, 2017 Dapphub// This program is free software: you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation, either version 3 of the License, or// (at your option) any later version.// This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.// You should have received a copy of the GNU General Public License// along with this program. If not, see <http://www.gnu.org/licenses/>.pragma solidity ^0.4.18;
File 2 of 3: UniswapV2Pair
12345678910111213141516// File: contracts/interfaces/IUniswapV2Pair.solpragma solidity >=0.5.0;interface IUniswapV2Pair {event Approval(address indexed owner, address indexed spender, uint value);event Transfer(address indexed from, address indexed to, uint value);function name() external pure returns (string memory);function symbol() external pure returns (string memory);function decimals() external pure returns (uint8);function totalSupply() external view returns (uint);function balanceOf(address owner) external view returns (uint);function allowance(address owner, address spender) external view returns (uint);function approve(address spender, uint value) external returns (bool);
File 3 of 3: Omira
12345678910111213141516//SPDX-License-Identifier: MIT/*- Omira Labs native token -Rethinking predictive intelligence for decentralized finance.Our links:https://omira.tech/https://t.me/OmiraAIhttps://x.com/OmiraAI/*// File: @openzeppelin/contracts/utils/Context.sol