@gearbox-protocol/periphery-v3 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/contracts/data/DataCompressor_2_1.sol +1 -1
- package/contracts/data/DataCompressor_3_0.sol +1 -1
- package/contracts/data/LinearInterestModelHelper.sol +5 -0
- package/contracts/data/Types.sol +1 -0
- package/contracts/interfaces/IDataCompressorV2_10.sol +1 -1
- package/contracts/interfaces/IDataCompressorV3_00.sol +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Gearbox Protocol. Generalized leverage for DeFi protocols
|
|
3
|
+
// (c) Gearbox Holdings, 2023
|
|
4
|
+
pragma solidity ^0.8.17;
|
|
5
|
+
|
|
1
6
|
import {LinearInterestRateModelV3} from "@gearbox-protocol/core-v3/contracts/pool/LinearInterestRateModelV3.sol";
|
|
2
7
|
import {LinearModel} from "./Types.sol";
|
|
3
8
|
|
package/contracts/data/Types.sol
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// SPDX-License-Identifier: MIT
|
|
2
2
|
// Gearbox Protocol. Generalized leverage for DeFi protocols
|
|
3
|
-
// (c) Gearbox Holdings,
|
|
3
|
+
// (c) Gearbox Holdings, 2023
|
|
4
4
|
pragma solidity ^0.8.10;
|
|
5
5
|
|
|
6
6
|
import {CreditAccountData, CreditManagerData, PoolData} from "../data/Types.sol";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// SPDX-License-Identifier: MIT
|
|
2
2
|
// Gearbox Protocol. Generalized leverage for DeFi protocols
|
|
3
|
-
// (c) Gearbox Holdings,
|
|
3
|
+
// (c) Gearbox Holdings, 2023
|
|
4
4
|
pragma solidity ^0.8.10;
|
|
5
5
|
|
|
6
6
|
import {CreditAccountData, CreditManagerData, PoolData} from "../data/Types.sol";
|
package/package.json
CHANGED