Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2/init.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ We need a way to store a list of pokemon names once when we initialize our contr

## The \_\_init\_\_ Function

**\_\_init\_\_** is a special initialization function that may only be called at the time of deploying a contract. It can be used to set initial values for storage variables. A common use case is to set an owner variable with the creator the contract:
**\_\_init\_\_** is a special initialization function that may only be called at the time of deploying a contract. It can be used to set initial values for storage variables. A common use case is to set an owner variable with the creator of the contract:

```vyper
owner: address
Expand Down