fallback
Last updated
modifier onlyDelegateCall()fallback() external payableDelegate calls to pool extension.
Delegatecall restricted to owner, staticcall accessible by everyone. Restricting delegatecall to owner effectively locks direct calls.
receive() external payableAllows transfers to pool.
Prevents accidental transfer to implementation contract.
function _checkDelegateCall() private viewReturns the address of the application adapter.
selector
bytes4
Hash of the method signature.
[0]
address
Address of the application adapter.
Last updated
function _getApplicationAdapter(bytes4 selector) private view returns (address)