ETH Price: $2,997.38 (+0.09%)

Transaction Decoder

Block:
20874786 at Oct-02-2024 02:20:23 AM +UTC
Transaction Fee:
0.000219531228021177 ETH $0.66
Gas Used:
43,331 Gas / 5.066378067 Gwei

Emitted Events:

489 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000007186256cdfa758271128ef50ff8732b4fe88ca06, 0x000000000000000000000000107b34007aea13eed48cbdbb0d0a9888575126bc, 0000000000000000000000000000000000000000000000008ac7230489e80000 )

Account State Difference:

  Address   Before After State Difference Code
0x7186256c...4fe88ca06
0.308808648147531195 Eth
Nonce: 107
0.308589116919510018 Eth
Nonce: 108
0.000219531228021177
(beaverbuild)
17.643246454194252871 Eth17.643250787294252871 Eth0.0000043331
0xec53bF91...aB9061F83

Execution Trace

TransparentUpgradeableProxy.a9059cbb( )
  • Eigen.transfer( to=0x107B34007aea13Eed48cbDBB0d0a9888575126Bc, amount=10000000000000000000 ) => ( True )
    File 1 of 2: TransparentUpgradeableProxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (proxy/transparent/TransparentUpgradeableProxy.sol)
    pragma solidity ^0.8.0;
    import "../ERC1967/ERC1967Proxy.sol";
    /**
    * @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}
    * does not implement this interface directly, and some of its functions are implemented by an internal dispatch
    * mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not
    * include them in the ABI so this interface must be used to interact with it.
    */
    interface ITransparentUpgradeableProxy is IERC1967 {
    function admin() external view returns (address);
    function implementation() external view returns (address);
    function changeAdmin(address) external;
    function upgradeTo(address) external;
    function upgradeToAndCall(address, bytes memory) external payable;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: Eigen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: BUSL-1.1
    pragma solidity ^0.8.12;
    import "@openzeppelin-v4.9.0/contracts/token/ERC20/IERC20.sol";
    import "@openzeppelin-upgrades-v4.9.0/contracts/token/ERC20/extensions/ERC20VotesUpgradeable.sol";
    import "@openzeppelin-upgrades-v4.9.0/contracts/access/OwnableUpgradeable.sol";
    contract Eigen is OwnableUpgradeable, ERC20VotesUpgradeable {
    /// CONSTANTS & IMMUTABLES
    /// @notice the address of the backing Eigen token bEIGEN
    IERC20 public immutable bEIGEN;
    /// STORAGE
    /// @notice mapping of minter addresses to the timestamp after which they are allowed to mint
    mapping(address => uint256) public mintAllowedAfter;
    /// @notice mapping of minter addresses to the amount of tokens they are allowed to mint
    mapping(address => uint256) public mintingAllowance;
    /// @notice the timestamp after which transfer restrictions are disabled
    uint256 public transferRestrictionsDisabledAfter;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX