Transaction Decoder
Transaction Hash:
Block:
22553531 at May-24-2025 03:15:59 PM +UTC
Transaction Fee:
0.00009700994738544 ETH
$0.36
Gas Used:
114,820 Gas / 0.844887192 Gwei
Emitted Events:
360 |
WETH9.Deposit( dst=[Receiver] AggregationRouterV6, wad=39090000000000000 )
|
361 |
WETH9.Transfer( src=[Receiver] AggregationRouterV6, dst=UniswapV2Pair, wad=39090000000000000 )
|
362 |
BTC2Token.Transfer( from=UniswapV2Pair, to=[Sender] 0xaf948e328c1e0e905f51dd8c0a6d4ed97b80ca77, value=292509380840 )
|
363 |
UniswapV2Pair.Sync( reserve0=783098512247247, reserve1=104375869878836201235 )
|
364 |
UniswapV2Pair.Swap( sender=[Receiver] AggregationRouterV6, amount0In=0, amount1In=39090000000000000, amount0Out=292509380840, amount1Out=0, to=[Sender] 0xaf948e328c1e0e905f51dd8c0a6d4ed97b80ca77 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3FEB4fEA...296d17c6d | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 19.71693218860691071 Eth | 19.71693221673781071 Eth | 0.0000000281309 | |
0xaF948E32...97B80Ca77 |
0.088631495020193429 Eth
Nonce: 43
|
0.049444485072807989 Eth
Nonce: 44
| 0.03918700994738544 | ||
0xC02aaA39...83C756Cc2 | 2,836,023.055147290084390203 Eth | 2,836,023.094237290084390203 Eth | 0.03909 | ||
0xD6a347c9...1bBe911cD |
Execution Trace
ETH 0.03909
AggregationRouterV6.ethUnoswap( minReturn=291046833935, dex=1457117133644275509443921705546617374541269731031388852685 ) => ( returnAmount=292509380840 )
File 1 of 4: AggregationRouterV6
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: BTC2Token
12345678910111213141516/*,โโโโโโ ,โโโโโโโโโโโโโโ,,,โโโโโโโโโโโโโโโฌโฌโฌโฌโฌโฌโฌโฌโฌโฌโฌโฌโฌโโโโโโ,โโ โโโโฌโฃโโโโโโโโฌโโโฌโฌโโโโโโโโโโโโโโโโโโโโโโ,โโโโ โโโโฌโฃโโโโโโโฌโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโฟโโโโโโโโโโฌโโโโโโโโโจ โ โโโโโโโโโโโโโฌโฌโฌโฌโฌโโโโโโโโโโโโโโโ โโโโฃโโโโโโโโโโโโโ โโโ โโโโโโโโโโโโโฌโฌโฌโฌโฌโฌโฌโฌโฌโฌโฌโฌโโโโโโโโโโโโโโฅ โโโโฌโฌโโโโโโโโโโโ รโโ โโโโโโโ โฌโฉโโโโโโโโโโโโฌโฌโฌโฌโฌโฌโฌโฌโฌโโโโโโโโโโโโโโโโโฌโโโโโโโโ โโโโโโโโ " โโโโโโโโโโโฌโฌโฌโฌโฌโฌโฌโฌโโโโโโโโ,โโโโโโโโโโโ ^"โโโโ"โโโ @โ โโโโโโโโโโฌโฌโฌโฌโฌโฌโฌโโยตโโโโโโ, โโโ โ โโโ ]โโโโ โโโโโโโโโโฌโฌโฌโฌโฌโโโโโโโโโ โ โโโ ]โ โโโโโโ โโโโโโโโโโฌโฌโฌโฌโฃโโโโโโโ โโโโโ ,โโโ โร โโโโโโโ โ โโโโโโโโโโโฌโฌโฌโฃโโโโโโโ โโโโโโ โโโ ฯโโซโโโโโโโโโ โ โโโโโโโโโโโฌโฌโโยตโโโโยต โโโโโโโ` ,โ ,โโ โโโโโโโโโโ โโโฯ โโโโโโโโโโโฌโฌโโโโโโโยตโโโ` ,โโ,โโฯฯฯโ โโโโโโโโโโโโโโโโโโ โโโโฌโโโโโโโโฌโโโ
File 2 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 3 of 4: 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 4 of 4: BTC2Token
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].