Transaction Hash:
Block:
22555358 at May-24-2025 09:24:23 PM +UTC
Transaction Fee:
0.00015000343545936 ETH
$0.38
Gas Used:
198,665 Gas / 0.755057184 Gwei
Emitted Events:
372 |
St1inch.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0xad038be526c17ab471581453def6e1da22fe2083, value=19804061655581110627398 )
|
373 |
PowerPod.Transfer( from=0x0000000000000000000000000000000000000000, to=Proxy, value=19804061655581110627398 )
|
374 |
DelegatedShare.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0xad038be526c17ab471581453def6e1da22fe2083, value=19804061655581110627398 )
|
375 |
OneInch.Transfer( from=[Sender] 0xad038be526c17ab471581453def6e1da22fe2083, to=[Receiver] St1inch, value=17296269665769200448 )
|
376 |
OneInch.Approval( owner=[Sender] 0xad038be526c17ab471581453def6e1da22fe2083, spender=[Receiver] St1inch, value=115792089237316195423570985008687907853269984665640563952594115626966455911719 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x11111111...34120C302 | |||||
0x1A87c0F9...A6B0260bE | (1inch: Staking farm) | ||||
0x486Ae5A2...7e79c6128 | |||||
0x86945557...D5f479aEB | |||||
0x9A0C8Ff8...D717501D7 | |||||
0xAccfAc23...049B4f947 | |||||
0xAD038Be5...a22Fe2083 |
0.009797425697865029 Eth
Nonce: 340
|
0.009647422262405669 Eth
Nonce: 341
| 0.00015000343545936 | ||
0xd1730D78...27c114Db0 | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 20.415836352870125802 Eth | 20.415836401543050802 Eth | 0.000000048672925 |
Execution Trace
St1inch.deposit( amount=17296269665769200448, duration=110362 )

-
StakingFarmingPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0xAD038Be526c17AB471581453DeF6e1da22Fe2083, amount=19804061655581110627398 )
PowerPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0xAD038Be526c17AB471581453DeF6e1da22Fe2083, amount=19804061655581110627398 )
DelegatedShare.mint( account=0xAD038Be526c17AB471581453DeF6e1da22Fe2083, amount=19804061655581110627398 )
-
MultiFarmingPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0xAD038Be526c17AB471581453DeF6e1da22Fe2083, amount=19804061655581110627398 )
-
MultiFarmingPod.updateBalances( from=0x0000000000000000000000000000000000000000, to=0xAD038Be526c17AB471581453DeF6e1da22Fe2083, amount=19804061655581110627398 )
-
-
OneInch.transferFrom( sender=0xAD038Be526c17AB471581453DeF6e1da22Fe2083, recipient=0x9A0C8Ff858d273f57072D714bca7411D717501D7, amount=17296269665769200448 ) => ( True )
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 8: St1inch
File 2 of 8: Proxy
File 3 of 8: PowerPod
File 4 of 8: DelegatedShare
File 5 of 8: OneInch
File 6 of 8: StakingFarmingPod
File 7 of 8: MultiFarmingPod
File 8 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 2 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 3 of 8: 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 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: OneInch
12345678910111213141516/*,▄m ,▄▄▄▄▄▄▄▄▄▄╖╓▄▓██▌╓▄▓███████████▀└▄████████████▓╬▓███████████▓▓▓▄▄▄,╓, ,▄▄███▓╣██████▓╬╬▓████████████▀▓████████▓▄,▀█▓▄╥ xΘ╙╠╠███▓╬▓█████╬╬╬▓██████▓╬╬╬▓▀ ▐█╬╬╬╬▓██████▌╖╙████▓▄Q ,φ▒▒▒███╬╬█████╬╬╬▓████▓╬╬╬▓▓▀ ╕ ▐█▓▓▓╬╬╬╬╬▓█████▄╙▓██████▓▄▄▒▒███╬╬╣████╬╬╣███╬╬▓███▀ ▄█⌐ ╫████████▓▓╬╬╬████▌/ ▀███▓████████▓╬╬▓████╬███▓████▀ ▄██▀ ╔██████████████▓▓▓███▄▄╙ ╙██▓▄╙▀▓█████▓▓▓██████████▀ ª▀▀└ ,▓███████▓╬╬╬▓██████████▌,▓ ╓╠▒≥ ╙▓██▓╖ └▀▓███████▓███▓╙ ▄▓████████████▓╬╬╬╬▓███████▌▄█ ╔▒▒▒▒" └▀███▌, ╙████▀ ~Φ▓██▓▀▀╩▓██╙▀██████▓╬╬╬╬▓██████▌▓█ φ▒▒▒╙ ╔╔ ╙████▄▄███▀ , ██▌ ╙▓█████╬╬╬╬▓██▓└▀b▓█ ╔▒▒▒` φ▒▒▒ⁿ ╫██████` ,▌ ╫██ ╙█████╬╬╬╬██▓╫█─ .▒▒▒ ╠▒▒╚ ]██████¬ ▓█ ██▌ └▓███▓╬╬╬██▓▐█▌ ╠▒▒ φ▒▒" ▐█████─ ▓█▀██▌ ███ ╬ └████╬╬╬██▌
File 6 of 8: 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 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