Skip to content

Latest commit

 

History

History
224 lines (215 loc) · 8.27 KB

LenderInterestStruct.md

File metadata and controls

224 lines (215 loc) · 8.27 KB

The Lender Interest. (LenderInterestStruct.sol)

View Source: contracts/core/objects/LenderInterestStruct.sol

↘ Derived Contracts: Objects

LenderInterestStruct contract

This contract code comes from bZx. bZx is a protocol for tokenized margin trading and lending https://bzx.network similar to the dYdX protocol.

  • This contract contains the storage structure of the Lender Interest.

Structs

LenderInterest

struct LenderInterest {
 uint256 principalTotal,
 uint256 owedPerDay,
 uint256 owedTotal,
 uint256 paidTotal,
 uint256 updatedTimestamp
}

Functions

Contracts