ETH Price: $3,560.15 (+2.14%)

Transaction Decoder

Block:
20604191 at Aug-25-2024 07:43:35 AM +UTC
Transaction Fee:
0.0001501985464038 ETH $0.53
Gas Used:
92,700 Gas / 1.620264794 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x2CD89BAd...d2B353937
0.102510610253429038 Eth
Nonce: 115
0.102360411707025238 Eth
Nonce: 116
0.0001501985464038
(Titan Builder)
5.117380881305026537 Eth5.117427231305026537 Eth0.00004635

Execution Trace

UniversalRouter.execute( commands=0x0A080C, inputs=[AAAAAAAAAAAAAAAA01Fn4QILf13v0dzsCPXJIChVkG0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQoXI34g5+aqwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmyuepAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/yRo6/XA5XNSWxkfVpsydSyt/rQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmyuepAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQTA2qe57sL5A9IgVjXgKLjsumbfXV2d7421NqM9aFdemW2RayfFIEKrwij9fsexa5wXrzgfdDJfiBblgL/StVmMbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQoXI34g5+aqwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAA01Fn4QILf13v0dzsCPXJIChVkG0AAAAAAAAAAAAAAADAKqo5siP+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:0xD35167e1020b7f5DEFd1DCEc08F5C9202855906d, valueString:0xD35167e1020b7f5DEFd1DCEc08F5C9202855906d}, {name:amount, type:uint160, order:2, indexed:false, value:3323322288825593469611, valueString:3323322288825593469611}, {name:expiration, type:uint48, order:3, indexed:false, value:1724573609, valueString:1724573609}, {name:nonce, type:uint48, order:4, indexed:false, value:0, valueString:0}], valueString:[{name:token, type:address, order:1, indexed:false, value:0xD35167e1020b7f5DEFd1DCEc08F5C9202855906d, valueString:0xD35167e1020b7f5DEFd1DCEc08F5C9202855906d}, {name:amount, type:uint160, order:2, indexed:false, value:3323322288825593469611, valueString:3323322288825593469611}, {name:expiration, type:uint48, order:3, indexed:false, value:1724573609, valueString:1724573609}, {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:1724573609, valueString:1724573609}], signature=0x3036A9EE7BB0BE40F488158D780A2E3B2E99B7D757677BE36D4DA8CF5A15D7A65B645AC9F14810AAF08A3F5FB1EC5AE705EBCE07DD0C97E205B9602FF4AD56631B )
    • Null: 0x000...001.7d188f9c( )
    • Permit2.transferFrom( from=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, to=0x79fa23d1E7580279C380F219CD03d832171F9992, amount=3323322288825593469611, token=0xD35167e1020b7f5DEFd1DCEc08F5C9202855906d )
      • MAGAR.transferFrom( from=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, to=0x79fa23d1E7580279C380F219CD03d832171F9992, amount=3323322288825593469611 )
        • 0xa25f280d8581463533d4f38cb408397f11de163c.53f204d6( )
          File 1 of 3: 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 3: 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 3: MAGAR
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          /**
          *Submitted for verification at Etherscan.io on 2024-08-08
          */
          /**
          *Submitted for verification at Etherscan.io on 2024-08-01
          */
          /**
          *Submitted for verification at Etherscan.io on 2024-06-20
          */
          /**
          *Submitted for verification at Etherscan.io on 2024-05-18
          */
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX