Skip to content

Commit

Permalink
icon url
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarkhatov committed Dec 16, 2024
1 parent ed01643 commit c9625b3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/core/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ export interface IBTCProvider extends IProvider {
getWalletProviderName(): Promise<string>;

/**
* Gets the icon URL of the wallet provider.
* @returns A promise that resolves to the icon URL of the wallet provider.
* Gets the icon of the wallet provider.
* @returns A promise that resolves to the icon of the wallet provider.
*/
getWalletProviderIcon(): Promise<string>;
}
Expand Down Expand Up @@ -242,8 +242,8 @@ export interface IBBNProvider extends IProvider {
getWalletProviderName(): Promise<string>;

/**
* Gets the icon URL of the wallet provider.
* @returns A promise that resolves to the icon URL of the wallet provider.
* Gets the icon of the wallet provider.
* @returns A promise that resolves to the icon of the wallet provider.
*/
getWalletProviderIcon(): Promise<string>;

Expand Down
4 changes: 2 additions & 2 deletions src/core/wallets/bbn/BBNProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export abstract class BBNProvider implements IBBNProvider {
abstract getWalletProviderName(): Promise<string>;

/**
* Gets the icon URL of the wallet provider.
* @returns A promise that resolves to the icon URL of the wallet provider.
* Gets the icon of the wallet provider.
* @returns A promise that resolves to the icon of the wallet provider.
*/
abstract getWalletProviderIcon(): Promise<string>;

Expand Down
4 changes: 2 additions & 2 deletions src/core/wallets/btc/BTCProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ export abstract class BTCProvider implements IBTCProvider {
abstract getWalletProviderName(): Promise<string>;

/**
* Gets the icon URL of the wallet provider.
* @returns A promise that resolves to the icon URL of the wallet provider.
* Gets the icon of the wallet provider.
* @returns A promise that resolves to the icon of the wallet provider.
*/
abstract getWalletProviderIcon(): Promise<string>;
}

0 comments on commit c9625b3

Please sign in to comment.