Skip to content

Instantly share code, notes, and snippets.

@az0mb13
Created August 3, 2022 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save az0mb13/8eb59e3c06db4a02d0833ef322b330fc to your computer and use it in GitHub Desktop.
Save az0mb13/8eb59e3c06db4a02d0833ef322b330fc to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.24;
contract Proxy {
address owner;
constructor() public {
owner = msg.sender;
}
function forward(address callee, bytes _data) public {
require(callee.delegatecall(_data));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment