ETH Price: $2,737.89 (+6.39%)

Transaction Decoder

Block:
19536366 at Mar-29-2024 01:23:47 AM +UTC
Transaction Fee:
0.0024914827014 ETH $6.82
Gas Used:
100,000 Gas / 24.914827014 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
6.379390785519283253 Eth6.379469880739983253 Eth0.0000790952207
0x8b76Cd46...cAe0AF157
0.320902012727460808 Eth
Nonce: 9
0.318410530026060808 Eth
Nonce: 10
0.0024914827014

Execution Trace

ETH 0.0075 AggregationRouter.swap( caller=0xd12bcdFB9A39BE79DA3bDF02557EFdcD5CA59e77, desc=[{name:srcToken, type:address, order:1, indexed:false, value:0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, valueString:0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE}, {name:dstToken, type:address, order:2, indexed:false, value:0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E, valueString:0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E}, {name:srcReceivers, type:address[], order:3, indexed:false, value:[0x96c195F6643A3D797cb90cb6BA0Ae2776D51b5F3], valueString:[0x96c195F6643A3D797cb90cb6BA0Ae2776D51b5F3]}, {name:srcAmounts, type:uint256[], order:4, indexed:false, value:[22500000000000], valueString:[22500000000000]}, {name:dstReceiver, type:address, order:5, indexed:false, value:0x8b76Cd4640b504528ce1CB6C4DE435ccAe0AF157, valueString:0x8b76Cd4640b504528ce1CB6C4DE435ccAe0AF157}, {name:amount, type:uint256, order:6, indexed:false, value:7500000000000000, valueString:7500000000000000}, {name:minReturnAmount, type:uint256, order:7, indexed:false, value:635988872841764, valueString:635988872841764}, {name:flags, type:uint256, order:8, indexed:false, value:0, valueString:0}, {name:permit, type:bytes, order:9, indexed:false, value:0x, valueString:0x}], data=0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000E0000000000000000000000000EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE000000000000000000000000CF0C122C6B73FF809C693DB761E7BAEBE62B6A2E0000000000000000000000000000000000000000000000000002426DB2D8CA240000000000000000000000008B76CD4640B504528CE1CB6C4DE435CCAE0AF1570000000000000000000000000000000000000000000000000000017FA3A7DE74000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000C0000000000000000000000000CA7C2771D248DCBE09EABE0CE57A62E18DA178C0000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000000000000000000000000CF0C122C6B73FF809C693DB761E7BAEBE62B6A2E0000000000000000000000008B76CD4640B504528CE1CB6C4DE435CCAE0AF157000000000000000000000000000000000000000000000000001A90BF234ED80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 )
  • ETH 0.0000225 0x96c195f6643a3d797cb90cb6ba0ae2776d51b5f3.CALL( )
  • FLOKI.balanceOf( account=0x8b76Cd4640b504528ce1CB6C4DE435ccAe0AF157 ) => ( 0 )
  • ETH 0.0074775 0xd12bcdfb9a39be79da3bdf02557efdcd5ca59e77.d9c45357( )
    • ETH 0.0074775 WETH9.CALL( )
    • FLOKI.balanceOf( account=0x8b76Cd4640b504528ce1CB6C4DE435ccAe0AF157 ) => ( 0 )
      swap[AggregationRouter (ln:393)]
      File 1 of 3: AggregationRouter
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity >=0.7.6;
      pragma abicoder v2;
      interface IERC20 {
      event Approval(
      address indexed owner,
      address indexed spender,
      uint256 value
      );
      event Transfer(address indexed from, address indexed to, uint256 value);
      function name() external view returns (string memory);
      function symbol() external view returns (string memory);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 3: FLOKI
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity 0.8.11;
      import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
      import "@openzeppelin/contracts/access/Ownable.sol";
      import "./governance/IGovernanceToken.sol";
      import "./tax/ITaxHandler.sol";
      import "./treasury/ITreasuryHandler.sol";
      /**
      * @title Floki token contract
      * @dev The Floki token has modular systems for tax and treasury handler as well as governance capabilities.
      */
      contract FLOKI is IERC20, IGovernanceToken, Ownable {
      /// @dev Registry of user token balances.
      mapping(address => uint256) private _balances;
      /// @dev Registry of addresses users have given allowances to.
      mapping(address => mapping(address => uint256)) private _allowances;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 3 of 3: 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