ETH Price: $3,873.61 (+1.18%)

Transaction Decoder

Block:
16262851 at Dec-25-2022 04:07:47 PM +UTC
Transaction Fee:
0.000852927407277534 ETH $3.30
Gas Used:
83,558 Gas / 10.207609173 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
92.13016636107797336 Eth92.130183823769889262 Eth0.000017462691915902
0x9A0C8Ff8...D717501D7
0xB9CfDa4b...2babbD693
0.185722265171470922 Eth
Nonce: 58
0.184869337764193388 Eth
Nonce: 59
0.000852927407277534

Execution Trace

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