Skip to content

Commit 5e754bb

Browse files
authored
Merge pull request #20 from algorandfoundation/fix/revert-client-three
fix: reverting clients attempt three
2 parents aa05802 + 0162a08 commit 5e754bb

File tree

6 files changed

+343
-339
lines changed

6 files changed

+343
-339
lines changed

contract

Submodule contract updated 86 files

lib/CouncilClient.d.ts

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,6 @@ export declare class CouncilFactory {
385385
deletable?: boolean | undefined;
386386
updatable?: boolean | undefined;
387387
groupId: string;
388-
/**
389-
* A factory to create and deploy one or more instance of the Council smart contract and to create one or more app clients to interact with those (or other) app instances
390-
*/
391388
txIds: string[];
392389
returns?: ABIReturn[] | undefined;
393390
confirmations: modelsv2.PendingTransactionResponse[];
@@ -427,6 +424,11 @@ export declare class CouncilFactory {
427424
operationPerformed: "replace";
428425
version: string;
429426
name: string;
427+
/**
428+
* Creates a new instance of `CouncilFactory`
429+
*
430+
* @param params The parameters to initialise the app factory with
431+
*/
430432
deleted: boolean;
431433
createdRound: bigint;
432434
updatedRound: bigint;
@@ -451,21 +453,23 @@ export declare class CouncilFactory {
451453
operationPerformed: "nothing";
452454
appId: bigint;
453455
appAddress: string;
456+
/**
457+
* Returns a new `AppClient` client, resolving the app by creator address and name
458+
* using AlgoKit app deployment semantics (i.e. looking for the app creation transaction note).
459+
*
460+
* Automatically populates appName, defaultSender and source maps from the factory
461+
* if not specified in the params.
462+
* @param params The parameters to create the app client
463+
* @returns The `AppClient`
464+
*/
454465
createdRound: bigint;
455466
updatedRound: bigint;
456467
createdMetadata: import("@algorandfoundation/algokit-utils/types/app").AppDeployMetadata;
457468
deleted: boolean;
458469
name: string;
459470
version: string;
460471
deletable?: boolean | undefined;
461-
updatable?: boolean | undefined; /**
462-
* Creates a new instance of the Council smart contract using the create(uint64)void ABI method.
463-
*
464-
* Create a new council contract.
465-
*
466-
* @param params The params for the smart contract call
467-
* @returns The create params
468-
*/
472+
updatable?: boolean | undefined;
469473
};
470474
appClient: CouncilClient;
471475
}>;

lib/CouncilClient.js

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)