Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions modules/sdk-coin-tempo/src/tempo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class Tempo extends BaseCoin {
*/
async verifyTransaction(params: VerifyTransactionOptions): Promise<boolean> {
// TODO: Implement transaction verification
throw new Error('Method not implemented.');
return false;
}

/**
Expand All @@ -115,7 +115,7 @@ export class Tempo extends BaseCoin {
*/
async isWalletAddress(params: VerifyAddressOptions): Promise<boolean> {
// TODO: Implement address verification
throw new Error('Method not implemented.');
return false;
}

/**
Expand All @@ -134,7 +134,7 @@ export class Tempo extends BaseCoin {
*/
async parseTransaction(params: ParseTransactionOptions): Promise<ParsedTransaction> {
// TODO: Implement transaction parsing
throw new Error('Method not implemented.');
return {} as ParsedTransaction;
}

/**
Expand All @@ -143,7 +143,7 @@ export class Tempo extends BaseCoin {
*/
async explainTransaction(params: Record<string, unknown>): Promise<TransactionExplanation> {
// TODO: Implement transaction explanation
throw new Error('Method not implemented.');
return {} as TransactionExplanation;
}

/**
Expand All @@ -152,6 +152,6 @@ export class Tempo extends BaseCoin {
*/
async signTransaction(params: SignTransactionOptions): Promise<SignedTransaction> {
// TODO: Implement transaction signing
throw new Error('Method not implemented.');
return {} as SignedTransaction;
}
}