Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
feat: cask app label updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sand0man committed Dec 16, 2022
1 parent 84e8207 commit 6078a08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/cask-protocol/cask-protocol.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Network } from '~types/network.interface';

export const CASK_PROTOCOL_DEFINITION = appDefinition({
id: 'cask-protocol',
name: 'Cask Protocol',
name: 'Cask',
description: 'Automation protocol for web3, including subscriptions, auto-investing and protocol top-ups.',
url: 'https://app.cask.fi/',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ export abstract class CaskProtocolWalletTokenFetcher extends AppTokenTemplatePos
async getPricePerShare({ appToken, contract }: GetPricePerShareParams<CaskVaultToken>) {
return contract.pricePerShare().then(v => Number(v) / 10 ** appToken.tokens[0].decimals);
}

async getLabel() {
return 'Cask Wallet';
}
}

0 comments on commit 6078a08

Please sign in to comment.