ETH Price: $2,582.57 (-0.99%)

Transaction Decoder

Block:
20556882 at Aug-18-2024 05:03:11 PM +UTC
Transaction Fee:
0.000308457016586508 ETH $0.80
Gas Used:
113,114 Gas / 2.726957022 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x2CD89BAd...d2B353937
0.002644386816294401 Eth
Nonce: 34
0.002335929799707893 Eth
Nonce: 35
0.000308457016586508
(beaverbuild)
12.782083495885710578 Eth12.782196609885710578 Eth0.000113114

Execution Trace

UniversalRouter.execute( commands=0x0A080C, inputs=[AAAAAAAAAAAAAAAATsN1zeW8kbcknVlq6vj/TDcRlOYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABc8tPqlnXGIpQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmwjBSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/yRo6/XA5XNSWxkfVpsydSyt/rQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmwjBSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQZA5Izmp+GB3VR9EVk5MxHM3BMlfXBGtTzeYAdUjpd5UegWI5dDzsQxKy3gNklhEnY7+A5bLzeFbT6VUpOZIEyUbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABc8tPqlnXGIpQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAATsN1zeW8kbcknVlq6vj/TDcRlOYAAAAAAAAAAAAAAADAKqo5siP+jQoOXE8n6tkIPHVswg==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=2576980377 )
  • Permit2.permit( owner=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, permitSingle=[{name:details, type:tuple, order:1, indexed:false, value:[{name:token, type:address, order:1, indexed:false, value:0x4Ec375Cde5bc91B7249D596aEaf8ff4c371194e6, valueString:0x4Ec375Cde5bc91B7249D596aEaf8ff4c371194e6}, {name:amount, type:uint160, order:2, indexed:false, value:428649510422621292709, valueString:428649510422621292709}, {name:expiration, type:uint48, order:3, indexed:false, value:1724002386, valueString:1724002386}, {name:nonce, type:uint48, order:4, indexed:false, value:0, valueString:0}], valueString:[{name:token, type:address, order:1, indexed:false, value:0x4Ec375Cde5bc91B7249D596aEaf8ff4c371194e6, valueString:0x4Ec375Cde5bc91B7249D596aEaf8ff4c371194e6}, {name:amount, type:uint160, order:2, indexed:false, value:428649510422621292709, valueString:428649510422621292709}, {name:expiration, type:uint48, order:3, indexed:false, value:1724002386, valueString:1724002386}, {name:nonce, type:uint48, order:4, indexed:false, value:0, valueString:0}]}, {name:spender, type:address, order:2, indexed:false, value:0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, valueString:0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD}, {name:sigDeadline, type:uint256, order:3, indexed:false, value:1724002386, valueString:1724002386}], signature=0x90392339A9F86077551F44564E4CC4733704C95F5C11AD4F379801D523A5DE547A0588E5D0F3B10C4ACB780D9258449D8EFE0396CBCDE15B4FA554A4E64813251B )
    • Null: 0x000...001.43b355dc( )
    • Permit2.transferFrom( from=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, to=0x11160b4833605f069df883B3E4A78c7D1602ec9e, amount=428649510422621292709, token=0x4Ec375Cde5bc91B7249D596aEaf8ff4c371194e6 )
      • EACC.transferFrom( from=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, to=0x11160b4833605f069df883B3E4A78c7D1602ec9e, value=428649510422621292709 ) => ( True )
      • WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 0 )
      • UniswapV2Pair.STATICCALL( )
      • EACC.balanceOf( account=0x11160b4833605f069df883B3E4A78c7D1602ec9e ) => ( 428649510422623366370 )
      • UniswapV2Pair.swap( amount0Out=0, amount1Out=0, to=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, data=0x )
        File 1 of 5: UniversalRouter
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: GPL-3.0-or-later
        pragma solidity ^0.8.17;
        // Command implementations
        import {Dispatcher} from './base/Dispatcher.sol';
        import {RewardsCollector} from './base/RewardsCollector.sol';
        import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';
        import {Commands} from './libraries/Commands.sol';
        import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';
        contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector {
        modifier checkDeadline(uint256 deadline) {
        if (block.timestamp > deadline) revert TransactionDeadlinePassed();
        _;
        }
        constructor(RouterParameters memory params) RouterImmutables(params) {}
        /// @inheritdoc IUniversalRouter
        function execute(bytes calldata commands, bytes[] calldata inputs, uint256 deadline)
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 2 of 5: Permit2
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: AGPL-3.0-only
        pragma solidity >=0.8.0;
        /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
        /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
        /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
        /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
        abstract contract ERC20 {
        /*//////////////////////////////////////////////////////////////
        EVENTS
        //////////////////////////////////////////////////////////////*/
        event Transfer(address indexed from, address indexed to, uint256 amount);
        event Approval(address indexed owner, address indexed spender, uint256 amount);
        /*//////////////////////////////////////////////////////////////
        METADATA STORAGE
        //////////////////////////////////////////////////////////////*/
        string public name;
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 3 of 5: EACC
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        // Twitter: https://x.com/eaccether
        // Telegram: https://t.me/eaccether
        // Website: https://eacctoken.com/
        // File: @openzeppelin/contracts/token/ERC20/IERC20.sol
        // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
        pragma solidity ^0.8.20;
        /**
        * @dev Interface of the ERC20 standard as defined in the EIP.
        */
        interface IERC20 {
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 4 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

        File 5 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