The UiWallet object from dapp-kit
True if the wallet's feature list includes evefrontier:sponsoredTransaction
import { useWallets } from "@mysten/dapp-kit-react";
import { walletSupportsSponsoredTransaction } from "@evefrontier/dapp-kit";
const wallets = useWallets();
const supportedWallets = wallets.filter(walletSupportsSponsoredTransaction);
console.log(`${supportedWallets.length} wallets support sponsored transactions`);
Check if a wallet supports the EVE Frontier sponsored transaction feature.
Use this to filter available wallets to only those that can execute sponsored (gasless) transactions. Currently, only EVE Vault implements this feature.