Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 564 Bytes

File metadata and controls

38 lines (24 loc) · 564 Bytes

IWETH

Git Source

Functions

decimals

function decimals() external view returns (uint256);

deposit

function deposit() external payable;

withdraw

function withdraw(uint256 wad) external;

Events

Deposit

event Deposit(address indexed dst, uint256 wad);

Withdrawal

event Withdrawal(address indexed src, uint256 wad);