diff --git a/src/apps/cask-protocol/cask-protocol.definition.ts b/src/apps/cask-protocol/cask-protocol.definition.ts index 87ef07780..29621e633 100644 --- a/src/apps/cask-protocol/cask-protocol.definition.ts +++ b/src/apps/cask-protocol/cask-protocol.definition.ts @@ -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/', diff --git a/src/apps/cask-protocol/common/cask-protocol.wallet.token-fetcher.ts b/src/apps/cask-protocol/common/cask-protocol.wallet.token-fetcher.ts index 6387ea33f..ecd3becbe 100644 --- a/src/apps/cask-protocol/common/cask-protocol.wallet.token-fetcher.ts +++ b/src/apps/cask-protocol/common/cask-protocol.wallet.token-fetcher.ts @@ -31,4 +31,8 @@ export abstract class CaskProtocolWalletTokenFetcher extends AppTokenTemplatePos async getPricePerShare({ appToken, contract }: GetPricePerShareParams) { return contract.pricePerShare().then(v => Number(v) / 10 ** appToken.tokens[0].decimals); } + + async getLabel() { + return 'Cask Wallet'; + } }