This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapproval.teal
569 lines (472 loc) · 8.94 KB
/
approval.teal
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
#pragma version 8
// Deploy MsigTxnShare
// Args:
// + uint8: Msig Signer Major Version
// + uint8: Msig Signer Minor Version
// Returns:
// + uint64: Application ID
method "deploy(uint8,uint8)uint64"
txna ApplicationArgs 0
==
bnz method_deploy
// Set Signatures
// Signatures can only be added by the account holder.
// Args:
// + byte[][]: bytearray of bytearray containing 1 to 16 signatures
method "setSignatures(byte[][])void"
txna ApplicationArgs 0
==
bnz method_set_signatures
// Clear Signatures
method "clearSignatures()void"
txna ApplicationArgs 0
==
bnz method_clear_signatures
// Add Account
// Args:
// + uint8: Multisig account index
// + account: Account to add
method "addAccount(uint8,account)void"
txna ApplicationArgs 0
==
bnz method_add_account
// Remove Account By Index
// Args:
// + uint8: Multisig account index
method "removeAccount(uint8)void"
txna ApplicationArgs 0
==
bnz method_remove_account
// Add Transaction
// Args:
// + uint8: Group transaction index
// + byte[]: Transaction bytes
method "addTransaction(uint8,byte[])void"
txna ApplicationArgs 0
==
bnz method_add_transaction
// Remove Transaction
// Args:
// + uint8: Group transaction index
method "removeTransaction(uint8)void"
txna ApplicationArgs 0
==
bnz method_remove_transaction
// Set Threshold
// Args:
// + New threshold
method "setThreshold(uint8)void"
txna ApplicationArgs 0
==
bnz method_set_threshold
// Destroy
method "destroy()void"
txna ApplicationArgs 0
==
bnz method_destroy
// Update
method "update(uint8,uint8)void"
txna ApplicationArgs 0
==
bnz method_update
err
method_deploy:
txn OnCompletion
int NoOp
==
assert
txn ApplicationID
!
assert
// Store Msig Signer Major Version
byte "VersionMajor"
txna ApplicationArgs 1
btoi
app_global_put
// Store Msig Signer Minor Version
byte "VersionMinor"
txna ApplicationArgs 2
btoi
app_global_put
// Set threshold to 1 (default)
byte "Threshold"
int 1
app_global_put
// Return Application ID
byte 0x151f7c75
global CurrentApplicationID
itob
concat
log
int 1
return
method_destroy:
txn OnCompletion
int DeleteApplication
==
assert
txn ApplicationID
assert
txn Sender
global CreatorAddress
==
assert
itxn_begin
int pay
itxn_field TypeEnum
global CreatorAddress
itxn_field Receiver
global CreatorAddress
itxn_field CloseRemainderTo
itxn_submit
int 1
return
method_update:
txn OnCompletion
int UpdateApplication
==
assert
txn ApplicationID
assert
txn Sender
global CreatorAddress
==
assert
// Store Msig Signer Major Version
byte "VersionMajor"
txna ApplicationArgs 1
btoi
app_global_put
// Store Msig Signer Minor Version
byte "VersionMinor"
txna ApplicationArgs 2
btoi
app_global_put
int 1
return
method_set_threshold:
txn OnCompletion
int NoOp
==
assert
txn ApplicationID
assert
txn Sender
global CreatorAddress
==
assert
// Set threshold
byte "Threshold"
txna ApplicationArgs 1
btoi
app_global_put
int 1
return
method_add_transaction:
txn OnCompletion
int NoOp
==
assert
txn ApplicationID
assert
txn Sender
global CreatorAddress
==
assert
// Delete the box if it already exists
txna ApplicationArgs 1
callsub sub_index_to_box
box_del
pop
// Create the box
txna ApplicationArgs 1 // 0
callsub sub_index_to_box // txn0
txna ApplicationArgs 2 // txn0 abidata
int 0 // txn0 abidata 0
extract_uint16 // txn0 txnlen
box_create // 1
assert //
// Place the txn in the box
txna ApplicationArgs 1 // 0
callsub sub_index_to_box // txn0
txna ApplicationArgs 2 // txn0 abidata
dup // txn0 abidata abidata
int 0 // txn0 abidata abidata 0
extract_uint16 // txn0 abidata txnlen
int 2 // txn0 abidata txnlen 2
swap // txn0 abidata 2 txnlen
int 2
+
substring3 // txn0 txndata
box_put //
int 1
return
method_remove_transaction:
txn OnCompletion
int NoOp
==
assert
txn ApplicationID
assert
txn Sender
global CreatorAddress
==
assert
// Delete the box if it exists
txna ApplicationArgs 1
callsub sub_index_to_box
box_del
pop
int 1
return
method_add_account:
txn OnCompletion
int NoOp
==
assert
txn ApplicationID
assert
txn Sender
global CreatorAddress
==
assert
// If index already exists, remove index (and dec. account)
int 0
txna ApplicationArgs 1
app_global_get_ex
swap
pop
bz index_available
txna ApplicationArgs 1
callsub sub_remove_account_by_index
index_available:
// Store multisig index as key with account as value
txna ApplicationArgs 1
txna ApplicationArgs 2
btoi
txnas Accounts
app_global_put
// Store account as key and counter as value, this is
// for ease of authentication, and tracking removal
txna ApplicationArgs 2
btoi
txnas Accounts
dup
app_global_get
int 1
+
app_global_put
int 1
return
method_remove_account:
txn OnCompletion
int NoOp
==
assert
txn ApplicationID
assert
txn Sender
global CreatorAddress
==
assert
// Delete account by multisig index
txna ApplicationArgs 1
callsub sub_remove_account_by_index
int 1
return
// Scratch Slots:
// 0: Counter
// 1: Number of byte[] in byte[][]
// 2: Start of current byte[]
// 3: Size of current byte[]
method_set_signatures:
txn OnCompletion
int NoOp
==
txn OnCompletion
int OptIn
==
||
assert
txn ApplicationID
assert
callsub sub_is_sender_in_multisig
assert
// process byte[][]
txna ApplicationArgs 1
int 0
extract_uint16
store 1 // Number of arrays
// Starting at index 0, add each sig to an indexed kv-pair
int 0
loop_add_sig:
store 0
txn Sender
load 0
itob
substring 7 8
// Get start of current byte[]
// index * 2 + 2
txna ApplicationArgs 1
int 2
int 2
load 0
*
+
extract_uint16
store 2 // Start of byte[]
// Get size of current byte[]
txna ApplicationArgs 1
int 2
load 2
+
extract_uint16
store 3 // Size of byte[]
// Get signature from byte[]
txna ApplicationArgs 1
load 2 // Start of byte[]
int 4 // 2 + 2 (size of byte[][] and size of current byte[])
+
dup
load 3 // Size of byte[]
+
substring3
app_local_put
// Increment counter
load 0
int 1
+
dup
// Check for additional signatures
load 1
<
bnz loop_add_sig
// Clear remaining signatures
txn Sender
swap
callsub sub_clear_signatures
int 1
return
method_clear_signatures:
txn OnCompletion
int NoOp
==
txn OnCompletion
int CloseOut
==
||
assert
txn ApplicationID
assert
callsub sub_is_sender_in_multisig
assert
// Delete all 16 potential signatures
txn Sender
int 0
callsub sub_clear_signatures
int 1
return
// Args:
// + byte value (0x00 - 0x0f)
// Returns:
// + byte value representing numbers (0 - 15)
sub_index_to_box:
proto 1 1
byte "txn"
// Convert to uint
frame_dig -1
btoi
frame_bury -1
// Only allow values 0x00 to 0x0f (0-15)
frame_dig -1
int 16
<
assert
// If larger than 9 we need to produce two digits
frame_dig -1
int 9
>
bnz sub_index_to_box_two_digits
// Return single digit
frame_dig 0
frame_dig -1
int 48
+
itob
substring 7 8
concat
b end_sub_index_to_box
sub_index_to_box_two_digits:
frame_dig 0
byte "1"
frame_dig -1
int 10
%
int 48
+
itob
substring 7 8
concat
concat
end_sub_index_to_box:
frame_bury 0
retsub
// Sender must have a keyed index in the multisig
sub_is_sender_in_multisig:
proto 0 1
int 0
global CurrentApplicationID
txn Sender
app_global_get_ex
swap
pop
frame_bury 0
retsub
// Clear signatures from Ith position to 16th position
// Args:
// + Account
// + uint64: Ith position
sub_clear_signatures:
proto 2 0
// Delete remaining signatures
loop_del_sig:
frame_dig -2
frame_dig -1
itob
substring 7 8
app_local_del
// Increment counter
frame_dig -1
int 1
+
dup
frame_bury -1
int 16
<
bnz loop_del_sig
retsub
// Remove index from multisig
// Args:
// + uint8: Ith position
sub_remove_account_by_index:
proto 1 0
// Fetch account before deleting
frame_dig -1 // arg1
app_global_get // addr
// Delete account by multisig index
frame_dig -1 // addr arg1
app_global_del // addr
// Decrement account counter, or delete if no longer used
dup // addr addr
app_global_get // addr counter
int 1 // addr counter 1
- // addr counter-1
dup // addr counter-1 counter-1
bnz keep_addr // addr counter-1
pop // addr
app_global_del //
b end_remove_account
keep_addr: // addr counter-1
app_global_put //
end_remove_account:
retsub