-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathincrement.tact
67 lines (55 loc) · 1.35 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
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>;
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 {
let val: Bool = ex!!;
self.counters2.set(msg.key, !val);
}
}
receive(msg: Persist) {
require(!self.counters3.exists(msg.key), "Empty counter");
self.counters3.set(msg.key, msg.content);
}
receive(msg: Reset) {
self.counters.del(msg.key);
self.counters2.del(msg.key);
self.counters3.del(msg.key);
self.counters4.del(sender());
self.counters5.del(msg.key);
}
get fun counters(): map<Int, Int> {
return self.counters;
}
get fun counters2(): map<Address, Int> {
return self.counters4;
}
}