Skip to content

Latest commit

 

History

History
222 lines (213 loc) · 8.21 KB

LoanInterestStruct.md

File metadata and controls

222 lines (213 loc) · 8.21 KB

The Loan Interest. (LoanInterestStruct.sol)

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

↘ Derived Contracts: Objects

LoanInterestStruct 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 Loan Interest.

Structs

LoanInterest

struct LoanInterest {
 uint256 owedPerDay,
 uint256 depositTotal,
 uint256 updatedTimestamp
}

Functions

Contracts