Transaction Hash:
Block:
22387749 at May-01-2025 08:15:59 AM +UTC
Transaction Fee:
0.00010183968259395 ETH
$0.26
Gas Used:
118,537 Gas / 0.85913835 Gwei
Emitted Events:
357 |
TransparentUpgradeableProxy.0xdaaebb9609cb2f719c59c9d334be287bf4def107ad3dec4a6f90d8abaa94c73c( 0xdaaebb9609cb2f719c59c9d334be287bf4def107ad3dec4a6f90d8abaa94c73c, 0x000000000000000000000000514d2cd4fc9aa8a20c890afcbd6625fb133ed213, 0000000000000000000000000000000000000000000000000b540a7b4f3e0925 )
|
358 |
Token.Transfer( from=[Receiver] TransparentUpgradeableProxy, to=[Sender] 0x514d2cd4fc9aa8a20c890afcbd6625fb133ed213, value=816288957187623205 )
|
359 |
TransparentUpgradeableProxy.0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c( 0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c, 0x000000000000000000000000514d2cd4fc9aa8a20c890afcbd6625fb133ed213, 00000000000000000000000000000000000000000000021d9e188f0b2c13c800 )
|
360 |
Token.Transfer( from=[Sender] 0x514d2cd4fc9aa8a20c890afcbd6625fb133ed213, to=[Receiver] TransparentUpgradeableProxy, value=9991080556412448000000 )
|
361 |
Token.Approval( owner=[Sender] 0x514d2cd4fc9aa8a20c890afcbd6625fb133ed213, spender=[Receiver] TransparentUpgradeableProxy, value=99787934335910807692000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 66.66868212233904304 Eth | 66.66874139083904304 Eth | 0.0000592685 | |
0x514D2cd4...b133ed213 |
0.046038512877694104 Eth
Nonce: 135
|
0.045936673195100154 Eth
Nonce: 136
| 0.00010183968259395 | ||
0x8d50E8e0...A25CbcD57 | |||||
0xb214b79e...C80D6Ad79 |
Execution Trace
TransparentUpgradeableProxy.b6b55f25( )
stakingManager.deposit( _amount=9991080556412448000000 )
-
Token.transfer( recipient=0x514D2cd4FC9AA8a20C890AFcBd6625Fb133ed213, amount=816288957187623205 ) => ( True )
-
Token.transferFrom( sender=0x514D2cd4FC9AA8a20C890AFcBd6625Fb133ed213, recipient=0x8d50E8e087Bdb834C8F684CFDaF54f6A25CbcD57, amount=9991080556412448000000 ) => ( True )
-
deposit[stakingManager (ln:772)]
harvestRewards[stakingManager (ln:777)]
_harvestRewards[stakingManager (ln:842)]
updatePoolRewards[stakingManager (ln:849)]
HarvestRewards[stakingManager (ln:866)]
safeTransfer[stakingManager (ln:867)]
Deposit[stakingManager (ln:788)]
safeTransferFrom[stakingManager (ln:789)]
File 1 of 3: TransparentUpgradeableProxy
File 2 of 3: Token
File 3 of 3: stakingManager
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol";import "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";// Kept for backwards compatibility with older versions of Hardhat and Truffle plugins.contract AdminUpgradeabilityProxy is TransparentUpgradeableProxy {constructor(address logic, address admin, bytes memory data) payable TransparentUpgradeableProxy(logic, admin, data) {}}// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IBeacon.sol";import "../Proxy.sol";import "../ERC1967/ERC1967Upgrade.sol";
File 2 of 3: Token
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.8.9;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);
File 3 of 3: stakingManager
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/ContextUpgradeable.sol";import "../proxy/utils/Initializable.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.