@web3-wallet/brave-wallet
Version:
metamask connector
14 lines (10 loc) • 443 B
text/typescript
import type { WalletName } from '@web3-wallet/core';
import { Connector } from '@web3-wallet/core';
import { icon } from './assets';
const _walletName = 'Brave Wallet';
const walletName = _walletName as WalletName<typeof _walletName>;
export class BraveWallet extends Connector {
public static walletName: WalletName<string> = walletName;
public static walletIcon: string = icon;
public walletName: WalletName<string> = walletName;
}