ETH Price: $3,736.97 (+0.28%)

Transaction Decoder

Block:
16360455 at Jan-08-2023 07:03:11 AM +UTC
Transaction Fee:
0.001408766553762803 ETH $5.26
Gas Used:
94,313 Gas / 14.937140731 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x1583C1dB...96D096829
(bloXroute: Regulated Builder)
2.010166579144627248 Eth2.01028875006241314 Eth0.000122170917785892
0x1e31B601...6edBc5477
0x919d80EC...6E8Bb20c7
1.357337792806535623 Eth
Nonce: 384
1.35592902625277282 Eth
Nonce: 385
0.001408766553762803
0xAccfAc23...049B4f947

Execution Trace

PowerPod.delegate( delegatee=0x0000000000000000000000000000000000000000 )
  • St1inch.podBalanceOf( pod=0xAccfAc2339e16DC80c50d2fa81b5c2B049B4f947, account=0x919d80ECa63448C51f4ECC001A546A26E8Bb20c7 ) => ( 27393083690043819317765 )
  • DelegatedShare.burn( account=0x919d80ECa63448C51f4ECC001A546A26E8Bb20c7, amount=27393083690043819317765 )
    • MultiFarmingPod.updateBalances( from=0x919d80ECa63448C51f4ECC001A546A26E8Bb20c7, to=0x0000000000000000000000000000000000000000, amount=27393083690043819317765 )
      File 1 of 5: PowerPod
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "@openzeppelin/contracts/access/Ownable.sol";
      import "@1inch/erc20-pods/contracts/ERC20Pods.sol";
      import "./interfaces/IDelegatedShare.sol";
      contract DelegatedShare is IDelegatedShare, ERC20Pods {
      error ApproveDisabled();
      error TransferDisabled();
      error NotOwner();
      address immutable private _owner;
      modifier onlyOwner {
      if (msg.sender != _owner) revert NotOwner();
      _;
      }
      constructor(
      string memory name,
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 5: 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 3 of 5: DelegatedShare
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
      import "@1inch/solidity-utils/contracts/libraries/AddressSet.sol";
      import "./interfaces/IERC20Pods.sol";
      import "./interfaces/IPod.sol";
      import "./libs/ReentrancyGuard.sol";
      abstract contract ERC20Pods is ERC20, IERC20Pods, ReentrancyGuardExt {
      using AddressSet for AddressSet.Data;
      using AddressArray for AddressArray.Data;
      using ReentrancyGuardLib for ReentrancyGuardLib.Data;
      error PodAlreadyAdded();
      error PodNotFound();
      error InvalidPodAddress();
      error PodsLimitReachedForAccount();
      error InsufficientGas();
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 4 of 5: St1inch
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
      import "@1inch/solidity-utils/contracts/libraries/AddressSet.sol";
      import "./interfaces/IERC20Pods.sol";
      import "./interfaces/IPod.sol";
      import "./libs/ReentrancyGuard.sol";
      abstract contract ERC20Pods is ERC20, IERC20Pods, ReentrancyGuardExt {
      using AddressSet for AddressSet.Data;
      using AddressArray for AddressArray.Data;
      using ReentrancyGuardLib for ReentrancyGuardLib.Data;
      error PodAlreadyAdded();
      error PodNotFound();
      error InvalidPodAddress();
      error PodsLimitReachedForAccount();
      error InsufficientGas();
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 5 of 5: MultiFarmingPod
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
      import "@1inch/solidity-utils/contracts/libraries/AddressSet.sol";
      import "./interfaces/IERC20Pods.sol";
      import "./interfaces/IPod.sol";
      import "./libs/ReentrancyGuard.sol";
      abstract contract ERC20Pods is ERC20, IERC20Pods, ReentrancyGuardExt {
      using AddressSet for AddressSet.Data;
      using AddressArray for AddressArray.Data;
      using ReentrancyGuardLib for ReentrancyGuardLib.Data;
      error PodAlreadyAdded();
      error PodNotFound();
      error InvalidPodAddress();
      error PodsLimitReachedForAccount();
      error InsufficientGas();
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX