-
Notifications
You must be signed in to change notification settings - Fork 735
Expand file tree
/
Copy pathconfig.tsx
More file actions
73 lines (69 loc) · 1.77 KB
/
config.tsx
File metadata and controls
73 lines (69 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import Metamask from "../../components/Svg/Icons/Metamask";
import WalletConnect from "../../components/Svg/Icons/WalletConnect";
import TrustWallet from "../../components/Svg/Icons/TrustWallet";
import MathWallet from "../../components/Svg/Icons/MathWallet";
import TokenPocket from "../../components/Svg/Icons/TokenPocket";
import BinanceChain from "../../components/Svg/Icons/BinanceChain";
import SafePal from "../../components/Svg/Icons/SafePal";
import Coin98 from "../../components/Svg/Icons/Coin98";
import Antex from "../../components/Svg/Icons/Antex";
import { Config, ConnectorNames } from "./types";
const connectors: Config[] = [
{
title: "Metamask",
icon: Metamask,
connectorId: ConnectorNames.Injected,
priority: 1,
},
{
title: "WalletConnect",
icon: WalletConnect,
connectorId: ConnectorNames.WalletConnect,
priority: 2,
},
{
title: "Trust Wallet",
icon: TrustWallet,
connectorId: ConnectorNames.Injected,
priority: 3,
},
{
title: "MathWallet",
icon: MathWallet,
connectorId: ConnectorNames.Injected,
priority: 999,
},
{
title: "TokenPocket",
icon: TokenPocket,
connectorId: ConnectorNames.Injected,
priority: 999,
},
{
title: "Binance Chain",
icon: BinanceChain,
connectorId: ConnectorNames.BSC,
priority: 999,
},
{
title: "SafePal",
icon: SafePal,
connectorId: ConnectorNames.Injected,
priority: 999,
},
{
title: "Coin98",
icon: Coin98,
connectorId: ConnectorNames.Injected,
priority: 999,
},
{
title: "Antex",
icon: Antex,
connectorId: ConnectorNames.Injected,
priority: 999,
},
];
export default connectors;
export const connectorLocalStorageKey = "connectorIdv2";
export const walletLocalStorageKey = "wallet";