diff --git a/mev_inspect/classifiers/specs/aave.py b/mev_inspect/classifiers/specs/aave.py index 4def777..e04beac 100644 --- a/mev_inspect/classifiers/specs/aave.py +++ b/mev_inspect/classifiers/specs/aave.py @@ -15,4 +15,13 @@ AAVE_SPEC = ClassifierSpec( }, ) +ATOKENS_SPEC = ClassifierSpec( + abi_name="aTokens", + protocol=Protocol.aave, + classifications={ + "transferOnLiquidation(address,address,uint256)": Classification.transfer, + "transferFrom(address,address,uint256)": Classification.transfer, + }, +) + AAVE_CLASSIFIER_SPECS = [AAVE_SPEC]