Transaction Hash:
Block:
22539167 at May-22-2025 03:00:11 PM +UTC
Transaction Fee:
0.000216895 ETH
$0.55
Gas Used:
43,379 Gas / 5 Gwei
Emitted Events:
1009 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000006fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, 0x00000000000000000000000028c6c06298d514db089934071355e5743bf21d60, 0000000000000000000000000000000000000000000002f79f1a41b6b7e84000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06FD4bA7...Caa99E3B0 | (Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0) |
0.008210768968675723 Eth
Nonce: 112917
|
0.007993873968675723 Eth
Nonce: 112918
| 0.000216895 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.164843648558654726 Eth | 11.164869222880095618 Eth | 0.000025574321440892 | |
0xec53bF91...aB9061F83 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )

-
Eigen.transfer( to=0x28C6c06298d514Db089934071355E5743bf21d60, amount=14012543300000000000000 ) => ( True )
File 1 of 2: TransparentUpgradeableProxy
File 2 of 2: Eigen
12345678910111213141516// 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;
File 2 of 2: Eigen
12345678910111213141516// SPDX-License-Identifier: BUSL-1.1pragma 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 bEIGENIERC20 public immutable bEIGEN;/// STORAGE/// @notice mapping of minter addresses to the timestamp after which they are allowed to mintmapping(address => uint256) public mintAllowedAfter;/// @notice mapping of minter addresses to the amount of tokens they are allowed to mintmapping(address => uint256) public mintingAllowance;/// @notice the timestamp after which transfer restrictions are disableduint256 public transferRestrictionsDisabledAfter;