Transaction Hash:
Block:
16321862 at Jan-02-2023 09:45:47 PM +UTC
Transaction Fee:
0.001637259887949819 ETH
$4.15
Gas Used:
94,313 Gas / 17.359853763 Gwei
Emitted Events:
273 |
PowerPod.Delegated( account=[Sender] 0x42324a2145c123d5c06a231a56d67f1b95a81d30, delegatee=0x0000000000000000000000000000000000000000 )
|
274 |
PowerPod.Transfer( from=GnosisSafeProxy, to=0x0000000000000000000000000000000000000000, value=34661380725068400139 )
|
275 |
DelegatedShare.Transfer( from=[Sender] 0x42324a2145c123d5c06a231a56d67f1b95a81d30, to=0x0000000000000000000000000000000000000000, value=34661380725068400139 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1583C1dB...96D096829 | |||||
0x1e31B601...6edBc5477 | |||||
0x42324a21...B95A81d30 |
0.006336465548425749 Eth
Nonce: 6
|
0.00469920566047593 Eth
Nonce: 7
| 0.001637259887949819 | ||
0xAccfAc23...049B4f947 | |||||
0xF2f5C73f...1f3eA726C
Miner
| (bloXroute: Max Profit Builder) | 1.056701279636946591 Eth | 1.056812493472788181 Eth | 0.00011121383584159 |
Execution Trace
PowerPod.delegate( delegatee=0x0000000000000000000000000000000000000000 )

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