2025-12-18 13:07:35 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
import "./LendingConfiguration.sol";
|
|
|
|
|
|
|
|
|
|
abstract contract ConfiguratorStorage is LendingConfiguration {
|
|
|
|
|
mapping(address => address) public factory;
|
|
|
|
|
|
|
|
|
|
mapping(address => Configuration) public configuratorParams;
|
2025-12-26 13:38:10 +08:00
|
|
|
}
|