mirror of
https://github.com/vacp2p/staking-reward-streamer.git
synced 2026-01-09 15:27:55 -05:00
We use `IStakeManagerProxy` to ensure instances of `TransparentProxy` are stake managers where necessary.
8 lines
242 B
Solidity
8 lines
242 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.26;
|
|
|
|
import { IStakeManager } from "./IStakeManager.sol";
|
|
import { ITransparentProxy } from "./ITransparentProxy.sol";
|
|
|
|
interface IStakeManagerProxy is IStakeManager, ITransparentProxy { }
|