Chapter 2: Intermediate

Lesson 1: Making a transition for depositing tokens

In the last chapter, we learned about various kinds of variables, including implicit variable. Let’s build a transition that actually uses that. We’ll first wipe the variables from the first chapter, and from now onwards all the code that we’ll be using will help us directly build the social media payment application that we discussed.

First of all, in order to give ZIL tokens as rewards, the contract must have access to them. In order to ensure that, we need to build a transition where the ZIL tokens can be deposited in the contract.

We have a task for you!

Declare a transition with the name deposit. Make sure to close it with end keyword.

Your Workspace

Show Solution

Solution

1

2

3

4

5

6

7

8

scilla_version 0
contract SocialMediaPayment (owner: ByStr20)
(* Start typing from the line below *)
transition deposit()
end
scilla_version 0

contract SocialMediaPayment (owner: ByStr20)
(* Start typing from the line below *)
1
2
3
4