-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathincrement.tact
70 lines (57 loc) · 1.39 KB
/
increment.tact
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import "@stdlib/deploy";
message Increment {
key: Int;
value: Int;
}
message Toggle {
key: Int;
}
message Persist {
key: Int;
content: Cell?;
}
message Reset {
key: Int;
}
struct Something {
value: Int;
}
contract IncrementContract with Deployable {
counters: map<Int, Int>;
counters2: map<Int, Bool>;
counters3: map<Int, Cell>;
counters4: map<Address, Int>;
counters5: map<Int, Something>;
init() {
// Nothing to do
}
receive(msg: Increment) {
self.counters.set(msg.key, msg.value);
self.counters4.set(sender(), msg.value);
}
receive(msg: Toggle) {
let ex: Bool? = self.counters2.get(msg.key);
if (ex == null) {
self.counters2.set(msg.key, true);
} else {
self.counters2.set(msg.key, !(ex!!));
}
}
receive(msg: Persist) {
require(self.counters3.get(msg.key) == null, "Empty counter");
self.counters3.set(msg.key, msg.content);
}
receive(msg: Reset) {
self.counters.set(msg.key, null);
self.counters2.set(msg.key, null);
self.counters3.set(msg.key, null);
self.counters4.set(sender(), null);
self.counters5.set(msg.key, null);
}
get fun counters(): map<Int, Int> {
return self.counters;
}
get fun counters2(): map<Address, Int> {
return self.counters4;
}
}