-
Notifications
You must be signed in to change notification settings - Fork 0
/
algo_delegate_template_teal.js
467 lines (436 loc) · 11.3 KB
/
algo_delegate_template_teal.js
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
/////////////////////////////
// Alexander Trefonas //
// 7/9/2021 //
// Copyright Algodev Inc //
// All Rights Reserved. //
/////////////////////////////
const algoDelegateTemplate = {
getTealTemplate : function getTealTemplate() {
let delegateTemplate = `
#pragma version 4
//////////////////////////////////////////////////////////////////////////////
// ALGO (NON-ASA) ESCROW (BUY ORDER)
// Escrow limit order to BUY ASAs. These limit orders contain only algos.
//////////////////////////////////////////////////////////////////////////////
/////////////////////////////////
// CHECKS THAT APPLY TO ALL TXNS
////////////////////////////////
int 0
store 9
checkAllTxns: // This is basically a for loop that checks all transactions
load 9
gtxns RekeyTo
global ZeroAddress
==
assert
load 9
gtxns AssetCloseTo
global ZeroAddress
==
assert
load 9
int 1
+
store 9
load 9
global GroupSize
<
bnz checkAllTxns
///////////////////////////
/// OPEN - ORDER BOOK OPT IN & REGISTRATION
// Placing an Algo Escrow Order
//////////////////////////
// TXN 0 - BUYER TO ESCROW: Pay from order creator to escrow account
// TXN 1 - ESCROW TO ORDERBOOK: Stateful app opt-in to order book
// TXN 2 - BUYER TO BUYER: (Optional) ASA opt-in for the order creator's original wallet account.
global GroupSize
int 2
==
global GroupSize
int 3
==
||
gtxn 0 TypeEnum
int pay
==
&&
gtxn 1 TypeEnum
int appl
==
&&
gtxn 0 Amount
int 500000 // Must be funded with at least 0.5 algo.
>=
&&
gtxn 1 Amount // amount sent from escrow for this txn should always be 0
int 0
==
&&
gtxn 0 CloseRemainderTo
global ZeroAddress
==
&&
gtxn 1 CloseRemainderTo
global ZeroAddress
==
&&
gtxn 0 OnCompletion
int NoOp //Check OnCompletion is OptIn or NoOp
==
&&
gtxn 1 OnCompletion
int OptIn //Check OnCompletion is OptIn or NoOp
==
&&
gtxn 1 ApplicationID
int <orderBookId> // stateful contract app id. orderBookId
==
&&
gtxn 0 Sender // must originate from buyer
addr <contractWriterAddr> // contractWriterAddr (order creator)
==
&&
gtxn 1 Sender
txn Sender // escrow account
==
&&
gtxn 0 Receiver // recipient of pay
txn Sender // escrow account
==
&&
store 0
global GroupSize // Third transaction is an optional asset opt-in
int 2
==
store 1
load 1
bnz notThreeTxns
gtxn 2 TypeEnum// Third transaction.
int axfer
==
gtxn 2 AssetAmount
int 0
==
&&
gtxn 2 Sender
addr <contractWriterAddr> // contractWriterAddr (order creator)
==
&&
gtxn 2 OnCompletion
int NoOp
==
&&
int <assetid> // asset id to trade for
gtxn 2 XferAsset
==
&&
store 1
notThreeTxns:
load 0
load 1 // Both should now be set to 1 if this is an open order transaction
&& // If either of the above are set to 0, this is *not* a place order transaction, so check other types
bz notOptInOrOrderReg // Jump if either is 0
int 1 // Otherwise it is a valid Opt-in so return early
return
////////////////////////////////////////
//// CLOSEOUT (ORDER CANCELLED) ////////
////////////////////////////////////////
// TXN 0 - ESCROW TO ORDERBOOK: application call to order book contract for closeout
// TXN 1 - ESCROW TO BUYER: pay txn close out call
// TXN 2 - BUYER TO BUYER: send transaction for proof that closeout sender owns the escrow
notOptInOrOrderReg:
// Check for close out transaction (without execution)
global GroupSize
int 3
==
gtxn 0 CloseRemainderTo
global ZeroAddress // This is an app call so should be set to 0 address
==
&&
gtxn 1 CloseRemainderTo
addr <contractWriterAddr> // contractWriterAddr
==
&&
gtxn 2 CloseRemainderTo
global ZeroAddress
==
&&
gtxn 0 Sender // first transaction must come from the escrow
txn Sender
==
&&
gtxn 1 Sender // second transaction must come from the escrow
txn Sender
==
&&
gtxn 2 Sender // proof the close is coming from sender
addr <contractWriterAddr> // contractWriterAddr
==
&&
gtxn 0 TypeEnum
int appl
==
&&
gtxn 1 TypeEnum
int pay
==
&&
gtxn 2 TypeEnum
int pay
==
&&
gtxn 0 Amount
int 0 //Check all the funds are being sent to the CloseRemainderTo address
==
&&
gtxn 1 Amount
int 0 //Check all the funds are being sent to the CloseRemainderTo address
==
&&
gtxn 2 Amount
int 0 // This is just a proof so amount should be 0
==
&&
gtxn 0 OnCompletion
int ClearState // App Call OnCompletion needs to be ClearState (OptOut), which will clear from the order book
==
&&
gtxn 1 OnCompletion
int NoOp //pay transaction
==
&&
gtxn 2 OnCompletion
int NoOp //proof pay transaction
==
&&
bz checkPayWithCloseout // If the above are not true, this is a pay transaction. Otherwise it is CloseOut so ret success
int 1
return
///////////////////////////////
// EXECUTE (ORDER EXECUTION)
// WITH CLOSEOUT
/////////////////////////////////
// TXN 0 - ESCROW TO ORDERBOOK: transaction must be a call to a stateful contract
// TXN 1 - ESCROW TO SELLER: Payment transaction from this escrow to seller, with closeout to owner (buyer)
// TXN 2 - SELLER TO BUYER: Asset transfer from seller to owner of this escrow (buyer)
checkPayWithCloseout:
gtxn 1 CloseRemainderTo
global ZeroAddress
==
bnz partialPayTxn // Jump to here if close remainder is a zero address. This is *not* a close-out
// We should be here only if this is a full execution with closeout
gtxn 0 OnCompletion // The application call must be
int CloseOut // A general application call or a closeout
==
global GroupSize // this delegate is only used on an execute order
int 3
==
&&
gtxn 0 TypeEnum // The first transaction must be an Application Call (i.e. call stateful smart contract)
int appl
==
&&
gtxn 1 TypeEnum // The second transaction must be a payment tx
int pay
==
&&
gtxn 2 TypeEnum // The third transaction must be an asset xfer tx
int axfer
==
&&
txn Fee
int 1000
<=
&&
gtxn 0 ApplicationID // The specific Order Book App ID must be called
int <orderBookId> // stateful contract app id. orderBookId
==
&&
gtxn 0 Sender
txn Sender // escrow account
==
&&
gtxn 1 Sender
txn Sender // escrow account
==
&&
gtxn 2 Sender
txn Sender // escrow account
!= // should *not* be originating from escrow
&&
gtxn 1 Receiver // Receiver of the pay transaction from this escrow
gtxn 2 Sender // Sender of the asset transfer (person trading)
==
&&
gtxn 2 AssetReceiver // Receiver of asset transfer
addr <contractWriterAddr> // contractWriterAddr must receive the asset
==
&&
gtxn 0 CloseRemainderTo
global ZeroAddress
==
&&
gtxn 1 CloseRemainderTo
addr <contractWriterAddr> // contractWriterAddr
==
&&
gtxn 2 CloseRemainderTo
global ZeroAddress
==
&&
assert
b handle_rate_check
///////////////////////////////////
// EXECUTE
// (PARTIAL ORDER EXECUTION)
/////////////////////////////////
// TXN 0 - ESCROW TO ORDERBOOK: Transaction must be a call to a stateful contract
// TXN 1 - ESCROW TO SELLER: Payment transaction from this escrow to seller
// TXN 2 - SELLER TO BUYER: Asset transfer from seller to owner of this escrow (buyer)
// TXN 3 - SELLER TO ESCROW: Pay fee refund transaction
partialPayTxn:
gtxn 0 OnCompletion // The application call must be a NoOp
int NoOp
==
txn CloseRemainderTo //all transactions from this escrow must not have closeouts
global ZeroAddress
==
&&
global GroupSize // this delegate is only used on an execute order
int 4
==
&&
gtxn 0 TypeEnum // The first transaction must be an ApplicationCall (ie call stateful smart contract)
int appl
==
&&
gtxn 1 TypeEnum // The second transaction must be a payment tx
int pay
==
&&
gtxn 2 TypeEnum // The third transaction must be an asset xfer tx
int axfer
==
&&
gtxn 3 TypeEnum // The fourth transaction must be a payment tx for transaction fee reimbursement //FIXME check amount
int pay
==
&&
gtxn 3 Amount // Amount can be 2000 or higher (we will take more money if they give it)
int 2000
>=
&&
gtxn 3 Receiver // Fee refund recipient
txn Sender // The escrow address
==
&&
gtxn 3 Sender // The fee sender must be the ASA seller
gtxn 1 Receiver
==
&&
gtxn 0 Sender
txn Sender // escrow account
==
&&
gtxn 1 Sender
txn Sender // escrow account
==
&&
gtxn 2 Sender
txn Sender // escrow account
!= // should *not* be originating from escrow
&&
gtxn 3 Sender
txn Sender // escrow account
!= // should *not* be originating from escrow
&&
txn Fee
int 1000
<=
&&
gtxn 0 ApplicationID // The specific App ID for the Algo escrow order book must be called
int <orderBookId> //stateful contract app id orderBookId
==
&&
gtxn 1 Sender // Sender of the pay transaction must be this escrow
txn Sender // Escrow address
==
&&
gtxn 1 Receiver // Receiver of the pay transaction from this escrow
gtxn 2 Sender // Sender of the asset transfer (person trading)
==
&&
gtxn 2 AssetReceiver // Receiver of asset transfer
addr <contractWriterAddr> // contractWriterAddr must receive the asset
==
&&
gtxn 0 CloseRemainderTo
global ZeroAddress
==
&&
gtxn 1 CloseRemainderTo
global ZeroAddress
==
&&
gtxn 2 CloseRemainderTo
global ZeroAddress
==
&&
gtxn 3 CloseRemainderTo
global ZeroAddress
==
&&
assert
handle_rate_check:
gtxn 1 Amount
int 1 // must be at least one
//int <min> NOTE** - leave this commented. We have intentionally disabled the custom min amount check
>=
gtxn 2 AssetAmount
int 1 // must be at least one
>=
&&
int <assetid> // asset id to trade for
gtxn 2 XferAsset
==
&&
assert
// handle the rate
// BUY ORDER
// gtxn[2].AssetAmount * D >= gtxn[1].Amount * N
//
// D/N is the price of the asset. For example, if D/N = 0.25, then with 5 microAlgos you can buy 20 of the ASA in base units
//
// N units of the asset per D microAlgos
gtxn 2 AssetAmount
int <D> // put D value here
mulw // AssetAmount * D => (high 64 bits, low 64 bits)
store 2 // move aside low 64 bits
store 1 // move aside high 64 bits
gtxn 1 Amount
int <N> // put N value here
mulw
store 4 // move aside low 64 bits
store 3 // move aside high 64 bits
// compare high bits to high bits
load 1
load 3
>
bnz done2
load 1
load 3
==
load 2
load 4
>=
&& // high bits are equal and low bits are ok
bnz done2
err
done2:
int 1
return
`;
return delegateTemplate;
}
}
module.exports = algoDelegateTemplate;