Skip to content

Commit 3d26945

Browse files
authored
fix: handle an app called App (#134)
1 parent 7c093d7 commit 3d26945

File tree

16 files changed

+207
-207
lines changed

16 files changed

+207
-207
lines changed

examples/arc56_test/client.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { AlgorandClientInterface } from '@algorandfoundation/algokit-utils/types
88
import { ABIReturn, AppReturn, SendAppTransactionResult } from '@algorandfoundation/algokit-utils/types/app'
99
import { Arc56Contract, getArc56ReturnValue, getABIStructFromABITuple } from '@algorandfoundation/algokit-utils/types/app-arc56'
1010
import {
11-
AppClient,
11+
AppClient as _AppClient,
1212
AppClientMethodCallParams,
1313
AppClientParams,
1414
AppClientBareCallParams,
@@ -18,7 +18,7 @@ import {
1818
ResolveAppClientByNetwork,
1919
CloneAppClientParams,
2020
} from '@algorandfoundation/algokit-utils/types/app-client'
21-
import { AppFactory, AppFactoryAppClientParams, AppFactoryResolveAppClientByCreatorAndNameParams, AppFactoryDeployParams, AppFactoryParams, CreateSchema } from '@algorandfoundation/algokit-utils/types/app-factory'
21+
import { AppFactory as _AppFactory, AppFactoryAppClientParams, AppFactoryResolveAppClientByCreatorAndNameParams, AppFactoryDeployParams, AppFactoryParams, CreateSchema } from '@algorandfoundation/algokit-utils/types/app-factory'
2222
import { TransactionComposer, AppCallMethodCall, AppMethodCallTransactionArgument, SimulateOptions } from '@algorandfoundation/algokit-utils/types/composer'
2323
import { SendParams, SendSingleTransactionResult, SendAtomicTransactionComposerResults } from '@algorandfoundation/algokit-utils/types/transaction'
2424
import { Address, encodeAddress, modelsv2, OnApplicationComplete, Transaction, TransactionSigner } from 'algosdk'
@@ -341,15 +341,15 @@ export class Arc56TestFactory {
341341
/**
342342
* The underlying `AppFactory` for when you want to have more flexibility
343343
*/
344-
public readonly appFactory: AppFactory
344+
public readonly appFactory: _AppFactory
345345

346346
/**
347347
* Creates a new instance of `Arc56TestFactory`
348348
*
349349
* @param params The parameters to initialise the app factory with
350350
*/
351351
constructor(params: Omit<AppFactoryParams, 'appSpec'>) {
352-
this.appFactory = new AppFactory({
352+
this.appFactory = new _AppFactory({
353353
...params,
354354
appSpec: APP_SPEC,
355355
})
@@ -483,22 +483,22 @@ export class Arc56TestClient {
483483
/**
484484
* The underlying `AppClient` for when you want to have more flexibility
485485
*/
486-
public readonly appClient: AppClient
486+
public readonly appClient: _AppClient
487487

488488
/**
489489
* Creates a new instance of `Arc56TestClient`
490490
*
491491
* @param appClient An `AppClient` instance which has been created with the Arc56Test app spec
492492
*/
493-
constructor(appClient: AppClient)
493+
constructor(appClient: _AppClient)
494494
/**
495495
* Creates a new instance of `Arc56TestClient`
496496
*
497497
* @param params The parameters to initialise the app client with
498498
*/
499499
constructor(params: Omit<AppClientParams, 'appSpec'>)
500-
constructor(appClientOrParams: AppClient | Omit<AppClientParams, 'appSpec'>) {
501-
this.appClient = appClientOrParams instanceof AppClient ? appClientOrParams : new AppClient({
500+
constructor(appClientOrParams: _AppClient | Omit<AppClientParams, 'appSpec'>) {
501+
this.appClient = appClientOrParams instanceof _AppClient ? appClientOrParams : new _AppClient({
502502
...appClientOrParams,
503503
appSpec: APP_SPEC,
504504
})
@@ -518,7 +518,7 @@ export class Arc56TestClient {
518518
* @param params The parameters to create the app client
519519
*/
520520
public static async fromCreatorAndName(params: Omit<ResolveAppClientByCreatorAndName, 'appSpec'>): Promise<Arc56TestClient> {
521-
return new Arc56TestClient(await AppClient.fromCreatorAndName({...params, appSpec: APP_SPEC}))
521+
return new Arc56TestClient(await _AppClient.fromCreatorAndName({...params, appSpec: APP_SPEC}))
522522
}
523523

524524
/**
@@ -531,7 +531,7 @@ export class Arc56TestClient {
531531
static async fromNetwork(
532532
params: Omit<ResolveAppClientByNetwork, 'appSpec'>
533533
): Promise<Arc56TestClient> {
534-
return new Arc56TestClient(await AppClient.fromNetwork({...params, appSpec: APP_SPEC}))
534+
return new Arc56TestClient(await _AppClient.fromNetwork({...params, appSpec: APP_SPEC}))
535535
}
536536

537537
/** The ID of the app instance this client is linked to. */

examples/duplicate_structs/client.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { AlgorandClientInterface } from '@algorandfoundation/algokit-utils/types
88
import { ABIReturn, AppReturn, SendAppTransactionResult } from '@algorandfoundation/algokit-utils/types/app'
99
import { Arc56Contract, getArc56ReturnValue, getABIStructFromABITuple } from '@algorandfoundation/algokit-utils/types/app-arc56'
1010
import {
11-
AppClient,
11+
AppClient as _AppClient,
1212
AppClientMethodCallParams,
1313
AppClientParams,
1414
AppClientBareCallParams,
@@ -18,7 +18,7 @@ import {
1818
ResolveAppClientByNetwork,
1919
CloneAppClientParams,
2020
} from '@algorandfoundation/algokit-utils/types/app-client'
21-
import { AppFactory, AppFactoryAppClientParams, AppFactoryResolveAppClientByCreatorAndNameParams, AppFactoryDeployParams, AppFactoryParams, CreateSchema } from '@algorandfoundation/algokit-utils/types/app-factory'
21+
import { AppFactory as _AppFactory, AppFactoryAppClientParams, AppFactoryResolveAppClientByCreatorAndNameParams, AppFactoryDeployParams, AppFactoryParams, CreateSchema } from '@algorandfoundation/algokit-utils/types/app-factory'
2222
import { TransactionComposer, AppCallMethodCall, AppMethodCallTransactionArgument, SimulateOptions } from '@algorandfoundation/algokit-utils/types/composer'
2323
import { SendParams, SendSingleTransactionResult, SendAtomicTransactionComposerResults } from '@algorandfoundation/algokit-utils/types/transaction'
2424
import { Address, encodeAddress, modelsv2, OnApplicationComplete, Transaction, TransactionSigner } from 'algosdk'
@@ -209,15 +209,15 @@ export class DuplicateStructsContractFactory {
209209
/**
210210
* The underlying `AppFactory` for when you want to have more flexibility
211211
*/
212-
public readonly appFactory: AppFactory
212+
public readonly appFactory: _AppFactory
213213

214214
/**
215215
* Creates a new instance of `DuplicateStructsContractFactory`
216216
*
217217
* @param params The parameters to initialise the app factory with
218218
*/
219219
constructor(params: Omit<AppFactoryParams, 'appSpec'>) {
220-
this.appFactory = new AppFactory({
220+
this.appFactory = new _AppFactory({
221221
...params,
222222
appSpec: APP_SPEC,
223223
})
@@ -350,22 +350,22 @@ export class DuplicateStructsContractClient {
350350
/**
351351
* The underlying `AppClient` for when you want to have more flexibility
352352
*/
353-
public readonly appClient: AppClient
353+
public readonly appClient: _AppClient
354354

355355
/**
356356
* Creates a new instance of `DuplicateStructsContractClient`
357357
*
358358
* @param appClient An `AppClient` instance which has been created with the DuplicateStructsContract app spec
359359
*/
360-
constructor(appClient: AppClient)
360+
constructor(appClient: _AppClient)
361361
/**
362362
* Creates a new instance of `DuplicateStructsContractClient`
363363
*
364364
* @param params The parameters to initialise the app client with
365365
*/
366366
constructor(params: Omit<AppClientParams, 'appSpec'>)
367-
constructor(appClientOrParams: AppClient | Omit<AppClientParams, 'appSpec'>) {
368-
this.appClient = appClientOrParams instanceof AppClient ? appClientOrParams : new AppClient({
367+
constructor(appClientOrParams: _AppClient | Omit<AppClientParams, 'appSpec'>) {
368+
this.appClient = appClientOrParams instanceof _AppClient ? appClientOrParams : new _AppClient({
369369
...appClientOrParams,
370370
appSpec: APP_SPEC,
371371
})
@@ -385,7 +385,7 @@ export class DuplicateStructsContractClient {
385385
* @param params The parameters to create the app client
386386
*/
387387
public static async fromCreatorAndName(params: Omit<ResolveAppClientByCreatorAndName, 'appSpec'>): Promise<DuplicateStructsContractClient> {
388-
return new DuplicateStructsContractClient(await AppClient.fromCreatorAndName({...params, appSpec: APP_SPEC}))
388+
return new DuplicateStructsContractClient(await _AppClient.fromCreatorAndName({...params, appSpec: APP_SPEC}))
389389
}
390390

391391
/**
@@ -398,7 +398,7 @@ export class DuplicateStructsContractClient {
398398
static async fromNetwork(
399399
params: Omit<ResolveAppClientByNetwork, 'appSpec'>
400400
): Promise<DuplicateStructsContractClient> {
401-
return new DuplicateStructsContractClient(await AppClient.fromNetwork({...params, appSpec: APP_SPEC}))
401+
return new DuplicateStructsContractClient(await _AppClient.fromNetwork({...params, appSpec: APP_SPEC}))
402402
}
403403

404404
/** The ID of the app instance this client is linked to. */

examples/helloworld/client.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { AlgorandClientInterface } from '@algorandfoundation/algokit-utils/types
88
import { ABIReturn, AppReturn, SendAppTransactionResult } from '@algorandfoundation/algokit-utils/types/app'
99
import { Arc56Contract, getArc56ReturnValue, getABIStructFromABITuple } from '@algorandfoundation/algokit-utils/types/app-arc56'
1010
import {
11-
AppClient,
11+
AppClient as _AppClient,
1212
AppClientMethodCallParams,
1313
AppClientParams,
1414
AppClientBareCallParams,
@@ -18,7 +18,7 @@ import {
1818
ResolveAppClientByNetwork,
1919
CloneAppClientParams,
2020
} from '@algorandfoundation/algokit-utils/types/app-client'
21-
import { AppFactory, AppFactoryAppClientParams, AppFactoryResolveAppClientByCreatorAndNameParams, AppFactoryDeployParams, AppFactoryParams, CreateSchema } from '@algorandfoundation/algokit-utils/types/app-factory'
21+
import { AppFactory as _AppFactory, AppFactoryAppClientParams, AppFactoryResolveAppClientByCreatorAndNameParams, AppFactoryDeployParams, AppFactoryParams, CreateSchema } from '@algorandfoundation/algokit-utils/types/app-factory'
2222
import { TransactionComposer, AppCallMethodCall, AppMethodCallTransactionArgument, SimulateOptions } from '@algorandfoundation/algokit-utils/types/composer'
2323
import { SendParams, SendSingleTransactionResult, SendAtomicTransactionComposerResults } from '@algorandfoundation/algokit-utils/types/transaction'
2424
import { Address, encodeAddress, modelsv2, OnApplicationComplete, Transaction, TransactionSigner } from 'algosdk'
@@ -220,15 +220,15 @@ export class HelloWorldAppFactory {
220220
/**
221221
* The underlying `AppFactory` for when you want to have more flexibility
222222
*/
223-
public readonly appFactory: AppFactory
223+
public readonly appFactory: _AppFactory
224224

225225
/**
226226
* Creates a new instance of `HelloWorldAppFactory`
227227
*
228228
* @param params The parameters to initialise the app factory with
229229
*/
230230
constructor(params: Omit<AppFactoryParams, 'appSpec'>) {
231-
this.appFactory = new AppFactory({
231+
this.appFactory = new _AppFactory({
232232
...params,
233233
appSpec: APP_SPEC,
234234
})
@@ -391,22 +391,22 @@ export class HelloWorldAppClient {
391391
/**
392392
* The underlying `AppClient` for when you want to have more flexibility
393393
*/
394-
public readonly appClient: AppClient
394+
public readonly appClient: _AppClient
395395

396396
/**
397397
* Creates a new instance of `HelloWorldAppClient`
398398
*
399399
* @param appClient An `AppClient` instance which has been created with the HelloWorldApp app spec
400400
*/
401-
constructor(appClient: AppClient)
401+
constructor(appClient: _AppClient)
402402
/**
403403
* Creates a new instance of `HelloWorldAppClient`
404404
*
405405
* @param params The parameters to initialise the app client with
406406
*/
407407
constructor(params: Omit<AppClientParams, 'appSpec'>)
408-
constructor(appClientOrParams: AppClient | Omit<AppClientParams, 'appSpec'>) {
409-
this.appClient = appClientOrParams instanceof AppClient ? appClientOrParams : new AppClient({
408+
constructor(appClientOrParams: _AppClient | Omit<AppClientParams, 'appSpec'>) {
409+
this.appClient = appClientOrParams instanceof _AppClient ? appClientOrParams : new _AppClient({
410410
...appClientOrParams,
411411
appSpec: APP_SPEC,
412412
})
@@ -426,7 +426,7 @@ export class HelloWorldAppClient {
426426
* @param params The parameters to create the app client
427427
*/
428428
public static async fromCreatorAndName(params: Omit<ResolveAppClientByCreatorAndName, 'appSpec'>): Promise<HelloWorldAppClient> {
429-
return new HelloWorldAppClient(await AppClient.fromCreatorAndName({...params, appSpec: APP_SPEC}))
429+
return new HelloWorldAppClient(await _AppClient.fromCreatorAndName({...params, appSpec: APP_SPEC}))
430430
}
431431

432432
/**
@@ -439,7 +439,7 @@ export class HelloWorldAppClient {
439439
static async fromNetwork(
440440
params: Omit<ResolveAppClientByNetwork, 'appSpec'>
441441
): Promise<HelloWorldAppClient> {
442-
return new HelloWorldAppClient(await AppClient.fromNetwork({...params, appSpec: APP_SPEC}))
442+
return new HelloWorldAppClient(await _AppClient.fromNetwork({...params, appSpec: APP_SPEC}))
443443
}
444444

445445
/** The ID of the app instance this client is linked to. */

examples/lifecycle/client.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { AlgorandClientInterface } from '@algorandfoundation/algokit-utils/types
88
import { ABIReturn, AppReturn, SendAppTransactionResult } from '@algorandfoundation/algokit-utils/types/app'
99
import { Arc56Contract, getArc56ReturnValue, getABIStructFromABITuple } from '@algorandfoundation/algokit-utils/types/app-arc56'
1010
import {
11-
AppClient,
11+
AppClient as _AppClient,
1212
AppClientMethodCallParams,
1313
AppClientParams,
1414
AppClientBareCallParams,
@@ -18,7 +18,7 @@ import {
1818
ResolveAppClientByNetwork,
1919
CloneAppClientParams,
2020
} from '@algorandfoundation/algokit-utils/types/app-client'
21-
import { AppFactory, AppFactoryAppClientParams, AppFactoryResolveAppClientByCreatorAndNameParams, AppFactoryDeployParams, AppFactoryParams, CreateSchema } from '@algorandfoundation/algokit-utils/types/app-factory'
21+
import { AppFactory as _AppFactory, AppFactoryAppClientParams, AppFactoryResolveAppClientByCreatorAndNameParams, AppFactoryDeployParams, AppFactoryParams, CreateSchema } from '@algorandfoundation/algokit-utils/types/app-factory'
2222
import { TransactionComposer, AppCallMethodCall, AppMethodCallTransactionArgument, SimulateOptions } from '@algorandfoundation/algokit-utils/types/composer'
2323
import { SendParams, SendSingleTransactionResult, SendAtomicTransactionComposerResults } from '@algorandfoundation/algokit-utils/types/transaction'
2424
import { Address, encodeAddress, modelsv2, OnApplicationComplete, Transaction, TransactionSigner } from 'algosdk'
@@ -294,15 +294,15 @@ export class LifeCycleAppFactory {
294294
/**
295295
* The underlying `AppFactory` for when you want to have more flexibility
296296
*/
297-
public readonly appFactory: AppFactory
297+
public readonly appFactory: _AppFactory
298298

299299
/**
300300
* Creates a new instance of `LifeCycleAppFactory`
301301
*
302302
* @param params The parameters to initialise the app factory with
303303
*/
304304
constructor(params: Omit<AppFactoryParams, 'appSpec'>) {
305-
this.appFactory = new AppFactory({
305+
this.appFactory = new _AppFactory({
306306
...params,
307307
appSpec: APP_SPEC,
308308
})
@@ -519,22 +519,22 @@ export class LifeCycleAppClient {
519519
/**
520520
* The underlying `AppClient` for when you want to have more flexibility
521521
*/
522-
public readonly appClient: AppClient
522+
public readonly appClient: _AppClient
523523

524524
/**
525525
* Creates a new instance of `LifeCycleAppClient`
526526
*
527527
* @param appClient An `AppClient` instance which has been created with the LifeCycleApp app spec
528528
*/
529-
constructor(appClient: AppClient)
529+
constructor(appClient: _AppClient)
530530
/**
531531
* Creates a new instance of `LifeCycleAppClient`
532532
*
533533
* @param params The parameters to initialise the app client with
534534
*/
535535
constructor(params: Omit<AppClientParams, 'appSpec'>)
536-
constructor(appClientOrParams: AppClient | Omit<AppClientParams, 'appSpec'>) {
537-
this.appClient = appClientOrParams instanceof AppClient ? appClientOrParams : new AppClient({
536+
constructor(appClientOrParams: _AppClient | Omit<AppClientParams, 'appSpec'>) {
537+
this.appClient = appClientOrParams instanceof _AppClient ? appClientOrParams : new _AppClient({
538538
...appClientOrParams,
539539
appSpec: APP_SPEC,
540540
})
@@ -554,7 +554,7 @@ export class LifeCycleAppClient {
554554
* @param params The parameters to create the app client
555555
*/
556556
public static async fromCreatorAndName(params: Omit<ResolveAppClientByCreatorAndName, 'appSpec'>): Promise<LifeCycleAppClient> {
557-
return new LifeCycleAppClient(await AppClient.fromCreatorAndName({...params, appSpec: APP_SPEC}))
557+
return new LifeCycleAppClient(await _AppClient.fromCreatorAndName({...params, appSpec: APP_SPEC}))
558558
}
559559

560560
/**
@@ -567,7 +567,7 @@ export class LifeCycleAppClient {
567567
static async fromNetwork(
568568
params: Omit<ResolveAppClientByNetwork, 'appSpec'>
569569
): Promise<LifeCycleAppClient> {
570-
return new LifeCycleAppClient(await AppClient.fromNetwork({...params, appSpec: APP_SPEC}))
570+
return new LifeCycleAppClient(await _AppClient.fromNetwork({...params, appSpec: APP_SPEC}))
571571
}
572572

573573
/** The ID of the app instance this client is linked to. */

examples/minimal/application.json

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
{
2-
"hints": {},
3-
"source": {
4-
"approval": "I3ByYWdtYSB2ZXJzaW9uIDgKaW50Y2Jsb2NrIDAgMQp0eG4gTnVtQXBwQXJncwppbnRjXzAgLy8gMAo9PQpibnogbWFpbl9sMgplcnIKbWFpbl9sMjoKdHhuIE9uQ29tcGxldGlvbgppbnRjXzAgLy8gTm9PcAo9PQpibnogbWFpbl9sOAp0eG4gT25Db21wbGV0aW9uCnB1c2hpbnQgNCAvLyBVcGRhdGVBcHBsaWNhdGlvbgo9PQpibnogbWFpbl9sNwp0eG4gT25Db21wbGV0aW9uCnB1c2hpbnQgNSAvLyBEZWxldGVBcHBsaWNhdGlvbgo9PQpibnogbWFpbl9sNgplcnIKbWFpbl9sNjoKdHhuIEFwcGxpY2F0aW9uSUQKaW50Y18wIC8vIDAKIT0KYXNzZXJ0CmNhbGxzdWIgZGVsZXRlXzEKaW50Y18xIC8vIDEKcmV0dXJuCm1haW5fbDc6CnR4biBBcHBsaWNhdGlvbklECmludGNfMCAvLyAwCiE9CmFzc2VydApjYWxsc3ViIHVwZGF0ZV8wCmludGNfMSAvLyAxCnJldHVybgptYWluX2w4Ogp0eG4gQXBwbGljYXRpb25JRAppbnRjXzAgLy8gMAo9PQphc3NlcnQKaW50Y18xIC8vIDEKcmV0dXJuCgovLyB1cGRhdGUKdXBkYXRlXzA6CnByb3RvIDAgMAp0eG4gU2VuZGVyCmdsb2JhbCBDcmVhdG9yQWRkcmVzcwo9PQovLyB1bmF1dGhvcml6ZWQKYXNzZXJ0CnB1c2hpbnQgVE1QTF9VUERBVEFCTEUgLy8gVE1QTF9VUERBVEFCTEUKLy8gQ2hlY2sgYXBwIGlzIHVwZGF0YWJsZQphc3NlcnQKcmV0c3ViCgovLyBkZWxldGUKZGVsZXRlXzE6CnByb3RvIDAgMAp0eG4gU2VuZGVyCmdsb2JhbCBDcmVhdG9yQWRkcmVzcwo9PQovLyB1bmF1dGhvcml6ZWQKYXNzZXJ0CnB1c2hpbnQgVE1QTF9ERUxFVEFCTEUgLy8gVE1QTF9ERUxFVEFCTEUKLy8gQ2hlY2sgYXBwIGlzIGRlbGV0YWJsZQphc3NlcnQKcmV0c3Vi",
5-
"clear": "I3ByYWdtYSB2ZXJzaW9uIDgKcHVzaGludCAwIC8vIDAKcmV0dXJu"
2+
"hints": {},
3+
"source": {
4+
"approval": "I3ByYWdtYSB2ZXJzaW9uIDgKaW50Y2Jsb2NrIDAgMQp0eG4gTnVtQXBwQXJncwppbnRjXzAgLy8gMAo9PQpibnogbWFpbl9sMgplcnIKbWFpbl9sMjoKdHhuIE9uQ29tcGxldGlvbgppbnRjXzAgLy8gTm9PcAo9PQpibnogbWFpbl9sOAp0eG4gT25Db21wbGV0aW9uCnB1c2hpbnQgNCAvLyBVcGRhdGVBcHBsaWNhdGlvbgo9PQpibnogbWFpbl9sNwp0eG4gT25Db21wbGV0aW9uCnB1c2hpbnQgNSAvLyBEZWxldGVBcHBsaWNhdGlvbgo9PQpibnogbWFpbl9sNgplcnIKbWFpbl9sNjoKdHhuIEFwcGxpY2F0aW9uSUQKaW50Y18wIC8vIDAKIT0KYXNzZXJ0CmNhbGxzdWIgZGVsZXRlXzEKaW50Y18xIC8vIDEKcmV0dXJuCm1haW5fbDc6CnR4biBBcHBsaWNhdGlvbklECmludGNfMCAvLyAwCiE9CmFzc2VydApjYWxsc3ViIHVwZGF0ZV8wCmludGNfMSAvLyAxCnJldHVybgptYWluX2w4Ogp0eG4gQXBwbGljYXRpb25JRAppbnRjXzAgLy8gMAo9PQphc3NlcnQKaW50Y18xIC8vIDEKcmV0dXJuCgovLyB1cGRhdGUKdXBkYXRlXzA6CnByb3RvIDAgMAp0eG4gU2VuZGVyCmdsb2JhbCBDcmVhdG9yQWRkcmVzcwo9PQovLyB1bmF1dGhvcml6ZWQKYXNzZXJ0CnB1c2hpbnQgVE1QTF9VUERBVEFCTEUgLy8gVE1QTF9VUERBVEFCTEUKLy8gQ2hlY2sgYXBwIGlzIHVwZGF0YWJsZQphc3NlcnQKcmV0c3ViCgovLyBkZWxldGUKZGVsZXRlXzE6CnByb3RvIDAgMAp0eG4gU2VuZGVyCmdsb2JhbCBDcmVhdG9yQWRkcmVzcwo9PQovLyB1bmF1dGhvcml6ZWQKYXNzZXJ0CnB1c2hpbnQgVE1QTF9ERUxFVEFCTEUgLy8gVE1QTF9ERUxFVEFCTEUKLy8gQ2hlY2sgYXBwIGlzIGRlbGV0YWJsZQphc3NlcnQKcmV0c3Vi",
5+
"clear": "I3ByYWdtYSB2ZXJzaW9uIDgKcHVzaGludCAwIC8vIDAKcmV0dXJu"
6+
},
7+
"state": {
8+
"global": {
9+
"num_byte_slices": 0,
10+
"num_uints": 0
611
},
7-
"state": {
8-
"global": {
9-
"num_byte_slices": 0,
10-
"num_uints": 0
11-
},
12-
"local": {
13-
"num_byte_slices": 0,
14-
"num_uints": 0
15-
}
16-
},
17-
"schema": {
18-
"global": {
19-
"declared": {},
20-
"reserved": {}
21-
},
22-
"local": {
23-
"declared": {},
24-
"reserved": {}
25-
}
26-
},
27-
"contract": {
28-
"name": "MinimalApp",
29-
"methods": [],
30-
"networks": {},
31-
"desc": "An app that has no abi methods"
12+
"local": {
13+
"num_byte_slices": 0,
14+
"num_uints": 0
15+
}
16+
},
17+
"schema": {
18+
"global": {
19+
"declared": {},
20+
"reserved": {}
3221
},
33-
"bare_call_config": {
34-
"delete_application": "CALL",
35-
"no_op": "CREATE",
36-
"update_application": "CALL"
22+
"local": {
23+
"declared": {},
24+
"reserved": {}
3725
}
38-
}
26+
},
27+
"contract": {
28+
"name": "App",
29+
"methods": [],
30+
"networks": {},
31+
"desc": "An app that has no abi methods"
32+
},
33+
"bare_call_config": {
34+
"delete_application": "CALL",
35+
"no_op": "CREATE",
36+
"update_application": "CALL"
37+
}
38+
}

0 commit comments

Comments
 (0)