Transaction Hash:
Block:
21845361 at Feb-14-2025 02:41:23 PM +UTC
Transaction Fee:
0.0002905230879811 ETH
$1.04
Gas Used:
119,873 Gas / 2.4235907 Gwei
Emitted Events:
450 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000034579affdeccc1 )
|
451 |
WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=500000000000000 )
|
452 |
WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=500000000000000 )
|
453 |
OMTokenV2.Transfer( from=UniswapV2Pair, to=[Sender] 0xb1bbb42dca257732275714314a09eb244435e52d, value=244418273391183936 )
|
454 |
UniswapV2Pair.Sync( reserve0=444772526952762702900689, reserve1=907130321390635522853 )
|
455 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=0, amount1In=500000000000000, amount0Out=244418273391183936, amount1Out=0, to=[Sender] 0xb1bbb42dca257732275714314a09eb244435e52d )
|
456 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000003593d125a4f7849a1b059e64f4517a86dd60c95d, 000000000000000000000000b1bbb42dca257732275714314a09eb244435e52d, 0000000000000000000000000000000000000000000000000001c6bf52634000, 0000000000000000000000000000000000000000000000000364591fea188840 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3593D125...6Dd60c95d | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 19.477007568426199879 Eth | 19.477079307845702643 Eth | 0.000071739419502764 | |
0xB1bbb42d...44435e52D |
0.001060861892920519 Eth
Nonce: 0
|
0.000270338804939419 Eth
Nonce: 1
| 0.0007905230879811 | ||
0xC02aaA39...83C756Cc2 | 2,998,657.44514183100502103 Eth | 2,998,657.44564183100502103 Eth | 0.0005 | ||
0xe46935aE...6d2845370 |
Execution Trace
ETH 0.0005
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.0005
WETH9.CALL( )
-
WETH9.transfer( dst=0xe46935aE80E05cdEbD4a4008B6ccaA36d2845370, wad=500000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
OMTokenV2.balanceOf( account=0xB1bbb42dCA257732275714314A09Eb244435e52D ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xe46935aE80E05cdEbD4a4008B6ccaA36d2845370 ) => ( 907130321390635522853 )
UniswapV2Pair.swap( amount0Out=244418273391183936, amount1Out=0, to=0xB1bbb42dCA257732275714314A09Eb244435e52D, data=0x )
-
OMTokenV2.transfer( recipient=0xB1bbb42dCA257732275714314A09Eb244435e52D, amount=244418273391183936 ) => ( True )
-
OMTokenV2.balanceOf( account=0xe46935aE80E05cdEbD4a4008B6ccaA36d2845370 ) => ( 444772526952762702900689 )
-
WETH9.balanceOf( 0xe46935aE80E05cdEbD4a4008B6ccaA36d2845370 ) => ( 907130321390635522853 )
-
-
OMTokenV2.balanceOf( account=0xB1bbb42dCA257732275714314A09Eb244435e52D ) => ( 244418273391183936 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: OMTokenV2
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: OMTokenV2
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.6.12;import "openzeppelin-solidity/contracts/token/ERC20/ERC20Capped.sol";import "openzeppelin-solidity/contracts/access/Ownable.sol";contract OMTokenV2 is ERC20Capped, Ownable {constructor(address owner_) public ERC20("MANTRA DAO", "OM") ERC20Capped(888888888 * 10**18) {transferOwnership(owner_);}function mint(address account, uint256 amount) external onlyOwner returns (bool success) {_mint(account, amount);return true;}function renounceOwnership() public override {require(totalSupply() == cap(), "Total supply not equals to cap");super.renounceOwnership();}