Skip to content

Instantly share code, notes, and snippets.

@alerdenisov
Created October 4, 2020 18:55
Show Gist options
  • Save alerdenisov/b8f3046051bb1d60a3474209a9849b14 to your computer and use it in GitHub Desktop.
Save alerdenisov/b8f3046051bb1d60a3474209a9849b14 to your computer and use it in GitHub Desktop.
Proxy all
contract Proxy {
fallback() external payable {
assembly {
let len := calldatasize()
calldatacopy(0, 0, len)
let r := delegatecall(gas(), mload(0x0), 0x20, sub(len, 0x20), 0, 0)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment