mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
12 lines
511 B
Solidity
12 lines
511 B
Solidity
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
pragma solidity 0.8.21;
|
||
|
|
||
|
import { Proxy } from "../infiniteProxy/proxy.sol";
|
||
|
|
||
|
/// @notice Fluid Liquidity infinte proxy.
|
||
|
/// Liquidity is the central point of the Instadapp Fluid architecture, it is the core interaction point
|
||
|
/// for all allow-listed protocols, such as fTokens, Vault, Flashloan, StETH protocol, DEX protocol etc.
|
||
|
contract FluidLiquidityProxy is Proxy {
|
||
|
constructor(address admin_, address dummyImplementation_) Proxy(admin_, dummyImplementation_) {}
|
||
|
}
|