Events ​
Events ​
LogUpdateSupplyRateMagnifier ​
emitted when supply rate magnifier is updated at a vault
solidity
event LogUpdateSupplyRateMagnifier(address vault, uint256 oldSupplyRateMagnifier, uint256 newSupplyRateMagnifier);
Parameters
Name | Type | Description |
---|---|---|
vault | address | The address of the vault |
oldSupplyRateMagnifier | uint256 | The previous supply rate magnifier value |
newSupplyRateMagnifier | uint256 | The new supply rate magnifier value |
LogUpdateBorrowRateMagnifier ​
emitted when borrow rate magnifier is updated at a vault
solidity
event LogUpdateBorrowRateMagnifier(address vault, uint256 oldBorrowRateMagnifier, uint256 newBorrowRateMagnifier);
Parameters
Name | Type | Description |
---|---|---|
vault | address | The address of the vault |
oldBorrowRateMagnifier | uint256 | The previous borrow rate magnifier value |
newBorrowRateMagnifier | uint256 | The new borrow rate magnifier value |
LogUpdateSupplyRate ​
emitted when supply rate is updated at a vault
solidity
event LogUpdateSupplyRate(address vault, int256 oldSupplyRate, int256 newSupplyRate);
Parameters
Name | Type | Description |
---|---|---|
vault | address | The address of the vault |
oldSupplyRate | int256 | The previous supply rate value |
newSupplyRate | int256 | The new supply rate value |
LogUpdateBorrowRate ​
emitted when borrow rate is updated at a vault
solidity
event LogUpdateBorrowRate(address vault, int256 oldBorrowRate, int256 newBorrowRate);
Parameters
Name | Type | Description |
---|---|---|
vault | address | The address of the vault |
oldBorrowRate | int256 | The previous borrow rate value |
newBorrowRate | int256 | The new borrow rate value |