IWETH9
function allowance(address, address) external view returns (uint256)
Name | Type | Description |
---|---|---|
_0 | address | undefined |
_1 | address | undefined |
Name | Type | Description |
---|---|---|
_0 | uint256 | undefined |
function approve(address guy, uint256 wad) external nonpayable returns (bool)
Name | Type | Description |
---|---|---|
guy | address | undefined |
wad | uint256 | undefined |
Name | Type | Description |
---|---|---|
_0 | bool | undefined |
function balanceOf(address) external view returns (uint256)
Name | Type | Description |
---|---|---|
_0 | address | undefined |
Name | Type | Description |
---|---|---|
_0 | uint256 | undefined |
function decimals() external view returns (uint8)
Name | Type | Description |
---|---|---|
_0 | uint8 | undefined |
function deposit() external payable
function name() external view returns (string)
Name | Type | Description |
---|---|---|
_0 | string | undefined |
function symbol() external view returns (string)
Name | Type | Description |
---|---|---|
_0 | string | undefined |
function totalSupply() external view returns (uint256)
Name | Type | Description |
---|---|---|
_0 | uint256 | undefined |
function transfer(address dst, uint256 wad) external nonpayable returns (bool)
Name | Type | Description |
---|---|---|
dst | address | undefined |
wad | uint256 | undefined |
Name | Type | Description |
---|---|---|
_0 | bool | undefined |
function transferFrom(address src, address dst, uint256 wad) external nonpayable returns (bool)
Name | Type | Description |
---|---|---|
src | address | undefined |
dst | address | undefined |
wad | uint256 | undefined |
Name | Type | Description |
---|---|---|
_0 | bool | undefined |
function withdraw(uint256 wad) external nonpayable
Name | Type | Description |
---|---|---|
wad | uint256 | undefined |
event Approval(address indexed src, address indexed guy, uint256 wad)
Name | Type | Description |
---|---|---|
src indexed | address | undefined |
guy indexed | address | undefined |
wad | uint256 | undefined |
event Deposit(address indexed dst, uint256 wad)
Name | Type | Description |
---|---|---|
dst indexed | address | undefined |
wad | uint256 | undefined |
event Transfer(address indexed src, address indexed dst, uint256 wad)
Name | Type | Description |
---|---|---|
src indexed | address | undefined |
dst indexed | address | undefined |
wad | uint256 | undefined |
event Withdrawal(address indexed src, uint256 wad)
Name | Type | Description |
---|---|---|
src indexed | address | undefined |
wad | uint256 | undefined |
Last modified 2d ago