Transaction Hash:
Block:
22567069 at May-26-2025 12:49:11 PM +UTC
Transaction Fee:
0.000245566403589936 ETH
$0.63
Gas Used:
247,416 Gas / 0.992524346 Gwei
Emitted Events:
288 |
PowerPod.Delegated( account=[Sender] 0x8599942ac691e8cfe28f15dcde0e40cfd07013c9, delegatee=GnosisSafeProxy )
|
289 |
PowerPod.Transfer( from=0xC975671642534F407EbdcaEF2428D355eDe16a2C, to=GnosisSafeProxy, value=5864898241295655350520286 )
|
290 |
DelegatedShare.Transfer( from=[Sender] 0x8599942ac691e8cfe28f15dcde0e40cfd07013c9, to=0x0000000000000000000000000000000000000000, value=5864898241295655350520286 )
|
291 |
DelegatedShare.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0x8599942ac691e8cfe28f15dcde0e40cfd07013c9, value=5864898241295655350520286 )
|
292 |
DelegatedShare.PodAdded( account=[Sender] 0x8599942ac691e8cfe28f15dcde0e40cfd07013c9, pod=MultiFarmingPod )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1583C1dB...96D096829 | |||||
0x18b40db3...545aae9b6 | |||||
0x1e31B601...6edBc5477 | |||||
0x39634336...6fb82Aa49
Miner
| (quasarbuilder) | 18.316278247607838935 Eth | 18.316278247620209735 Eth | 0.0000000000123708 | |
0x8599942a...fd07013c9 |
0.091300164549969589 Eth
Nonce: 6
|
0.091054598146379653 Eth
Nonce: 7
| 0.000245566403589936 | ||
0xAccfAc23...049B4f947 | |||||
0xE1521837...c09b5e6e6 |
Execution Trace
PowerPod.delegate( delegatee=0xf63392356A985ead50B767A3E97a253fF870E91a )

-
St1inch.podBalanceOf( pod=0xAccfAc2339e16DC80c50d2fa81b5c2B049B4f947, account=0x8599942ac691e8CfE28f15dCdE0e40cfd07013c9 ) => ( 5864898241295655350520286 )
DelegatedShare.burn( account=0x8599942ac691e8CfE28f15dCdE0e40cfd07013c9, amount=5864898241295655350520286 )
-
0x18b40db3db1c579fefc13f99a3aa65d545aae9b6.7a1f1aa9( )
-
-
DelegatedShare.mint( account=0x8599942ac691e8CfE28f15dCdE0e40cfd07013c9, amount=5864898241295655350520286 )
DelegatedShare.addDefaultFarmIfNeeded( account=0x8599942ac691e8CfE28f15dCdE0e40cfd07013c9, farm=0x1583C1dBe20625d0B752d472E845FbA96D096829 )
-
MultiFarmingPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0x8599942ac691e8CfE28f15dCdE0e40cfd07013c9, amount=5864898241295655350520286 )
-
delegate[DelegationPod (ln:63)]
Delegated[DelegationPod (ln:67)]
podBalanceOf[DelegationPod (ln:68)]
_updateBalances[DelegationPod (ln:70)]
_updateBalances[DelegationPod (ln:75)]
File 1 of 6: PowerPod
File 2 of 6: GnosisSafeProxy
File 3 of 6: DelegatedShare
File 4 of 6: DelegatedShare
File 5 of 6: St1inch
File 6 of 6: 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 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: 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 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: 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 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();