ETH Price: $4,260.33 (+1.19%)

Transaction Decoder

Block:
22380492 at Apr-30-2025 07:52:11 AM +UTC
Transaction Fee:
0.000039632865912888 ETH $0.17
Gas Used:
83,558 Gas / 0.474315636 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
40.267688785363632726 Eth40.267688834061235126 Eth0.0000000486976024
0x8b890c14...92B470Dcd
0.00051180133400426 Eth
Nonce: 327
0.000472168468091372 Eth
Nonce: 328
0.000039632865912888
0x9A0C8Ff8...D717501D7

Execution Trace

St1inch.addPod( pod=0xAccfAc2339e16DC80c50d2fa81b5c2B049B4f947 )
  • PowerPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0x8b890c14f7F9EC9860fbC85e04f4bc492B470Dcd, amount=125395310805259610259 )
    File 1 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

    File 2 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