Coinmonks

Coinmonks is a non-profit Crypto Educational Publication. Other Project — https://coincodecap.com/ & Email — gaurav@coincodecap.com

Follow publication

Member-only story

Aave V2 Liquidation Example

Example code for a liquidation strategy on Aave V2 Ethereum Mainnet using foundry

yuichiro aoki
Coinmonks
Published in
3 min readOct 23, 2022
Liquidation Contract

The tutorial repo is here.

Foundry

Foundry is a smart contract development tool like Hardhat, Truffle, etc. It’s known for fast compilation/testing time and probably because it’s written in Rust while Hardhat is in Typescript. Also, with foundry you write tests with solidity, so maybe foundry will become a go-to dev tool for new developers just because you only have to learn solidity.

Aave V2 Liquidation

Basically, when someone’s borrowing asset market value exceeds a certain threshold of their collateral market value, you can get their collateral assets with a fixed discount if you repay their borrowing assets. This kind of liquidation opportunity happens right after a price oracle updates.

For Aave, when someone’s health factor goes below 1, you can a liquidation call. Now Aave has V3, but not on the Ethereum Mainnet. You can find many liquidation transactions on EigenPhi website. Usually, there are fewer liquidation opportunities than arbitrage or sandwich ones because it needs relatively huge price volatility and lending protocols warn users not to liquidate their positions on web UI.

Aave Docs

Installation and Setup

  1. Install foundry, if you haven’t already.

2. Clone This Repo

Run the following command.

git clone https://github.com/yuichiroaoki/aaveV2-liquidation-example.git

Demo

  1. Get Ethereum Mainnet RPC URL

You can get one from Alchemy website for free.

2. Compile Smart Contracts

Run the following command.

foundry build

3. Execute a Liquidation Call 🔥

Replace `<your alchemy rpc url>` with the Ethereum Mainnet RPC URL you get from step 1 and run the following command. This will run test/Liquidation.t.sol, a test contract for src/Liquidation.sol on the Ethereum Mainnet fork network on your local machine.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Coinmonks
Coinmonks

Published in Coinmonks

Coinmonks is a non-profit Crypto Educational Publication. Other Project — https://coincodecap.com/ & Email — gaurav@coincodecap.com

yuichiro aoki
yuichiro aoki

Written by yuichiro aoki

Ethereum Enthusiast & Software Developer

Responses (6)

Write a response