Transaction Hash:
Block:
21937242 at Feb-27-2025 11:01:59 AM +UTC
Transaction Fee:
0.00016954939437715 ETH
$0.50
Gas Used:
131,063 Gas / 1.29364805 Gwei
Emitted Events:
179 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
|
180 |
TARIFF.Transfer( from=[Sender] 0x831dd8e5401884d1dec4653d5b4d0d838c2389dd, to=UniswapV2Pair, value=95116553984824882 )
|
181 |
TARIFF.Approval( owner=[Sender] 0x831dd8e5401884d1dec4653d5b4d0d838c2389dd, spender=TokenApprove, value=115792089237316195423570985008687907853269984665640564039457488891359144815053 )
|
182 |
WETH9.Transfer( src=UniswapV2Pair, dst=[Sender] 0x831dd8e5401884d1dec4653d5b4d0d838c2389dd, wad=1330864387826494 )
|
183 |
UniswapV2Pair.Sync( reserve0=120919253353372537496, reserve1=1695650097500675704 )
|
184 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=95116553984824882, amount1In=0, amount0Out=0, amount1Out=1330864387826494, to=[Sender] 0x831dd8e5401884d1dec4653d5b4d0d838c2389dd )
|
185 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000006a9621f3bf5900ad3a72c32b6514645ea972aeb4, 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 000000000000000000000000831dd8e5401884d1dec4653d5b4d0d838c2389dd, 0000000000000000000000000000000000000000000000000151ec007c865632, 0000000000000000000000000000000000000000000000000004ba6a0314a33e )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x6A9621f3...eA972AEb4 | |||||
0x831dd8e5...38C2389DD |
0.002415657492080628 Eth
Nonce: 499
|
0.002246108097703478 Eth
Nonce: 500
| 0.00016954939437715 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.369683844830135284 Eth | 9.369749376330135284 Eth | 0.0000655315 | |
0xC02aaA39...83C756Cc2 | |||||
0xCE84Ef81...876d6ba35 |
Execution Trace
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
OKX: Dex Aggregator.0a5ea466( )
TokenApprove.claimTokens( _token=0x6A9621f3bf5900Ad3A72c32B6514645eA972AEb4, _who=0x831dd8e5401884d1dEc4653d5b4d0d838C2389DD, _dest=0xCE84Ef81423AC64A04236adb178BaFf876d6ba35, _amount=95116553984824882 )
-
TARIFF.transferFrom( sender=0x831dd8e5401884d1dEc4653d5b4d0d838C2389DD, recipient=0xCE84Ef81423AC64A04236adb178BaFf876d6ba35, amount=95116553984824882 ) => ( True )
-
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x831dd8e5401884d1dEc4653d5b4d0d838C2389DD ) => ( 27566022848810541 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
TARIFF.balanceOf( account=0xCE84Ef81423AC64A04236adb178BaFf876d6ba35 ) => ( 120919253353372537496 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=1330864387826494, to=0x831dd8e5401884d1dEc4653d5b4d0d838C2389DD, data=0x )
-
WETH9.balanceOf( 0x831dd8e5401884d1dEc4653d5b4d0d838C2389DD ) => ( 28896887236637035 )
File 1 of 4: UniswapV2Pair
File 2 of 4: TARIFF
File 3 of 4: WETH9
File 4 of 4: TokenApprove
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 2 of 4: TARIFF
12345678910111213141516/**Website: https://tariffman.vipTelegram: https://t.me/tariffman_ercTwitter: https://x.com/tariffman_erc*/// SPDX-License-Identifier: MITpragma solidity ^0.8.21;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}
File 3 of 4: WETH9
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 4 of 4: TokenApprove
12345678910111213141516/***Submitted for verification at BscScan.com on 2023-06-26*/// SPDX-License-Identifier: MITpragma solidity ^0.8.0;// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)// OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)/**