CALL vs. DELEGATE CALL
CALL - executes the function in the context of the contract it was defined
DELEGATECALL - inherits the execution context, meaning that the function will behave as it was defined in the contract that’s using DELEGATECALL
Last updated