This commit is contained in:
2025-12-18 13:07:35 +08:00
commit 76b7f838db
271 changed files with 88812 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./LendingConfiguration.sol";
/**
* @title ConfiguratorStorage
* @notice Configurator 存储定义
*/
abstract contract ConfiguratorStorage is LendingConfiguration {
// Lending 代理地址 => 工厂合约地址
mapping(address => address) public factory;
// Lending 代理地址 => 配置参数
mapping(address => Configuration) public configuratorParams;
}