-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update demo contract #353
Update demo contract #353
Conversation
merge from origin
// this method will be triggered as a VerificationTrigger to verify that the signature is correct. | ||
// For example, this method needs to be called when withdrawing token from the contract. | ||
public static bool Verify() => IsOwner(); | ||
|
||
public static bool Main() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public static bool Main() | |
public static bool MyMethod() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And we can add some comments to explain that this should be replaced with your own methods.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add comments.
Co-authored-by: Erik Zhang <[email protected]>
Co-authored-by: Erik Zhang <[email protected]>
Co-authored-by: Luchuan <[email protected]>
close #351