ETH Price: $3,627.88 (-2.68%)

Transaction Decoder

Block:
16262875 at Dec-25-2022 04:12:35 PM +UTC
Transaction Fee:
0.000926449165237104 ETH $3.36
Gas Used:
83,558 Gas / 11.087498088 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x20a6bE92...7Cc914c64
2.349619320204952119 Eth
Nonce: 1574
2.348692871039715015 Eth
Nonce: 1575
0.000926449165237104
0x9A0C8Ff8...D717501D7
(Flashbots: Builder)
1.203954953299331954 Eth1.203961051564465872 Eth0.000006098265133918

Execution Trace

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