From e6b5cc69125a726f1bd21ed881781fc049cbd425 Mon Sep 17 00:00:00 2001 From: Pierre Rambaud Date: Thu, 23 Oct 2025 11:09:45 +0200 Subject: [PATCH] fix: wrong return type for drop transaction --- src/types.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/types.ts b/src/types.ts index 47917be..782e884 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1435,8 +1435,9 @@ export interface PublicKeyInformation { } export interface DropTransactionResponse { - success: boolean; - transactions?: string[]; + txStatus: TransactionStatus; + txId: string; + replacedTxHash: string; } export interface MaxSpendableAmountResponse {