From 93ce0f1e9fa8f41877c50c4c9f0508d3466c9041 Mon Sep 17 00:00:00 2001 From: wizard <112275929+famouswizard@users.noreply.github.com> Date: Sun, 19 Oct 2025 19:40:41 +0300 Subject: [PATCH] fix: TS inheritance error with `ProviderInterface` --- src/account/interface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/account/interface.ts b/src/account/interface.ts index 57842fd83..d6616546a 100644 --- a/src/account/interface.ts +++ b/src/account/interface.ts @@ -49,7 +49,7 @@ import type { DeployContractUDCResponse } from '../deployer/types/index.type'; * - Transaction signing with the account's private key * - Interaction with the account contract's __execute__ entrypoint */ -export abstract class AccountInterface extends ProviderInterface { +export abstract class AccountInterface implements ProviderInterface { /** * The address of the account contract on Starknet */