Solana Provider
FoxWallet employs the same protocol as Phantom. Currently, Solana network is only supported in the FoxWallet mobile app, with Chrome extension support coming soon.
Get Provider
function getProvider() {
const provider = window.foxwallet && window.foxwallet.solana;
if (!provider) {
window.open('https://foxwallet.com/download');
throw `Please guide users to download from FoxWallet official website`
}
return provider;
}