Link.prepareWithdrawal
Link.prepareWithdrawal
const response = await link.prepareWithdrawal({
type: ETHTokenType.ETH,
amount: '0.001', //The amount of the token to withdraw
});
console.log(response);
// returns { withdrawalId: 123456 }Last updated