Withdraw
Withdraws amount of the underlying asset, i.e. redeems the underlying token and burns the aTokens.
/aave/withdraw
POST
https://cryptotalk-public-gateway-byeii62k.de.gateway.dev/aave/withdraw
1) Request body must be JSON
2) Request structure sample
{
"params" : {
"addr" : "0xabcd...efe",
"from_tkn" : "ETH",
"gas" : "80",
"amt_float" : 1.234
}
}
3) from_tkn is case sensitive
4) Sample response contain rawTx object that needs to be signed and broadcast to main net.
5) amt_float : send -1 if you want to withdraw full amount otherwise send floating value up to 4 decimal
Query Parameters
key
string
API Key
Request Body
params
object
{
addr : "0xabcd....efe",
from_tkn: "ETH",
amt_float: 1.2345,
gas: "80",
}
Last updated
Was this helpful?