nimbus-wallet-management
Version:
Nimbus Wallet Management solution inspired by Lifi
18 lines • 399 B
JavaScript
const walletPriority = {
metaMaskSDK: 1,
'io.metamask': 1,
'io.metamask.mobile': 1,
coinbaseWalletSDK: 2,
'com.coinbase.wallet': 2,
walletConnect: 3,
tokenpocket: 4,
safepal: 5,
'1inch': 6,
safe: 7,
okx: 8,
bitget: 9,
};
export const getWalletPriority = (id) => {
return walletPriority[id] || 1000;
};
//# sourceMappingURL=getWalletPriority.js.map