Transaction Hash:
Block:
22455342 at May-10-2025 08:24:59 PM +UTC
Transaction Fee:
0.000704560141253523 ETH
$1.92
Gas Used:
230,761 Gas / 3.053202843 Gwei
Emitted Events:
675 |
PowerPod.Delegated( account=[Sender] 0x09f9d6b122d4ee650405467846f578df55f932ed, delegatee=Proxy )
|
676 |
PowerPod.Transfer( from=GnosisSafeProxy, to=Proxy, value=69434036431355863664227 )
|
677 |
DelegatedShare.Transfer( from=[Sender] 0x09f9d6b122d4ee650405467846f578df55f932ed, to=0x0000000000000000000000000000000000000000, value=69434036431355863664227 )
|
678 |
DelegatedShare.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0x09f9d6b122d4ee650405467846f578df55f932ed, value=69434036431355863664227 )
|
679 |
DelegatedShare.PodAdded( account=[Sender] 0x09f9d6b122d4ee650405467846f578df55f932ed, pod=MultiFarmingPod )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x09F9d6b1...F55F932eD |
0.029910787571316724 Eth
Nonce: 33
|
0.029206227430063201 Eth
Nonce: 34
| 0.000704560141253523 | ||
0x1583C1dB...96D096829 | |||||
0x1e31B601...6edBc5477 | |||||
0x86945557...D5f479aEB | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 7.738103611894518112 Eth | 7.738104765698364307 Eth | 0.000001153803846195 | |
0xAccfAc23...049B4f947 | |||||
0xd1730D78...27c114Db0 |
Execution Trace
PowerPod.delegate( delegatee=0x1113DB6080ea2B9f92B2e9937ea712b3d730b3F1 )

-
St1inch.podBalanceOf( pod=0xAccfAc2339e16DC80c50d2fa81b5c2B049B4f947, account=0x09F9d6b122D4Ee650405467846f578DF55F932eD ) => ( 69434036431355863664227 )
DelegatedShare.burn( account=0x09F9d6b122D4Ee650405467846f578DF55F932eD, amount=69434036431355863664227 )
-
MultiFarmingPod.updateBalances( from=0x09F9d6b122D4Ee650405467846f578DF55F932eD, to=0x0000000000000000000000000000000000000000, amount=69434036431355863664227 )
-
-
DelegatedShare.mint( account=0x09F9d6b122D4Ee650405467846f578DF55F932eD, amount=69434036431355863664227 )
DelegatedShare.addDefaultFarmIfNeeded( account=0x09F9d6b122D4Ee650405467846f578DF55F932eD, farm=0xd1730D781017A71788F1Ae95689cDBD27c114Db0 )
-
MultiFarmingPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0x09F9d6b122D4Ee650405467846f578DF55F932eD, amount=69434036431355863664227 )
-
delegate[DelegationPod (ln:63)]
Delegated[DelegationPod (ln:67)]
podBalanceOf[DelegationPod (ln:68)]
_updateBalances[DelegationPod (ln:70)]
_updateBalances[DelegationPod (ln:75)]
File 1 of 8: PowerPod
File 2 of 8: GnosisSafeProxy
File 3 of 8: Proxy
File 4 of 8: DelegatedShare
File 5 of 8: DelegatedShare
File 6 of 8: St1inch
File 7 of 8: MultiFarmingPod
File 8 of 8: MultiFarmingPod
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 2 of 8: 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 8: Proxy
12345678910111213141516pragma solidity ^0.5.3;/// @title Proxy - 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 Proxy {// masterCopy 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 masterCopy;/// @dev Constructor function sets address of master copy contract./// @param _masterCopy Master copy address.constructor(address _masterCopy)public{
File 4 of 8: 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 8: 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 6 of 8: St1inch
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 7 of 8: 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 8 of 8: MultiFarmingPod
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