Skip to content

Instantly share code, notes, and snippets.

@farukterzioglu
Created September 1, 2019 20:05
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 farukterzioglu/8701816f4092c5b301d259d491355ef3 to your computer and use it in GitHub Desktop.
Save farukterzioglu/8701816f4092c5b301d259d491355ef3 to your computer and use it in GitHub Desktop.
Erc20-7
[Function("transfer", "bool")]
public class TransferFunction : FunctionMessage
{
[Parameter("address", "_to", 1)]
public string To { get; set; }
[Parameter("uint256", "_value", 2)]
public BigInteger TokenAmount { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment