Skip to main content
PulseScanner.io

Address

0x0314f32c8a0a52d3575c8fbf7bec1207b9d8b191
Current Holdings
$0.00
TXs sent
not counted
First Active
2026-02-12
block 25,770,264
Last Active
212 days ago
block 25,820,839
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
partial matchStrategyDaytonaPLSsolc 0.8.20+commit.a1b79de6runtime partial · creation partial
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

interface IStrategy {
    function vault() external view returns (address);
    function want() external view returns (address);
    function beforeDeposit() external;
    function deposit() external;
    function withdraw(uint256) external;
    function balanceOf() external view returns (uint256);
    function balanceOfWant() external view returns (uint256);
    function balanceOfPool() external view returns (uint256);
    function harvest() external;
    function retireStrat() external;
    function panic() external;
    function pause() external;
    function unpause() external;
    function paused() external view returns (bool);
}