-
Notifications
You must be signed in to change notification settings - Fork 0
/
process.lua
127 lines (109 loc) · 2.88 KB
/
process.lua
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
local Token_module = require("token_module")
local Proposals_module = require("proposals_module")
local Utils_module = require("utils_module")
MEMEFRAME_ID = MEMEFRAME_ID or "Hkg1j_MCrJFF42xXSWYc6x8M-ERuOCFvey3QFTgLFsU"
-- Token Handlers
Handlers.add(
"getTokenInfo",
Handlers.utils.hasMatchingTag("Action", "Info"),
function(msg)
Token_module.infoHandler(msg)
end
)
Handlers.add(
"Balance",
Handlers.utils.hasMatchingTag("Action", "Balance"),
function(msg)
Token_module.balanceHandler(msg)
end
)
Handlers.add(
"TokenBalances",
Handlers.utils.hasMatchingTag("Action", "TokenBalances"),
function(msg)
Token_module.balancesHandler(msg)
end
)
Handlers.add(
"Transfer",
Handlers.utils.hasMatchingTag("Action", "Transfer"),
function(msg)
Token_module.transferHandler(msg)
end
)
Handlers.add(
"Mint",
function(msg)
if msg.Action == "Credit-Notice" and msg.Tags['From-Process'] == "Sa0iBLPNyJQrwpTTG-tWLQU-1QeUAJA73DdxGGiKoJc" then
return true
else
return false
end
end,
function(msg)
Token_module.Mint(msg)
end
)
Handlers.add(
"SelfMint",
function(msg)
if msg.From == ao.id and msg.Tags["Action"] == "SelfMint" then
return true
else
return false
end
end,
function(msg)
Token_module.selfMintHandler(msg)
end
)
-- Proposal handlers
Handlers.add(
"Propose",
Handlers.utils.hasMatchingTag("Action", "Propose"),
function(msg)
print("This handler was triggered")
Proposals_module.initiateProposal(msg)
local status, err = pcall(Proposals_module.evaluateProposals, msg["Block-Height"])
if not status then
print("Error in evaluateProposals: " .. err)
end
end
)
Handlers.add(
"Vote",
Handlers.utils.hasMatchingTag("Action", "Vote"),
function(msg)
local statusVote, errVote = pcall(Proposals_module.vote, msg)
if not statusVote then
print("Error in voting: " .. errVote)
end
local statusEvaluate, errEvaluate = pcall(Proposals_module.evaluateProposals, msg["Block-Height"])
if not statusEvaluate then
print("Error in evaluating proposals: " .. errEvaluate)
end
end
)
Handlers.add(
"GetProposals",
Handlers.utils.hasMatchingTag("Action", "GetProposals"),
function(msg)
Proposals_module.evaluateProposals(msg["Block-Height"])
Proposals_module.getProposals(msg)
end
)
-- Subscription Handlers
Handlers.add(
"Subscribe",
Handlers.utils.hasMatchingTag("Action", "Subscribe"),
function(msg)
Utils_module.addSubscriber(msg)
end
)
Handlers.add(
"Unsubscribe",
Handlers.utils.hasMatchingTag("Action", "Unsubscribe"),
function(msg)
Utils_module.removeSubscriber(msg)
end
)