IRebaseCallback
Functions
rebaseCallback
Called by the USDN token after a rebase has happened.
function rebaseCallback(uint256 oldDivisor, uint256 newDivisor) external returns (bytes memory result_);
Parameters
Name | Type | Description |
---|---|---|
oldDivisor | uint256 | The value of the divisor before the rebase. |
newDivisor | uint256 | The value of the divisor after the rebase (necessarily smaller than oldDivisor ). |
Returns
Name | Type | Description |
---|---|---|
result_ | bytes | Arbitrary data that will be forwarded to the caller of rebase . |