Skip to content

Instantly share code, notes, and snippets.

@farukterzioglu
Created September 1, 2019 21:22
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/ef29614d815f0817e4be710f24b4bcd0 to your computer and use it in GitHub Desktop.
Save farukterzioglu/ef29614d815f0817e4be710f24b4bcd0 to your computer and use it in GitHub Desktop.
Erc20-9
[Event("Transfer")]
public class TransferEventDTO : IEventDTO
{
[Parameter("address", "_from", 1, true)]
public string From { get; set; }
[Parameter("address", "_to", 2, true)]
public string To { get; set; }
[Parameter("uint256", "_value", 3, false)]
public BigInteger Value { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment