ETH Price: $2,940.17 (-1.57%)

Transaction Decoder

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 Code
0x9369cf1C...E86fef00D
0.017568198139427703 Eth
Nonce: 283
0.017428017487370895 Eth
Nonce: 284
0.000140180652056808
(beaverbuild)
21.455076863062029977 Eth21.455135921062029977 Eth0.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 0x9369cf1ce023a4b07d8667da2127b4ce86fef00d.CALL( )
          File 1 of 5: ZeroEx
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          /*
          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 at
          http://www.apache.org/licenses/LICENSE-2.0
          Unless required by applicable law or agreed to in writing, software
          distributed 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 and
          limitations under the License.
          */
          pragma solidity ^0.6.5;
          pragma experimental ABIEncoderV2;
          import "@0x/contracts-utils/contracts/src/v06/LibBytesV06.sol";
          import "./migrations/LibBootstrap.sol";
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 2 of 5: UniswapFeature
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // 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 at
          http://www.apache.org/licenses/LICENSE-2.0
          Unless required by applicable law or agreed to in writing, software
          distributed 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 and
          limitations under the License.
          */
          pragma solidity ^0.6.5;
          pragma experimental ABIEncoderV2;
          import "@0x/contracts-erc20/contracts/src/v06/IERC20TokenV06.sol";
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 3 of 5: SovrunToken
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // 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
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 4 of 5: UniswapV2Pair
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // File: contracts/interfaces/IUniswapV2Pair.sol
          pragma 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);
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 5 of 5: WETH9
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // 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;
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX