Skip to content

Instantly share code, notes, and snippets.

@madhavanmalolan
Created March 30, 2022 05: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 madhavanmalolan/69861b8f3d85da3e1e917d65f92ec641 to your computer and use it in GitHub Desktop.
Save madhavanmalolan/69861b8f3d85da3e1e917d65f92ec641 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
pragma solidity >=0.7.0 <0.9.0;
contract MetaTx {
event Executed(address relayer, address behalfOf);
function execute(address from, address to, uint value, uint gas, bytes memory data, bytes32 txHash, uint8 v, bytes32 r, bytes32 s) public returns(address){
address a = ecrecover(txHash, v,r,s);
emit Executed(msg.sender, a);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment