IUsdnEvents
Defines all custom events emitted by the USDN token contract.
Events
Rebase
The divisor was updated, emitted during a rebase.
event Rebase(uint256 oldDivisor, uint256 newDivisor);
Parameters
Name | Type | Description |
---|---|---|
oldDivisor | uint256 | The divisor value before the rebase. |
newDivisor | uint256 | The new divisor value. |
RebaseHandlerUpdated
The rebase handler address was updated.
The rebase handler is a contract that is called when a rebase occurs.
event RebaseHandlerUpdated(IRebaseCallback newHandler);
Parameters
Name | Type | Description |
---|---|---|
newHandler | IRebaseCallback | The address of the new rebase handler contract. |