Skip to content

Instantly share code, notes, and snippets.

@mingder78
Created April 13, 2021 16:31
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 mingder78/9167e6f3f1434e58fe0b7bc74a16e5f2 to your computer and use it in GitHub Desktop.
Save mingder78/9167e6f3f1434e58fe0b7bc74a16e5f2 to your computer and use it in GitHub Desktop.
Demo.sol is a dumb contract, you can run Echo with low gas, forked from https://rinkeby.etherscan.io/address/0x6663184b3521bf1896ba6e1e776ab94c317204b6#code
/**
*Submitted for verification at Etherscan.io on 2021-01-27
*/
pragma solidity 0.6;
contract Demo {
event Echo(string message);
function echo(string calldata message) external {
emit Echo(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment