-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev-fund.py
396 lines (320 loc) · 14 KB
/
dev-fund.py
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
import smartpy as sp
Addresses = sp.import_script_from_url("file:test-helpers/addresses.py")
Constants = sp.import_script_from_url("file:common/constants.py")
Errors = sp.import_script_from_url("file:common/errors.py")
################################################################
# Contract
################################################################
class DevFundContract(sp.Contract):
def __init__(
self,
governorContractAddress = Addresses.GOVERNOR_ADDRESS,
administratorContractAddress = Addresses.FUND_ADMINISTRATOR_ADDRESS,
tokenContractAddress = Addresses.TOKEN_ADDRESS,
**extra_storage
):
self.exception_optimization_level = "default-unit"
self.init(
governorContractAddress = governorContractAddress,
administratorContractAddress = administratorContractAddress,
tokenContractAddress = tokenContractAddress,
**extra_storage
)
################################################################
# Public API
################################################################
# Allow transfers into the fund as a consequence of liquidation.
@sp.entry_point
def default(self, param):
pass
################################################################
# Administrator API
################################################################
@sp.entry_point
def setDelegate(self, newDelegate):
sp.set_type(newDelegate, sp.TOption(sp.TKeyHash))
# Verify the caller is the admin.
sp.verify(sp.sender == self.data.administratorContractAddress, message = Errors.NOT_ADMIN)
sp.set_delegate(newDelegate)
################################################################
# Governance
################################################################
# Governance is timelocked and can always transfer funds.
@sp.entry_point
def send(self, param):
sp.set_type(param, sp.TPair(sp.TMutez, sp.TAddress))
sp.verify(sp.sender == self.data.governorContractAddress, message = Errors.NOT_GOVERNOR)
sp.send(sp.snd(param), sp.fst(param))
# Governance is timelocked and can always transfer funds.
@sp.entry_point
def sendTokens(self, param):
sp.set_type(param, sp.TPair(sp.TNat, sp.TAddress))
# Verify sender is governor.
sp.verify(sp.sender == self.data.governorContractAddress, message = Errors.NOT_GOVERNOR)
# Destructure parameters.
amount = sp.fst(param)
destination = sp.snd(param)
# Invoke token contract
tokenContractParam = sp.record(
to_ = destination,
from_ = sp.self_address,
value = amount
)
contractHandle = sp.contract(
sp.TRecord(from_ = sp.TAddress, to_ = sp.TAddress, value = sp.TNat).layout(("from_ as from", ("to_ as to", "value"))),
self.data.tokenContractAddress,
"transfer"
).open_some()
sp.transfer(tokenContractParam, sp.mutez(0), contractHandle)
# Update the governor contract.
@sp.entry_point
def setGovernorContract(self, newGovernorContractAddress):
sp.set_type(newGovernorContractAddress, sp.TAddress)
sp.verify(sp.sender == self.data.governorContractAddress, message = Errors.NOT_GOVERNOR)
self.data.governorContractAddress = newGovernorContractAddress
# Update the administrator contract.
@sp.entry_point
def setAdministratorContract(self, newAdministratorContractAddress):
sp.set_type(newAdministratorContractAddress, sp.TAddress)
sp.verify(sp.sender == self.data.governorContractAddress, message = Errors.NOT_GOVERNOR)
self.data.administratorContractAddress = newAdministratorContractAddress
# Only run tests if this file is main.
if __name__ == "__main__":
################################################################
################################################################
# Tests
################################################################
################################################################
DummyContract = sp.import_script_from_url("file:test-helpers/dummy.py")
MockOvenProxy = sp.import_script_from_url("file:test-helpers/mock-oven-proxy.py")
Oven = sp.import_script_from_url("file:oven.py")
Token = sp.import_script_from_url("file:test-helpers/fa12.py")
################################################################
# default
################################################################
@sp.add_test(name="default - can receive funds")
def test():
# GIVEN a DevFund contract
scenario = sp.test_scenario()
fund = DevFundContract()
scenario += fund
# WHEN the default entry point is called
amount = sp.mutez(1)
scenario += fund.default(sp.unit).run(
amount = amount,
)
# THEN the funds are accepted.
scenario.verify(fund.balance == amount)
################################################################
# setDelegate
################################################################
@sp.add_test(name="setDelegate - fails when not called by administrator")
def test():
# GIVEN a DevFund without a delegate and an administrator.
scenario = sp.test_scenario()
administrator = Addresses.FUND_ADMINISTRATOR_ADDRESS
fund = DevFundContract(
administratorContractAddress = administrator
)
scenario += fund
# WHEN setDelegate is called by someone other than the administrator THEN the invocation fails.
notAdministrator = Addresses.NULL_ADDRESS
delegate = sp.some(sp.key_hash("tz1abmz7jiCV2GH2u81LRrGgAFFgvQgiDiaf"))
scenario += fund.setDelegate(delegate).run(
sender = notAdministrator,
valid = False
)
@sp.add_test(name="setDelegate - updates delegate")
def test():
# GIVEN a DevFund contract without a delegate and an administrator.
scenario = sp.test_scenario()
administrator = Addresses.FUND_ADMINISTRATOR_ADDRESS
fund = DevFundContract(
administratorContractAddress = administrator
)
scenario += fund
# WHEN setDelegate is called by the administrator
delegate = sp.some(sp.key_hash("tz1abmz7jiCV2GH2u81LRrGgAFFgvQgiDiaf"))
scenario += fund.setDelegate(delegate).run(
sender = administrator,
)
# THEN the delegate is updated.
scenario.verify(fund.baker.open_some() == delegate.open_some())
################################################################
# send
################################################################
@sp.add_test(name="send - succeeds when called by governor")
def test():
scenario = sp.test_scenario()
# GIVEN a DevFund contract with some balance
balance = sp.mutez(10)
governorContractAddress = Addresses.GOVERNOR_ADDRESS
fund = DevFundContract(
governorContractAddress = governorContractAddress
)
fund.set_initial_balance(balance)
scenario += fund
# AND a dummy contract to receive funds
dummyContract = DummyContract.DummyContract()
scenario += dummyContract
# WHEN send is called
param = (balance, dummyContract.address)
scenario += fund.send(param).run(
sender = governorContractAddress,
)
# THEN the funds are sent.
scenario.verify(fund.balance == sp.mutez(0))
scenario.verify(dummyContract.balance == balance)
@sp.add_test(name="send - fails when not called by governor")
def test():
scenario = sp.test_scenario()
# GIVEN a DevFund contract
balance = sp.mutez(10)
governorContractAddress = Addresses.GOVERNOR_ADDRESS
fund = DevFundContract(
governorContractAddress = governorContractAddress
)
fund.set_initial_balance(balance)
scenario += fund
# WHEN send is called by someone who isn't the governor THEN the call fails
notGovernor = Addresses.NULL_ADDRESS
param = (balance, notGovernor)
scenario += fund.send(param).run(
sender = notGovernor,
valid = False
)
################################################################
# sendTokens
################################################################
@sp.add_test(name="sendTokens - succeeds when called by governor")
def test():
scenario = sp.test_scenario()
# GIVEN a Token contract.
governorAddress = Addresses.GOVERNOR_ADDRESS
token = Token.FA12(
admin = governorAddress
)
scenario += token
# AND a DevFund contract
fund = DevFundContract(
governorContractAddress = governorAddress,
tokenContractAddress = token.address
)
scenario += fund
# And a dummy contract to send to.
dummyContract = DummyContract.DummyContract()
scenario += dummyContract
# AND the fund has $1000 of tokens.
fundTokens = 1000 * Constants.PRECISION
mintForFundParam = sp.record(address = fund.address, value = fundTokens)
scenario += token.mint(mintForFundParam).run(
sender = governorAddress
)
# WHEN sendTokens is called
amount = sp.nat(200)
param = (amount, dummyContract.address)
scenario += fund.sendTokens(param).run(
sender = governorAddress,
)
# THEN the fund is debited tokens
scenario.verify(token.data.balances[fund.address].balance == sp.as_nat(fundTokens - amount))
# AND the receiver was credited the tokens.
scenario.verify(token.data.balances[dummyContract.address].balance == amount)
@sp.add_test(name="sendTokens - fails when not called by governor")
def test():
scenario = sp.test_scenario()
# GIVEN a Token contract.
governorAddress = Addresses.GOVERNOR_ADDRESS
token = Token.FA12(
admin = governorAddress
)
scenario += token
# AND a DevFund contract
fund = DevFundContract(
governorContractAddress = governorAddress,
tokenContractAddress = token.address
)
scenario += fund
# AND the fund has $1000 of tokens.
fundTokens = 1000 * Constants.PRECISION
mintForFundParam = sp.record(address = fund.address, value = fundTokens)
scenario += token.mint(mintForFundParam).run(
sender = governorAddress
)
# WHEN sendTokens is called by someone who isn't the governor THEN the call fails.
notGovernor = Addresses.NULL_ADDRESS
amount = sp.nat(200)
param = (amount, Addresses.ROTATED_ADDRESS)
scenario += fund.sendTokens(param).run(
sender = notGovernor,
valid = False
)
################################################################
# setGovernorContract
################################################################
@sp.add_test(name="setGovernorContract - succeeds when called by governor")
def test():
# GIVEN a DevFund contract
scenario = sp.test_scenario()
governorContractAddress = Addresses.GOVERNOR_ADDRESS
fund = DevFundContract(
governorContractAddress = governorContractAddress
)
scenario += fund
# WHEN the setGovernorContract is called with a new contract
rotatedAddress = Addresses.ROTATED_ADDRESS
scenario += fund.setGovernorContract(rotatedAddress).run(
sender = governorContractAddress,
)
# THEN the contract is updated.
scenario.verify(fund.data.governorContractAddress == rotatedAddress)
@sp.add_test(name="setGovernorContract - fails when not called by governor")
def test():
# GIVEN a DevFund contract
scenario = sp.test_scenario()
governorContractAddress = Addresses.GOVERNOR_ADDRESS
fund = DevFundContract(
governorContractAddress = governorContractAddress
)
scenario += fund
# WHEN the setGovernorContract is called by someone who isn't the governor THEN the call fails
rotatedAddress = Addresses.ROTATED_ADDRESS
scenario += fund.setGovernorContract(rotatedAddress).run(
sender = Addresses.NULL_ADDRESS,
valid = False
)
################################################################
# setAdministratorContract
################################################################
@sp.add_test(name="setAdministratorContract - succeeds when called by governor")
def test():
# GIVEN an DevFund contract
scenario = sp.test_scenario()
governorContractAddress = Addresses.GOVERNOR_ADDRESS
fund = DevFundContract(
governorContractAddress = governorContractAddress
)
scenario += fund
# WHEN the setAdministratorContract is called with a new contract
rotatedAddress= Addresses.ROTATED_ADDRESS
scenario += fund.setAdministratorContract(rotatedAddress).run(
sender = governorContractAddress,
)
# THEN the contract is updated.
scenario.verify(fund.data.administratorContractAddress == rotatedAddress)
@sp.add_test(name="setAdministratorContract - fails when not called by governor")
def test():
# GIVEN a DevFund contract
scenario = sp.test_scenario()
governorContractAddress = Addresses.GOVERNOR_ADDRESS
fund = DevFundContract(
governorContractAddress = governorContractAddress
)
scenario += fund
# WHEN the setAdministratorContract is called by someone who isn't the governor THEN the call fails
rotatedAddress = Addresses.ROTATED_ADDRESS
scenario += fund.setAdministratorContract(rotatedAddress).run(
sender = Addresses.NULL_ADDRESS,
valid = False
)
sp.add_compilation_target("dev-fund", DevFundContract())