You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 9, 2025. It is now read-only.
The setClaimer functionality is currently only available to the emission manager, but giving a user the ability to set the claimer for himself could be a useful feature that allows better separation of access control for holders that want to have their Aave funds in cold storage but still claim using a hot wallet.
Suggestion:
Add a separate setClaimer() function that allow any user to set a claimer for themselves.
function setClaimer(addresscaller) externaloverride {
_authorizedClaimers[msg.sender] = caller;
emitClaimerSet(msg.sender, caller);
}