Transaction Hash:
Block:
21780592 at Feb-05-2025 01:28:59 PM +UTC
Transaction Fee:
0.0003539458 ETH
$1.34
Gas Used:
136,133 Gas / 2.6 Gwei
Emitted Events:
241 |
STRATEGICBITCOINRESERVE.Transfer( from=[Sender] 0x0e06d185d38bd6872e647046af8a7a9a087199d0, to=UniswapV2Pair, value=1869244909011 )
|
242 |
STRATEGICBITCOINRESERVE.Approval( owner=[Sender] 0x0e06d185d38bd6872e647046af8a7a9a087199d0, spender=[Receiver] ZeroEx, value=0 )
|
243 |
WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] ZeroEx, wad=236228406692873218 )
|
244 |
UniswapV2Pair.Sync( reserve0=152302883969382805392, reserve1=1203406859667696 )
|
245 |
UniswapV2Pair.Swap( sender=[Receiver] ZeroEx, amount0In=0, amount1In=1869244909011, amount0Out=236228406692873218, amount1Out=0, to=[Receiver] ZeroEx )
|
246 |
WETH9.Withdrawal( src=[Receiver] ZeroEx, wad=236228406692873218 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0E06d185...a087199d0 |
0.524585373229493321 Eth
Nonce: 35
|
0.760459834122366539 Eth
Nonce: 36
| 0.235874460892873218 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.864030606691992912 Eth | 10.864211801882502538 Eth | 0.000181195190509626 | |
0xC02aaA39...83C756Cc2 | 2,768,064.951284209018979916 Eth | 2,768,064.715055802326106698 Eth | 0.236228406692873218 | ||
0xcC6f7439...ca6E5bfeE | |||||
0xd6203889...FE9dD8e02 |
Execution Trace
ZeroEx.d9627aa4( )
UniswapFeature.sellToUniswap( tokens=[0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE], sellAmount=1869244909011, minBuyAmount=235047264659408834, isSushi=False ) => ( buyAmount=236228406692873218 )
-
STRATEGICBITCOINRESERVE.transferFrom( sender=0x0E06d185D38Bd6872E647046AF8A7a9a087199d0, recipient=0xcC6f7439147338E0401A76dB978d7d0ca6E5bfeE, amount=1869244909011 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
UniswapV2Pair.swap( amount0Out=236228406692873218, amount1Out=0, to=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, data=0x )
-
WETH9.transfer( dst=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, wad=236228406692873218 ) => ( True )
-
WETH9.balanceOf( 0xcC6f7439147338E0401A76dB978d7d0ca6E5bfeE ) => ( 152302883969382805392 )
-
STRATEGICBITCOINRESERVE.balanceOf( account=0xcC6f7439147338E0401A76dB978d7d0ca6E5bfeE ) => ( 1203406859667696 )
-
WETH9.withdraw( wad=236228406692873218 )
- ETH 0.236228406692873218
ZeroEx.CALL( )
- ETH 0.236228406692873218
- ETH 0.236228406692873218
0x0e06d185d38bd6872e647046af8a7a9a087199d0.CALL( )
-
sellToUniswap[UniswapFeature (ln:98)]
File 1 of 5: ZeroEx
File 2 of 5: UniswapV2Pair
File 3 of 5: STRATEGICBITCOINRESERVE
File 4 of 5: WETH9
File 5 of 5: UniswapFeature
12345678910111213141516/*Copyright 2020 ZeroEx Intl.Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.*/pragma solidity ^0.6.5;pragma experimental ABIEncoderV2;import "@0x/contracts-utils/contracts/src/v06/LibBytesV06.sol";import "./migrations/LibBootstrap.sol";
File 2 of 5: 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 5: STRATEGICBITCOINRESERVE
12345678910111213141516// SPDX-License-Identifier: UNLICENSE/*https://x.com/SenLummis/status/1854208373740458432*/pragma solidity 0.8.28;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}
File 4 of 5: 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 5 of 5: UniswapFeature
12345678910111213141516// SPDX-License-Identifier: Apache-2.0/*Copyright 2020 ZeroEx Intl.Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.*/pragma solidity ^0.6.5;pragma experimental ABIEncoderV2;import "@0x/contracts-erc20/contracts/src/v06/IERC20TokenV06.sol";