From 4007f09abf565204e141954c91079ba5b35eb88a Mon Sep 17 00:00:00 2001 From: kyranjamie Date: Mon, 6 Jan 2025 13:30:04 +0100 Subject: [PATCH] fix(transactions): allow wire format in contract calls --- packages/transactions/src/builders.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/transactions/src/builders.ts b/packages/transactions/src/builders.ts index b923a6634..efe012f94 100644 --- a/packages/transactions/src/builders.ts +++ b/packages/transactions/src/builders.ts @@ -417,7 +417,7 @@ export type ContractCallOptions = { * transfered assets */ postConditionMode?: PostConditionModeName | PostConditionMode; /** a list of post conditions to add to the transaction */ - postConditions?: PostCondition[]; + postConditions?: PostCondition[] | PostConditionWire[]; /** set to true to validate that the supplied function args match those specified in * the published contract */ validateWithAbi?: boolean | ClarityAbi;