interface WithdrawalRequest {
    address: `0x${string}`;
    amount?: bigint;
    recipient?: `0x${string}`;
}

Properties

address: `0x${string}`

The address of the asset

amount?: bigint

The amount to withdraw. Expects unformatted amount. Will use max amount if unset

recipient?: `0x${string}`

The destination address of the funds. The second argument from the withdraw(...) function will be used as the default if left unset.