Skip to content

Latest commit

 

History

History
225 lines (216 loc) · 8.24 KB

OrderStruct.md

File metadata and controls

225 lines (216 loc) · 8.24 KB

The Loan Order. (OrderStruct.sol)

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

↘ Derived Contracts: Objects

OrderStruct 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 Order.

Structs

Order

struct Order {
 uint256 lockedAmount,
 uint256 interestRate,
 uint256 minLoanTerm,
 uint256 maxLoanTerm,
 uint256 createdTimestamp,
 uint256 expirationTimestamp
}

Functions

Contracts