Redeem
const agile = new Agile(window.ethereum);
(async function() {
console.log('Redeeming ETH...');
const trx = await agile.redeem(Agile.ETH, 1); // also accepts aToken args
console.log('Ethers.js transaction object', trx);
})().catch(console.error);Last updated