IWusdnEvents

Git Source

Defines all custom events emitted by the WUSDN token contract.

Events

Wrap

The user wrapped USDN to mint WUSDN tokens.

event Wrap(address indexed from, address indexed to, uint256 usdnAmount, uint256 wusdnAmount);

Parameters

NameTypeDescription
fromaddressThe address of the user who wrapped the USDN.
toaddressThe address of the recipient who received the WUSDN tokens.
usdnAmountuint256The amount of USDN tokens wrapped.
wusdnAmountuint256The amount of WUSDN tokens minted.

Unwrap

The user unwrapped WUSDN tokens to redeem USDN.

event Unwrap(address indexed from, address indexed to, uint256 wusdnAmount, uint256 usdnAmount);

Parameters

NameTypeDescription
fromaddressThe address of the user who unwrapped the WUSDN tokens.
toaddressThe address of the recipient who received the USDN tokens.
wusdnAmountuint256The amount of WUSDN tokens unwrapped.
usdnAmountuint256The amount of USDN tokens redeemed.