IUsdnEvents

Git Source

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

NameTypeDescription
oldDivisoruint256The divisor value before the rebase.
newDivisoruint256The 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

NameTypeDescription
newHandlerIRebaseCallbackThe address of the new rebase handler contract.