@lifi/wallet-management
Version:
LI.FI Wallet Management solution.
13 lines • 320 B
JavaScript
const walletPriority = {
metaMaskSDK: 1,
'io.metamask': 1,
'io.metamask.mobile': 1,
coinbaseWalletSDK: 2,
'com.coinbase.wallet': 2,
walletConnect: 3,
safe: 4,
};
export const getWalletPriority = (id) => {
return walletPriority[id] || 1000;
};
//# sourceMappingURL=getWalletPriority.js.map