IPCVDeposit

Functions

deposit

function deposit() external

withdraw

function withdraw(
    address to,
    uint256 amount
) external

Parameters

NameTypeDescription

to

address

amount

uint256

withdrawERC20

function withdrawERC20(
    address token,
    address to,
    uint256 amount
) external

Parameters

NameTypeDescription

token

address

to

address

amount

uint256

withdrawETH

function withdrawETH(
    address payable to,
    uint256 amount
) external

Parameters

NameTypeDescription

to

address payable

amount

uint256

Events

Deposit

event Deposit(
    address _from,
    uint256 _amount
)

Parameters

NameTypeDescription

_from

address

_amount

uint256

### Withdrawal

event Withdrawal(
    address _caller,
    address _to,
    uint256 _amount
)

Parameters

NameTypeDescription

_caller

address

_to

address

_amount

uint256

### WithdrawERC20

event WithdrawERC20(
    address _caller,
    address _token,
    address _to,
    uint256 _amount
)

Parameters

NameTypeDescription

_caller

address

_token

address

_to

address

_amount

uint256

### WithdrawETH

event WithdrawETH(
    address _caller,
    address _to,
    uint256 _amount
)

Parameters

NameTypeDescription

_caller

address

_to

address

_amount

uint256

Last updated