ETH Price: $2,494.88 (-1.42%)

Transaction Decoder

Block:
21925127 at Feb-25-2025 06:26:47 PM +UTC
Transaction Fee:
0.00051024197404092 ETH $1.27
Gas Used:
182,930 Gas / 2.789274444 Gwei

Emitted Events:

135 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=412630400000000000 )
136 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=412630400000000000 )
137 ArcheriumAi.Transfer( from=UniswapV2Pair, to=ArcheriumAi, value=13815604817130436824617 )
138 ArcheriumAi.Transfer( from=UniswapV2Pair, to=[Sender] 0x4de47440e71c9982f02c73e2421e730334650392, value=262496491525478299667727 )
139 UniswapV2Pair.Sync( reserve0=10084096335733129672235401, reserve1=15426528616726084280 )
140 UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=412630400000000000, amount0Out=276312096342608736492344, amount1Out=0, to=[Sender] 0x4de47440e71c9982f02c73e2421e730334650392 )
141 GnosisSafeProxy.0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d( 0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d, 0x0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad, 000000000000000000000000000000000000000000000000000bf8a223090000 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
10.474142600410394097 Eth10.474325530410394097 Eth0.00018293
0x4Ca4AC7c...e5Ba44765
0x4dE47440...334650392
2.538424208828384533 Eth
Nonce: 29
2.121913966854343613 Eth
Nonce: 30
0.41651024197404092
0xa74FA823...722eF09eE 88.563093404389266819 Eth88.566463004389266819 Eth0.0033696
0xBF358f70...C1AF635Aa
0xC02aaA39...83C756Cc2 2,910,902.907363003848291006 Eth2,910,903.319993403848291006 Eth0.4126304

Execution Trace

ETH 0.416 UniversalRouter.execute( commands=0x0B0804, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFufUpn4cAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFufUpn4cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwoVwBFxycnHk6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAC/NY9wI9b9DRGsKE60e4d8GvY1qg==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACnT6gjvIYX+jIKlms9EbD3Iu8J7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL+KIjCQAA], deadline=1740508020 )
  • ETH 0.4126304 WETH9.CALL( )
  • WETH9.transfer( dst=0x4Ca4AC7c42De9f29B48Af02c5C3B533e5Ba44765, wad=412630400000000000 ) => ( True )
  • ArcheriumAi.balanceOf( account=0x4dE47440E71C9982F02c73E2421E730334650392 ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x4Ca4AC7c42De9f29B48Af02c5C3B533e5Ba44765 ) => ( 15426528616726084280 )
  • UniswapV2Pair.swap( amount0Out=276312096342608736492344, amount1Out=0, to=0x4dE47440E71C9982F02c73E2421E730334650392, data=0x )
    • ArcheriumAi.transfer( recipient=0x4dE47440E71C9982F02c73E2421E730334650392, amount=276312096342608736492344 ) => ( True )
    • ArcheriumAi.balanceOf( account=0x4Ca4AC7c42De9f29B48Af02c5C3B533e5Ba44765 ) => ( 10084096335733129672235401 )
    • WETH9.balanceOf( 0x4Ca4AC7c42De9f29B48Af02c5C3B533e5Ba44765 ) => ( 15426528616726084280 )
    • ArcheriumAi.balanceOf( account=0x4dE47440E71C9982F02c73E2421E730334650392 ) => ( 262496491525478299667727 )
    • ETH 0.0033696 GnosisSafeProxy.CALL( )
      • ETH 0.0033696 GnosisSafe.DELEGATECALL( )
        File 1 of 6: 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 6: 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 3 of 6: 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 4 of 6: ArcheriumAi
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        /*
        Description: ...
        Website: https://archeriumai.com/
        Twitter: https://x.com/archeriumai
        Telegram: https://t.me/archeriumai
        */
        /*
        ascii ...
        */
        /*** Solidity version declaration ***/
        pragma solidity 0.8.20;
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 5 of 6: GnosisSafeProxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: LGPL-3.0-only
        pragma solidity >=0.7.0 <0.9.0;
        /// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
        /// @author Richard Meissner - <richard@gnosis.io>
        interface IProxy {
        function masterCopy() external view returns (address);
        }
        /// @title GnosisSafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
        /// @author Stefan George - <stefan@gnosis.io>
        /// @author Richard Meissner - <richard@gnosis.io>
        contract GnosisSafeProxy {
        // singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
        // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
        address internal singleton;
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 6 of 6: GnosisSafe
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: LGPL-3.0-only
        pragma solidity >=0.7.0 <0.9.0;
        import "./base/ModuleManager.sol";
        import "./base/OwnerManager.sol";
        import "./base/FallbackManager.sol";
        import "./base/GuardManager.sol";
        import "./common/EtherPaymentFallback.sol";
        import "./common/Singleton.sol";
        import "./common/SignatureDecoder.sol";
        import "./common/SecuredTokenTransfer.sol";
        import "./common/StorageAccessible.sol";
        import "./interfaces/ISignatureValidator.sol";
        import "./external/GnosisSafeMath.sol";
        /// @title Gnosis Safe - A multisignature wallet with support for confirmations using signed messages based on ERC191.
        /// @author Stefan George - <stefan@gnosis.io>
        /// @author Richard Meissner - <richard@gnosis.io>
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX