@algorandfoundation/algokit-utils 10.0.0-alpha.15 → 10.0.0-alpha.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/app-factory.d.ts
CHANGED
|
@@ -171,21 +171,21 @@ declare class AppFactory {
|
|
|
171
171
|
get params(): {
|
|
172
172
|
/** Return params for a create ABI call, including deploy-time TEAL template replacements and compilation if provided */
|
|
173
173
|
create: (params: {
|
|
174
|
-
|
|
174
|
+
maxFee?: AlgoAmount | undefined;
|
|
175
|
+
lease?: string | Uint8Array | undefined;
|
|
175
176
|
rekeyTo?: ReadableAddress | undefined;
|
|
177
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
178
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
176
179
|
note?: string | Uint8Array | undefined;
|
|
177
|
-
lease?: string | Uint8Array | undefined;
|
|
178
180
|
staticFee?: AlgoAmount | undefined;
|
|
179
181
|
extraFee?: AlgoAmount | undefined;
|
|
180
|
-
maxFee?: AlgoAmount | undefined;
|
|
181
182
|
validityWindow?: number | bigint | undefined;
|
|
182
183
|
firstValidRound?: bigint | undefined;
|
|
183
184
|
lastValidRound?: bigint | undefined;
|
|
184
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
185
185
|
accountReferences?: ReadableAddress[] | undefined;
|
|
186
186
|
appReferences?: bigint[] | undefined;
|
|
187
187
|
assetReferences?: bigint[] | undefined;
|
|
188
|
-
boxReferences?: (
|
|
188
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
189
189
|
accessReferences?: ResourceReference[] | undefined;
|
|
190
190
|
rejectVersion?: number | undefined;
|
|
191
191
|
sender?: ReadableAddress | undefined;
|
|
@@ -219,21 +219,21 @@ declare class AppFactory {
|
|
|
219
219
|
};
|
|
220
220
|
approvalProgram: Uint8Array;
|
|
221
221
|
clearStateProgram: Uint8Array;
|
|
222
|
-
|
|
222
|
+
maxFee?: AlgoAmount | undefined;
|
|
223
|
+
lease?: string | Uint8Array | undefined;
|
|
223
224
|
rekeyTo?: ReadableAddress | undefined;
|
|
225
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
226
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
224
227
|
note?: string | Uint8Array | undefined;
|
|
225
|
-
lease?: string | Uint8Array | undefined;
|
|
226
228
|
staticFee?: AlgoAmount | undefined;
|
|
227
229
|
extraFee?: AlgoAmount | undefined;
|
|
228
|
-
maxFee?: AlgoAmount | undefined;
|
|
229
230
|
validityWindow?: number | bigint | undefined;
|
|
230
231
|
firstValidRound?: bigint | undefined;
|
|
231
232
|
lastValidRound?: bigint | undefined;
|
|
232
|
-
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
233
233
|
accountReferences?: ReadableAddress[] | undefined;
|
|
234
234
|
appReferences?: bigint[] | undefined;
|
|
235
235
|
assetReferences?: bigint[] | undefined;
|
|
236
|
-
boxReferences?: (
|
|
236
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
237
237
|
accessReferences?: ResourceReference[] | undefined;
|
|
238
238
|
rejectVersion?: number | undefined;
|
|
239
239
|
sender?: ReadableAddress | undefined;
|
|
@@ -246,24 +246,24 @@ declare class AppFactory {
|
|
|
246
246
|
sender: Address;
|
|
247
247
|
signer: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
248
248
|
method: ABIMethod;
|
|
249
|
-
args: (
|
|
250
|
-
|
|
249
|
+
args: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
|
|
250
|
+
maxFee?: AlgoAmount | undefined;
|
|
251
251
|
sender: SendingAddress;
|
|
252
|
-
|
|
252
|
+
lease?: string | Uint8Array | undefined;
|
|
253
253
|
rekeyTo?: ReadableAddress | undefined;
|
|
254
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
255
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
254
256
|
note?: string | Uint8Array | undefined;
|
|
255
|
-
lease?: string | Uint8Array | undefined;
|
|
256
257
|
staticFee?: AlgoAmount | undefined;
|
|
257
258
|
extraFee?: AlgoAmount | undefined;
|
|
258
|
-
maxFee?: AlgoAmount | undefined;
|
|
259
259
|
validityWindow?: number | bigint | undefined;
|
|
260
260
|
firstValidRound?: bigint | undefined;
|
|
261
261
|
lastValidRound?: bigint | undefined;
|
|
262
|
-
|
|
262
|
+
args?: Uint8Array[] | undefined;
|
|
263
263
|
accountReferences?: ReadableAddress[] | undefined;
|
|
264
264
|
appReferences?: bigint[] | undefined;
|
|
265
265
|
assetReferences?: bigint[] | undefined;
|
|
266
|
-
boxReferences?: (
|
|
266
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
267
267
|
accessReferences?: ResourceReference[] | undefined;
|
|
268
268
|
rejectVersion?: number | undefined;
|
|
269
269
|
appId?: 0 | undefined;
|
|
@@ -294,52 +294,52 @@ declare class AppFactory {
|
|
|
294
294
|
accountReferences?: ReadableAddress[] | undefined;
|
|
295
295
|
appReferences?: bigint[] | undefined;
|
|
296
296
|
assetReferences?: bigint[] | undefined;
|
|
297
|
-
boxReferences?: (
|
|
297
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
298
298
|
accessReferences?: ResourceReference[] | undefined;
|
|
299
299
|
rejectVersion?: number | undefined;
|
|
300
300
|
approvalProgram: string | Uint8Array;
|
|
301
301
|
clearStateProgram: string | Uint8Array;
|
|
302
|
-
}> | AppMethodCall<AppMethodCallParams> |
|
|
302
|
+
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
303
303
|
onComplete: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication;
|
|
304
304
|
}>;
|
|
305
305
|
/** Return params for a deployment update ABI call */
|
|
306
306
|
deployUpdate: (params: {
|
|
307
|
-
|
|
307
|
+
maxFee?: AlgoAmount | undefined;
|
|
308
|
+
lease?: string | Uint8Array | undefined;
|
|
308
309
|
rekeyTo?: ReadableAddress | undefined;
|
|
310
|
+
onComplete?: OnApplicationComplete | undefined;
|
|
311
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
309
312
|
note?: string | Uint8Array | undefined;
|
|
310
|
-
lease?: string | Uint8Array | undefined;
|
|
311
313
|
staticFee?: AlgoAmount | undefined;
|
|
312
314
|
extraFee?: AlgoAmount | undefined;
|
|
313
|
-
maxFee?: AlgoAmount | undefined;
|
|
314
315
|
validityWindow?: number | bigint | undefined;
|
|
315
316
|
firstValidRound?: bigint | undefined;
|
|
316
317
|
lastValidRound?: bigint | undefined;
|
|
317
|
-
onComplete?: OnApplicationComplete | undefined;
|
|
318
318
|
accountReferences?: ReadableAddress[] | undefined;
|
|
319
319
|
appReferences?: bigint[] | undefined;
|
|
320
320
|
assetReferences?: bigint[] | undefined;
|
|
321
|
-
boxReferences?: (
|
|
321
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
322
322
|
accessReferences?: ResourceReference[] | undefined;
|
|
323
323
|
rejectVersion?: number | undefined;
|
|
324
324
|
sender?: ReadableAddress | undefined;
|
|
325
325
|
method: string;
|
|
326
326
|
args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
|
|
327
327
|
}) => {
|
|
328
|
-
|
|
328
|
+
maxFee?: AlgoAmount | undefined;
|
|
329
|
+
lease?: string | Uint8Array | undefined;
|
|
329
330
|
rekeyTo?: ReadableAddress | undefined;
|
|
331
|
+
onComplete?: OnApplicationComplete | undefined;
|
|
332
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
330
333
|
note?: string | Uint8Array | undefined;
|
|
331
|
-
lease?: string | Uint8Array | undefined;
|
|
332
334
|
staticFee?: AlgoAmount | undefined;
|
|
333
335
|
extraFee?: AlgoAmount | undefined;
|
|
334
|
-
maxFee?: AlgoAmount | undefined;
|
|
335
336
|
validityWindow?: number | bigint | undefined;
|
|
336
337
|
firstValidRound?: bigint | undefined;
|
|
337
338
|
lastValidRound?: bigint | undefined;
|
|
338
|
-
onComplete?: OnApplicationComplete | undefined;
|
|
339
339
|
accountReferences?: ReadableAddress[] | undefined;
|
|
340
340
|
appReferences?: bigint[] | undefined;
|
|
341
341
|
assetReferences?: bigint[] | undefined;
|
|
342
|
-
boxReferences?: (
|
|
342
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
343
343
|
accessReferences?: ResourceReference[] | undefined;
|
|
344
344
|
rejectVersion?: number | undefined;
|
|
345
345
|
sender?: ReadableAddress | undefined;
|
|
@@ -349,24 +349,24 @@ declare class AppFactory {
|
|
|
349
349
|
sender: Address;
|
|
350
350
|
signer: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
351
351
|
method: ABIMethod;
|
|
352
|
-
args: (
|
|
353
|
-
|
|
352
|
+
args: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
|
|
353
|
+
maxFee?: AlgoAmount | undefined;
|
|
354
354
|
sender: SendingAddress;
|
|
355
|
-
|
|
355
|
+
lease?: string | Uint8Array | undefined;
|
|
356
356
|
rekeyTo?: ReadableAddress | undefined;
|
|
357
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
358
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
357
359
|
note?: string | Uint8Array | undefined;
|
|
358
|
-
lease?: string | Uint8Array | undefined;
|
|
359
360
|
staticFee?: AlgoAmount | undefined;
|
|
360
361
|
extraFee?: AlgoAmount | undefined;
|
|
361
|
-
maxFee?: AlgoAmount | undefined;
|
|
362
362
|
validityWindow?: number | bigint | undefined;
|
|
363
363
|
firstValidRound?: bigint | undefined;
|
|
364
364
|
lastValidRound?: bigint | undefined;
|
|
365
|
-
|
|
365
|
+
args?: Uint8Array[] | undefined;
|
|
366
366
|
accountReferences?: ReadableAddress[] | undefined;
|
|
367
367
|
appReferences?: bigint[] | undefined;
|
|
368
368
|
assetReferences?: bigint[] | undefined;
|
|
369
|
-
boxReferences?: (
|
|
369
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
370
370
|
accessReferences?: ResourceReference[] | undefined;
|
|
371
371
|
rejectVersion?: number | undefined;
|
|
372
372
|
appId?: 0 | undefined;
|
|
@@ -397,52 +397,52 @@ declare class AppFactory {
|
|
|
397
397
|
accountReferences?: ReadableAddress[] | undefined;
|
|
398
398
|
appReferences?: bigint[] | undefined;
|
|
399
399
|
assetReferences?: bigint[] | undefined;
|
|
400
|
-
boxReferences?: (
|
|
400
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
401
401
|
accessReferences?: ResourceReference[] | undefined;
|
|
402
402
|
rejectVersion?: number | undefined;
|
|
403
403
|
approvalProgram: string | Uint8Array;
|
|
404
404
|
clearStateProgram: string | Uint8Array;
|
|
405
|
-
}> | AppMethodCall<AppMethodCallParams> |
|
|
405
|
+
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
406
406
|
onComplete: OnApplicationComplete.UpdateApplication;
|
|
407
407
|
};
|
|
408
408
|
/** Return params for a deployment delete ABI call */
|
|
409
409
|
deployDelete: (params: {
|
|
410
|
-
|
|
410
|
+
maxFee?: AlgoAmount | undefined;
|
|
411
|
+
lease?: string | Uint8Array | undefined;
|
|
411
412
|
rekeyTo?: ReadableAddress | undefined;
|
|
413
|
+
onComplete?: OnApplicationComplete | undefined;
|
|
414
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
412
415
|
note?: string | Uint8Array | undefined;
|
|
413
|
-
lease?: string | Uint8Array | undefined;
|
|
414
416
|
staticFee?: AlgoAmount | undefined;
|
|
415
417
|
extraFee?: AlgoAmount | undefined;
|
|
416
|
-
maxFee?: AlgoAmount | undefined;
|
|
417
418
|
validityWindow?: number | bigint | undefined;
|
|
418
419
|
firstValidRound?: bigint | undefined;
|
|
419
420
|
lastValidRound?: bigint | undefined;
|
|
420
|
-
onComplete?: OnApplicationComplete | undefined;
|
|
421
421
|
accountReferences?: ReadableAddress[] | undefined;
|
|
422
422
|
appReferences?: bigint[] | undefined;
|
|
423
423
|
assetReferences?: bigint[] | undefined;
|
|
424
|
-
boxReferences?: (
|
|
424
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
425
425
|
accessReferences?: ResourceReference[] | undefined;
|
|
426
426
|
rejectVersion?: number | undefined;
|
|
427
427
|
sender?: ReadableAddress | undefined;
|
|
428
428
|
method: string;
|
|
429
429
|
args?: (ABIValue | AppMethodCallTransactionArgument | undefined)[] | undefined;
|
|
430
430
|
}) => {
|
|
431
|
-
|
|
431
|
+
maxFee?: AlgoAmount | undefined;
|
|
432
|
+
lease?: string | Uint8Array | undefined;
|
|
432
433
|
rekeyTo?: ReadableAddress | undefined;
|
|
434
|
+
onComplete?: OnApplicationComplete | undefined;
|
|
435
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
433
436
|
note?: string | Uint8Array | undefined;
|
|
434
|
-
lease?: string | Uint8Array | undefined;
|
|
435
437
|
staticFee?: AlgoAmount | undefined;
|
|
436
438
|
extraFee?: AlgoAmount | undefined;
|
|
437
|
-
maxFee?: AlgoAmount | undefined;
|
|
438
439
|
validityWindow?: number | bigint | undefined;
|
|
439
440
|
firstValidRound?: bigint | undefined;
|
|
440
441
|
lastValidRound?: bigint | undefined;
|
|
441
|
-
onComplete?: OnApplicationComplete | undefined;
|
|
442
442
|
accountReferences?: ReadableAddress[] | undefined;
|
|
443
443
|
appReferences?: bigint[] | undefined;
|
|
444
444
|
assetReferences?: bigint[] | undefined;
|
|
445
|
-
boxReferences?: (
|
|
445
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
446
446
|
accessReferences?: ResourceReference[] | undefined;
|
|
447
447
|
rejectVersion?: number | undefined;
|
|
448
448
|
sender?: ReadableAddress | undefined;
|
|
@@ -452,24 +452,24 @@ declare class AppFactory {
|
|
|
452
452
|
sender: Address;
|
|
453
453
|
signer: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
454
454
|
method: ABIMethod;
|
|
455
|
-
args: (
|
|
456
|
-
|
|
455
|
+
args: (ABIValue | TransactionWithSigner | Transaction | Promise<Transaction> | AppMethodCall<{
|
|
456
|
+
maxFee?: AlgoAmount | undefined;
|
|
457
457
|
sender: SendingAddress;
|
|
458
|
-
|
|
458
|
+
lease?: string | Uint8Array | undefined;
|
|
459
459
|
rekeyTo?: ReadableAddress | undefined;
|
|
460
|
+
onComplete?: OnApplicationComplete.NoOp | OnApplicationComplete.OptIn | OnApplicationComplete.CloseOut | OnApplicationComplete.UpdateApplication | OnApplicationComplete.DeleteApplication | undefined;
|
|
461
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
460
462
|
note?: string | Uint8Array | undefined;
|
|
461
|
-
lease?: string | Uint8Array | undefined;
|
|
462
463
|
staticFee?: AlgoAmount | undefined;
|
|
463
464
|
extraFee?: AlgoAmount | undefined;
|
|
464
|
-
maxFee?: AlgoAmount | undefined;
|
|
465
465
|
validityWindow?: number | bigint | undefined;
|
|
466
466
|
firstValidRound?: bigint | undefined;
|
|
467
467
|
lastValidRound?: bigint | undefined;
|
|
468
|
-
|
|
468
|
+
args?: Uint8Array[] | undefined;
|
|
469
469
|
accountReferences?: ReadableAddress[] | undefined;
|
|
470
470
|
appReferences?: bigint[] | undefined;
|
|
471
471
|
assetReferences?: bigint[] | undefined;
|
|
472
|
-
boxReferences?: (
|
|
472
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
473
473
|
accessReferences?: ResourceReference[] | undefined;
|
|
474
474
|
rejectVersion?: number | undefined;
|
|
475
475
|
appId?: 0 | undefined;
|
|
@@ -500,32 +500,32 @@ declare class AppFactory {
|
|
|
500
500
|
accountReferences?: ReadableAddress[] | undefined;
|
|
501
501
|
appReferences?: bigint[] | undefined;
|
|
502
502
|
assetReferences?: bigint[] | undefined;
|
|
503
|
-
boxReferences?: (
|
|
503
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
504
504
|
accessReferences?: ResourceReference[] | undefined;
|
|
505
505
|
rejectVersion?: number | undefined;
|
|
506
506
|
approvalProgram: string | Uint8Array;
|
|
507
507
|
clearStateProgram: string | Uint8Array;
|
|
508
|
-
}> | AppMethodCall<AppMethodCallParams> |
|
|
508
|
+
}> | AppMethodCall<AppMethodCallParams> | undefined)[] | undefined;
|
|
509
509
|
onComplete: OnApplicationComplete.DeleteApplication;
|
|
510
510
|
};
|
|
511
511
|
bare: {
|
|
512
512
|
/** Return params for a create bare call, including deploy-time TEAL template replacements and compilation if provided */
|
|
513
513
|
create: (params?: {
|
|
514
|
-
|
|
515
|
-
|
|
514
|
+
maxFee?: AlgoAmount | undefined;
|
|
515
|
+
lease?: string | Uint8Array | undefined;
|
|
516
516
|
rekeyTo?: ReadableAddress | undefined;
|
|
517
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
517
518
|
note?: string | Uint8Array | undefined;
|
|
518
|
-
lease?: string | Uint8Array | undefined;
|
|
519
519
|
staticFee?: AlgoAmount | undefined;
|
|
520
520
|
extraFee?: AlgoAmount | undefined;
|
|
521
|
-
maxFee?: AlgoAmount | undefined;
|
|
522
521
|
validityWindow?: number | bigint | undefined;
|
|
523
522
|
firstValidRound?: bigint | undefined;
|
|
524
523
|
lastValidRound?: bigint | undefined;
|
|
524
|
+
args?: Uint8Array[] | undefined;
|
|
525
525
|
accountReferences?: ReadableAddress[] | undefined;
|
|
526
526
|
appReferences?: bigint[] | undefined;
|
|
527
527
|
assetReferences?: bigint[] | undefined;
|
|
528
|
-
boxReferences?: (
|
|
528
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
529
529
|
accessReferences?: ResourceReference[] | undefined;
|
|
530
530
|
rejectVersion?: number | undefined;
|
|
531
531
|
sender?: ReadableAddress | undefined;
|
|
@@ -560,21 +560,21 @@ declare class AppFactory {
|
|
|
560
560
|
/** The number of byte slices saved in local state. */
|
|
561
561
|
localByteSlices: number;
|
|
562
562
|
};
|
|
563
|
-
|
|
564
|
-
|
|
563
|
+
maxFee?: AlgoAmount | undefined;
|
|
564
|
+
lease?: string | Uint8Array | undefined;
|
|
565
565
|
rekeyTo?: ReadableAddress | undefined;
|
|
566
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
566
567
|
note?: string | Uint8Array | undefined;
|
|
567
|
-
lease?: string | Uint8Array | undefined;
|
|
568
568
|
staticFee?: AlgoAmount | undefined;
|
|
569
569
|
extraFee?: AlgoAmount | undefined;
|
|
570
|
-
maxFee?: AlgoAmount | undefined;
|
|
571
570
|
validityWindow?: number | bigint | undefined;
|
|
572
571
|
firstValidRound?: bigint | undefined;
|
|
573
572
|
lastValidRound?: bigint | undefined;
|
|
573
|
+
args?: Uint8Array[] | undefined;
|
|
574
574
|
accountReferences?: ReadableAddress[] | undefined;
|
|
575
575
|
appReferences?: bigint[] | undefined;
|
|
576
576
|
assetReferences?: bigint[] | undefined;
|
|
577
|
-
boxReferences?: (
|
|
577
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
578
578
|
accessReferences?: ResourceReference[] | undefined;
|
|
579
579
|
rejectVersion?: number | undefined;
|
|
580
580
|
sender?: ReadableAddress | undefined;
|
|
@@ -589,40 +589,40 @@ declare class AppFactory {
|
|
|
589
589
|
}>;
|
|
590
590
|
/** Return params for a deployment update bare call */
|
|
591
591
|
deployUpdate: (params?: {
|
|
592
|
-
|
|
593
|
-
|
|
592
|
+
maxFee?: AlgoAmount | undefined;
|
|
593
|
+
lease?: string | Uint8Array | undefined;
|
|
594
594
|
rekeyTo?: ReadableAddress | undefined;
|
|
595
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
595
596
|
note?: string | Uint8Array | undefined;
|
|
596
|
-
lease?: string | Uint8Array | undefined;
|
|
597
597
|
staticFee?: AlgoAmount | undefined;
|
|
598
598
|
extraFee?: AlgoAmount | undefined;
|
|
599
|
-
maxFee?: AlgoAmount | undefined;
|
|
600
599
|
validityWindow?: number | bigint | undefined;
|
|
601
600
|
firstValidRound?: bigint | undefined;
|
|
602
601
|
lastValidRound?: bigint | undefined;
|
|
602
|
+
args?: Uint8Array[] | undefined;
|
|
603
603
|
accountReferences?: ReadableAddress[] | undefined;
|
|
604
604
|
appReferences?: bigint[] | undefined;
|
|
605
605
|
assetReferences?: bigint[] | undefined;
|
|
606
|
-
boxReferences?: (
|
|
606
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
607
607
|
accessReferences?: ResourceReference[] | undefined;
|
|
608
608
|
rejectVersion?: number | undefined;
|
|
609
609
|
sender?: ReadableAddress | undefined;
|
|
610
610
|
} | undefined) => {
|
|
611
|
-
|
|
612
|
-
|
|
611
|
+
maxFee?: AlgoAmount | undefined;
|
|
612
|
+
lease?: string | Uint8Array | undefined;
|
|
613
613
|
rekeyTo?: ReadableAddress | undefined;
|
|
614
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
614
615
|
note?: string | Uint8Array | undefined;
|
|
615
|
-
lease?: string | Uint8Array | undefined;
|
|
616
616
|
staticFee?: AlgoAmount | undefined;
|
|
617
617
|
extraFee?: AlgoAmount | undefined;
|
|
618
|
-
maxFee?: AlgoAmount | undefined;
|
|
619
618
|
validityWindow?: number | bigint | undefined;
|
|
620
619
|
firstValidRound?: bigint | undefined;
|
|
621
620
|
lastValidRound?: bigint | undefined;
|
|
621
|
+
args?: Uint8Array[] | undefined;
|
|
622
622
|
accountReferences?: ReadableAddress[] | undefined;
|
|
623
623
|
appReferences?: bigint[] | undefined;
|
|
624
624
|
assetReferences?: bigint[] | undefined;
|
|
625
|
-
boxReferences?: (
|
|
625
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
626
626
|
accessReferences?: ResourceReference[] | undefined;
|
|
627
627
|
rejectVersion?: number | undefined;
|
|
628
628
|
sender?: ReadableAddress | undefined;
|
|
@@ -633,40 +633,40 @@ declare class AppFactory {
|
|
|
633
633
|
};
|
|
634
634
|
/** Return params for a deployment delete bare call */
|
|
635
635
|
deployDelete: (params?: {
|
|
636
|
-
|
|
637
|
-
|
|
636
|
+
maxFee?: AlgoAmount | undefined;
|
|
637
|
+
lease?: string | Uint8Array | undefined;
|
|
638
638
|
rekeyTo?: ReadableAddress | undefined;
|
|
639
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
639
640
|
note?: string | Uint8Array | undefined;
|
|
640
|
-
lease?: string | Uint8Array | undefined;
|
|
641
641
|
staticFee?: AlgoAmount | undefined;
|
|
642
642
|
extraFee?: AlgoAmount | undefined;
|
|
643
|
-
maxFee?: AlgoAmount | undefined;
|
|
644
643
|
validityWindow?: number | bigint | undefined;
|
|
645
644
|
firstValidRound?: bigint | undefined;
|
|
646
645
|
lastValidRound?: bigint | undefined;
|
|
646
|
+
args?: Uint8Array[] | undefined;
|
|
647
647
|
accountReferences?: ReadableAddress[] | undefined;
|
|
648
648
|
appReferences?: bigint[] | undefined;
|
|
649
649
|
assetReferences?: bigint[] | undefined;
|
|
650
|
-
boxReferences?: (
|
|
650
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
651
651
|
accessReferences?: ResourceReference[] | undefined;
|
|
652
652
|
rejectVersion?: number | undefined;
|
|
653
653
|
sender?: ReadableAddress | undefined;
|
|
654
654
|
} | undefined) => {
|
|
655
|
-
|
|
656
|
-
|
|
655
|
+
maxFee?: AlgoAmount | undefined;
|
|
656
|
+
lease?: string | Uint8Array | undefined;
|
|
657
657
|
rekeyTo?: ReadableAddress | undefined;
|
|
658
|
+
signer?: AddressWithTransactionSigner | TransactionSigner | undefined;
|
|
658
659
|
note?: string | Uint8Array | undefined;
|
|
659
|
-
lease?: string | Uint8Array | undefined;
|
|
660
660
|
staticFee?: AlgoAmount | undefined;
|
|
661
661
|
extraFee?: AlgoAmount | undefined;
|
|
662
|
-
maxFee?: AlgoAmount | undefined;
|
|
663
662
|
validityWindow?: number | bigint | undefined;
|
|
664
663
|
firstValidRound?: bigint | undefined;
|
|
665
664
|
lastValidRound?: bigint | undefined;
|
|
665
|
+
args?: Uint8Array[] | undefined;
|
|
666
666
|
accountReferences?: ReadableAddress[] | undefined;
|
|
667
667
|
appReferences?: bigint[] | undefined;
|
|
668
668
|
assetReferences?: bigint[] | undefined;
|
|
669
|
-
boxReferences?: (
|
|
669
|
+
boxReferences?: (BoxIdentifier | BoxReference)[] | undefined;
|
|
670
670
|
accessReferences?: ResourceReference[] | undefined;
|
|
671
671
|
rejectVersion?: number | undefined;
|
|
672
672
|
sender?: ReadableAddress | undefined;
|
|
@@ -803,13 +803,13 @@ declare class AppFactory {
|
|
|
803
803
|
compiledClear?: CompiledTeal | undefined;
|
|
804
804
|
operationPerformed: "create";
|
|
805
805
|
version: string;
|
|
806
|
+
updatable?: boolean | undefined;
|
|
807
|
+
deletable?: boolean | undefined;
|
|
806
808
|
createdRound: bigint;
|
|
807
809
|
updatedRound: bigint;
|
|
808
810
|
createdMetadata: AppDeployMetadata;
|
|
809
811
|
deleted: boolean;
|
|
810
812
|
name: string;
|
|
811
|
-
deletable?: boolean | undefined;
|
|
812
|
-
updatable?: boolean | undefined;
|
|
813
813
|
groupId: string | undefined;
|
|
814
814
|
txIds: string[];
|
|
815
815
|
returns?: ABIReturn[] | undefined;
|
|
@@ -849,13 +849,13 @@ declare class AppFactory {
|
|
|
849
849
|
compiledClear?: CompiledTeal | undefined;
|
|
850
850
|
operationPerformed: "replace";
|
|
851
851
|
version: string;
|
|
852
|
+
updatable?: boolean | undefined;
|
|
853
|
+
deletable?: boolean | undefined;
|
|
852
854
|
createdRound: bigint;
|
|
853
855
|
updatedRound: bigint;
|
|
854
856
|
createdMetadata: AppDeployMetadata;
|
|
855
857
|
deleted: boolean;
|
|
856
858
|
name: string;
|
|
857
|
-
deletable?: boolean | undefined;
|
|
858
|
-
updatable?: boolean | undefined;
|
|
859
859
|
groupId: string | undefined;
|
|
860
860
|
txIds: string[];
|
|
861
861
|
returns?: ABIReturn[] | undefined;
|