Commit 72300c4 1 parent e42f769 commit 72300c4 Copy full SHA for 72300c4
File tree 1 file changed +12
-9
lines changed
1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -61,14 +61,17 @@ A simple ERC20 token implementation.
61
61
@external
62
62
def transfer (to : address, amount : uint256) -> bool :
63
63
"""
64
- Transfer tokens to a specified address.
65
-
66
- Args:
67
- to: The recipient address
68
- amount: The amount of tokens to transfer
69
-
70
- Returns:
71
- bool: True if transfer succeeded
64
+ @notice
65
+ Transfer tokens to a specified address.
66
+
67
+ @param
68
+ to The recipient address
69
+
70
+ @param
71
+ amount The amount of tokens to transfer
72
+
73
+ @return
74
+ True if transfer succeeded
72
75
"""
73
76
# Implementation
74
77
return True
@@ -106,4 +109,4 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and guidelines.
106
109
107
110
## License
108
111
109
- MIT License - see LICENSE file for details
112
+ MIT License - see LICENSE file for details
You can’t perform that action at this time.
0 commit comments