Adapters
Adapters allow for the integration of several external liquidation markets, and are based on a BaseAdapter contract that contains generic liquidation functionality. As of today, Unlockd's primary adapter used for liquidations is Reservoir
Reservoir Adapter
Reservoir adapter aims at leveraging Reservoir's powerful infrastructure for trading NFTs across major marketplaces and chains. It liquidates NFT's seeking for the best offers accross different marketplaces, such as OpenSea, LooksRare and X2Y2. The liquidation process is as follows:
Trigger `liquidateReservoir()`, passing the specific calldata which holds the transfer of the NFT to reservoir's Router contract
`liquidateReservoir()` is note permissionless, effectively enabling only Unlockd specific addresses to execute liquidations on Reservoir
Validate the calldata specifically designed to:
Transfer the NFT in a safely manner to the specific reservoir module the NFT should be liquidated in
Execute Reservoir router's `execute()` function with the specific calldata
Transfer the NFT to Reservoir's target module, where the NFT will be "automatically" liquidated
Validate the amount liquidated matches the expected liquidation price
Settle liquidation
Write methods
function liquidateReservoir(address nftAsset, address reserveAsset, bytes calldata data, uint256 expectedLiquidateAmount) external
Liquidates an unhealthy loan in reservoir.
Call params
Last updated