diff --git a/mev_inspect/classifiers/specs/aave.py b/mev_inspect/classifiers/specs/aave.py index c12e785..3f47a8f 100644 --- a/mev_inspect/classifiers/specs/aave.py +++ b/mev_inspect/classifiers/specs/aave.py @@ -12,4 +12,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]