From 77aa79c609ae874317c0c9e567b1fa24000c13b3 Mon Sep 17 00:00:00 2001 From: N V Rakesh Reddy Date: Mon, 15 Dec 2025 11:58:21 +0530 Subject: [PATCH] feat(statics): return instead of error for tempo TICKET: WIN-8211 --- modules/sdk-coin-tempo/src/tempo.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/sdk-coin-tempo/src/tempo.ts b/modules/sdk-coin-tempo/src/tempo.ts index ecf93464c3..e979ace55a 100644 --- a/modules/sdk-coin-tempo/src/tempo.ts +++ b/modules/sdk-coin-tempo/src/tempo.ts @@ -106,7 +106,7 @@ export class Tempo extends BaseCoin { */ async verifyTransaction(params: VerifyTransactionOptions): Promise { // TODO: Implement transaction verification - throw new Error('Method not implemented.'); + return false; } /** @@ -115,7 +115,7 @@ export class Tempo extends BaseCoin { */ async isWalletAddress(params: VerifyAddressOptions): Promise { // TODO: Implement address verification - throw new Error('Method not implemented.'); + return false; } /** @@ -134,7 +134,7 @@ export class Tempo extends BaseCoin { */ async parseTransaction(params: ParseTransactionOptions): Promise { // TODO: Implement transaction parsing - throw new Error('Method not implemented.'); + return {} as ParsedTransaction; } /** @@ -143,7 +143,7 @@ export class Tempo extends BaseCoin { */ async explainTransaction(params: Record): Promise { // TODO: Implement transaction explanation - throw new Error('Method not implemented.'); + return {} as TransactionExplanation; } /** @@ -152,6 +152,6 @@ export class Tempo extends BaseCoin { */ async signTransaction(params: SignTransactionOptions): Promise { // TODO: Implement transaction signing - throw new Error('Method not implemented.'); + return {} as SignedTransaction; } }