ETH Price: $2,524.54 (-0.54%)

Transaction Decoder

Block:
22549541 at May-24-2025 01:50:23 AM +UTC
Transaction Fee:
0.00005043915792605 ETH $0.13
Gas Used:
83,558 Gas / 0.603642475 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
10.973258137207215384 Eth10.973258178986215384 Eth0.000000041779
0x9A0C8Ff8...D717501D7
0xfDe6E544...5E09138f8
0.012889729259032197 Eth
Nonce: 3
0.012839290101106147 Eth
Nonce: 4
0.00005043915792605

Execution Trace

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