pragma solidity ^0.8.10;
import "./ComptrollerInterface.sol";
import "./CTokenInterfaces.sol";
import "./ErrorReporter.sol";
import "./EIP20Interface.sol";
import "./InterestRateModel.sol";
import "./ExponentialNoError.sol";
* Compound's CToken Contract
* Abstract base for CTokens
* Compound
abstract contract CToken is CTokenInterface, ExponentialNoError, TokenErrorReporter {
* Initialize the money market
* comptroller_ The address of the Comptroller
* interestRateModel_ The address of the interest rate model
* initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18
* name_ EIP-20 name of this token
* symbol_ EIP-20 symbol of this token
* decimals_ EIP-20 decimal precision of this token
function initialize(ComptrollerInterface comptroller_,
InterestRateModel interestRateModel_,
uint initialExchangeRateMantissa_,
string memory name_,
string memory symbol_,
uint8 decimals_) public {
require(msg.sender == admin, "only admin may initialize the market");
require(accrualBlockNumber == 0 && borrowIndex == 0, "market may only be initialized once");