tealrb 0.5.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -42,620 +42,620 @@ module TEALrb
42
42
  }.freeze
43
43
 
44
44
  def acct_params_get(field, _account = nil)
45
- TEALrb::TEAL.current[Thread.current] << "acct_params_get #{field}"
45
+ TEAL.instance << "acct_params_get #{field}"
46
46
  end
47
47
 
48
48
  def add(_a = nil, _b = nil)
49
- TEALrb::TEAL.current[Thread.current] << '+'
49
+ TEAL.instance << '+'
50
50
  end
51
51
 
52
52
  def addr(address)
53
- TEALrb::TEAL.current[Thread.current] << "addr #{address}"
53
+ TEAL.instance << "addr #{address}"
54
54
  end
55
55
 
56
56
  def addw(_a = nil, _b = nil)
57
- TEALrb::TEAL.current[Thread.current] << 'addw'
57
+ TEAL.instance << 'addw'
58
58
  end
59
59
 
60
60
  def app_global_del(_key = nil)
61
- TEALrb::TEAL.current[Thread.current] << 'app_global_del'
61
+ TEAL.instance << 'app_global_del'
62
62
  end
63
63
 
64
64
  def app_global_get(_key = nil)
65
- TEALrb::TEAL.current[Thread.current] << 'app_global_get'
65
+ TEAL.instance << 'app_global_get'
66
66
  end
67
67
 
68
68
  def app_global_get_ex(_app = nil, _key = nil)
69
- TEALrb::TEAL.current[Thread.current] << 'app_global_get_ex'
69
+ TEAL.instance << 'app_global_get_ex'
70
70
  end
71
71
 
72
72
  def app_global_put(_key = nil, _value = nil)
73
- TEALrb::TEAL.current[Thread.current] << 'app_global_put'
73
+ TEAL.instance << 'app_global_put'
74
74
  end
75
75
 
76
76
  def app_local_del(_account = nil, _key = nil)
77
- TEALrb::TEAL.current[Thread.current] << 'app_local_del'
77
+ TEAL.instance << 'app_local_del'
78
78
  end
79
79
 
80
80
  def app_local_get(_account = nil, _key = nil)
81
- TEALrb::TEAL.current[Thread.current] << 'app_local_get'
81
+ TEAL.instance << 'app_local_get'
82
82
  end
83
83
 
84
84
  def app_local_get_ex(_account = nil, _application = nil, _key = nil)
85
- TEALrb::TEAL.current[Thread.current] << 'app_local_get_ex'
85
+ TEAL.instance << 'app_local_get_ex'
86
86
  end
87
87
 
88
88
  def app_local_put(_account = nil, _key = nil, _value = nil)
89
- TEALrb::TEAL.current[Thread.current] << 'app_local_put'
89
+ TEAL.instance << 'app_local_put'
90
90
  end
91
91
 
92
92
  def app_opted_in(_account = nil, _app = nil)
93
- TEALrb::TEAL.current[Thread.current] << 'app_opted_in'
93
+ TEAL.instance << 'app_opted_in'
94
94
  end
95
95
 
96
96
  def app_params_get(field, _app_id = nil)
97
- TEALrb::TEAL.current[Thread.current] << "app_params_get #{field}"
97
+ TEAL.instance << "app_params_get #{field}"
98
98
  end
99
99
 
100
100
  def approve
101
- TEALrb::TEAL.current[Thread.current] << 'int 1'
102
- TEALrb::TEAL.current[Thread.current] << 'return'
101
+ TEAL.instance << 'int 1'
102
+ TEAL.instance << 'return'
103
103
  end
104
104
 
105
105
  def arg(index)
106
- TEALrb::TEAL.current[Thread.current] << "arg #{index}"
106
+ TEAL.instance << "arg #{index}"
107
107
  end
108
108
 
109
109
  def arg_0 # rubocop:disable Naming/VariableNumber
110
- TEALrb::TEAL.current[Thread.current] << 'arg_0'
110
+ TEAL.instance << 'arg_0'
111
111
  end
112
112
 
113
113
  def arg_1 # rubocop:disable Naming/VariableNumber
114
- TEALrb::TEAL.current[Thread.current] << 'arg_1'
114
+ TEAL.instance << 'arg_1'
115
115
  end
116
116
 
117
117
  def arg_2 # rubocop:disable Naming/VariableNumber
118
- TEALrb::TEAL.current[Thread.current] << 'arg_2'
118
+ TEAL.instance << 'arg_2'
119
119
  end
120
120
 
121
121
  def arg_3 # rubocop:disable Naming/VariableNumber
122
- TEALrb::TEAL.current[Thread.current] << 'arg_3'
122
+ TEAL.instance << 'arg_3'
123
123
  end
124
124
 
125
125
  def args(_index = nil)
126
- TEALrb::TEAL.current[Thread.current] << 'args'
126
+ TEAL.instance << 'args'
127
127
  end
128
128
 
129
129
  def assert(_expr = nil)
130
- TEALrb::TEAL.current[Thread.current] << 'assert'
130
+ TEAL.instance << 'assert'
131
131
  end
132
132
 
133
133
  def asset_holding_get(field, _account = nil, _asset = nil)
134
- TEALrb::TEAL.current[Thread.current] << "asset_holding_get #{field}"
134
+ TEAL.instance << "asset_holding_get #{field}"
135
135
  end
136
136
 
137
137
  def asset_params_get(field, _asset = nil)
138
- TEALrb::TEAL.current[Thread.current] << "asset_params_get #{field}"
138
+ TEAL.instance << "asset_params_get #{field}"
139
139
  end
140
140
 
141
141
  def b(target)
142
- TEALrb::TEAL.current[Thread.current] << "#{__method__} #{target}"
142
+ TEAL.instance << "#{__method__} #{target}"
143
143
  end
144
144
 
145
145
  def base32(input)
146
- TEALrb::TEAL.current[Thread.current] << "byte base32(#{input})"
146
+ TEAL.instance << "byte base32(#{input})"
147
147
  end
148
148
 
149
149
  def balance(_account = nil)
150
- TEALrb::TEAL.current[Thread.current] << 'balance'
150
+ TEAL.instance << 'balance'
151
151
  end
152
152
 
153
153
  def big_endian_add(_a = nil, _b = nil)
154
- TEALrb::TEAL.current[Thread.current] << 'b+'
154
+ TEAL.instance << 'b+'
155
155
  end
156
156
 
157
157
  def big_endian_divide(_a = nil, _b = nil)
158
- TEALrb::TEAL.current[Thread.current] << 'b/'
158
+ TEAL.instance << 'b/'
159
159
  end
160
160
 
161
161
  def big_endian_equal(_a = nil, _b = nil)
162
- TEALrb::TEAL.current[Thread.current] << 'b=='
162
+ TEAL.instance << 'b=='
163
163
  end
164
164
 
165
165
  def big_endian_less(_a = nil, _b = nil)
166
- TEALrb::TEAL.current[Thread.current] << 'b<'
166
+ TEAL.instance << 'b<'
167
167
  end
168
168
 
169
169
  def big_endian_less_eq(_a = nil, _b = nil)
170
- TEALrb::TEAL.current[Thread.current] << 'b<='
170
+ TEAL.instance << 'b<='
171
171
  end
172
172
 
173
173
  def big_endian_modulo(_a = nil, _b = nil)
174
- TEALrb::TEAL.current[Thread.current] << 'b%'
174
+ TEAL.instance << 'b%'
175
175
  end
176
176
 
177
177
  def big_endian_more(_a = nil, _b = nil)
178
- TEALrb::TEAL.current[Thread.current] << 'b>'
178
+ TEAL.instance << 'b>'
179
179
  end
180
180
 
181
181
  def big_endian_more_eq(_a = nil, _b = nil)
182
- TEALrb::TEAL.current[Thread.current] << 'b>='
182
+ TEAL.instance << 'b>='
183
183
  end
184
184
 
185
185
  def big_endian_multiply(_a = nil, _b = nil)
186
- TEALrb::TEAL.current[Thread.current] << 'b*'
186
+ TEAL.instance << 'b*'
187
187
  end
188
188
 
189
189
  def big_endian_not_equal(_a = nil, _b = nil)
190
- TEALrb::TEAL.current[Thread.current] << 'b!='
190
+ TEAL.instance << 'b!='
191
191
  end
192
192
 
193
193
  def big_endian_subtract(_a = nil, _b = nil)
194
- TEALrb::TEAL.current[Thread.current] << 'b-'
194
+ TEAL.instance << 'b-'
195
195
  end
196
196
 
197
197
  def bitlen(_input = nil)
198
- TEALrb::TEAL.current[Thread.current] << 'bitlen'
198
+ TEAL.instance << 'bitlen'
199
199
  end
200
200
 
201
201
  def bitwise_and(_a = nil, _b = nil)
202
- TEALrb::TEAL.current[Thread.current] << '&'
202
+ TEAL.instance << '&'
203
203
  end
204
204
 
205
205
  def bitwise_byte_invert(_a = nil, _b = nil)
206
- TEALrb::TEAL.current[Thread.current] << 'b~'
206
+ TEAL.instance << 'b~'
207
207
  end
208
208
 
209
209
  def bitwise_invert(_a = nil, _b = nil)
210
- TEALrb::TEAL.current[Thread.current] << '~'
210
+ TEAL.instance << '~'
211
211
  end
212
212
 
213
213
  def bitwise_or(_a = nil, _b = nil)
214
- TEALrb::TEAL.current[Thread.current] << '|'
214
+ TEAL.instance << '|'
215
215
  end
216
216
 
217
217
  def bitwise_xor(_a = nil, _b = nil)
218
- TEALrb::TEAL.current[Thread.current] << '^'
218
+ TEAL.instance << '^'
219
219
  end
220
220
 
221
221
  def bnz(target)
222
- TEALrb::TEAL.current[Thread.current] << "#{__method__} #{target}"
222
+ TEAL.instance << "#{__method__} #{target}"
223
223
  end
224
224
 
225
225
  def bsqrt(_big_endian_uint = nil)
226
- TEALrb::TEAL.current[Thread.current] << 'bsqrt'
226
+ TEAL.instance << 'bsqrt'
227
227
  end
228
228
 
229
229
  def btoi(_bytes = nil)
230
- TEALrb::TEAL.current[Thread.current] << 'btoi'
230
+ TEAL.instance << 'btoi'
231
231
  end
232
232
 
233
233
  def byte(string)
234
- TEALrb::TEAL.current[Thread.current] << "byte \"#{string}\""
234
+ TEAL.instance << "byte \"#{string}\""
235
235
  end
236
236
 
237
237
  def bytec(index)
238
- TEALrb::TEAL.current[Thread.current] << "bytec #{index}"
238
+ TEAL.instance << "bytec #{index}"
239
239
  end
240
240
 
241
241
  def bytec_0 # rubocop:disable Naming/VariableNumber
242
- TEALrb::TEAL.current[Thread.current] << 'bytec_0'
242
+ TEAL.instance << 'bytec_0'
243
243
  end
244
244
 
245
245
  def bytec_1 # rubocop:disable Naming/VariableNumber
246
- TEALrb::TEAL.current[Thread.current] << 'bytec_1'
246
+ TEAL.instance << 'bytec_1'
247
247
  end
248
248
 
249
249
  def bytec_2 # rubocop:disable Naming/VariableNumber
250
- TEALrb::TEAL.current[Thread.current] << 'bytec_2'
250
+ TEAL.instance << 'bytec_2'
251
251
  end
252
252
 
253
253
  def bytec_3 # rubocop:disable Naming/VariableNumber
254
- TEALrb::TEAL.current[Thread.current] << 'bytec_3'
254
+ TEAL.instance << 'bytec_3'
255
255
  end
256
256
 
257
257
  def bytecblock(*bytes)
258
- TEALrb::TEAL.current[Thread.current] << "bytecblock #{bytes.join(' ')}"
258
+ TEAL.instance << "bytecblock #{bytes.join(' ')}"
259
259
  end
260
260
 
261
261
  def bz(target)
262
- TEALrb::TEAL.current[Thread.current] << "#{__method__} #{target}"
262
+ TEAL.instance << "#{__method__} #{target}"
263
263
  end
264
264
 
265
265
  def bzero(_length = nil)
266
- TEALrb::TEAL.current[Thread.current] << 'bzero'
266
+ TEAL.instance << 'bzero'
267
267
  end
268
268
 
269
269
  def callsub(name, *_args)
270
- TEALrb::TEAL.current[Thread.current] << "callsub #{name}"
270
+ TEAL.instance << "callsub #{name}"
271
271
  end
272
272
 
273
273
  def concat(_a = nil, _b = nil)
274
- TEALrb::TEAL.current[Thread.current] << 'concat'
274
+ TEAL.instance << 'concat'
275
275
  end
276
276
 
277
277
  def cover(count)
278
- TEALrb::TEAL.current[Thread.current] << "cover #{count}"
278
+ TEAL.instance << "cover #{count}"
279
279
  end
280
280
 
281
281
  def dig(index)
282
- TEALrb::TEAL.current[Thread.current] << "dig #{index}"
282
+ TEAL.instance << "dig #{index}"
283
283
  end
284
284
 
285
285
  def divide(_a = nil, _b = nil)
286
- TEALrb::TEAL.current[Thread.current] << '/'
286
+ TEAL.instance << '/'
287
287
  end
288
288
 
289
289
  def divmodw(_a = nil, _b = nil)
290
- TEALrb::TEAL.current[Thread.current] << 'divmodw'
290
+ TEAL.instance << 'divmodw'
291
291
  end
292
292
 
293
293
  def divw(_a = nil, _b = nil)
294
- TEALrb::TEAL.current[Thread.current] << 'divw'
294
+ TEAL.instance << 'divw'
295
295
  end
296
296
 
297
297
  def dup(_expr = nil)
298
- TEALrb::TEAL.current[Thread.current] << 'dup'
298
+ TEAL.instance << 'dup'
299
299
  end
300
300
 
301
301
  def dup2(_expr_a = nil, _expr_b = nil)
302
- TEALrb::TEAL.current[Thread.current] << 'dup2'
302
+ TEAL.instance << 'dup2'
303
303
  end
304
304
 
305
305
  def ecdsa_pk_decompress(index, _input = nil)
306
- TEALrb::TEAL.current[Thread.current] << "ecdsa_pk_decompress #{index}"
306
+ TEAL.instance << "ecdsa_pk_decompress #{index}"
307
307
  end
308
308
 
309
309
  def ecdsa_pk_recover(index, _input = nil)
310
- TEALrb::TEAL.current[Thread.current] << "ecdsa_pk_recover #{index}"
310
+ TEAL.instance << "ecdsa_pk_recover #{index}"
311
311
  end
312
312
 
313
313
  def ecdsa_verify(index, _input = nil)
314
- TEALrb::TEAL.current[Thread.current] << "ecdsa_verify #{index}"
314
+ TEAL.instance << "ecdsa_verify #{index}"
315
315
  end
316
316
 
317
317
  def ed25519verify(_input = nil)
318
- TEALrb::TEAL.current[Thread.current] << 'ed25519verify'
318
+ TEAL.instance << 'ed25519verify'
319
319
  end
320
320
 
321
321
  def equal(_a = nil, _b = nil)
322
- TEALrb::TEAL.current[Thread.current] << '=='
322
+ TEAL.instance << '=='
323
323
  end
324
324
 
325
325
  def err
326
- TEALrb::TEAL.current[Thread.current] << 'err'
326
+ TEAL.instance << 'err'
327
327
  end
328
328
 
329
329
  def exp(_a = nil, _b = nil)
330
- TEALrb::TEAL.current[Thread.current] << 'exp'
330
+ TEAL.instance << 'exp'
331
331
  end
332
332
 
333
333
  def expw(_a = nil, _b = nil)
334
- TEALrb::TEAL.current[Thread.current] << 'expw'
334
+ TEAL.instance << 'expw'
335
335
  end
336
336
 
337
337
  def extract(start, length, _byte_array = nil)
338
- TEALrb::TEAL.current[Thread.current] << "extract #{start} #{length}"
338
+ TEAL.instance << "extract #{start} #{length}"
339
339
  end
340
340
 
341
341
  def extract3(_byte_array = nil, _start = nil, _exclusive_end = nil)
342
- TEALrb::TEAL.current[Thread.current] << 'extract3'
342
+ TEAL.instance << 'extract3'
343
343
  end
344
344
 
345
345
  def extract_uint16(_byte_array = nil, _start = nil)
346
- TEALrb::TEAL.current[Thread.current] << 'extract_uint16'
346
+ TEAL.instance << 'extract_uint16'
347
347
  end
348
348
 
349
349
  def extract_uint32(_byte_array = nil, _start = nil)
350
- TEALrb::TEAL.current[Thread.current] << 'extract_uint32'
350
+ TEAL.instance << 'extract_uint32'
351
351
  end
352
352
 
353
353
  def extract_uint64(_byte_array = nil, _start = nil)
354
- TEALrb::TEAL.current[Thread.current] << 'extract_uint64'
354
+ TEAL.instance << 'extract_uint64'
355
355
  end
356
356
 
357
357
  def gaid(transaction_index)
358
- TEALrb::TEAL.current[Thread.current] << "gaid #{transaction_index}"
358
+ TEAL.instance << "gaid #{transaction_index}"
359
359
  end
360
360
 
361
361
  def gaids(_transaction = nil)
362
- TEALrb::TEAL.current[Thread.current] << 'gaids'
362
+ TEAL.instance << 'gaids'
363
363
  end
364
364
 
365
365
  def getbit(_input = nil, _bit_index = nil)
366
- TEALrb::TEAL.current[Thread.current] << 'getbit'
366
+ TEAL.instance << 'getbit'
367
367
  end
368
368
 
369
369
  def getbyte(_input = nil, _byte_index = nil)
370
- TEALrb::TEAL.current[Thread.current] << 'getbyte'
370
+ TEAL.instance << 'getbyte'
371
371
  end
372
372
 
373
373
  def gitxn(transaction_index, field)
374
- TEALrb::TEAL.current[Thread.current] << "gitxn #{transaction_index} #{field}"
374
+ TEAL.instance << "gitxn #{transaction_index} #{field}"
375
375
  end
376
376
 
377
377
  def gitxna(transaction_index, field, index)
378
- TEALrb::TEAL.current[Thread.current] << "gitxna #{transaction_index} #{field} #{index}"
378
+ TEAL.instance << "gitxna #{transaction_index} #{field} #{index}"
379
379
  end
380
380
 
381
381
  def gitxnas(transaction_index, field, _index = nil)
382
- TEALrb::TEAL.current[Thread.current] << "gitxnas #{transaction_index} #{field}"
382
+ TEAL.instance << "gitxnas #{transaction_index} #{field}"
383
383
  end
384
384
 
385
385
  def gload(transaction_index, index)
386
- TEALrb::TEAL.current[Thread.current] << "gload #{transaction_index} #{index}"
386
+ TEAL.instance << "gload #{transaction_index} #{index}"
387
387
  end
388
388
 
389
389
  def gloads(index, _transaction_index = nil)
390
- TEALrb::TEAL.current[Thread.current] << "gloads #{index}"
390
+ TEAL.instance << "gloads #{index}"
391
391
  end
392
392
 
393
393
  def gloadss(_transaction = nil, _index = nil)
394
- TEALrb::TEAL.current[Thread.current] << 'gloadss'
394
+ TEAL.instance << 'gloadss'
395
395
  end
396
396
 
397
397
  def global(field)
398
- TEALrb::TEAL.current[Thread.current] << "global #{field}"
398
+ TEAL.instance << "global #{field}"
399
399
  end
400
400
 
401
401
  def greater(_a = nil, _b = nil)
402
- TEALrb::TEAL.current[Thread.current] << '>'
402
+ TEAL.instance << '>'
403
403
  end
404
404
 
405
405
  def greater_eq(_a = nil, _b = nil)
406
- TEALrb::TEAL.current[Thread.current] << '>='
406
+ TEAL.instance << '>='
407
407
  end
408
408
 
409
409
  def gtxn(index, field)
410
- TEALrb::TEAL.current[Thread.current] << "gtxn #{index} #{field}"
410
+ TEAL.instance << "gtxn #{index} #{field}"
411
411
  end
412
412
 
413
413
  def gtxna(transaction_index, field, index)
414
- TEALrb::TEAL.current[Thread.current] << "gtxna #{transaction_index} #{field} #{index}"
414
+ TEAL.instance << "gtxna #{transaction_index} #{field} #{index}"
415
415
  end
416
416
 
417
417
  def gtxns(field, _transaction_index = nil)
418
- TEALrb::TEAL.current[Thread.current] << "gtxns #{field}"
418
+ TEAL.instance << "gtxns #{field}"
419
419
  end
420
420
 
421
421
  def gtxnsa(field, index, _transaction_index = nil)
422
- TEALrb::TEAL.current[Thread.current] << "gtxnsa #{field} #{index}"
422
+ TEAL.instance << "gtxnsa #{field} #{index}"
423
423
  end
424
424
 
425
425
  def gtxnas(transaction_index, field, _index = nil)
426
- TEALrb::TEAL.current[Thread.current] << "gtxnas #{transaction_index} #{field}"
426
+ TEAL.instance << "gtxnas #{transaction_index} #{field}"
427
427
  end
428
428
 
429
429
  def gtxnsas(field, _transaction_index = nil, _index = nil)
430
- TEALrb::TEAL.current[Thread.current] << "gtxnsas #{field}"
430
+ TEAL.instance << "gtxnsas #{field}"
431
431
  end
432
432
 
433
433
  def int(integer)
434
- TEALrb::TEAL.current[Thread.current] << "int #{integer}"
434
+ TEAL.instance << "int #{integer}"
435
435
  end
436
436
 
437
437
  def intc(index)
438
- TEALrb::TEAL.current[Thread.current] << "intc #{index}"
438
+ TEAL.instance << "intc #{index}"
439
439
  end
440
440
 
441
441
  def intc_0 # rubocop:disable Naming/VariableNumber
442
- TEALrb::TEAL.current[Thread.current] << 'intc_0'
442
+ TEAL.instance << 'intc_0'
443
443
  end
444
444
 
445
445
  def intc_1 # rubocop:disable Naming/VariableNumber
446
- TEALrb::TEAL.current[Thread.current] << 'intc_1'
446
+ TEAL.instance << 'intc_1'
447
447
  end
448
448
 
449
449
  def intc_2 # rubocop:disable Naming/VariableNumber
450
- TEALrb::TEAL.current[Thread.current] << 'intc_2'
450
+ TEAL.instance << 'intc_2'
451
451
  end
452
452
 
453
453
  def intc_3 # rubocop:disable Naming/VariableNumber
454
- TEALrb::TEAL.current[Thread.current] << 'intc_3'
454
+ TEAL.instance << 'intc_3'
455
455
  end
456
456
 
457
457
  def intcblock(*ints)
458
- TEALrb::TEAL.current[Thread.current] << "intcblock #{ints.join(' ')}"
458
+ TEAL.instance << "intcblock #{ints.join(' ')}"
459
459
  end
460
460
 
461
461
  def itob(_bytes = nil)
462
- TEALrb::TEAL.current[Thread.current] << 'itob'
462
+ TEAL.instance << 'itob'
463
463
  end
464
464
 
465
465
  def itxn_begin
466
- TEALrb::TEAL.current[Thread.current] << 'itxn_begin'
466
+ TEAL.instance << 'itxn_begin'
467
467
  end
468
468
 
469
469
  def itxn_field(field, _value = nil)
470
- TEALrb::TEAL.current[Thread.current] << "itxn_field #{field}"
470
+ TEAL.instance << "itxn_field #{field}"
471
471
  end
472
472
 
473
473
  def itxn_next
474
- TEALrb::TEAL.current[Thread.current] << 'itxn_next'
474
+ TEAL.instance << 'itxn_next'
475
475
  end
476
476
 
477
477
  def itxn_submit
478
- TEALrb::TEAL.current[Thread.current] << 'itxn_submit'
478
+ TEAL.instance << 'itxn_submit'
479
479
  end
480
480
 
481
481
  def itxna(field, index)
482
- TEALrb::TEAL.current[Thread.current] << "itxna #{field} #{index}"
482
+ TEAL.instance << "itxna #{field} #{index}"
483
483
  end
484
484
 
485
485
  def itxnas(field, _index = nil)
486
- TEALrb::TEAL.current[Thread.current] << "itxnas #{field}"
486
+ TEAL.instance << "itxnas #{field}"
487
487
  end
488
488
 
489
489
  def keccak256(_input = nil)
490
- TEALrb::TEAL.current[Thread.current] << 'keccak256'
490
+ TEAL.instance << 'keccak256'
491
491
  end
492
492
 
493
493
  def label(label_name)
494
- TEALrb::TEAL.current[Thread.current] << "#{label_name}:"
494
+ TEAL.instance << "#{label_name}:"
495
495
  end
496
496
 
497
497
  def len(_input = nil)
498
- TEALrb::TEAL.current[Thread.current] << 'len'
498
+ TEAL.instance << 'len'
499
499
  end
500
500
 
501
501
  def less(_a = nil, _b = nil)
502
- TEALrb::TEAL.current[Thread.current] << '<'
502
+ TEAL.instance << '<'
503
503
  end
504
504
 
505
505
  def less_eq(_a = nil, _b = nil)
506
- TEALrb::TEAL.current[Thread.current] << '<='
506
+ TEAL.instance << '<='
507
507
  end
508
508
 
509
509
  def load(index)
510
- TEALrb::TEAL.current[Thread.current] << "load #{index}"
510
+ TEAL.instance << "load #{index}"
511
511
  end
512
512
 
513
513
  def loads(_index = nil)
514
- TEALrb::TEAL.current[Thread.current] << 'loads'
514
+ TEAL.instance << 'loads'
515
515
  end
516
516
 
517
517
  def log(_byte_array = nil)
518
- TEALrb::TEAL.current[Thread.current] << 'log'
518
+ TEAL.instance << 'log'
519
519
  end
520
520
 
521
521
  def method_signature(signature)
522
- TEALrb::TEAL.current[Thread.current] << %(method "#{signature}")
522
+ TEAL.instance << %(method "#{signature}")
523
523
  end
524
524
 
525
525
  def min_balance(_account = nil)
526
- TEALrb::TEAL.current[Thread.current] << 'min_balance'
526
+ TEAL.instance << 'min_balance'
527
527
  end
528
528
 
529
529
  def modulo(_a = nil, _b = nil)
530
- TEALrb::TEAL.current[Thread.current] << '%'
530
+ TEAL.instance << '%'
531
531
  end
532
532
 
533
533
  def multiply(_a = nil, _b = nil)
534
- TEALrb::TEAL.current[Thread.current] << '*'
534
+ TEAL.instance << '*'
535
535
  end
536
536
 
537
537
  def mulw(_a = nil, _b = nil)
538
- TEALrb::TEAL.current[Thread.current] << 'mulw'
538
+ TEAL.instance << 'mulw'
539
539
  end
540
540
 
541
541
  def zero?(_expr = nil)
542
- TEALrb::TEAL.current[Thread.current] << '!'
542
+ TEAL.instance << '!'
543
543
  end
544
544
 
545
545
  def not_equal(_a = nil, _b = nil)
546
- TEALrb::TEAL.current[Thread.current] << '!='
546
+ TEAL.instance << '!='
547
547
  end
548
548
 
549
549
  def padded_bitwise_and(_a = nil, _b = nil)
550
- TEALrb::TEAL.current[Thread.current] << 'b&'
550
+ TEAL.instance << 'b&'
551
551
  end
552
552
 
553
553
  def padded_bitwise_or(_a = nil, _b = nil)
554
- TEALrb::TEAL.current[Thread.current] << 'b|'
554
+ TEAL.instance << 'b|'
555
555
  end
556
556
 
557
557
  def padded_bitwise_xor(_a = nil, _b = nil)
558
- TEALrb::TEAL.current[Thread.current] << 'b^'
558
+ TEAL.instance << 'b^'
559
559
  end
560
560
 
561
561
  def pop(_expr = nil)
562
- TEALrb::TEAL.current[Thread.current] << 'pop'
562
+ TEAL.instance << 'pop'
563
563
  end
564
564
 
565
565
  def pushbytes(string)
566
- TEALrb::TEAL.current[Thread.current] << "pushbytes \"#{string}\""
566
+ TEAL.instance << "pushbytes \"#{string}\""
567
567
  end
568
568
 
569
569
  def pushint(integer)
570
- TEALrb::TEAL.current[Thread.current] << "pushint #{integer}"
570
+ TEAL.instance << "pushint #{integer}"
571
571
  end
572
572
 
573
573
  def retsub
574
- TEALrb::TEAL.current[Thread.current] << 'retsub'
574
+ TEAL.instance << 'retsub'
575
575
  end
576
576
 
577
577
  def select(_expr_a = nil, _expr_b = nil, _expr_c = nil)
578
- TEALrb::TEAL.current[Thread.current] << 'select'
578
+ TEAL.instance << 'select'
579
579
  end
580
580
 
581
581
  def setbit(_input = nil, _bit_index = nil, _value = nil)
582
- TEALrb::TEAL.current[Thread.current] << 'setbit'
582
+ TEAL.instance << 'setbit'
583
583
  end
584
584
 
585
585
  def setbyte(_byte_array = nil, _byte_index = nil, _value = nil)
586
- TEALrb::TEAL.current[Thread.current] << 'setbyte'
586
+ TEAL.instance << 'setbyte'
587
587
  end
588
588
 
589
589
  def sha256(_input = nil)
590
- TEALrb::TEAL.current[Thread.current] << 'sha256'
590
+ TEAL.instance << 'sha256'
591
591
  end
592
592
 
593
593
  def sha512_256(_input = nil) # rubocop:disable Naming/VariableNumber
594
- TEALrb::TEAL.current[Thread.current] << 'sha512_256'
594
+ TEAL.instance << 'sha512_256'
595
595
  end
596
596
 
597
597
  def shl(_a = nil, _b = nil)
598
- TEALrb::TEAL.current[Thread.current] << 'shl'
598
+ TEAL.instance << 'shl'
599
599
  end
600
600
 
601
601
  def shr(_a = nil, _b = nil)
602
- TEALrb::TEAL.current[Thread.current] << 'shr'
602
+ TEAL.instance << 'shr'
603
603
  end
604
604
 
605
605
  def sqrt(_integer = nil)
606
- TEALrb::TEAL.current[Thread.current] << 'sqrt'
606
+ TEAL.instance << 'sqrt'
607
607
  end
608
608
 
609
609
  def store(index, _value = nil)
610
- TEALrb::TEAL.current[Thread.current] << "store #{index}"
610
+ TEAL.instance << "store #{index}"
611
611
  end
612
612
 
613
613
  def stores(_index = nil, _value = nil)
614
- TEALrb::TEAL.current[Thread.current] << 'stores'
614
+ TEAL.instance << 'stores'
615
615
  end
616
616
 
617
617
  def substring(start, exclusive_end, _byte_array = nil)
618
- TEALrb::TEAL.current[Thread.current] << "substring #{start} #{exclusive_end}"
618
+ TEAL.instance << "substring #{start} #{exclusive_end}"
619
619
  end
620
620
 
621
621
  def substring3(_byte_array = nil, _start = nil, _exclusive_end = nil)
622
- TEALrb::TEAL.current[Thread.current] << 'substring3'
622
+ TEAL.instance << 'substring3'
623
623
  end
624
624
 
625
625
  def subtract(_a = nil, _b = nil)
626
- TEALrb::TEAL.current[Thread.current] << '-'
626
+ TEAL.instance << '-'
627
627
  end
628
628
 
629
629
  def swap(_expr_a = nil, _expr_b = nil)
630
- TEALrb::TEAL.current[Thread.current] << 'swap'
630
+ TEAL.instance << 'swap'
631
631
  end
632
632
 
633
633
  def teal_return(_expr = nil)
634
- TEALrb::TEAL.current[Thread.current] << 'return'
634
+ TEAL.instance << 'return'
635
635
  end
636
636
 
637
637
  def txn(field)
638
- TEALrb::TEAL.current[Thread.current] << "txn #{field}"
638
+ TEAL.instance << "txn #{field}"
639
639
  end
640
640
 
641
641
  def txna(field, index)
642
- TEALrb::TEAL.current[Thread.current] << "txna #{field} #{index}"
642
+ TEAL.instance << "txna #{field} #{index}"
643
643
  end
644
644
 
645
645
  def txnas(field, _index = nil)
646
- TEALrb::TEAL.current[Thread.current] << "txnas #{field}"
646
+ TEAL.instance << "txnas #{field}"
647
647
  end
648
648
 
649
649
  def uncover(count)
650
- TEALrb::TEAL.current[Thread.current] << "uncover #{count}"
650
+ TEAL.instance << "uncover #{count}"
651
651
  end
652
652
 
653
653
  def boolean_and(_a = nil, _b = nil)
654
- TEALrb::TEAL.current[Thread.current] << '&&'
654
+ TEAL.instance << '&&'
655
655
  end
656
656
 
657
657
  def boolean_or(_a = nil, _b = nil)
658
- TEALrb::TEAL.current[Thread.current] << '||'
658
+ TEAL.instance << '||'
659
659
  end
660
660
  end
661
661
  end