@venusprotocol/protocol-reserve 1.0.0-dev.7 → 1.0.1-dev.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@venusprotocol/protocol-reserve",
3
3
  "description": "Venus Protocol contracts to manage the income generated by the protocol",
4
- "version": "1.0.0-dev.7",
4
+ "version": "1.0.1-dev.1",
5
5
  "author": "Venus",
6
6
  "engines": {
7
7
  "node": ">=18.0.0"
@@ -1,6 +0,0 @@
1
- // SPDX-License-Identifier: BSD-3-Clause
2
- pragma solidity 0.8.13;
3
-
4
- interface ComptrollerInterface {
5
- function isComptroller() external view returns (bool);
6
- }
@@ -1,7 +0,0 @@
1
- // SPDX-License-Identifier: BSD-3-Clause
2
- pragma solidity 0.8.13;
3
-
4
- interface PoolRegistryInterface {
5
- /*** get VToken in the Pool for an Asset ***/
6
- function getVTokenForAsset(address comptroller, address asset) external view returns (address);
7
- }