Transaction Hash:
Block:
22699072 at Jun-13-2025 11:59:35 PM +UTC
Transaction Fee:
0.000140180652056808 ETH
$0.41
Gas Used:
118,116 Gas / 1.186804938 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x9369cf1C...E86fef00D |
0.017568198139427703 Eth
Nonce: 283
|
0.017428017487370895 Eth
Nonce: 284
| 0.000140180652056808 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 21.455076863062029977 Eth | 21.455135921062029977 Eth | 0.000059058 |
Execution Trace
ZeroEx.d9627aa4( )
UniswapFeature.sellToUniswap( tokens=[0x031B8d752d73d7Fe9678ACEf26e818280D0646b4, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE], sellAmount=29000000000000000000000, minBuyAmount=191543027133483264, isSushi=False ) => ( buyAmount=3963877391197344453575983046348115674221700746820753546331534351508065746944 )
-
SovrunToken.transferFrom( from=0x9369cf1CE023a4b07d8667Da2127B4cE86fef00D, to=0x405035fA8B36a7AD93f96C9c211Cd5941c0ad6dA, amount=29000000000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
UniswapV2Pair.swap( amount0Out=0, amount1Out=190377952451555774, to=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, data=0x )
-
WETH9.transfer( dst=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, wad=190377952451555774 ) => ( True )
-
SovrunToken.balanceOf( account=0x405035fA8B36a7AD93f96C9c211Cd5941c0ad6dA ) => ( 4003316330177863384840913 )
-
WETH9.balanceOf( 0x405035fA8B36a7AD93f96C9c211Cd5941c0ad6dA ) => ( 26168927656557358876 )
-
WETH9.withdraw( wad=190377952451555774 )
- ETH 0.190377952451555774
ZeroEx.CALL( )
- ETH 0.190377952451555774
- ETH 0.190377952451555774
0x9369cf1ce023a4b07d8667da2127b4ce86fef00d.CALL( )
-
sellToUniswap[UniswapFeature (ln:98)]
File 1 of 5: ZeroEx
File 2 of 5: UniswapFeature
File 3 of 5: SovrunToken
File 4 of 5: UniswapV2Pair
File 5 of 5: WETH9
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: 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";
File 3 of 5: SovrunToken
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)pragma solidity ^0.8.0;import "./IAccessControl.sol";import "../utils/Context.sol";import "../utils/Strings.sol";import "../utils/introspection/ERC165.sol";/*** @dev Contract module that allows children to implement role-based access* control mechanisms. This is a lightweight version that doesn't allow enumerating role* members except through off-chain means by accessing the contract event logs. Some* applications may benefit from on-chain enumerability, for those cases see* {AccessControlEnumerable}.** Roles are referred to by their `bytes32` identifier. These should be exposed* in the external API and be unique. The best way to achieve this is by
File 4 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 5 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;