Skip to content

Instantly share code, notes, and snippets.

@lsankar4033
Last active September 9, 2022 08:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lsankar4033/5c118c99e8ca53ba2e7952414a7c1ae0 to your computer and use it in GitHub Desktop.
Save lsankar4033/5c118c99e8ca53ba2e7952414a7c1ae0 to your computer and use it in GitHub Desktop.
0x03 withdrawal contract pseudocode
contract Exit {
event Exited(address withdrawer, bytes val_pubkey);
constructor() {}
function exit(bytes val_pubkey) {
emit Exited(msg.sender, val_pubkey);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment