Delegation
How Delegation Works
Important Delegation Rules
Tips for Effective Delegation
Core Functions
function delegate(address delegatee) public updateDecay(_msgSender()) onlyHubChain {
if (delegatee != address(0) && !decayState.hasDecayInfo(delegatee)) {
decayState.initializeAccount(delegatee);
}
super.delegate(delegatee);
}Last updated
Was this helpful?
