PrimaryLendingPlatformModerator
Overview
License: MIT
contract PrimaryLendingPlatformModerator is Initializable, AccessControlUpgradeable
The PrimaryLendingPlatformModerator contract is the contract that provides the functionality for moderating the primary lending platform.
Contract for managing the moderators of the PrimaryLendingPlatform contract.
Events info
AddPrjToken
event AddPrjToken(address indexed tokenPrj)
Emitted when a project token is added to the platform.
Parameters:
tokenPrj
address
The address of the project token.
RemoveProjectToken
event RemoveProjectToken(address indexed tokenPrj)
Emitted when a project token is removed from the platform.
Parameters:
tokenPrj
address
The address of the project token.
AddLendingToken
event AddLendingToken(address indexed lendingToken)
Emitted when a lending token is added to the platform.
Parameters:
lendingToken
address
The address of the lending token.
RemoveLendingToken
event RemoveLendingToken(address indexed lendingToken)
Emitted when a lending token is removed from the platform.
Parameters:
lendingToken
address
The address of the lending token.
SetPausedProjectToken
event SetPausedProjectToken(address indexed projectToken, bool isDepositPaused, bool isWithdrawPaused)
Emitted when the deposit or withdraw functionality of a project token is paused or unpaused.
Parameters:
projectToken
address
The address of the project token.
isDepositPaused
bool
Whether the deposit functionality is paused or unpaused.
isWithdrawPaused
bool
Whether the withdraw functionality is paused or unpaused.
SetPausedLendingToken
event SetPausedLendingToken(address indexed lendingToken, bool isPaused)
Emitted when the borrow functionality of a lending token is paused or unpaused.
Parameters:
lendingToken
address
The address of the lending token.
isPaused
bool
Whether the borrow functionality is paused or unpaused.
SetBorrowLimitPerCollateralAsset
event SetBorrowLimitPerCollateralAsset(address indexed projectToken, uint256 borrowLimit)
Emitted when the borrow limit per collateral asset is set for a project token.
Parameters:
projectToken
address
The address of the project token.
borrowLimit
uint256
The borrow limit per collateral asset.
SetBorrowLimitPerLendingAsset
event SetBorrowLimitPerLendingAsset(address indexed lendingToken, uint256 borrowLimit)
Emitted when the borrow limit per lending asset is set for a lending token.
Parameters:
lendingToken
address
The address of the lending token.
borrowLimit
uint256
The borrow limit per lending asset.
LoanToValueRatioSet
event LoanToValueRatioSet(address indexed tokenPrj, uint8 lvrNumerator, uint8 lvrDenominator)
Emitted when the loan-to-value ratio is set for a project token.
Parameters:
tokenPrj
address
The address of the project token.
lvrNumerator
uint8
The numerator of the loan-to-value ratio.
lvrDenominator
uint8
The denominator of the loan-to-value ratio.
GrantModerator
event GrantModerator(address indexed moderator)
Emitted when a moderator is granted access to the platform.
Parameters:
moderator
address
The address of the moderator.
RevokeModerator
event RevokeModerator(address indexed moderator)
Emitted when a moderator's access to the platform is revoked.
Parameters:
moderator
address
The address of the moderator.
SetPrimaryLendingPlatformLeverage
event SetPrimaryLendingPlatformLeverage(address indexed newPrimaryLendingPlatformLeverage)
Emitted when the leverage of the PrimaryLendingPlatform contract is set.
Parameters:
newPrimaryLendingPlatformLeverage
address
The new leverage of the PrimaryLendingPlatform contract.
SetPrimaryLendingPlatform
event SetPrimaryLendingPlatform(address indexed newPrimaryLendingPlatform)
Emitted when the primary lending platform address is set.
Parameters:
newPrimaryLendingPlatform
address
The new primary lending platform address.
SetPriceOracle
event SetPriceOracle(address indexed newOracle)
Emitted when the price oracle contract is set.
Parameters:
newOracle
address
The address of the new price oracle contract.
AddRelatedContracts
event AddRelatedContracts(address indexed relatedContract)
Emitted when a related contract is added to the platform.
Parameters:
relatedContract
address
The address of the related contract.
RemoveRelatedContracts
event RemoveRelatedContracts(address indexed relatedContract)
Emitted when a related contract is removed from the platform.
Parameters:
relatedContract
address
The address of the related contract.
Constants info
MODERATOR_ROLE (0x797669c9)
bytes32 constant MODERATOR_ROLE = keccak256("MODERATOR_ROLE")
State variables info
primaryLendingPlatform (0x92641a7c)
contract IPrimaryLendingPlatform primaryLendingPlatform
Modifiers info
onlyAdmin
modifier onlyAdmin()
Modifier to check if the caller has the admin role.
onlyModerator
modifier onlyModerator()
Modifier to check if the caller has the moderator role.
isProjectTokenListed
modifier isProjectTokenListed(address projectToken)
Modifier to check if a project token is listed on the platform.
Parameters:
projectToken
address
The address of the project token.
isLendingTokenListed
modifier isLendingTokenListed(address lendingToken)
Modifier to check if a lending token is listed on the platform.
Parameters:
lendingToken
address
The address of the lending token.
Functions info
initialize (0xc4d66de8)
function initialize(address pit) public initializer
Initializes the contract by setting up the default admin role, the moderator role, and the primary index token.
Parameters:
pit
address
The address of the primary index token.
grantModerator (0x6981c7ae)
function grantModerator(address newModerator) external onlyAdmin
Grants the moderator role to a new address.
Requirements:
Called by the admin role.
The new moderator address must not be the zero address.
Parameters:
newModerator
address
The address of the new moderator.
revokeModerator (0x36445636)
function revokeModerator(address moderator) external onlyAdmin
Revokes the moderator role from an address.
Requirements:
Called by the admin role.
The moderator address must not be the zero address.
Parameters:
moderator
address
The address of the moderator to be revoked.
transferAdminRole (0xada8f919)
function transferAdminRole(address newAdmin) external onlyAdmin
Transfers the admin role to a new address.
Requirements:
Called by the admin role.
The moderator address must not be the zero address.
Parameters:
newAdmin
address
The address of the new admin.
transferAdminRoleForPIT (0x23e0f33e)
function transferAdminRoleForPIT(
address currentAdmin,
address newAdmin
) external onlyAdmin
Transfers the admin role for the primary index token to a new address.
Requirements:
Called by the admin role.
The current admin address must not be the zero address.
The new admin address must not be the zero address.
Parameters:
currentAdmin
address
The address of the current admin.
newAdmin
address
The address of the new admin.
setPrimaryLendingPlatform (0xe801734a)
function setPrimaryLendingPlatform(
address newPrimaryLendingPlatform
) external onlyModerator
Sets the address of the primary lending platform contract.
Requirements:
Only the moderator can call this function.
The new primary lending platform address cannot be the zero address.
Parameters:
newPrimaryLendingPlatform
address
The address of the new primary lending platform contract.
addProjectToken (0xf8095cb9)
function addProjectToken(
address projectToken,
uint8 loanToValueRatioNumerator,
uint8 loanToValueRatioDenominator
) public onlyAdmin
Adds a project token to the platform with the specified loan-to-value ratio.
Parameters:
projectToken
address
The address of the project token to be added.
loanToValueRatioNumerator
uint8
The numerator of the loan-to-value ratio.
loanToValueRatioDenominator
uint8
The denominator of the loan-to-value ratio.
Requirements:
The project token address must not be the zero address.
Only the admin can call this function.
Effects:
Adds the project token to the platform.
Sets the loan-to-value ratio for the project token.
Sets the pause status for deposit and withdrawal of the project token to false. |
removeProjectToken (0xcb69ae80)
function removeProjectToken(
uint256 projectTokenId
)
external
onlyAdmin
isProjectTokenListed(primaryLendingPlatform.projectTokens(projectTokenId))
Removes a project token from the primary lending platform.
Parameters:
projectTokenId
uint256
The ID of the project token to be removed.
Requirements:
The caller must be an admin.
The project token must be listed on the primary lending platform.
The total deposited project token amount must be zero. |
addLendingToken (0x1d0957e9)
function addLendingToken(
address lendingToken,
address bLendingToken,
bool isPaused,
uint8 loanToValueRatioNumerator,
uint8 loanToValueRatioDenominator
) external onlyAdmin
Adds a new lending token to the platform.
Parameters:
lendingToken
address
The address of the lending token to be added.
bLendingToken
address
The address of the corresponding bLending token.
isPaused
bool
A boolean indicating whether the lending token is paused or not.
loanToValueRatioNumerator
uint8
The numerator of the loan-to-value ratio for the lending token.
loanToValueRatioDenominator
uint8
The denominator of the loan-to-value ratio for the lending token.
Requirements:
The lending token address and bLending token address must not be zero.
Only the admin can call this function.
Effects:
Adds the lending token to the platform.
Sets the loan-to-value ratio for the lending token.
Sets the pause status for borrowing of the lending token. |
removeLendingToken (0xe032563a)
function removeLendingToken(
uint256 lendingTokenId
)
external
onlyAdmin
isLendingTokenListed(primaryLendingPlatform.lendingTokens(lendingTokenId))
Removes a lending token from the primary lending platform.
Parameters:
lendingTokenId
uint256
The ID of the lending token to be removed.
Requirements:
The caller must have admin role.
The lending token must be listed in the primary lending platform.
There must be no borrow of the lending token in any project. |
setPrimaryLendingPlatformLeverage (0xa1ab5419)
function setPrimaryLendingPlatformLeverage(
address newPrimaryLendingPlatformLeverage
) external onlyAdmin
Sets the address of the primary lending platform leverage contract.
Requirements:
Only the admin can call this function.
The new address must not be the zero address.
Parameters:
newPrimaryLendingPlatformLeverage
address
The address of the new primary lending platform leverage contract.
setPriceOracle (0x530e784f)
function setPriceOracle(address newOracle) external onlyAdmin
Sets the price oracle address for the primary lending platform.
Requirements:
Only the admin can call this function.
The new address must not be the zero address.
Parameters:
newOracle
address
The new price oracle address to be set.
addRelatedContracts (0x83bb578d)
function addRelatedContracts(address newRelatedContract) external onlyAdmin
Adds an address to the list of related contracts.
Requirements:
Only the admin can call this function.
The new address must not be the zero address.
Parameters:
newRelatedContract
address
The address of the new related contract to be added.
removeRelatedContracts (0x3b3e330b)
function removeRelatedContracts(address relatedContract) external onlyAdmin
Removes an address from the list of related contracts.
Requirements:
Only the admin can call this function.
The new address must not be the zero address.
Parameters:
relatedContract
address
The address of the related contract to be removed.
setProjectTokenInfo (0x4a5333bc)
function setProjectTokenInfo(
address projectToken,
bool isDepositPaused,
bool isWithdrawPaused,
uint8 loanToValueRatioNumerator,
uint8 loanToValueRatioDenominator
) public onlyModerator
Sets the project token information such as deposit and withdraw pause status, and loan-to-value ratio for a given project token.
Requirements:
The
loanToValueRatioNumerator
must be less than or equal toloanToValueRatioDenominator
.Only the moderator can call this function.
Parameters:
projectToken
address
The address of the project token.
isDepositPaused
bool
The boolean value indicating whether deposit is paused for the project token.
isWithdrawPaused
bool
The boolean value indicating whether withdraw is paused for the project token.
loanToValueRatioNumerator
uint8
The numerator value of the loan-to-value ratio for the project token.
loanToValueRatioDenominator
uint8
The denominator value of the loan-to-value ratio for the project token.
setLendingTokenInfo (0x821363a0)
function setLendingTokenInfo(
address lendingToken,
address bLendingToken,
bool isPaused,
uint8 loanToValueRatioNumerator,
uint8 loanToValueRatioDenominator
) public onlyModerator
Sets the lending token information for the primary lending platform.
Requirements:
The function can only be called by the moderator.
The underlying asset of the bLending token must be the same as the lending token.
Parameters:
lendingToken
address
The address of the lending token.
bLendingToken
address
The address of the corresponding bLending token.
isPaused
bool
A boolean indicating whether the project token is paused or not.
loanToValueRatioNumerator
uint8
The numerator of the loan-to-value ratio.
loanToValueRatioDenominator
uint8
The denominator of the loan-to-value ratio.
setBorrowLimitPerCollateralAsset (0x8e85cdfa)
function setBorrowLimitPerCollateralAsset(
address projectToken,
uint256 borrowLimit
) external onlyModerator isProjectTokenListed(projectToken)
Sets the borrow limit per collateral for a given project token.
Requirements:
The function can only be called by the moderator.
The project token must be listed on the primary lending platform.
The borrow limit must be greater than zero.
The project token address must not be the zero address.
Parameters:
projectToken
address
The project token for which to set the borrow limit.
borrowLimit
uint256
The new borrow limit.
setBorrowLimitPerLendingAsset (0x92a39190)
function setBorrowLimitPerLendingAsset(
address lendingToken,
uint256 borrowLimit
) external onlyModerator isLendingTokenListed(lendingToken)
Sets the borrow limit per lending asset for a given lending token.
Requirements:
The function can only be called by the moderator.
The lending token must be listed on the primary lending platform.
The borrow limit must be greater than zero.
The lendingToken token address must not be the zero address.
Parameters:
lendingToken
address
The lending token for which to set the borrow limit.
borrowLimit
uint256
The new borrow limit.
Last updated