all files / plugins/assets/compoundv3/vendor/ CometInterface.sol

100% Statements 0/0
100% Branches 0/0
100% Functions 0/0
100% Lines 0/0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21                                         
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.17;
 
import "./CometMainInterface.sol";
import "./CometExtInterface.sol";
 
/**
 * @title Compound's Comet Interface
 * @notice An efficient monolithic money market protocol
 * @author Compound
 */
abstract contract CometInterface is CometMainInterface, CometExtInterface {
    struct UserBasic {
        int104 principal;
        uint64 baseTrackingIndex;
        uint64 baseTrackingAccrued;
    }
 
    function userBasic(address account) external view virtual returns (UserBasic memory);
}