Transaction Hash:
Block:
22567072 at May-26-2025 12:49:47 PM +UTC
Transaction Fee:
0.000138220246790592 ETH
$0.42
Gas Used:
149,676 Gas / 0.923462992 Gwei
Emitted Events:
530 |
St1inch.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0x8599942ac691e8cfe28f15dcde0e40cfd07013c9, value=3573917754411941186747641 )
|
531 |
PowerPod.Transfer( from=0x0000000000000000000000000000000000000000, to=GnosisSafeProxy, value=3573917754411941186747641 )
|
532 |
DelegatedShare.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0x8599942ac691e8cfe28f15dcde0e40cfd07013c9, value=3573917754411941186747641 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1583C1dB...96D096829 | |||||
0x1A87c0F9...A6B0260bE | (1inch: Staking farm) | ||||
0x1e31B601...6edBc5477 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 10.067100453783510781 Eth | 10.067100453790994581 Eth | 0.0000000000074838 | |
0x8599942a...fd07013c9 |
0.090969102191484431 Eth
Nonce: 8
|
0.090830881944693839 Eth
Nonce: 9
| 0.000138220246790592 | ||
0x9A0C8Ff8...D717501D7 | |||||
0xAccfAc23...049B4f947 |
Execution Trace
St1inch.deposit( amount=0, duration=10018426 )

-
StakingFarmingPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0x8599942ac691e8CfE28f15dCdE0e40cfd07013c9, amount=3573917754411941186747641 )
PowerPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0x8599942ac691e8CfE28f15dCdE0e40cfd07013c9, amount=3573917754411941186747641 )
DelegatedShare.mint( account=0x8599942ac691e8CfE28f15dCdE0e40cfd07013c9, amount=3573917754411941186747641 )
-
MultiFarmingPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0x8599942ac691e8CfE28f15dCdE0e40cfd07013c9, amount=3573917754411941186747641 )
-
deposit[St1inch (ln:2145)]
_deposit[St1inch (ln:2146)]
DepositsDisabled[St1inch (ln:2178)]
max[St1inch (ln:2180)]
LockTimeLessMinLock[St1inch (ln:2182)]
LockTimeMoreMaxLock[St1inch (ln:2183)]
_balanceAt[St1inch (ln:2184)]
balanceOf[St1inch (ln:2184)]
_mint[St1inch (ln:2190)]
safeTransferFrom[St1inch (ln:2192)]
hasPod[St1inch (ln:2194)]
_addPod[St1inch (ln:2195)]
File 1 of 6: St1inch
File 2 of 6: GnosisSafeProxy
File 3 of 6: PowerPod
File 4 of 6: DelegatedShare
File 5 of 6: StakingFarmingPod
File 6 of 6: MultiFarmingPod
12345678910111213141516// SPDX-License-Identifier: MITpragma 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();
File 2 of 6: GnosisSafeProxy
12345678910111213141516// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain/// @author Richard Meissner - <richard@gnosis.io>interface IProxy {function masterCopy() external view returns (address);}/// @title GnosisSafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract./// @author Stefan George - <stefan@gnosis.io>/// @author Richard Meissner - <richard@gnosis.io>contract GnosisSafeProxy {// singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.// To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`address internal singleton;
File 3 of 6: PowerPod
12345678910111213141516// SPDX-License-Identifier: MITpragma 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,
File 4 of 6: DelegatedShare
12345678910111213141516// SPDX-License-Identifier: MITpragma 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();
File 5 of 6: StakingFarmingPod
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";interface IERC20Pods is IERC20 {event PodAdded(address account, address pod);event PodRemoved(address account, address pod);function hasPod(address account, address pod) external view returns(bool);function podsCount(address account) external view returns(uint256);function podAt(address account, uint256 index) external view returns(address);function pods(address account) external view returns(address[] memory);function podBalanceOf(address pod, address account) external view returns(uint256);function addPod(address pod) external;function removePod(address pod) external;function removeAllPods() external;}// SPDX-License-Identifier: MIT
File 6 of 6: MultiFarmingPod
12345678910111213141516// SPDX-License-Identifier: MITpragma 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();