Skip to content

Latest commit

 

History

History
221 lines (212 loc) · 8.72 KB

LoanSettingsEvents.md

File metadata and controls

221 lines (212 loc) · 8.72 KB

The Loan Settings Events contract. (LoanSettingsEvents.sol)

View Source: contracts/events/LoanSettingsEvents.sol

↗ Extends: ModulesCommonEvents ↘ Derived Contracts: ISovryn, LoanSettings

LoanSettingsEvents 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 events for loan settings operations.

Events

event LoanParamsSetup(bytes32 indexed id, address  owner, address indexed loanToken, address indexed collateralToken, uint256  minInitialMargin, uint256  maintenanceMargin, uint256  maxLoanTerm);
event LoanParamsIdSetup(bytes32 indexed id, address indexed owner);
event LoanParamsDisabled(bytes32 indexed id, address  owner, address indexed loanToken, address indexed collateralToken, uint256  minInitialMargin, uint256  maintenanceMargin, uint256  maxLoanTerm);
event LoanParamsIdDisabled(bytes32 indexed id, address indexed owner);

Functions

Contracts