ETH Price: $4,595.77 (-2.70%)

Transaction Decoder

Block:
18076711 at Sep-06-2023 10:07:35 AM +UTC
Transaction Fee:
0.000859701763422606 ETH $3.95
Gas Used:
50,947 Gas / 16.874433498 Gwei

Account State Difference:

  Address   Before After State Difference Code
0.617243855762676405 Eth0.61725048716710274 Eth0.000006631404426335
0x55e3F14E...0598e4879
0.044915104139023718 Eth
Nonce: 11
0.044055402375601112 Eth
Nonce: 12
0.000859701763422606

Execution Trace

PowerPod.delegate( delegatee=0xE023f53f735c196e4a028233C2ee425957812a41 )
  • St1inch.podBalanceOf( pod=0xAccfAc2339e16DC80c50d2fa81b5c2B049B4f947, account=0x55e3F14E036b0FcA4179F043D792F5A0598e4879 ) => ( 29172276375358890981 )
    File 1 of 2: 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 2: 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